Skip to content

Instantly share code, notes, and snippets.

@moylop260
Created February 9, 2019 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moylop260/89e7703cd004485c044959f029af8423 to your computer and use it in GitHub Desktop.
Save moylop260/89e7703cd004485c044959f029af8423 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?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="1254" onload="init(evt)" viewBox="0 0 1200 1254" 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="1254.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="1237" 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="1237" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="396.9" y="165" width="1.0" height="15.0" fill="rgb(207,113,9)" rx="2" ry="2" />
<text text-anchor="" x="399.93" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (11 samples, 0.90%)</title><rect x="10.0" y="965" width="10.6" height="15.0" fill="rgb(209,104,2)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.08%)</title><rect x="214.5" y="309" width="1.0" height="15.0" fill="rgb(229,42,12)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="884.7" y="181" width="0.9" height="15.0" fill="rgb(249,11,21)" rx="2" ry="2" />
<text text-anchor="" x="887.68" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="23.4" y="389" width="2.0" height="15.0" fill="rgb(241,204,11)" rx="2" ry="2" />
<text text-anchor="" x="26.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="908.7" y="165" width="0.9" height="15.0" fill="rgb(230,87,51)" rx="2" ry="2" />
<text text-anchor="" x="911.68" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="149.2" y="245" width="1.0" height="15.0" fill="rgb(226,205,39)" rx="2" ry="2" />
<text text-anchor="" x="152.22" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-60&gt;:get_installed:2 (2 samples, 0.16%)</title><rect x="637.9" y="309" width="1.9" height="15.0" fill="rgb(210,118,23)" rx="2" ry="2" />
<text text-anchor="" x="640.93" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="877.0" y="165" width="1.0" height="15.0" fill="rgb(224,41,40)" rx="2" ry="2" />
<text text-anchor="" x="880.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="905.8" y="133" width="1.0" height="15.0" fill="rgb(218,149,37)" rx="2" ry="2" />
<text text-anchor="" x="908.80" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="1182.3" y="677" width="1.0" height="15.0" fill="rgb(214,30,2)" rx="2" ry="2" />
<text text-anchor="" x="1185.32" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.08%)</title><rect x="216.4" y="261" width="1.0" height="15.0" fill="rgb(223,151,35)" rx="2" ry="2" />
<text text-anchor="" x="219.43" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="25.4" y="261" width="0.9" height="15.0" fill="rgb(218,181,40)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (2 samples, 0.16%)</title><rect x="544.8" y="165" width="1.9" height="15.0" fill="rgb(208,37,47)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__exit__:32 (2 samples, 0.16%)</title><rect x="104.1" y="1173" width="1.9" height="15.0" fill="rgb(240,210,27)" rx="2" ry="2" />
<text text-anchor="" x="107.09" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="713.8" y="117" width="0.9" height="15.0" fill="rgb(221,71,42)" rx="2" ry="2" />
<text text-anchor="" x="716.78" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208 (1,112 samples, 90.48%)</title><rect x="122.3" y="837" width="1067.7" height="15.0" fill="rgb(235,17,17)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="785.8" y="181" width="0.9" height="15.0" fill="rgb(249,2,39)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (7 samples, 0.57%)</title><rect x="388.3" y="165" width="6.7" height="15.0" fill="rgb(210,197,5)" rx="2" ry="2" />
<text text-anchor="" x="391.29" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1013.3" y="149" width="1.0" height="15.0" fill="rgb(221,153,53)" rx="2" ry="2" />
<text text-anchor="" x="1016.34" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="45.5" y="1173" width="1.0" height="15.0" fill="rgb(242,168,12)" rx="2" ry="2" />
<text text-anchor="" x="48.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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="275.0" y="69" width="1.0" height="15.0" fill="rgb(243,148,13)" rx="2" ry="2" />
<text text-anchor="" x="278.00" 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>/.repo_requirements/odoo/odoo/osv/expression.py:select_from_where:448 (1 samples, 0.08%)</title><rect x="665.8" y="133" width="0.9" height="15.0" fill="rgb(247,54,41)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="441.1" y="133" width="1.0" height="15.0" fill="rgb(210,90,48)" rx="2" ry="2" />
<text text-anchor="" x="444.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (7 samples, 0.57%)</title><rect x="747.4" y="101" width="6.7" height="15.0" fill="rgb(246,90,16)" rx="2" ry="2" />
<text text-anchor="" x="750.38" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1171.8" y="309" width="0.9" height="15.0" fill="rgb(213,218,27)" rx="2" ry="2" />
<text text-anchor="" x="1174.76" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="293.2" y="197" width="1.0" height="15.0" fill="rgb(232,164,37)" rx="2" ry="2" />
<text text-anchor="" x="296.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="876.0" y="181" width="1.0" height="15.0" fill="rgb(221,104,33)" rx="2" ry="2" />
<text text-anchor="" x="879.04" 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>/.repo_requirements/odoo/odoo/fields.py:read:2259 (14 samples, 1.14%)</title><rect x="740.7" y="133" width="13.4" height="15.0" fill="rgb(249,79,20)" rx="2" ry="2" />
<text text-anchor="" x="743.66" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1053 (1 samples, 0.08%)</title><rect x="687.9" y="325" width="0.9" height="15.0" fill="rgb(214,107,31)" rx="2" ry="2" />
<text text-anchor="" x="690.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="895.2" y="213" width="1.0" height="15.0" fill="rgb(208,27,14)" rx="2" ry="2" />
<text text-anchor="" x="898.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="11.0" y="837" width="0.9" height="15.0" fill="rgb(236,109,22)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="781.0" y="181" width="0.9" height="15.0" fill="rgb(244,98,24)" rx="2" ry="2" />
<text text-anchor="" x="783.98" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="627.4" y="277" width="0.9" height="15.0" fill="rgb(220,218,49)" rx="2" ry="2" />
<text text-anchor="" x="630.36" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="434.4" y="133" width="0.9" height="15.0" fill="rgb(221,12,22)" rx="2" ry="2" />
<text text-anchor="" x="437.38" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="379.7" y="149" width="0.9" height="15.0" fill="rgb(254,223,27)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="131.0" y="261" width="0.9" height="15.0" fill="rgb(220,14,42)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (13 samples, 1.06%)</title><rect x="346.0" y="181" width="12.5" height="15.0" fill="rgb(254,185,28)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:read_combined:727 (1 samples, 0.08%)</title><rect x="1187.1" y="261" width="1.0" height="15.0" fill="rgb(227,115,2)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="492.0" y="149" width="0.9" height="15.0" fill="rgb(223,142,7)" rx="2" ry="2" />
<text text-anchor="" x="494.99" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="417.1" y="181" width="1.0" height="15.0" fill="rgb(221,42,7)" rx="2" ry="2" />
<text text-anchor="" x="420.10" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1786 (514 samples, 41.82%)</title><rect x="681.1" y="405" width="493.5" height="15.0" fill="rgb(240,170,30)" rx="2" ry="2" />
<text text-anchor="" x="684.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="11.0" y="789" width="0.9" height="15.0" fill="rgb(238,127,54)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/fields.py:read:2253 (2 samples, 0.16%)</title><rect x="257.7" y="133" width="1.9" height="15.0" fill="rgb(235,123,48)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="283.6" y="149" width="1.0" height="15.0" fill="rgb(242,161,0)" rx="2" ry="2" />
<text text-anchor="" x="286.64" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="526.6" y="165" width="1.9" height="15.0" fill="rgb(254,132,15)" rx="2" ry="2" />
<text text-anchor="" x="529.55" 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>/.repo_requirements/odoo/odoo/api.py:protected:859 (1 samples, 0.08%)</title><rect x="1115.1" y="293" width="1.0" height="15.0" fill="rgb(224,71,44)" rx="2" ry="2" />
<text text-anchor="" x="1118.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="303.8" y="181" width="1.0" height="15.0" fill="rgb(224,170,39)" rx="2" ry="2" />
<text text-anchor="" x="306.80" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="739.7" y="101" width="1.0" height="15.0" fill="rgb(218,88,44)" rx="2" ry="2" />
<text text-anchor="" x="742.70" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="369.1" y="181" width="0.9" height="15.0" fill="rgb(253,170,0)" rx="2" ry="2" />
<text text-anchor="" x="372.09" 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>/home/odoo/odoo-11.0/addons/bus/models/bus.py:run:181 (3 samples, 0.24%)</title><rect x="118.5" y="1141" width="2.9" height="15.0" fill="rgb(217,3,22)" rx="2" ry="2" />
<text text-anchor="" x="121.49" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (6 samples, 0.49%)</title><rect x="763.7" y="213" width="5.8" height="15.0" fill="rgb(208,111,46)" rx="2" ry="2" />
<text text-anchor="" x="766.70" 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>/.repo_requirements/odoo/odoo/api.py:remove_todo:901 (1 samples, 0.08%)</title><rect x="1046.9" y="309" width="1.0" height="15.0" fill="rgb(234,16,10)" rx="2" ry="2" />
<text text-anchor="" x="1049.94" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="423.8" y="149" width="1.0" height="15.0" fill="rgb(254,223,8)" rx="2" ry="2" />
<text text-anchor="" x="426.82" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="696.5" y="293" width="1.9" height="15.0" fill="rgb(220,42,41)" rx="2" ry="2" />
<text text-anchor="" x="699.49" 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>/home/odoo/odoo-11.0/addons/account/models/account_payment.py:post:517 (1,096 samples, 89.18%)</title><rect x="124.3" y="517" width="1052.3" height="15.0" fill="rgb(211,166,23)" rx="2" ry="2" />
<text text-anchor="" x="127.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_payment.py:post:517</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="21.5" y="885" width="1.0" height="15.0" fill="rgb(206,139,9)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="573.6" y="261" width="1.0" height="15.0" fill="rgb(212,117,28)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/service/common.py:dispatch:57 (1 samples, 0.08%)</title><rect x="1186.2" y="581" width="0.9" height="15.0" fill="rgb(223,209,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="283.6" y="197" width="1.0" height="15.0" fill="rgb(245,19,54)" rx="2" ry="2" />
<text text-anchor="" x="286.64" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="1077.7" y="261" width="0.9" height="15.0" fill="rgb(220,42,33)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/api.py:recompute:916 (1 samples, 0.08%)</title><rect x="591.8" y="309" width="1.0" height="15.0" fill="rgb(233,205,33)" rx="2" ry="2" />
<text text-anchor="" x="594.84" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (2 samples, 0.16%)</title><rect x="757.9" y="197" width="2.0" height="15.0" fill="rgb(225,53,40)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/api.py:_do_in_mode:815 (1 samples, 0.08%)</title><rect x="25.4" y="373" width="0.9" height="15.0" fill="rgb(245,28,28)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/api.py:get_records:1020 (1 samples, 0.08%)</title><rect x="959.6" y="181" width="0.9" height="15.0" fill="rgb(253,201,46)" rx="2" ry="2" />
<text text-anchor="" x="962.57" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.08%)</title><rect x="258.7" y="101" width="0.9" height="15.0" fill="rgb(231,6,10)" rx="2" ry="2" />
<text text-anchor="" x="261.67" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.08%)</title><rect x="18.6" y="869" width="1.0" height="15.0" fill="rgb(226,55,9)" rx="2" ry="2" />
<text text-anchor="" x="21.64" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="20.6" y="885" width="0.9" height="15.0" fill="rgb(209,89,29)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1343 (514 samples, 41.82%)</title><rect x="681.1" y="389" width="493.5" height="15.0" fill="rgb(228,210,28)" rx="2" ry="2" />
<text text-anchor="" x="684.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="848.2" y="181" width="1.9" height="15.0" fill="rgb(205,191,53)" rx="2" ry="2" />
<text text-anchor="" x="851.19" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.08%)</title><rect x="683.1" y="181" width="0.9" height="15.0" fill="rgb(253,138,29)" rx="2" ry="2" />
<text text-anchor="" x="686.05" 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>/home/odoo/odoo-11.0/addons/mail/controllers/main.py:mail_client_action:268 (1 samples, 0.08%)</title><rect x="122.3" y="709" width="1.0" height="15.0" fill="rgb(252,8,29)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="919.2" y="133" width="1.0" height="15.0" fill="rgb(247,56,24)" rx="2" ry="2" />
<text text-anchor="" x="922.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="924.0" y="181" width="1.0" height="15.0" fill="rgb(218,74,52)" rx="2" ry="2" />
<text text-anchor="" x="927.04" 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>/.repo_requirements/odoo/odoo/models.py:_write:3195 (23 samples, 1.87%)</title><rect x="1123.8" y="325" width="22.0" height="15.0" fill="rgb(242,60,48)" rx="2" ry="2" />
<text text-anchor="" x="1126.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="443.0" y="165" width="1.0" height="15.0" fill="rgb(245,157,36)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-20&gt;:check:2 (1 samples, 0.08%)</title><rect x="209.7" y="325" width="1.0" height="15.0" fill="rgb(218,4,9)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (4 samples, 0.33%)</title><rect x="296.1" y="213" width="3.9" height="15.0" fill="rgb(221,79,22)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (12 samples, 0.98%)</title><rect x="998.0" y="213" width="11.5" height="15.0" fill="rgb(218,86,14)" rx="2" ry="2" />
<text text-anchor="" x="1000.97" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (2 samples, 0.16%)</title><rect x="670.6" y="293" width="1.9" height="15.0" fill="rgb(250,69,52)" rx="2" ry="2" />
<text text-anchor="" x="673.57" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="975.9" y="117" width="1.0" height="15.0" fill="rgb(207,6,2)" rx="2" ry="2" />
<text text-anchor="" x="978.89" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="665.8" y="101" width="0.9" height="15.0" fill="rgb(213,82,41)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="977.8" y="117" width="1.0" height="15.0" fill="rgb(250,173,24)" rx="2" ry="2" />
<text text-anchor="" x="980.81" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:compile:289 (1 samples, 0.08%)</title><rect x="1187.1" y="373" width="1.0" height="15.0" fill="rgb(226,12,20)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="925.0" y="165" width="1.0" height="15.0" fill="rgb(250,4,27)" rx="2" ry="2" />
<text text-anchor="" x="928.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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="281.7" y="165" width="1.0" height="15.0" fill="rgb(247,125,12)" rx="2" ry="2" />
<text text-anchor="" x="284.72" 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>/home/odoo/odoo-11.0/addons/sale/models/sale.py:&lt;listcomp&gt;:71 (1 samples, 0.08%)</title><rect x="123.3" y="453" width="1.0" height="15.0" fill="rgb(233,109,33)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="816.5" y="197" width="1.0" height="15.0" fill="rgb(239,148,21)" rx="2" ry="2" />
<text text-anchor="" x="819.51" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1179.4" y="485" width="1.0" height="15.0" fill="rgb(252,198,11)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.08%)</title><rect x="670.6" y="229" width="0.9" height="15.0" fill="rgb(231,189,42)" rx="2" ry="2" />
<text text-anchor="" x="673.57" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (1 samples, 0.08%)</title><rect x="698.4" y="325" width="1.0" height="15.0" fill="rgb(245,135,35)" rx="2" ry="2" />
<text text-anchor="" x="701.41" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="829.0" y="133" width="1.0" height="15.0" fill="rgb(229,67,40)" rx="2" ry="2" />
<text text-anchor="" x="831.99" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="508.3" y="197" width="2.9" height="15.0" fill="rgb(212,10,37)" rx="2" ry="2" />
<text text-anchor="" x="511.31" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (5 samples, 0.41%)</title><rect x="614.9" y="277" width="4.8" height="15.0" fill="rgb(233,204,26)" rx="2" ry="2" />
<text text-anchor="" x="617.88" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="953.8" y="165" width="1.0" height="15.0" fill="rgb(250,225,20)" rx="2" ry="2" />
<text text-anchor="" x="956.81" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="709.0" y="261" width="0.9" height="15.0" fill="rgb(209,129,21)" rx="2" ry="2" />
<text text-anchor="" x="711.97" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="123.3" y="485" width="1.0" height="15.0" fill="rgb(205,94,9)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="747.4" y="85" width="0.9" height="15.0" fill="rgb(219,33,5)" rx="2" ry="2" />
<text text-anchor="" x="750.38" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="436.3" y="165" width="1.0" height="15.0" fill="rgb(254,65,43)" rx="2" ry="2" />
<text text-anchor="" x="439.30" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="129.1" y="229" width="0.9" height="15.0" fill="rgb(240,211,23)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:515 (1,105 samples, 89.91%)</title><rect x="122.3" y="725" width="1061.0" height="15.0" fill="rgb(239,193,48)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:response_wrap:515</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="767.5" y="149" width="1.0" height="15.0" fill="rgb(235,179,31)" rx="2" ry="2" />
<text text-anchor="" x="770.54" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4903 (1 samples, 0.08%)</title><rect x="224.1" y="341" width="1.0" height="15.0" fill="rgb(217,65,37)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="790.6" y="213" width="2.9" height="15.0" fill="rgb(251,206,0)" rx="2" ry="2" />
<text text-anchor="" x="793.59" 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>all (1,229 samples, 100%)</title><rect x="10.0" y="1205" width="1180.0" height="15.0" fill="rgb(243,101,33)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="355.6" y="149" width="2.9" height="15.0" fill="rgb(240,6,37)" rx="2" ry="2" />
<text text-anchor="" x="358.65" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:126 (1 samples, 0.08%)</title><rect x="661.0" y="277" width="0.9" height="15.0" fill="rgb(242,65,30)" rx="2" ry="2" />
<text text-anchor="" x="663.97" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="542.9" y="181" width="1.9" height="15.0" fill="rgb(249,113,53)" rx="2" ry="2" />
<text text-anchor="" x="545.87" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1796 (2 samples, 0.16%)</title><rect x="1174.6" y="405" width="2.0" height="15.0" fill="rgb(208,210,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:897 (2 samples, 0.16%)</title><rect x="682.1" y="261" width="1.9" height="15.0" fill="rgb(219,185,14)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/models.py:&lt;setcomp&gt;:4854 (1 samples, 0.08%)</title><rect x="1076.7" y="293" width="1.0" height="15.0" fill="rgb(219,43,36)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="124.3" y="373" width="0.9" height="15.0" fill="rgb(236,224,16)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (7 samples, 0.57%)</title><rect x="317.2" y="197" width="6.8" height="15.0" fill="rgb(230,32,38)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/api.py:__call__:789 (1 samples, 0.08%)</title><rect x="685.0" y="277" width="0.9" height="15.0" fill="rgb(211,112,33)" rx="2" ry="2" />
<text text-anchor="" x="687.97" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="782.9" y="197" width="1.0" height="15.0" fill="rgb(205,147,1)" rx="2" ry="2" />
<text text-anchor="" x="785.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>/.repo_requirements/odoo/odoo/models.py:modified:4867 (1 samples, 0.08%)</title><rect x="1070.9" y="309" width="1.0" height="15.0" fill="rgb(217,137,46)" rx="2" ry="2" />
<text text-anchor="" x="1073.94" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="574.6" y="277" width="0.9" height="15.0" fill="rgb(251,141,37)" rx="2" ry="2" />
<text text-anchor="" x="577.56" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="1111.3" y="261" width="0.9" height="15.0" fill="rgb(232,161,9)" rx="2" ry="2" />
<text text-anchor="" x="1114.27" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="748.3" y="85" width="2.9" height="15.0" fill="rgb(225,7,11)" rx="2" ry="2" />
<text text-anchor="" x="751.34" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_attachment.py:_compute_datas:190 (1 samples, 0.08%)</title><rect x="1183.3" y="565" width="0.9" height="15.0" fill="rgb(243,208,53)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/utils/pbkdf2.py:prf:193 (1 samples, 0.08%)</title><rect x="1186.2" y="421" width="0.9" height="15.0" fill="rgb(215,190,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="1109.3" y="293" width="4.8" height="15.0" fill="rgb(212,167,51)" rx="2" ry="2" />
<text text-anchor="" x="1112.35" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:serve_forever:511 (8 samples, 0.65%)</title><rect x="107.0" y="1125" width="7.7" height="15.0" fill="rgb(208,138,44)" rx="2" ry="2" />
<text text-anchor="" x="109.97" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="123.3" y="501" width="1.0" height="15.0" fill="rgb(236,0,49)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1090.1" y="245" width="1.0" height="15.0" fill="rgb(231,7,23)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="797.3" y="181" width="1.0" height="15.0" fill="rgb(252,148,20)" rx="2" ry="2" />
<text text-anchor="" x="800.31" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="487.2" y="117" width="0.9" height="15.0" fill="rgb(223,129,33)" rx="2" ry="2" />
<text text-anchor="" x="490.18" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="471.8" y="181" width="1.0" height="15.0" fill="rgb(238,93,38)" rx="2" ry="2" />
<text text-anchor="" x="474.82" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="164.6" y="229" width="1.9" height="15.0" fill="rgb(227,178,46)" rx="2" ry="2" />
<text text-anchor="" x="167.58" 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>/.repo_requirements/odoo/odoo/api.py:__iter__:943 (1 samples, 0.08%)</title><rect x="685.0" y="245" width="0.9" height="15.0" fill="rgb(223,212,19)" rx="2" ry="2" />
<text text-anchor="" x="687.97" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.08%)</title><rect x="227.9" y="325" width="1.0" height="15.0" fill="rgb(221,165,49)" rx="2" ry="2" />
<text text-anchor="" x="230.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="285.6" y="213" width="0.9" height="15.0" fill="rgb(213,86,44)" rx="2" ry="2" />
<text text-anchor="" x="288.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="735.9" y="181" width="0.9" height="15.0" fill="rgb(231,182,14)" rx="2" ry="2" />
<text text-anchor="" x="738.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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (2 samples, 0.16%)</title><rect x="294.2" y="213" width="1.9" height="15.0" fill="rgb(231,221,42)" rx="2" ry="2" />
<text text-anchor="" x="297.20" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="245.2" y="213" width="1.0" height="15.0" fill="rgb(219,24,39)" rx="2" ry="2" />
<text text-anchor="" x="248.23" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.08%)</title><rect x="926.0" y="213" width="0.9" height="15.0" fill="rgb(234,175,23)" rx="2" ry="2" />
<text text-anchor="" x="928.96" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="788.7" y="181" width="1.9" height="15.0" fill="rgb(226,153,24)" rx="2" ry="2" />
<text text-anchor="" x="791.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="1094.0" y="261" width="1.9" height="15.0" fill="rgb(209,141,53)" rx="2" ry="2" />
<text text-anchor="" x="1096.99" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (12 samples, 0.98%)</title><rect x="177.1" y="325" width="11.5" height="15.0" fill="rgb(208,145,51)" rx="2" ry="2" />
<text text-anchor="" x="180.06" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:concat_xml:224 (1 samples, 0.08%)</title><rect x="1185.2" y="693" width="1.0" height="15.0" fill="rgb(235,170,5)" rx="2" ry="2" />
<text text-anchor="" x="1188.20" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="932.7" y="181" width="0.9" height="15.0" fill="rgb(251,120,11)" rx="2" ry="2" />
<text text-anchor="" x="935.69" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="227.9" y="309" width="1.0" height="15.0" fill="rgb(225,12,27)" rx="2" ry="2" />
<text text-anchor="" x="230.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="454.5" y="181" width="1.0" height="15.0" fill="rgb(230,69,13)" rx="2" ry="2" />
<text text-anchor="" x="457.54" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="372.9" y="181" width="1.0" height="15.0" fill="rgb(207,36,8)" rx="2" ry="2" />
<text text-anchor="" x="375.93" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="860.7" y="149" width="0.9" height="15.0" fill="rgb(206,39,27)" rx="2" ry="2" />
<text text-anchor="" x="863.68" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="420.0" y="149" width="2.9" height="15.0" fill="rgb(239,64,54)" rx="2" ry="2" />
<text text-anchor="" x="422.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="760.8" y="213" width="1.0" height="15.0" fill="rgb(251,191,48)" rx="2" ry="2" />
<text text-anchor="" x="763.82" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="301.9" y="197" width="0.9" height="15.0" fill="rgb(216,106,14)" rx="2" ry="2" />
<text text-anchor="" x="304.88" 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>/home/odoo/odoo-11.0/addons/mail/models/mail_channel.py:get_mention_commands:652 (1 samples, 0.08%)</title><rect x="122.3" y="661" width="1.0" height="15.0" fill="rgb(213,47,8)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="129.1" y="277" width="0.9" height="15.0" fill="rgb(236,218,39)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="682.1" y="149" width="1.0" height="15.0" fill="rgb(239,64,8)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="1179.4" y="453" width="1.0" height="15.0" fill="rgb(214,88,12)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (7 samples, 0.57%)</title><rect x="808.8" y="181" width="6.7" height="15.0" fill="rgb(216,69,11)" rx="2" ry="2" />
<text text-anchor="" x="811.83" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (5 samples, 0.41%)</title><rect x="928.8" y="197" width="4.8" height="15.0" fill="rgb(212,112,25)" rx="2" ry="2" />
<text text-anchor="" x="931.84" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.08%)</title><rect x="803.1" y="101" width="0.9" height="15.0" fill="rgb(223,55,28)" rx="2" ry="2" />
<text text-anchor="" x="806.07" 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>/.repo_requirements/odoo/odoo/http.py:render:1263 (3 samples, 0.24%)</title><rect x="1187.1" y="725" width="2.9" height="15.0" fill="rgb(206,217,52)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (2 samples, 0.16%)</title><rect x="687.9" y="341" width="1.9" height="15.0" fill="rgb(216,206,21)" rx="2" ry="2" />
<text text-anchor="" x="690.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (6 samples, 0.49%)</title><rect x="844.4" y="213" width="5.7" height="15.0" fill="rgb(222,198,49)" rx="2" ry="2" />
<text text-anchor="" x="847.35" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (2 samples, 0.16%)</title><rect x="733.0" y="229" width="1.9" height="15.0" fill="rgb(213,204,52)" rx="2" ry="2" />
<text text-anchor="" x="735.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (5 samples, 0.41%)</title><rect x="317.2" y="165" width="4.8" height="15.0" fill="rgb(206,79,13)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1282 (1 samples, 0.08%)</title><rect x="521.7" y="197" width="1.0" height="15.0" fill="rgb(243,168,13)" rx="2" ry="2" />
<text text-anchor="" x="524.75" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="772.3" y="181" width="1.0" height="15.0" fill="rgb(254,31,51)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="997.0" y="181" width="1.0" height="15.0" fill="rgb(246,85,7)" rx="2" ry="2" />
<text text-anchor="" x="1000.01" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="580.3" y="293" width="1.0" height="15.0" fill="rgb(247,150,17)" rx="2" ry="2" />
<text text-anchor="" x="583.32" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.08%)</title><rect x="28.2" y="789" width="1.0" height="15.0" fill="rgb(237,39,2)" rx="2" ry="2" />
<text text-anchor="" x="31.24" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="431.5" y="165" width="1.9" height="15.0" fill="rgb(209,203,47)" rx="2" ry="2" />
<text text-anchor="" x="434.50" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="316.3" y="197" width="0.9" height="15.0" fill="rgb(209,44,24)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (8 samples, 0.65%)</title><rect x="307.6" y="213" width="7.7" height="15.0" fill="rgb(240,52,43)" rx="2" ry="2" />
<text text-anchor="" x="310.64" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:975 (1 samples, 0.08%)</title><rect x="442.1" y="213" width="0.9" height="15.0" fill="rgb(211,182,32)" rx="2" ry="2" />
<text text-anchor="" x="445.06" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.08%)</title><rect x="596.6" y="277" width="1.0" height="15.0" fill="rgb(248,39,3)" rx="2" ry="2" />
<text text-anchor="" x="599.64" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (4 samples, 0.33%)</title><rect x="444.9" y="197" width="3.9" height="15.0" fill="rgb(220,113,49)" rx="2" ry="2" />
<text text-anchor="" x="447.94" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="399.8" y="149" width="1.0" height="15.0" fill="rgb(228,16,37)" rx="2" ry="2" />
<text text-anchor="" x="402.81" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="881.8" y="181" width="1.0" height="15.0" fill="rgb(208,52,26)" rx="2" ry="2" />
<text text-anchor="" x="884.80" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:compile:77 (2 samples, 0.16%)</title><rect x="1187.1" y="389" width="1.9" height="15.0" fill="rgb(250,27,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="987.4" y="181" width="1.0" height="15.0" fill="rgb(217,228,12)" rx="2" ry="2" />
<text text-anchor="" x="990.41" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.08%)</title><rect x="209.7" y="309" width="1.0" height="15.0" fill="rgb(231,64,49)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="708.0" y="293" width="2.9" height="15.0" fill="rgb(247,179,43)" rx="2" ry="2" />
<text text-anchor="" x="711.01" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="766.6" y="197" width="1.9" height="15.0" fill="rgb(239,147,24)" rx="2" ry="2" />
<text text-anchor="" x="769.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="574.6" y="261" width="0.9" height="15.0" fill="rgb(246,221,10)" rx="2" ry="2" />
<text text-anchor="" x="577.56" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:996 (7 samples, 0.57%)</title><rect x="714.7" y="245" width="6.8" height="15.0" fill="rgb(206,59,26)" rx="2" ry="2" />
<text text-anchor="" x="717.74" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="735.9" y="197" width="0.9" height="15.0" fill="rgb(246,14,35)" rx="2" ry="2" />
<text text-anchor="" x="738.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1174.6" y="341" width="1.0" height="15.0" fill="rgb(205,118,3)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (12 samples, 0.98%)</title><rect x="1102.6" y="309" width="11.5" height="15.0" fill="rgb(230,174,49)" rx="2" ry="2" />
<text text-anchor="" x="1105.63" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:370 (67 samples, 5.45%)</title><rect x="300.0" y="229" width="64.3" height="15.0" fill="rgb(243,63,47)" rx="2" ry="2" />
<text text-anchor="" x="302.96" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (1 samples, 0.08%)</title><rect x="1117.0" y="309" width="1.0" height="15.0" fill="rgb(245,78,37)" rx="2" ry="2" />
<text text-anchor="" x="1120.03" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (1 samples, 0.08%)</title><rect x="1047.9" y="325" width="1.0" height="15.0" fill="rgb(236,213,41)" rx="2" ry="2" />
<text text-anchor="" x="1050.90" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1004.7" y="165" width="1.0" height="15.0" fill="rgb(233,104,36)" rx="2" ry="2" />
<text text-anchor="" x="1007.69" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="296.1" y="197" width="2.9" height="15.0" fill="rgb(227,127,2)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="256.8" y="181" width="0.9" height="15.0" fill="rgb(217,8,45)" rx="2" ry="2" />
<text text-anchor="" x="259.75" 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>/.repo_requirements/odoo/odoo/sql_db.py:__build_dict:196 (1 samples, 0.08%)</title><rect x="319.2" y="53" width="0.9" height="15.0" fill="rgb(216,224,47)" rx="2" ry="2" />
<text text-anchor="" x="322.16" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4862 (3 samples, 0.24%)</title><rect x="1068.1" y="309" width="2.8" height="15.0" fill="rgb(233,192,32)" rx="2" ry="2" />
<text text-anchor="" x="1071.06" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (1 samples, 0.08%)</title><rect x="799.2" y="133" width="1.0" height="15.0" fill="rgb(237,117,8)" rx="2" ry="2" />
<text text-anchor="" x="802.23" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="883.7" y="149" width="1.0" height="15.0" fill="rgb(215,204,50)" rx="2" ry="2" />
<text text-anchor="" x="886.72" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="877.0" y="149" width="1.0" height="15.0" fill="rgb(220,136,46)" rx="2" ry="2" />
<text text-anchor="" x="880.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>/.repo_requirements/odoo/odoo/models.py:_write:3175 (1 samples, 0.08%)</title><rect x="1117.0" y="325" width="1.0" height="15.0" fill="rgb(228,152,48)" rx="2" ry="2" />
<text text-anchor="" x="1120.03" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="171.3" y="325" width="1.0" height="15.0" fill="rgb(232,111,12)" rx="2" ry="2" />
<text text-anchor="" x="174.30" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (7 samples, 0.57%)</title><rect x="908.7" y="181" width="6.7" height="15.0" fill="rgb(222,19,48)" rx="2" ry="2" />
<text text-anchor="" x="911.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="990.3" y="165" width="1.9" height="15.0" fill="rgb(244,114,45)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="679.2" y="261" width="1.0" height="15.0" fill="rgb(238,73,53)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="533.3" y="165" width="3.8" height="15.0" fill="rgb(207,11,3)" rx="2" ry="2" />
<text text-anchor="" x="536.27" 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>/.repo_requirements/odoo/odoo/models.py:_write:3222 (10 samples, 0.81%)</title><rect x="663.8" y="325" width="9.6" height="15.0" fill="rgb(254,147,28)" rx="2" ry="2" />
<text text-anchor="" x="666.85" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency:493 (3 samples, 0.24%)</title><rect x="220.3" y="325" width="2.8" height="15.0" fill="rgb(237,132,31)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (7 samples, 0.57%)</title><rect x="508.3" y="213" width="6.7" height="15.0" fill="rgb(217,91,33)" rx="2" ry="2" />
<text text-anchor="" x="511.31" 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>/.repo_requirements/odoo/odoo/models.py:_write:3195 (17 samples, 1.38%)</title><rect x="645.6" y="325" width="16.3" height="15.0" fill="rgb(246,149,8)" rx="2" ry="2" />
<text text-anchor="" x="648.61" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="265.4" y="37" width="1.0" height="15.0" fill="rgb(223,48,4)" rx="2" ry="2" />
<text text-anchor="" x="268.39" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (4 samples, 0.33%)</title><rect x="22.5" y="501" width="3.8" height="15.0" fill="rgb(224,138,45)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="21.5" y="709" width="1.0" height="15.0" fill="rgb(214,94,43)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="304.8" y="197" width="0.9" height="15.0" fill="rgb(244,65,21)" rx="2" ry="2" />
<text text-anchor="" x="307.76" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="500.6" y="149" width="1.0" height="15.0" fill="rgb(226,112,33)" rx="2" ry="2" />
<text text-anchor="" x="503.63" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="441.1" y="165" width="1.0" height="15.0" fill="rgb(228,31,23)" rx="2" ry="2" />
<text text-anchor="" x="444.10" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="669.6" y="293" width="1.0" height="15.0" fill="rgb(216,186,37)" rx="2" ry="2" />
<text text-anchor="" x="672.61" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="572.6" y="277" width="1.0" height="15.0" fill="rgb(218,134,19)" rx="2" ry="2" />
<text text-anchor="" x="575.64" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="303.8" y="165" width="1.0" height="15.0" fill="rgb(236,50,52)" rx="2" ry="2" />
<text text-anchor="" x="306.80" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="320.1" y="69" width="1.0" height="15.0" fill="rgb(243,159,3)" rx="2" ry="2" />
<text text-anchor="" x="323.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="834.8" y="149" width="2.8" height="15.0" fill="rgb(220,132,33)" rx="2" ry="2" />
<text text-anchor="" x="837.75" 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>/.repo_requirements/odoo/odoo/osv/expression.py:get_unaccent_wrapper:455 (1 samples, 0.08%)</title><rect x="214.5" y="261" width="1.0" height="15.0" fill="rgb(223,126,6)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:377 (12 samples, 0.98%)</title><rect x="981.7" y="229" width="11.5" height="15.0" fill="rgb(223,4,41)" rx="2" ry="2" />
<text text-anchor="" x="984.65" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="671.5" y="245" width="1.0" height="15.0" fill="rgb(244,131,23)" rx="2" ry="2" />
<text text-anchor="" x="674.53" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="348.9" y="133" width="1.0" height="15.0" fill="rgb(214,190,18)" rx="2" ry="2" />
<text text-anchor="" x="351.93" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="131.0" y="245" width="0.9" height="15.0" fill="rgb(248,191,16)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="277.9" y="213" width="2.9" height="15.0" fill="rgb(248,123,28)" rx="2" ry="2" />
<text text-anchor="" x="280.88" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="297.1" y="149" width="0.9" height="15.0" fill="rgb(240,128,6)" rx="2" ry="2" />
<text text-anchor="" x="300.08" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.08%)</title><rect x="800.2" y="69" width="0.9" height="15.0" fill="rgb(234,37,10)" rx="2" ry="2" />
<text text-anchor="" x="803.19" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="224.1" y="309" width="1.0" height="15.0" fill="rgb(252,116,40)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/service/server.py:cron_thread:230 (1 samples, 0.08%)</title><rect x="114.7" y="1125" width="0.9" height="15.0" fill="rgb(245,7,48)" rx="2" ry="2" />
<text text-anchor="" x="117.65" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="990.3" y="181" width="1.9" height="15.0" fill="rgb(232,94,0)" rx="2" ry="2" />
<text text-anchor="" x="993.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="511.2" y="197" width="2.9" height="15.0" fill="rgb(222,131,15)" rx="2" ry="2" />
<text text-anchor="" x="514.19" 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>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.08%)</title><rect x="133.9" y="245" width="0.9" height="15.0" fill="rgb(216,117,5)" rx="2" ry="2" />
<text text-anchor="" x="136.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193 (1,113 samples, 90.56%)</title><rect x="121.4" y="1029" width="1068.6" height="15.0" fill="rgb(228,142,3)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="260.6" y="85" width="1.0" height="15.0" fill="rgb(229,2,2)" rx="2" ry="2" />
<text text-anchor="" x="263.59" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1128.6" y="229" width="0.9" height="15.0" fill="rgb(251,123,11)" rx="2" ry="2" />
<text text-anchor="" x="1131.55" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="22.5" y="453" width="3.8" height="15.0" fill="rgb(228,78,53)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1090.1" y="261" width="1.0" height="15.0" fill="rgb(211,87,10)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="149.2" y="229" width="1.0" height="15.0" fill="rgb(212,164,42)" rx="2" ry="2" />
<text text-anchor="" x="152.22" 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>&lt;string&gt;:__new__:14 (1 samples, 0.08%)</title><rect x="27.3" y="805" width="0.9" height="15.0" fill="rgb(234,192,30)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="235.6" y="277" width="1.0" height="15.0" fill="rgb(249,139,38)" rx="2" ry="2" />
<text text-anchor="" x="238.63" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="235.6" y="229" width="1.0" height="15.0" fill="rgb(205,196,6)" rx="2" ry="2" />
<text text-anchor="" x="238.63" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="744.5" y="101" width="1.0" height="15.0" fill="rgb(224,56,0)" rx="2" ry="2" />
<text text-anchor="" x="747.50" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="639.8" y="277" width="1.0" height="15.0" fill="rgb(251,29,54)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="853.0" y="181" width="1.9" height="15.0" fill="rgb(241,131,16)" rx="2" ry="2" />
<text text-anchor="" x="855.99" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="358.5" y="117" width="1.0" height="15.0" fill="rgb(251,127,35)" rx="2" ry="2" />
<text text-anchor="" x="361.53" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="1056.5" y="277" width="1.0" height="15.0" fill="rgb(210,2,14)" rx="2" ry="2" />
<text text-anchor="" x="1059.54" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (6 samples, 0.49%)</title><rect x="20.6" y="933" width="5.7" height="15.0" fill="rgb(232,81,5)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2739 (1 samples, 0.08%)</title><rect x="802.1" y="101" width="1.0" height="15.0" fill="rgb(234,193,28)" rx="2" ry="2" />
<text text-anchor="" x="805.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (21 samples, 1.71%)</title><rect x="10.0" y="1013" width="20.2" height="15.0" fill="rgb(232,222,5)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="782.9" y="181" width="1.0" height="15.0" fill="rgb(212,115,10)" rx="2" ry="2" />
<text text-anchor="" x="785.90" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (2 samples, 0.16%)</title><rect x="377.7" y="197" width="2.0" height="15.0" fill="rgb(210,18,36)" rx="2" ry="2" />
<text text-anchor="" x="380.73" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="21.5" y="805" width="1.0" height="15.0" fill="rgb(233,52,15)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/models.py:_write:3163 (4 samples, 0.33%)</title><rect x="601.4" y="325" width="3.9" height="15.0" fill="rgb(249,66,40)" rx="2" ry="2" />
<text text-anchor="" x="604.44" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (3 samples, 0.24%)</title><rect x="413.3" y="197" width="2.8" height="15.0" fill="rgb(206,75,40)" rx="2" ry="2" />
<text text-anchor="" x="416.25" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="489.1" y="133" width="1.0" height="15.0" fill="rgb(247,165,48)" rx="2" ry="2" />
<text text-anchor="" x="492.10" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="917.3" y="149" width="1.0" height="15.0" fill="rgb(240,151,30)" rx="2" ry="2" />
<text text-anchor="" x="920.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (3 samples, 0.24%)</title><rect x="220.3" y="309" width="2.8" height="15.0" fill="rgb(225,173,19)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (3 samples, 0.24%)</title><rect x="567.8" y="325" width="2.9" height="15.0" fill="rgb(212,101,34)" rx="2" ry="2" />
<text text-anchor="" x="570.84" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="625.4" y="261" width="1.0" height="15.0" fill="rgb(254,128,23)" rx="2" ry="2" />
<text text-anchor="" x="628.44" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (3 samples, 0.24%)</title><rect x="695.5" y="325" width="2.9" height="15.0" fill="rgb(253,132,47)" rx="2" ry="2" />
<text text-anchor="" x="698.53" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (4 samples, 0.33%)</title><rect x="1150.6" y="277" width="3.9" height="15.0" fill="rgb(209,99,33)" rx="2" ry="2" />
<text text-anchor="" x="1153.63" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="1130.5" y="245" width="0.9" height="15.0" fill="rgb(233,34,0)" rx="2" ry="2" />
<text text-anchor="" x="1133.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="402.7" y="165" width="1.9" height="15.0" fill="rgb(254,138,17)" rx="2" ry="2" />
<text text-anchor="" x="405.69" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="822.3" y="165" width="1.9" height="15.0" fill="rgb(251,52,39)" rx="2" ry="2" />
<text text-anchor="" x="825.27" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.08%)</title><rect x="685.0" y="293" width="0.9" height="15.0" fill="rgb(254,105,7)" rx="2" ry="2" />
<text text-anchor="" x="687.97" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="806.9" y="181" width="1.0" height="15.0" fill="rgb(238,184,7)" rx="2" ry="2" />
<text text-anchor="" x="809.91" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="969.2" y="133" width="0.9" height="15.0" fill="rgb(221,186,28)" rx="2" ry="2" />
<text text-anchor="" x="972.17" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="913.5" y="149" width="0.9" height="15.0" fill="rgb(218,58,3)" rx="2" ry="2" />
<text text-anchor="" x="916.48" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (4 samples, 0.33%)</title><rect x="22.5" y="517" width="3.8" height="15.0" fill="rgb(226,170,41)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="257.7" y="53" width="1.0" height="15.0" fill="rgb(237,223,45)" rx="2" ry="2" />
<text text-anchor="" x="260.71" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (5 samples, 0.41%)</title><rect x="424.8" y="197" width="4.8" height="15.0" fill="rgb(219,190,47)" rx="2" ry="2" />
<text text-anchor="" x="427.78" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="775.2" y="117" width="1.0" height="15.0" fill="rgb(221,148,40)" rx="2" ry="2" />
<text text-anchor="" x="778.22" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="1018.1" y="197" width="1.0" height="15.0" fill="rgb(219,94,36)" rx="2" ry="2" />
<text text-anchor="" x="1021.14" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="26.3" y="901" width="1.0" height="15.0" fill="rgb(215,220,47)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (4 samples, 0.33%)</title><rect x="348.9" y="165" width="3.9" height="15.0" fill="rgb(224,130,18)" rx="2" ry="2" />
<text text-anchor="" x="351.93" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:_filter_visible_menus:125 (3 samples, 0.24%)</title><rect x="1178.5" y="565" width="2.9" height="15.0" fill="rgb(234,184,25)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="710.9" y="197" width="3.8" height="15.0" fill="rgb(217,137,42)" rx="2" ry="2" />
<text text-anchor="" x="713.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="755.1" y="165" width="0.9" height="15.0" fill="rgb(240,187,29)" rx="2" ry="2" />
<text text-anchor="" x="758.06" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="446.9" y="181" width="1.9" height="15.0" fill="rgb(249,139,11)" rx="2" ry="2" />
<text text-anchor="" x="449.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="682.1" y="197" width="1.0" height="15.0" fill="rgb(229,152,29)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/models.py:qualify:2698 (1 samples, 0.08%)</title><rect x="318.2" y="69" width="1.0" height="15.0" fill="rgb(254,122,49)" rx="2" ry="2" />
<text text-anchor="" x="321.20" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="396.0" y="181" width="0.9" height="15.0" fill="rgb(215,46,12)" rx="2" ry="2" />
<text text-anchor="" x="398.97" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (2 samples, 0.16%)</title><rect x="1120.9" y="309" width="1.9" height="15.0" fill="rgb(239,75,41)" rx="2" ry="2" />
<text text-anchor="" x="1123.87" 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>/.repo_requirements/odoo/odoo/models.py:_create:3534 (1 samples, 0.08%)</title><rect x="129.1" y="389" width="0.9" height="15.0" fill="rgb(209,207,13)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="331.6" y="165" width="3.9" height="15.0" fill="rgb(221,101,50)" rx="2" ry="2" />
<text text-anchor="" x="334.64" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="557.3" y="245" width="0.9" height="15.0" fill="rgb(223,31,18)" rx="2" ry="2" />
<text text-anchor="" x="560.27" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="483.3" y="133" width="1.0" height="15.0" fill="rgb(218,30,0)" rx="2" ry="2" />
<text text-anchor="" x="486.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="306.7" y="181" width="0.9" height="15.0" fill="rgb(250,29,12)" rx="2" ry="2" />
<text text-anchor="" x="309.68" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:post:144 (1 samples, 0.08%)</title><rect x="1174.6" y="389" width="1.0" height="15.0" fill="rgb(222,221,33)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4354 (1 samples, 0.08%)</title><rect x="30.2" y="1125" width="0.9" height="15.0" fill="rgb(241,1,23)" rx="2" ry="2" />
<text text-anchor="" x="33.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1177.5" y="597" width="1.0" height="15.0" fill="rgb(212,77,43)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="505.4" y="165" width="1.0" height="15.0" fill="rgb(235,108,26)" rx="2" ry="2" />
<text text-anchor="" x="508.43" 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>/.repo_requirements/odoo/odoo/http.py:_call_function:342 (1,105 samples, 89.91%)</title><rect x="122.3" y="789" width="1061.0" height="15.0" fill="rgb(212,146,21)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:_call_function:342</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="264.4" y="117" width="1.0" height="15.0" fill="rgb(214,79,7)" rx="2" ry="2" />
<text text-anchor="" x="267.43" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:84 (1 samples, 0.08%)</title><rect x="637.9" y="293" width="1.0" height="15.0" fill="rgb(239,91,14)" rx="2" ry="2" />
<text text-anchor="" x="640.93" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (2 samples, 0.16%)</title><rect x="1170.8" y="325" width="1.9" height="15.0" fill="rgb(206,61,49)" rx="2" ry="2" />
<text text-anchor="" x="1173.80" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="902.9" y="181" width="1.0" height="15.0" fill="rgb(240,107,29)" rx="2" ry="2" />
<text text-anchor="" x="905.92" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.08%)</title><rect x="668.6" y="229" width="1.0" height="15.0" fill="rgb(252,199,28)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:214 (4 samples, 0.33%)</title><rect x="22.5" y="709" width="3.8" height="15.0" fill="rgb(218,35,50)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="683.1" y="197" width="0.9" height="15.0" fill="rgb(215,174,36)" rx="2" ry="2" />
<text text-anchor="" x="686.05" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="492.0" y="133" width="0.9" height="15.0" fill="rgb(227,140,46)" rx="2" ry="2" />
<text text-anchor="" x="494.99" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (1 samples, 0.08%)</title><rect x="1032.5" y="101" width="1.0" height="15.0" fill="rgb(247,98,4)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/home/odoo/odoo-11.0/addons/auth_signup/models/ir_http.py:_dispatch:19 (4 samples, 0.33%)</title><rect x="22.5" y="661" width="3.8" height="15.0" fill="rgb(247,219,33)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (3 samples, 0.24%)</title><rect x="882.8" y="213" width="2.8" height="15.0" fill="rgb(225,95,53)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (3 samples, 0.24%)</title><rect x="420.0" y="133" width="2.9" height="15.0" fill="rgb(253,111,19)" rx="2" ry="2" />
<text text-anchor="" x="422.98" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926 (1,097 samples, 89.26%)</title><rect x="123.3" y="693" width="1053.3" height="15.0" fill="rgb(239,175,5)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="558.2" y="277" width="2.9" height="15.0" fill="rgb(244,194,15)" rx="2" ry="2" />
<text text-anchor="" x="561.23" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.08%)</title><rect x="241.4" y="229" width="1.0" height="15.0" fill="rgb(218,36,8)" rx="2" ry="2" />
<text text-anchor="" x="244.39" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4673 (1 samples, 0.08%)</title><rect x="678.3" y="277" width="0.9" height="15.0" fill="rgb(250,100,23)" rx="2" ry="2" />
<text text-anchor="" x="681.25" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="920.2" y="165" width="1.0" height="15.0" fill="rgb(206,46,40)" rx="2" ry="2" />
<text text-anchor="" x="923.20" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="465.1" y="197" width="2.9" height="15.0" fill="rgb(246,190,5)" rx="2" ry="2" />
<text text-anchor="" x="468.10" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (9 samples, 0.73%)</title><rect x="528.5" y="197" width="8.6" height="15.0" fill="rgb(235,100,18)" rx="2" ry="2" />
<text text-anchor="" x="531.47" 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>/usr/lib/python3.5/ast.py:fix_missing_locations:150 (1 samples, 0.08%)</title><rect x="1188.1" y="357" width="0.9" height="15.0" fill="rgb(212,99,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/tools/misc.py:freehash:940 (1 samples, 0.08%)</title><rect x="98.3" y="1173" width="1.0" height="15.0" fill="rgb(242,14,34)" rx="2" ry="2" />
<text text-anchor="" x="101.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="739.7" y="69" width="1.0" height="15.0" fill="rgb(250,184,31)" rx="2" ry="2" />
<text text-anchor="" x="742.70" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (2 samples, 0.16%)</title><rect x="940.4" y="213" width="1.9" height="15.0" fill="rgb(241,16,33)" rx="2" ry="2" />
<text text-anchor="" x="943.37" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (8 samples, 0.65%)</title><rect x="327.8" y="197" width="7.7" height="15.0" fill="rgb(250,162,19)" rx="2" ry="2" />
<text text-anchor="" x="330.80" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="521.7" y="149" width="1.0" height="15.0" fill="rgb(249,32,53)" rx="2" ry="2" />
<text text-anchor="" x="524.75" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.24%)</title><rect x="929.8" y="181" width="2.9" height="15.0" fill="rgb(247,182,21)" rx="2" ry="2" />
<text text-anchor="" x="932.80" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (8 samples, 0.65%)</title><rect x="782.9" y="213" width="7.7" height="15.0" fill="rgb(245,70,36)" rx="2" ry="2" />
<text text-anchor="" x="785.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_repr:177 (3 samples, 0.24%)</title><rect x="620.6" y="293" width="2.9" height="15.0" fill="rgb(222,125,10)" rx="2" ry="2" />
<text text-anchor="" x="623.64" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="137.7" y="245" width="1.0" height="15.0" fill="rgb(239,43,54)" rx="2" ry="2" />
<text text-anchor="" x="140.70" 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>/.repo_requirements/odoo/odoo/models.py:_write:3260 (3 samples, 0.24%)</title><rect x="1166.0" y="325" width="2.9" height="15.0" fill="rgb(244,66,10)" rx="2" ry="2" />
<text text-anchor="" x="1169.00" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="1058.5" y="245" width="1.9" height="15.0" fill="rgb(227,98,18)" rx="2" ry="2" />
<text text-anchor="" x="1061.46" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1178.5" y="469" width="0.9" height="15.0" fill="rgb(232,65,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1032.5" y="165" width="1.0" height="15.0" fill="rgb(241,206,14)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="287.5" y="181" width="0.9" height="15.0" fill="rgb(226,93,9)" rx="2" ry="2" />
<text text-anchor="" x="290.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_matched_percentage:53 (28 samples, 2.28%)</title><rect x="448.8" y="229" width="26.9" height="15.0" fill="rgb(235,120,47)" rx="2" ry="2" />
<text text-anchor="" x="451.78" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="1112.2" y="261" width="1.9" height="15.0" fill="rgb(245,160,31)" rx="2" ry="2" />
<text text-anchor="" x="1115.23" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="124.3" y="437" width="0.9" height="15.0" fill="rgb(242,75,19)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (7 samples, 0.57%)</title><rect x="998.9" y="197" width="6.8" height="15.0" fill="rgb(226,193,21)" rx="2" ry="2" />
<text text-anchor="" x="1001.93" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;lambda&gt;:2250 (1 samples, 0.08%)</title><rect x="742.6" y="117" width="0.9" height="15.0" fill="rgb(243,203,3)" rx="2" ry="2" />
<text text-anchor="" x="745.58" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:368 (1 samples, 0.08%)</title><rect x="129.1" y="261" width="0.9" height="15.0" fill="rgb(252,115,2)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (7 samples, 0.57%)</title><rect x="544.8" y="197" width="6.7" height="15.0" fill="rgb(215,81,50)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1051.7" y="213" width="1.0" height="15.0" fill="rgb(212,76,11)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="683.1" y="213" width="0.9" height="15.0" fill="rgb(244,14,48)" rx="2" ry="2" />
<text text-anchor="" x="686.05" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_kw:934 (5 samples, 0.41%)</title><rect x="1176.6" y="709" width="4.8" height="15.0" fill="rgb(241,184,39)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (6 samples, 0.49%)</title><rect x="443.0" y="213" width="5.8" height="15.0" fill="rgb(219,45,20)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>/.repo_requirements/odoo/odoo/api.py:check_todo:884 (1 samples, 0.08%)</title><rect x="552.5" y="245" width="0.9" height="15.0" fill="rgb(224,115,8)" rx="2" ry="2" />
<text text-anchor="" x="555.47" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="124.3" y="421" width="0.9" height="15.0" fill="rgb(215,108,19)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.08%)</title><rect x="1176.6" y="485" width="0.9" height="15.0" fill="rgb(235,162,33)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (4 samples, 0.33%)</title><rect x="22.5" y="485" width="3.8" height="15.0" fill="rgb(224,70,7)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="380.6" y="181" width="4.8" height="15.0" fill="rgb(227,121,4)" rx="2" ry="2" />
<text text-anchor="" x="383.61" 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>/.repo_requirements/odoo/odoo/fields.py:read:2257 (5 samples, 0.41%)</title><rect x="134.8" y="293" width="4.8" height="15.0" fill="rgb(230,95,6)" rx="2" ry="2" />
<text text-anchor="" x="137.82" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_partner_id:78 (14 samples, 1.14%)</title><rect x="966.3" y="229" width="13.4" height="15.0" fill="rgb(225,228,16)" rx="2" ry="2" />
<text text-anchor="" x="969.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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (1 samples, 0.08%)</title><rect x="1020.1" y="213" width="0.9" height="15.0" fill="rgb(207,0,41)" rx="2" ry="2" />
<text text-anchor="" x="1023.06" 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>/.repo_requirements/odoo/odoo/fields.py:read:2259 (16 samples, 1.30%)</title><rect x="262.5" y="133" width="15.4" height="15.0" fill="rgb(254,211,13)" rx="2" ry="2" />
<text text-anchor="" x="265.51" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="995.1" y="181" width="1.0" height="15.0" fill="rgb(218,170,53)" rx="2" ry="2" />
<text text-anchor="" x="998.09" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="10.0" y="853" width="3.8" height="15.0" fill="rgb(246,105,22)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.08%)</title><rect x="665.8" y="277" width="0.9" height="15.0" fill="rgb(224,193,30)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="142.5" y="261" width="1.0" height="15.0" fill="rgb(229,207,26)" rx="2" ry="2" />
<text text-anchor="" x="145.50" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__init__:18 (1 samples, 0.08%)</title><rect x="106.0" y="1173" width="1.0" height="15.0" fill="rgb(208,227,23)" rx="2" ry="2" />
<text text-anchor="" x="109.01" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="950.0" y="165" width="0.9" height="15.0" fill="rgb(230,53,26)" rx="2" ry="2" />
<text text-anchor="" x="952.97" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="165.5" y="213" width="1.0" height="15.0" fill="rgb(238,145,22)" rx="2" ry="2" />
<text text-anchor="" x="168.54" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4767 (1 samples, 0.08%)</title><rect x="770.4" y="181" width="1.0" height="15.0" fill="rgb(242,38,39)" rx="2" ry="2" />
<text text-anchor="" x="773.42" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="219.3" y="309" width="1.0" height="15.0" fill="rgb(252,199,43)" rx="2" ry="2" />
<text text-anchor="" x="222.31" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:371 (43 samples, 3.50%)</title><rect x="844.4" y="229" width="41.2" height="15.0" fill="rgb(218,80,31)" rx="2" ry="2" />
<text text-anchor="" x="847.35" y="239.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="947.1" y="197" width="0.9" height="15.0" fill="rgb(223,197,51)" rx="2" ry="2" />
<text text-anchor="" x="950.09" 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>/.repo_requirements/odoo/odoo/http.py:dispatch:1491 (1,113 samples, 90.56%)</title><rect x="121.4" y="917" width="1068.6" height="15.0" fill="rgb(205,26,33)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:1491</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="495.8" y="197" width="1.0" height="15.0" fill="rgb(220,147,18)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="828.0" y="165" width="2.9" height="15.0" fill="rgb(228,70,23)" rx="2" ry="2" />
<text text-anchor="" x="831.03" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="123.3" y="437" width="1.0" height="15.0" fill="rgb(222,123,2)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="330.7" y="133" width="0.9" height="15.0" fill="rgb(241,15,54)" rx="2" ry="2" />
<text text-anchor="" x="333.68" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.08%)</title><rect x="1179.4" y="405" width="1.0" height="15.0" fill="rgb(205,15,34)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1115.1" y="277" width="1.0" height="15.0" fill="rgb(238,81,49)" rx="2" ry="2" />
<text text-anchor="" x="1118.11" 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>/.repo_requirements/odoo/odoo/http.py:checked_call:335 (1,105 samples, 89.91%)</title><rect x="122.3" y="757" width="1061.0" height="15.0" fill="rgb(228,103,3)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:checked_call:335</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="349.9" y="149" width="2.9" height="15.0" fill="rgb(210,18,48)" rx="2" ry="2" />
<text text-anchor="" x="352.89" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="207.8" y="373" width="0.9" height="15.0" fill="rgb(208,127,45)" rx="2" ry="2" />
<text text-anchor="" x="210.79" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="915.4" y="165" width="1.0" height="15.0" fill="rgb(214,187,44)" rx="2" ry="2" />
<text text-anchor="" x="918.40" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:515 (1 samples, 0.08%)</title><rect x="1186.2" y="693" width="0.9" height="15.0" fill="rgb(254,152,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:304 (1 samples, 0.08%)</title><rect x="1175.6" y="213" width="1.0" height="15.0" fill="rgb(240,137,14)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:126 (1 samples, 0.08%)</title><rect x="1142.0" y="277" width="1.0" height="15.0" fill="rgb(224,181,52)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="290.4" y="149" width="0.9" height="15.0" fill="rgb(247,157,42)" rx="2" ry="2" />
<text text-anchor="" x="293.36" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="532.3" y="149" width="1.0" height="15.0" fill="rgb(250,70,3)" rx="2" ry="2" />
<text text-anchor="" x="535.31" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="769.5" y="197" width="2.8" height="15.0" fill="rgb(219,191,49)" rx="2" ry="2" />
<text text-anchor="" x="772.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="371.0" y="213" width="3.8" height="15.0" fill="rgb(247,213,39)" rx="2" ry="2" />
<text text-anchor="" x="374.01" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="544.8" y="133" width="1.0" height="15.0" fill="rgb(212,127,35)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.08%)</title><rect x="1181.4" y="661" width="0.9" height="15.0" fill="rgb(237,117,36)" rx="2" ry="2" />
<text text-anchor="" x="1184.36" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="206.8" y="293" width="1.0" height="15.0" fill="rgb(207,181,13)" rx="2" ry="2" />
<text text-anchor="" x="209.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="400.8" y="165" width="0.9" height="15.0" fill="rgb(241,190,35)" rx="2" ry="2" />
<text text-anchor="" x="403.77" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (27 samples, 2.20%)</title><rect x="896.2" y="213" width="25.9" height="15.0" fill="rgb(248,118,29)" rx="2" ry="2" />
<text text-anchor="" x="899.20" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (8 samples, 0.65%)</title><rect x="160.7" y="245" width="7.7" height="15.0" fill="rgb(215,181,13)" rx="2" ry="2" />
<text text-anchor="" x="163.74" 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>/.repo_requirements/odoo/odoo/models.py:_write:3191 (1 samples, 0.08%)</title><rect x="1119.0" y="325" width="0.9" height="15.0" fill="rgb(210,36,42)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="140.6" y="245" width="0.9" height="15.0" fill="rgb(217,211,13)" rx="2" ry="2" />
<text text-anchor="" x="143.58" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (2 samples, 0.16%)</title><rect x="11.9" y="821" width="1.9" height="15.0" fill="rgb(231,207,8)" rx="2" ry="2" />
<text text-anchor="" x="14.92" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (21 samples, 1.71%)</title><rect x="257.7" y="213" width="20.2" height="15.0" fill="rgb(231,136,52)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (17 samples, 1.38%)</title><rect x="737.8" y="197" width="16.3" height="15.0" fill="rgb(234,72,14)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1025 (1,091 samples, 88.77%)</title><rect x="129.1" y="437" width="1047.5" height="15.0" fill="rgb(234,44,6)" rx="2" ry="2" />
<text text-anchor="" x="132.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1025</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="639.8" y="261" width="1.0" height="15.0" fill="rgb(239,97,8)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.08%)</title><rect x="21.5" y="741" width="1.0" height="15.0" fill="rgb(250,21,19)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:366 (16 samples, 1.30%)</title><rect x="760.8" y="229" width="15.4" height="15.0" fill="rgb(239,92,30)" rx="2" ry="2" />
<text text-anchor="" x="763.82" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="853.0" y="165" width="1.9" height="15.0" fill="rgb(211,73,5)" rx="2" ry="2" />
<text text-anchor="" x="855.99" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1099.7" y="277" width="1.0" height="15.0" fill="rgb(219,211,20)" rx="2" ry="2" />
<text text-anchor="" x="1102.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="26.3" y="853" width="1.0" height="15.0" fill="rgb(251,53,8)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (4 samples, 0.33%)</title><rect x="125.2" y="453" width="3.9" height="15.0" fill="rgb(217,159,46)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="746.4" y="85" width="1.0" height="15.0" fill="rgb(241,224,10)" rx="2" ry="2" />
<text text-anchor="" x="749.42" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:899 (1 samples, 0.08%)</title><rect x="1046.9" y="293" width="1.0" height="15.0" fill="rgb(235,52,53)" rx="2" ry="2" />
<text text-anchor="" x="1049.94" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="205.9" y="309" width="1.9" height="15.0" fill="rgb(251,75,14)" rx="2" ry="2" />
<text text-anchor="" x="208.87" 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>/.repo_requirements/odoo/odoo/models.py:__and__:4683 (3 samples, 0.24%)</title><rect x="1034.5" y="229" width="2.8" height="15.0" fill="rgb(208,161,7)" rx="2" ry="2" />
<text text-anchor="" x="1037.46" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.08%)</title><rect x="257.7" y="85" width="1.0" height="15.0" fill="rgb(240,45,29)" rx="2" ry="2" />
<text text-anchor="" x="260.71" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:remove_todo:898 (1 samples, 0.08%)</title><rect x="678.3" y="309" width="0.9" height="15.0" fill="rgb(207,125,30)" rx="2" ry="2" />
<text text-anchor="" x="681.25" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="757.9" y="181" width="1.0" height="15.0" fill="rgb(233,43,10)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (2 samples, 0.16%)</title><rect x="361.4" y="165" width="1.9" height="15.0" fill="rgb(244,176,16)" rx="2" ry="2" />
<text text-anchor="" x="364.41" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="969.2" y="149" width="0.9" height="15.0" fill="rgb(241,194,51)" rx="2" ry="2" />
<text text-anchor="" x="972.17" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1020.1" y="165" width="0.9" height="15.0" fill="rgb(246,196,9)" rx="2" ry="2" />
<text text-anchor="" x="1023.06" 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>/.repo_requirements/odoo/odoo/sql_db.py:&lt;listcomp&gt;:203 (1 samples, 0.08%)</title><rect x="319.2" y="69" width="0.9" height="15.0" fill="rgb(251,125,24)" rx="2" ry="2" />
<text text-anchor="" x="322.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="772.3" y="149" width="1.0" height="15.0" fill="rgb(236,154,26)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="498.7" y="165" width="1.9" height="15.0" fill="rgb(223,49,8)" rx="2" ry="2" />
<text text-anchor="" x="501.71" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="1162.2" y="293" width="0.9" height="15.0" fill="rgb(237,195,7)" rx="2" ry="2" />
<text text-anchor="" x="1165.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="945.2" y="181" width="1.9" height="15.0" fill="rgb(254,94,49)" rx="2" ry="2" />
<text text-anchor="" x="948.17" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.16%)</title><rect x="239.5" y="133" width="1.9" height="15.0" fill="rgb(220,175,5)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="888.5" y="165" width="1.0" height="15.0" fill="rgb(243,191,34)" rx="2" ry="2" />
<text text-anchor="" x="891.52" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (2 samples, 0.16%)</title><rect x="1068.1" y="277" width="1.9" height="15.0" fill="rgb(221,19,4)" rx="2" ry="2" />
<text text-anchor="" x="1071.06" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="428.6" y="181" width="1.0" height="15.0" fill="rgb(220,59,51)" rx="2" ry="2" />
<text text-anchor="" x="431.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1070.0" y="261" width="0.9" height="15.0" fill="rgb(235,94,7)" rx="2" ry="2" />
<text text-anchor="" x="1072.98" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="176.1" y="309" width="1.0" height="15.0" fill="rgb(230,227,47)" rx="2" ry="2" />
<text text-anchor="" x="179.10" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (1 samples, 0.08%)</title><rect x="129.1" y="373" width="0.9" height="15.0" fill="rgb(210,98,28)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (2 samples, 0.16%)</title><rect x="875.1" y="213" width="1.9" height="15.0" fill="rgb(230,225,28)" rx="2" ry="2" />
<text text-anchor="" x="878.08" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="1051.7" y="277" width="1.0" height="15.0" fill="rgb(212,216,15)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1067.1" y="293" width="1.0" height="15.0" fill="rgb(211,64,33)" rx="2" ry="2" />
<text text-anchor="" x="1070.10" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:_get_asset_content:324 (2 samples, 0.16%)</title><rect x="1187.1" y="469" width="1.9" height="15.0" fill="rgb(237,110,16)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.41%)</title><rect x="317.2" y="181" width="4.8" height="15.0" fill="rgb(207,71,35)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.08%)</title><rect x="222.2" y="245" width="0.9" height="15.0" fill="rgb(253,103,34)" rx="2" ry="2" />
<text text-anchor="" x="225.19" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="926.0" y="165" width="0.9" height="15.0" fill="rgb(244,5,23)" rx="2" ry="2" />
<text text-anchor="" x="928.96" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (11 samples, 0.90%)</title><rect x="10.0" y="917" width="10.6" height="15.0" fill="rgb(247,210,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.08%)</title><rect x="1165.0" y="277" width="1.0" height="15.0" fill="rgb(210,57,46)" rx="2" ry="2" />
<text text-anchor="" x="1168.04" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:967 (1 samples, 0.08%)</title><rect x="879.9" y="213" width="0.9" height="15.0" fill="rgb(247,104,52)" rx="2" ry="2" />
<text text-anchor="" x="882.88" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="820.3" y="197" width="1.0" height="15.0" fill="rgb(214,95,19)" rx="2" ry="2" />
<text text-anchor="" x="823.35" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="360.4" y="165" width="1.0" height="15.0" fill="rgb(230,84,33)" rx="2" ry="2" />
<text text-anchor="" x="363.45" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="191.5" y="293" width="0.9" height="15.0" fill="rgb(244,172,22)" rx="2" ry="2" />
<text text-anchor="" x="194.46" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="238.5" y="245" width="1.0" height="15.0" fill="rgb(252,219,21)" rx="2" ry="2" />
<text text-anchor="" x="241.51" 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>/home/odoo/odoo-11.0/addons/sale/models/sale.py:_get_invoiced:71 (1 samples, 0.08%)</title><rect x="123.3" y="469" width="1.0" height="15.0" fill="rgb(253,199,17)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="124.3" y="469" width="0.9" height="15.0" fill="rgb(240,71,34)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (4 samples, 0.33%)</title><rect x="324.0" y="197" width="3.8" height="15.0" fill="rgb(244,39,46)" rx="2" ry="2" />
<text text-anchor="" x="326.96" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="675.4" y="309" width="0.9" height="15.0" fill="rgb(236,139,52)" rx="2" ry="2" />
<text text-anchor="" x="678.37" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (1 samples, 0.08%)</title><rect x="605.3" y="309" width="0.9" height="15.0" fill="rgb(244,215,24)" rx="2" ry="2" />
<text text-anchor="" x="608.28" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (10 samples, 0.81%)</title><rect x="1022.0" y="213" width="9.6" height="15.0" fill="rgb(238,166,9)" rx="2" ry="2" />
<text text-anchor="" x="1024.98" 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>/.repo_requirements/odoo/odoo/service/common.py:exp_authenticate:30 (1 samples, 0.08%)</title><rect x="1186.2" y="565" width="0.9" height="15.0" fill="rgb(249,197,33)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (2 samples, 0.16%)</title><rect x="1163.1" y="309" width="1.9" height="15.0" fill="rgb(242,67,4)" rx="2" ry="2" />
<text text-anchor="" x="1166.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (5 samples, 0.41%)</title><rect x="1091.1" y="293" width="4.8" height="15.0" fill="rgb(251,68,49)" rx="2" ry="2" />
<text text-anchor="" x="1094.11" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="868.4" y="117" width="0.9" height="15.0" fill="rgb(215,17,45)" rx="2" ry="2" />
<text text-anchor="" x="871.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (10 samples, 0.81%)</title><rect x="949.0" y="213" width="9.6" height="15.0" fill="rgb(215,210,35)" rx="2" ry="2" />
<text text-anchor="" x="952.01" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (6 samples, 0.49%)</title><rect x="1072.9" y="309" width="5.7" height="15.0" fill="rgb(248,52,30)" rx="2" ry="2" />
<text text-anchor="" x="1075.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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (3 samples, 0.24%)</title><rect x="1073.8" y="293" width="2.9" height="15.0" fill="rgb(217,73,1)" rx="2" ry="2" />
<text text-anchor="" x="1076.82" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (1 samples, 0.08%)</title><rect x="1071.9" y="309" width="1.0" height="15.0" fill="rgb(250,180,17)" rx="2" ry="2" />
<text text-anchor="" x="1074.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>/.repo_requirements/odoo/odoo/models.py:_write:3191 (2 samples, 0.16%)</title><rect x="639.8" y="325" width="2.0" height="15.0" fill="rgb(215,95,35)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="484.3" y="149" width="3.8" height="15.0" fill="rgb(220,135,46)" rx="2" ry="2" />
<text text-anchor="" x="487.30" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.08%)</title><rect x="126.2" y="325" width="0.9" height="15.0" fill="rgb(252,210,25)" rx="2" ry="2" />
<text text-anchor="" x="129.18" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="769.5" y="165" width="0.9" height="15.0" fill="rgb(221,13,54)" rx="2" ry="2" />
<text text-anchor="" x="772.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="455.5" y="181" width="1.0" height="15.0" fill="rgb(239,28,22)" rx="2" ry="2" />
<text text-anchor="" x="458.50" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (9 samples, 0.73%)</title><rect x="1055.6" y="309" width="8.6" height="15.0" fill="rgb(209,125,25)" rx="2" ry="2" />
<text text-anchor="" x="1058.58" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="131.0" y="309" width="0.9" height="15.0" fill="rgb(244,32,19)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="707.1" y="277" width="0.9" height="15.0" fill="rgb(221,133,15)" rx="2" ry="2" />
<text text-anchor="" x="710.05" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="781.9" y="165" width="1.0" height="15.0" fill="rgb(219,224,49)" rx="2" ry="2" />
<text text-anchor="" x="784.94" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="581.3" y="293" width="0.9" height="15.0" fill="rgb(208,167,12)" rx="2" ry="2" />
<text text-anchor="" x="584.28" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (4 samples, 0.33%)</title><rect x="22.5" y="437" width="3.8" height="15.0" fill="rgb(209,105,53)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="876.0" y="197" width="1.0" height="15.0" fill="rgb(206,22,19)" rx="2" ry="2" />
<text text-anchor="" x="879.04" 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>/.repo_requirements/odoo/odoo/models.py:_write:3174 (34 samples, 2.77%)</title><rect x="607.2" y="325" width="32.6" height="15.0" fill="rgb(226,72,44)" rx="2" ry="2" />
<text text-anchor="" x="610.20" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="126.2" y="309" width="0.9" height="15.0" fill="rgb(238,53,2)" rx="2" ry="2" />
<text text-anchor="" x="129.18" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2663 (1 samples, 0.08%)</title><rect x="22.5" y="373" width="0.9" height="15.0" fill="rgb(214,168,53)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (21 samples, 1.71%)</title><rect x="795.4" y="213" width="20.1" height="15.0" fill="rgb(208,17,40)" rx="2" ry="2" />
<text text-anchor="" x="798.39" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="573.6" y="277" width="1.0" height="15.0" fill="rgb(210,29,4)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="218.3" y="309" width="1.0" height="15.0" fill="rgb(207,150,35)" rx="2" ry="2" />
<text text-anchor="" x="221.35" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (1 samples, 0.08%)</title><rect x="13.8" y="821" width="1.0" height="15.0" fill="rgb(251,114,30)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/api.py:check_todo:884 (3 samples, 0.24%)</title><rect x="1034.5" y="245" width="2.8" height="15.0" fill="rgb(212,153,42)" rx="2" ry="2" />
<text text-anchor="" x="1037.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="859.7" y="165" width="3.9" height="15.0" fill="rgb(243,121,12)" rx="2" ry="2" />
<text text-anchor="" x="862.72" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:371 (42 samples, 3.42%)</title><rect x="364.3" y="229" width="40.3" height="15.0" fill="rgb(247,224,47)" rx="2" ry="2" />
<text text-anchor="" x="367.29" y="239.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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="348.0" y="165" width="0.9" height="15.0" fill="rgb(244,161,53)" rx="2" ry="2" />
<text text-anchor="" x="350.97" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_repr:177 (1 samples, 0.08%)</title><rect x="1096.9" y="293" width="0.9" height="15.0" fill="rgb(250,86,8)" rx="2" ry="2" />
<text text-anchor="" x="1099.87" 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>/.repo_requirements/odoo/odoo/models.py:modified:4861 (2 samples, 0.16%)</title><rect x="212.6" y="341" width="1.9" height="15.0" fill="rgb(218,109,25)" rx="2" ry="2" />
<text text-anchor="" x="215.59" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="26.3" y="869" width="1.0" height="15.0" fill="rgb(219,140,46)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="285.6" y="197" width="0.9" height="15.0" fill="rgb(230,121,7)" rx="2" ry="2" />
<text text-anchor="" x="288.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="838.6" y="133" width="1.0" height="15.0" fill="rgb(230,20,33)" rx="2" ry="2" />
<text text-anchor="" x="841.59" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="341.2" y="197" width="2.9" height="15.0" fill="rgb(240,120,3)" rx="2" ry="2" />
<text text-anchor="" x="344.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="284.6" y="181" width="1.0" height="15.0" fill="rgb(252,44,27)" rx="2" ry="2" />
<text text-anchor="" x="287.60" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="360.4" y="149" width="1.0" height="15.0" fill="rgb(250,146,35)" rx="2" ry="2" />
<text text-anchor="" x="363.45" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="336.4" y="181" width="1.0" height="15.0" fill="rgb(205,74,22)" rx="2" ry="2" />
<text text-anchor="" x="339.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="916.4" y="133" width="0.9" height="15.0" fill="rgb(230,119,14)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="164.6" y="213" width="0.9" height="15.0" fill="rgb(243,66,25)" rx="2" ry="2" />
<text text-anchor="" x="167.58" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2707 (1 samples, 0.08%)</title><rect x="318.2" y="101" width="1.0" height="15.0" fill="rgb(208,197,5)" rx="2" ry="2" />
<text text-anchor="" x="321.20" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1339 (3 samples, 0.24%)</title><rect x="208.7" y="389" width="2.9" height="15.0" fill="rgb(217,201,52)" rx="2" ry="2" />
<text text-anchor="" x="211.75" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.16%)</title><rect x="665.8" y="293" width="1.9" height="15.0" fill="rgb(245,165,52)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (3 samples, 0.24%)</title><rect x="280.8" y="213" width="2.8" height="15.0" fill="rgb(213,226,25)" rx="2" ry="2" />
<text text-anchor="" x="283.76" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:_float_check_precision:35 (1 samples, 0.08%)</title><rect x="19.6" y="869" width="1.0" height="15.0" fill="rgb(245,47,42)" rx="2" ry="2" />
<text text-anchor="" x="22.60" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="838.6" y="149" width="1.0" height="15.0" fill="rgb(228,33,26)" rx="2" ry="2" />
<text text-anchor="" x="841.59" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (12 samples, 0.98%)</title><rect x="625.4" y="309" width="11.6" height="15.0" fill="rgb(219,144,25)" rx="2" ry="2" />
<text text-anchor="" x="628.44" 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>/.repo_requirements/odoo/odoo/models.py:resolve_2many_commands:4208 (1 samples, 0.08%)</title><rect x="679.2" y="373" width="1.0" height="15.0" fill="rgb(225,135,11)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="377.7" y="181" width="2.0" height="15.0" fill="rgb(244,111,25)" rx="2" ry="2" />
<text text-anchor="" x="380.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1067.1" y="277" width="1.0" height="15.0" fill="rgb(232,86,25)" rx="2" ry="2" />
<text text-anchor="" x="1070.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="409.4" y="181" width="1.0" height="15.0" fill="rgb(221,93,40)" rx="2" ry="2" />
<text text-anchor="" x="412.41" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="419.0" y="149" width="1.0" height="15.0" fill="rgb(217,187,7)" rx="2" ry="2" />
<text text-anchor="" x="422.02" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (6 samples, 0.49%)</title><rect x="309.6" y="197" width="5.7" height="15.0" fill="rgb(238,65,32)" rx="2" ry="2" />
<text text-anchor="" x="312.56" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.08%)</title><rect x="1077.7" y="213" width="0.9" height="15.0" fill="rgb(211,5,15)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/models.py:ids:4354 (1 samples, 0.08%)</title><rect x="30.2" y="1141" width="0.9" height="15.0" fill="rgb(214,179,25)" rx="2" ry="2" />
<text text-anchor="" x="33.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="428.6" y="165" width="1.0" height="15.0" fill="rgb(241,219,6)" rx="2" ry="2" />
<text text-anchor="" x="431.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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (5 samples, 0.41%)</title><rect x="682.1" y="341" width="4.8" height="15.0" fill="rgb(244,56,50)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/models.py:read:2611 (1 samples, 0.08%)</title><rect x="679.2" y="357" width="1.0" height="15.0" fill="rgb(213,53,35)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="768.5" y="165" width="1.0" height="15.0" fill="rgb(223,185,6)" rx="2" ry="2" />
<text text-anchor="" x="771.50" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (1 samples, 0.08%)</title><rect x="495.8" y="213" width="1.0" height="15.0" fill="rgb(231,166,35)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="299.0" y="165" width="1.0" height="15.0" fill="rgb(253,78,11)" rx="2" ry="2" />
<text text-anchor="" x="302.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1090.1" y="277" width="1.0" height="15.0" fill="rgb(212,55,14)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1156.4" y="293" width="1.0" height="15.0" fill="rgb(205,13,48)" rx="2" ry="2" />
<text text-anchor="" x="1159.40" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.08%)</title><rect x="1154.5" y="277" width="0.9" height="15.0" fill="rgb(246,207,47)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (2 samples, 0.16%)</title><rect x="27.3" y="885" width="1.9" height="15.0" fill="rgb(221,38,46)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="1047.9" y="245" width="1.0" height="15.0" fill="rgb(212,77,48)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="930.8" y="149" width="1.9" height="15.0" fill="rgb(250,48,51)" rx="2" ry="2" />
<text text-anchor="" x="933.76" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="876.0" y="165" width="1.0" height="15.0" fill="rgb(243,29,26)" rx="2" ry="2" />
<text text-anchor="" x="879.04" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (1 samples, 0.08%)</title><rect x="217.4" y="277" width="0.9" height="15.0" fill="rgb(232,112,2)" rx="2" ry="2" />
<text text-anchor="" x="220.39" 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>/.repo_requirements/odoo/odoo/models.py:_write:3260 (1 samples, 0.08%)</title><rect x="677.3" y="325" width="1.0" height="15.0" fill="rgb(248,55,34)" rx="2" ry="2" />
<text text-anchor="" x="680.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="292.3" y="181" width="0.9" height="15.0" fill="rgb(211,139,23)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/tools/misc.py:split_every:701 (1 samples, 0.08%)</title><rect x="644.6" y="309" width="1.0" height="15.0" fill="rgb(223,137,27)" rx="2" ry="2" />
<text text-anchor="" x="647.65" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="391.2" y="149" width="0.9" height="15.0" fill="rgb(245,130,37)" rx="2" ry="2" />
<text text-anchor="" x="394.17" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (2 samples, 0.16%)</title><rect x="639.8" y="309" width="2.0" height="15.0" fill="rgb(223,181,45)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (6 samples, 0.49%)</title><rect x="916.4" y="197" width="5.7" height="15.0" fill="rgb(229,109,31)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:register_payment:912 (1,091 samples, 88.77%)</title><rect x="129.1" y="485" width="1047.5" height="15.0" fill="rgb(243,154,29)" rx="2" ry="2" />
<text text-anchor="" x="132.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:register_payment:912</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="418.1" y="165" width="0.9" height="15.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="421.06" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="874.1" y="213" width="1.0" height="15.0" fill="rgb(219,32,16)" rx="2" ry="2" />
<text text-anchor="" x="877.12" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.08%)</title><rect x="15.8" y="757" width="0.9" height="15.0" fill="rgb(243,6,8)" rx="2" ry="2" />
<text text-anchor="" x="18.76" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="870.3" y="149" width="0.9" height="15.0" fill="rgb(242,213,23)" rx="2" ry="2" />
<text text-anchor="" x="873.28" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="481.4" y="133" width="1.9" height="15.0" fill="rgb(223,184,44)" rx="2" ry="2" />
<text text-anchor="" x="484.42" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="915.4" y="149" width="1.0" height="15.0" fill="rgb(211,178,18)" rx="2" ry="2" />
<text text-anchor="" x="918.40" 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>/.repo_requirements/odoo/odoo/osv/expression.py:select_from_where:446 (1 samples, 0.08%)</title><rect x="684.0" y="245" width="1.0" height="15.0" fill="rgb(208,38,3)" rx="2" ry="2" />
<text text-anchor="" x="687.01" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="330.7" y="149" width="0.9" height="15.0" fill="rgb(244,160,4)" rx="2" ry="2" />
<text text-anchor="" x="333.68" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="26.3" y="805" width="1.0" height="15.0" fill="rgb(235,94,12)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="276.0" y="69" width="0.9" height="15.0" fill="rgb(238,83,33)" rx="2" ry="2" />
<text text-anchor="" x="278.96" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="615.8" y="245" width="2.0" height="15.0" fill="rgb(214,95,49)" rx="2" ry="2" />
<text text-anchor="" x="618.84" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (21 samples, 1.71%)</title><rect x="10.0" y="1061" width="20.2" height="15.0" fill="rgb(238,132,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="541.0" y="181" width="1.9" height="15.0" fill="rgb(212,213,51)" rx="2" ry="2" />
<text text-anchor="" x="543.95" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="444.9" y="165" width="2.0" height="15.0" fill="rgb(252,168,20)" rx="2" ry="2" />
<text text-anchor="" x="447.94" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="305.7" y="197" width="1.9" height="15.0" fill="rgb(247,169,36)" rx="2" ry="2" />
<text text-anchor="" x="308.72" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (4 samples, 0.33%)</title><rect x="710.9" y="213" width="3.8" height="15.0" fill="rgb(212,56,25)" rx="2" ry="2" />
<text text-anchor="" x="713.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (1 samples, 0.08%)</title><rect x="606.2" y="309" width="1.0" height="15.0" fill="rgb(213,160,14)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (3 samples, 0.24%)</title><rect x="525.6" y="181" width="2.9" height="15.0" fill="rgb(216,145,33)" rx="2" ry="2" />
<text text-anchor="" x="528.59" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="537.1" y="197" width="1.0" height="15.0" fill="rgb(208,92,28)" rx="2" ry="2" />
<text text-anchor="" x="540.11" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="25.4" y="293" width="0.9" height="15.0" fill="rgb(232,69,37)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="265.4" y="85" width="1.0" height="15.0" fill="rgb(246,137,49)" rx="2" ry="2" />
<text text-anchor="" x="268.39" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="1058.5" y="261" width="1.9" height="15.0" fill="rgb(226,217,7)" rx="2" ry="2" />
<text text-anchor="" x="1061.46" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="801.1" y="53" width="1.0" height="15.0" fill="rgb(242,101,24)" rx="2" ry="2" />
<text text-anchor="" x="804.15" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.08%)</title><rect x="12.9" y="805" width="0.9" height="15.0" fill="rgb(252,133,43)" rx="2" ry="2" />
<text text-anchor="" x="15.88" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="396.9" y="213" width="1.0" height="15.0" fill="rgb(249,168,48)" rx="2" ry="2" />
<text text-anchor="" x="399.93" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="1023.9" y="165" width="3.8" height="15.0" fill="rgb(213,70,26)" rx="2" ry="2" />
<text text-anchor="" x="1026.90" 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>/.repo_requirements/odoo/odoo/models.py:search_read:4244 (1 samples, 0.08%)</title><rect x="1177.5" y="645" width="1.0" height="15.0" fill="rgb(214,38,32)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/api.py:get:961 (11 samples, 0.90%)</title><rect x="192.4" y="309" width="10.6" height="15.0" fill="rgb(254,140,53)" rx="2" ry="2" />
<text text-anchor="" x="195.42" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.08%)</title><rect x="124.3" y="405" width="0.9" height="15.0" fill="rgb(249,101,47)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="292.3" y="197" width="0.9" height="15.0" fill="rgb(223,135,28)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="750.3" y="69" width="0.9" height="15.0" fill="rgb(240,213,34)" rx="2" ry="2" />
<text text-anchor="" x="753.26" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="504.5" y="213" width="0.9" height="15.0" fill="rgb(205,104,20)" rx="2" ry="2" />
<text text-anchor="" x="507.47" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="911.6" y="149" width="0.9" height="15.0" fill="rgb(251,69,30)" rx="2" ry="2" />
<text text-anchor="" x="914.56" 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>/home/odoo/server-tools/profiler/hooks.py:dispatch_rpc_f:51 (1 samples, 0.08%)</title><rect x="1186.2" y="613" width="0.9" height="15.0" fill="rgb(239,184,10)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="929.8" y="149" width="1.0" height="15.0" fill="rgb(208,167,39)" rx="2" ry="2" />
<text text-anchor="" x="932.80" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="979.7" y="181" width="1.0" height="15.0" fill="rgb(227,96,40)" rx="2" ry="2" />
<text text-anchor="" x="982.73" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1022.9" y="181" width="1.0" height="15.0" fill="rgb(230,5,11)" rx="2" ry="2" />
<text text-anchor="" x="1025.94" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2732 (1 samples, 0.08%)</title><rect x="130.0" y="309" width="1.0" height="15.0" fill="rgb(253,102,17)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:get_user_roots:201 (3 samples, 0.24%)</title><rect x="1178.5" y="597" width="2.9" height="15.0" fill="rgb(210,205,33)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="758.9" y="181" width="1.0" height="15.0" fill="rgb(247,93,48)" rx="2" ry="2" />
<text text-anchor="" x="761.90" 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>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="341" width="0.9" height="15.0" fill="rgb(234,111,48)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="256.8" y="197" width="0.9" height="15.0" fill="rgb(246,53,40)" rx="2" ry="2" />
<text text-anchor="" x="259.75" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (21 samples, 1.71%)</title><rect x="257.7" y="181" width="20.2" height="15.0" fill="rgb(221,93,29)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="755.1" y="213" width="1.9" height="15.0" fill="rgb(206,111,50)" rx="2" ry="2" />
<text text-anchor="" x="758.06" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="507.3" y="181" width="1.0" height="15.0" fill="rgb(231,34,15)" rx="2" ry="2" />
<text text-anchor="" x="510.35" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.08%)</title><rect x="463.2" y="181" width="0.9" height="15.0" fill="rgb(252,209,20)" rx="2" ry="2" />
<text text-anchor="" x="466.18" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (340 samples, 27.66%)</title><rect x="710.9" y="277" width="326.4" height="15.0" fill="rgb(222,163,50)" rx="2" ry="2" />
<text text-anchor="" x="713.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:dete..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="953.8" y="181" width="1.0" height="15.0" fill="rgb(244,118,26)" rx="2" ry="2" />
<text text-anchor="" x="956.81" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (327 samples, 26.61%)</title><rect x="239.5" y="277" width="313.9" height="15.0" fill="rgb(250,185,22)" rx="2" ry="2" />
<text text-anchor="" x="242.47" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:de..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1178.5" y="501" width="0.9" height="15.0" fill="rgb(218,118,34)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="927.9" y="181" width="0.9" height="15.0" fill="rgb(227,48,39)" rx="2" ry="2" />
<text text-anchor="" x="930.88" 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>/.repo_requirements/odoo/odoo/service/model.py:wrapper:97 (4 samples, 0.33%)</title><rect x="22.5" y="789" width="3.8" height="15.0" fill="rgb(247,155,6)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (3 samples, 0.24%)</title><rect x="492.0" y="181" width="2.9" height="15.0" fill="rgb(244,144,43)" rx="2" ry="2" />
<text text-anchor="" x="494.99" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="1077.7" y="229" width="0.9" height="15.0" fill="rgb(217,104,27)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (1 samples, 0.08%)</title><rect x="283.6" y="213" width="1.0" height="15.0" fill="rgb(221,119,17)" rx="2" ry="2" />
<text text-anchor="" x="286.64" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="772.3" y="197" width="1.0" height="15.0" fill="rgb(223,14,15)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (9 samples, 0.73%)</title><rect x="981.7" y="213" width="8.6" height="15.0" fill="rgb(215,225,32)" rx="2" ry="2" />
<text text-anchor="" x="984.65" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="950.9" y="181" width="1.0" height="15.0" fill="rgb(224,2,10)" rx="2" ry="2" />
<text text-anchor="" x="953.93" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="291.3" y="133" width="1.0" height="15.0" fill="rgb(229,86,9)" rx="2" ry="2" />
<text text-anchor="" x="294.32" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (4 samples, 0.33%)</title><rect x="273.1" y="85" width="3.8" height="15.0" fill="rgb(235,35,35)" rx="2" ry="2" />
<text text-anchor="" x="276.08" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="460.3" y="197" width="1.9" height="15.0" fill="rgb(231,21,36)" rx="2" ry="2" />
<text text-anchor="" x="463.30" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (15 samples, 1.22%)</title><rect x="1131.4" y="293" width="14.4" height="15.0" fill="rgb(245,121,54)" rx="2" ry="2" />
<text text-anchor="" x="1134.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>/.repo_requirements/odoo/odoo/service/model.py:wrapper:97 (1,105 samples, 89.91%)</title><rect x="122.3" y="773" width="1061.0" height="15.0" fill="rgb(241,221,37)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/model.py:wrapper:97</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="918.3" y="149" width="0.9" height="15.0" fill="rgb(208,133,39)" rx="2" ry="2" />
<text text-anchor="" x="921.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="464.1" y="181" width="1.0" height="15.0" fill="rgb(214,78,30)" rx="2" ry="2" />
<text text-anchor="" x="467.14" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (3 samples, 0.24%)</title><rect x="220.3" y="277" width="2.8" height="15.0" fill="rgb(213,74,22)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.08%)</title><rect x="1070.0" y="293" width="0.9" height="15.0" fill="rgb(252,113,2)" rx="2" ry="2" />
<text text-anchor="" x="1072.98" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_done:4893 (1 samples, 0.08%)</title><rect x="678.3" y="325" width="0.9" height="15.0" fill="rgb(222,193,53)" rx="2" ry="2" />
<text text-anchor="" x="681.25" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (2 samples, 0.16%)</title><rect x="333.6" y="149" width="1.9" height="15.0" fill="rgb(222,136,26)" rx="2" ry="2" />
<text text-anchor="" x="336.56" 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>/.repo_requirements/odoo/odoo/http.py:__call__:1293 (1,113 samples, 90.56%)</title><rect x="121.4" y="949" width="1068.6" height="15.0" fill="rgb(245,14,31)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1293</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2611 (1 samples, 0.08%)</title><rect x="22.5" y="357" width="0.9" height="15.0" fill="rgb(234,133,11)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="843.4" y="149" width="1.0" height="15.0" fill="rgb(208,183,4)" rx="2" ry="2" />
<text text-anchor="" x="846.39" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="770.4" y="117" width="1.0" height="15.0" fill="rgb(232,104,27)" rx="2" ry="2" />
<text text-anchor="" x="773.42" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="990.3" y="101" width="1.0" height="15.0" fill="rgb(237,29,22)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (3 samples, 0.24%)</title><rect x="1187.1" y="533" width="2.9" height="15.0" fill="rgb(228,69,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (4 samples, 0.33%)</title><rect x="22.5" y="565" width="3.8" height="15.0" fill="rgb(212,124,28)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (2 samples, 0.16%)</title><rect x="175.1" y="325" width="2.0" height="15.0" fill="rgb(252,150,17)" rx="2" ry="2" />
<text text-anchor="" x="178.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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (7 samples, 0.57%)</title><rect x="959.6" y="213" width="6.7" height="15.0" fill="rgb(212,164,2)" rx="2" ry="2" />
<text text-anchor="" x="962.57" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="284.6" y="213" width="1.0" height="15.0" fill="rgb(243,163,32)" rx="2" ry="2" />
<text text-anchor="" x="287.60" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="916.4" y="181" width="3.8" height="15.0" fill="rgb(226,214,53)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:_get_asset_nodes:299 (3 samples, 0.24%)</title><rect x="1187.1" y="517" width="2.9" height="15.0" fill="rgb(232,67,7)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:load_menus:231 (3 samples, 0.24%)</title><rect x="1178.5" y="613" width="2.9" height="15.0" fill="rgb(227,227,36)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="765.6" y="133" width="1.0" height="15.0" fill="rgb(218,127,3)" rx="2" ry="2" />
<text text-anchor="" x="768.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="805.9" y="181" width="1.0" height="15.0" fill="rgb(222,62,41)" rx="2" ry="2" />
<text text-anchor="" x="808.95" 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>/.repo_requirements/odoo/odoo/api.py:protecting:871 (4 samples, 0.33%)</title><rect x="26.3" y="933" width="3.9" height="15.0" fill="rgb(217,86,39)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (21 samples, 1.71%)</title><rect x="10.0" y="997" width="20.2" height="15.0" fill="rgb(223,173,14)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="636.0" y="277" width="1.0" height="15.0" fill="rgb(227,165,54)" rx="2" ry="2" />
<text text-anchor="" x="639.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="713.8" y="85" width="0.9" height="15.0" fill="rgb(245,161,41)" rx="2" ry="2" />
<text text-anchor="" x="716.78" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="1177.5" y="469" width="1.0" height="15.0" fill="rgb(236,118,18)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.08%)</title><rect x="218.3" y="325" width="1.0" height="15.0" fill="rgb(243,154,0)" rx="2" ry="2" />
<text text-anchor="" x="221.35" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="294.2" y="197" width="1.9" height="15.0" fill="rgb(241,58,3)" rx="2" ry="2" />
<text text-anchor="" x="297.20" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="316.3" y="165" width="0.9" height="15.0" fill="rgb(206,49,17)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.08%)</title><rect x="24.4" y="325" width="1.0" height="15.0" fill="rgb(230,205,47)" rx="2" ry="2" />
<text text-anchor="" x="27.40" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="860.7" y="117" width="0.9" height="15.0" fill="rgb(208,227,19)" rx="2" ry="2" />
<text text-anchor="" x="863.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1183.3" y="629" width="0.9" height="15.0" fill="rgb(218,125,32)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="1166.0" y="277" width="1.0" height="15.0" fill="rgb(210,84,8)" rx="2" ry="2" />
<text text-anchor="" x="1169.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>/usr/lib/python3.5/threading.py:run:862 (1,128 samples, 91.78%)</title><rect x="107.0" y="1157" width="1083.0" height="15.0" fill="rgb(222,195,24)" rx="2" ry="2" />
<text text-anchor="" x="109.97" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:run:862</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="21.5" y="773" width="1.0" height="15.0" fill="rgb(215,9,3)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="626.4" y="277" width="1.0" height="15.0" fill="rgb(223,28,38)" rx="2" ry="2" />
<text text-anchor="" x="629.40" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="935.6" y="149" width="0.9" height="15.0" fill="rgb(239,227,14)" rx="2" ry="2" />
<text text-anchor="" x="938.57" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_done:4893 (1 samples, 0.08%)</title><rect x="565.0" y="325" width="0.9" height="15.0" fill="rgb(226,10,24)" rx="2" ry="2" />
<text text-anchor="" x="567.96" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="685.9" y="277" width="1.0" height="15.0" fill="rgb(220,37,6)" rx="2" ry="2" />
<text text-anchor="" x="688.93" 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>/.repo_requirements/odoo/odoo/models.py:search_read:4244 (2 samples, 0.16%)</title><rect x="1181.4" y="693" width="1.9" height="15.0" fill="rgb(210,131,13)" rx="2" ry="2" />
<text text-anchor="" x="1184.36" 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>&lt;string&gt;:__new__:14 (1 samples, 0.08%)</title><rect x="215.5" y="261" width="0.9" height="15.0" fill="rgb(233,216,42)" rx="2" ry="2" />
<text text-anchor="" x="218.47" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="804.0" y="117" width="1.0" height="15.0" fill="rgb(214,102,33)" rx="2" ry="2" />
<text text-anchor="" x="807.03" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="1180.4" y="421" width="1.0" height="15.0" fill="rgb(251,144,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (6 samples, 0.49%)</title><rect x="419.0" y="181" width="5.8" height="15.0" fill="rgb(253,19,22)" rx="2" ry="2" />
<text text-anchor="" x="422.02" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="925.0" y="197" width="1.0" height="15.0" fill="rgb(218,140,42)" rx="2" ry="2" />
<text text-anchor="" x="928.00" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="914.4" y="165" width="1.0" height="15.0" fill="rgb(235,95,26)" rx="2" ry="2" />
<text text-anchor="" x="917.44" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (5 samples, 0.41%)</title><rect x="14.8" y="885" width="4.8" height="15.0" fill="rgb(232,62,33)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="1122.8" y="309" width="1.0" height="15.0" fill="rgb(230,44,23)" rx="2" ry="2" />
<text text-anchor="" x="1125.79" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="619.7" y="277" width="0.9" height="15.0" fill="rgb(231,141,17)" rx="2" ry="2" />
<text text-anchor="" x="622.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="25.4" y="309" width="0.9" height="15.0" fill="rgb(253,54,50)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="686.9" y="325" width="1.0" height="15.0" fill="rgb(239,11,42)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (1 samples, 0.08%)</title><rect x="594.7" y="261" width="1.0" height="15.0" fill="rgb(221,97,43)" rx="2" ry="2" />
<text text-anchor="" x="597.72" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (6 samples, 0.49%)</title><rect x="379.7" y="197" width="5.7" height="15.0" fill="rgb(241,173,32)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1057.5" y="277" width="1.0" height="15.0" fill="rgb(242,64,53)" rx="2" ry="2" />
<text text-anchor="" x="1060.50" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="259.6" y="101" width="1.0" height="15.0" fill="rgb(239,165,1)" rx="2" ry="2" />
<text text-anchor="" x="262.63" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="365.2" y="181" width="1.0" height="15.0" fill="rgb(214,176,21)" rx="2" ry="2" />
<text text-anchor="" x="368.25" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:897 (1 samples, 0.08%)</title><rect x="665.8" y="229" width="0.9" height="15.0" fill="rgb(247,39,49)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.08%)</title><rect x="220.3" y="229" width="0.9" height="15.0" fill="rgb(207,216,21)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.16%)</title><rect x="125.2" y="357" width="1.9" height="15.0" fill="rgb(205,150,45)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="461.3" y="165" width="0.9" height="15.0" fill="rgb(226,95,4)" rx="2" ry="2" />
<text text-anchor="" x="464.26" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="677.3" y="309" width="1.0" height="15.0" fill="rgb(219,139,31)" rx="2" ry="2" />
<text text-anchor="" x="680.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="273.1" y="69" width="0.9" height="15.0" fill="rgb(241,222,3)" rx="2" ry="2" />
<text text-anchor="" x="276.08" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.08%)</title><rect x="686.9" y="261" width="1.0" height="15.0" fill="rgb(209,154,54)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/base64.py:b64encode:59 (1 samples, 0.08%)</title><rect x="1183.3" y="533" width="0.9" height="15.0" fill="rgb(211,26,53)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:3227 (1 samples, 0.08%)</title><rect x="565.9" y="309" width="1.0" height="15.0" fill="rgb(233,225,41)" rx="2" ry="2" />
<text text-anchor="" x="568.92" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1052 (1 samples, 0.08%)</title><rect x="1177.5" y="581" width="1.0" height="15.0" fill="rgb(253,22,13)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="857.8" y="165" width="1.9" height="15.0" fill="rgb(211,136,46)" rx="2" ry="2" />
<text text-anchor="" x="860.79" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (1 samples, 0.08%)</title><rect x="219.3" y="341" width="1.0" height="15.0" fill="rgb(218,32,21)" rx="2" ry="2" />
<text text-anchor="" x="222.31" 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>/.repo_requirements/odoo/odoo/models.py:_create:3514 (8 samples, 0.65%)</title><rect x="212.6" y="357" width="7.7" height="15.0" fill="rgb(245,154,27)" rx="2" ry="2" />
<text text-anchor="" x="215.59" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (1 samples, 0.08%)</title><rect x="258.7" y="69" width="0.9" height="15.0" fill="rgb(234,21,30)" rx="2" ry="2" />
<text text-anchor="" x="261.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (7 samples, 0.57%)</title><rect x="942.3" y="213" width="6.7" height="15.0" fill="rgb(210,204,34)" rx="2" ry="2" />
<text text-anchor="" x="945.29" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="871.2" y="197" width="1.0" height="15.0" fill="rgb(231,48,23)" rx="2" ry="2" />
<text text-anchor="" x="874.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="895.2" y="197" width="1.0" height="15.0" fill="rgb(221,225,42)" rx="2" ry="2" />
<text text-anchor="" x="898.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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="246.2" y="213" width="1.0" height="15.0" fill="rgb(240,203,28)" rx="2" ry="2" />
<text text-anchor="" x="249.19" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="671.5" y="261" width="1.0" height="15.0" fill="rgb(241,225,15)" rx="2" ry="2" />
<text text-anchor="" x="674.53" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="1080.5" y="309" width="1.0" height="15.0" fill="rgb(213,159,42)" rx="2" ry="2" />
<text text-anchor="" x="1083.55" 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>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4498 (2 samples, 0.16%)</title><rect x="489.1" y="197" width="1.9" height="15.0" fill="rgb(235,135,25)" rx="2" ry="2" />
<text text-anchor="" x="492.10" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="506.4" y="165" width="0.9" height="15.0" fill="rgb(246,212,43)" rx="2" ry="2" />
<text text-anchor="" x="509.39" 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>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:875 (1 samples, 0.08%)</title><rect x="30.2" y="1157" width="0.9" height="15.0" fill="rgb(213,40,46)" rx="2" ry="2" />
<text text-anchor="" x="33.16" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (2 samples, 0.16%)</title><rect x="286.5" y="197" width="1.9" height="15.0" fill="rgb(229,89,35)" rx="2" ry="2" />
<text text-anchor="" x="289.52" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="1114.1" y="293" width="1.0" height="15.0" fill="rgb(239,134,29)" rx="2" ry="2" />
<text text-anchor="" x="1117.15" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="21.5" y="725" width="1.0" height="15.0" fill="rgb(231,209,6)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="891.4" y="197" width="1.0" height="15.0" fill="rgb(243,8,39)" rx="2" ry="2" />
<text text-anchor="" x="894.40" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="1030.6" y="181" width="1.0" height="15.0" fill="rgb(246,213,49)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:_compiled_fn:343 (3 samples, 0.24%)</title><rect x="1187.1" y="613" width="2.9" height="15.0" fill="rgb(205,6,23)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="515.0" y="181" width="1.0" height="15.0" fill="rgb(216,158,44)" rx="2" ry="2" />
<text text-anchor="" x="518.03" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="911.6" y="133" width="0.9" height="15.0" fill="rgb(253,222,9)" rx="2" ry="2" />
<text text-anchor="" x="914.56" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (94 samples, 7.65%)</title><rect x="586.1" y="341" width="90.2" height="15.0" fill="rgb(221,24,26)" rx="2" ry="2" />
<text text-anchor="" x="589.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="27.3" y="821" width="0.9" height="15.0" fill="rgb(234,85,5)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/models.py:resolve_2many_commands:4204 (2 samples, 0.16%)</title><rect x="209.7" y="373" width="1.9" height="15.0" fill="rgb(249,36,44)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="573.6" y="245" width="1.0" height="15.0" fill="rgb(223,46,42)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="274.0" y="69" width="1.0" height="15.0" fill="rgb(218,168,47)" rx="2" ry="2" />
<text text-anchor="" x="277.04" 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>/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:342 (1 samples, 0.08%)</title><rect x="121.4" y="853" width="0.9" height="15.0" fill="rgb(231,64,41)" rx="2" ry="2" />
<text text-anchor="" x="124.38" 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>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (14 samples, 1.14%)</title><rect x="966.3" y="213" width="13.4" height="15.0" fill="rgb(254,40,43)" rx="2" ry="2" />
<text text-anchor="" x="969.29" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (356 samples, 28.97%)</title><rect x="703.2" y="325" width="341.8" height="15.0" fill="rgb(233,198,9)" rx="2" ry="2" />
<text text-anchor="" x="706.21" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:&lt;dictc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:898 (1 samples, 0.08%)</title><rect x="678.3" y="293" width="0.9" height="15.0" fill="rgb(206,40,29)" rx="2" ry="2" />
<text text-anchor="" x="681.25" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="892.4" y="197" width="0.9" height="15.0" fill="rgb(249,200,51)" rx="2" ry="2" />
<text text-anchor="" x="895.36" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4917 (1 samples, 0.08%)</title><rect x="585.1" y="341" width="1.0" height="15.0" fill="rgb(210,113,8)" rx="2" ry="2" />
<text text-anchor="" x="588.12" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-20&gt;:check:2 (1 samples, 0.08%)</title><rect x="221.2" y="229" width="1.0" height="15.0" fill="rgb(228,138,53)" rx="2" ry="2" />
<text text-anchor="" x="224.23" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="475.7" y="149" width="0.9" height="15.0" fill="rgb(228,196,25)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (5 samples, 0.41%)</title><rect x="155.9" y="245" width="4.8" height="15.0" fill="rgb(241,61,52)" rx="2" ry="2" />
<text text-anchor="" x="158.94" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="22.5" y="629" width="3.8" height="15.0" fill="rgb(215,26,32)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (2 samples, 0.16%)</title><rect x="938.4" y="213" width="2.0" height="15.0" fill="rgb(207,163,43)" rx="2" ry="2" />
<text text-anchor="" x="941.45" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="537.1" y="181" width="1.0" height="15.0" fill="rgb(223,26,9)" rx="2" ry="2" />
<text text-anchor="" x="540.11" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="916.4" y="149" width="0.9" height="15.0" fill="rgb(209,119,19)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="494.9" y="165" width="0.9" height="15.0" fill="rgb(254,157,3)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:4772 (1 samples, 0.08%)</title><rect x="26.3" y="773" width="1.0" height="15.0" fill="rgb(254,10,7)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="138.7" y="261" width="0.9" height="15.0" fill="rgb(207,66,10)" rx="2" ry="2" />
<text text-anchor="" x="141.66" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (1 samples, 0.08%)</title><rect x="1054.6" y="325" width="1.0" height="15.0" fill="rgb(236,220,14)" rx="2" ry="2" />
<text text-anchor="" x="1057.62" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/posixpath.py:join:91 (1 samples, 0.08%)</title><rect x="1189.0" y="421" width="1.0" height="15.0" fill="rgb(253,54,16)" rx="2" ry="2" />
<text text-anchor="" x="1192.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="492.0" y="165" width="0.9" height="15.0" fill="rgb(213,135,2)" rx="2" ry="2" />
<text text-anchor="" x="494.99" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (2 samples, 0.16%)</title><rect x="549.6" y="165" width="1.9" height="15.0" fill="rgb(207,129,54)" rx="2" ry="2" />
<text text-anchor="" x="552.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="627.4" y="293" width="0.9" height="15.0" fill="rgb(230,70,47)" rx="2" ry="2" />
<text text-anchor="" x="630.36" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="1092.1" y="245" width="1.9" height="15.0" fill="rgb(211,215,36)" rx="2" ry="2" />
<text text-anchor="" x="1095.07" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="756.0" y="181" width="1.0" height="15.0" fill="rgb(239,89,14)" rx="2" ry="2" />
<text text-anchor="" x="759.02" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (2 samples, 0.16%)</title><rect x="1151.6" y="197" width="1.9" height="15.0" fill="rgb(228,137,14)" rx="2" ry="2" />
<text text-anchor="" x="1154.59" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="512.1" y="181" width="1.0" height="15.0" fill="rgb(229,98,23)" rx="2" ry="2" />
<text text-anchor="" x="515.15" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (4 samples, 0.33%)</title><rect x="125.2" y="389" width="3.9" height="15.0" fill="rgb(216,127,39)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="834.8" y="133" width="0.9" height="15.0" fill="rgb(226,74,48)" rx="2" ry="2" />
<text text-anchor="" x="837.75" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="876.0" y="133" width="1.0" height="15.0" fill="rgb(249,120,26)" rx="2" ry="2" />
<text text-anchor="" x="879.04" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:render:57 (2 samples, 0.16%)</title><rect x="1187.1" y="453" width="1.9" height="15.0" fill="rgb(238,93,31)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="794.4" y="181" width="1.0" height="15.0" fill="rgb(222,26,25)" rx="2" ry="2" />
<text text-anchor="" x="797.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="525.6" y="133" width="1.0" height="15.0" fill="rgb(242,89,53)" rx="2" ry="2" />
<text text-anchor="" x="528.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="748.3" y="69" width="2.0" height="15.0" fill="rgb(228,132,34)" rx="2" ry="2" />
<text text-anchor="" x="751.34" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1041 (1 samples, 0.08%)</title><rect x="566.9" y="309" width="0.9" height="15.0" fill="rgb(218,210,22)" rx="2" ry="2" />
<text text-anchor="" x="569.88" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="311.5" y="165" width="0.9" height="15.0" fill="rgb(219,126,1)" rx="2" ry="2" />
<text text-anchor="" x="314.48" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (366 samples, 29.78%)</title><rect x="699.4" y="341" width="351.4" height="15.0" fill="rgb(247,46,43)" rx="2" ry="2" />
<text text-anchor="" x="702.37" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:recompu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="216.4" y="277" width="1.0" height="15.0" fill="rgb(254,135,43)" rx="2" ry="2" />
<text text-anchor="" x="219.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="298.0" y="165" width="1.0" height="15.0" fill="rgb(235,80,3)" rx="2" ry="2" />
<text text-anchor="" x="301.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="642.7" y="277" width="1.0" height="15.0" fill="rgb(211,115,46)" rx="2" ry="2" />
<text text-anchor="" x="645.73" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.08%)</title><rect x="169.4" y="293" width="0.9" height="15.0" fill="rgb(205,70,45)" rx="2" ry="2" />
<text text-anchor="" x="172.38" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4329 (1 samples, 0.08%)</title><rect x="312.4" y="165" width="1.0" height="15.0" fill="rgb(229,69,27)" rx="2" ry="2" />
<text text-anchor="" x="315.44" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.08%)</title><rect x="28.2" y="821" width="1.0" height="15.0" fill="rgb(234,88,7)" rx="2" ry="2" />
<text text-anchor="" x="31.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>/.repo_requirements/odoo/odoo/models.py:_check_qorder:3580 (1 samples, 0.08%)</title><rect x="594.7" y="229" width="1.0" height="15.0" fill="rgb(241,99,32)" rx="2" ry="2" />
<text text-anchor="" x="597.72" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (6 samples, 0.49%)</title><rect x="429.6" y="197" width="5.7" height="15.0" fill="rgb(211,111,20)" rx="2" ry="2" />
<text text-anchor="" x="432.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="1057.5" y="293" width="1.0" height="15.0" fill="rgb(206,110,23)" rx="2" ry="2" />
<text text-anchor="" x="1060.50" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1031.6" y="213" width="0.9" height="15.0" fill="rgb(223,8,8)" rx="2" ry="2" />
<text text-anchor="" x="1034.58" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (3 samples, 0.24%)</title><rect x="1150.6" y="261" width="2.9" height="15.0" fill="rgb(215,213,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.63" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (4 samples, 0.33%)</title><rect x="846.3" y="197" width="3.8" height="15.0" fill="rgb(247,30,47)" rx="2" ry="2" />
<text text-anchor="" x="849.27" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="901.0" y="181" width="1.0" height="15.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="904.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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="1179.4" y="341" width="1.0" height="15.0" fill="rgb(233,51,7)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/models.py:_write:3136 (12 samples, 0.98%)</title><rect x="589.9" y="325" width="11.5" height="15.0" fill="rgb(237,49,41)" rx="2" ry="2" />
<text text-anchor="" x="592.92" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="912.5" y="133" width="1.0" height="15.0" fill="rgb(228,144,47)" rx="2" ry="2" />
<text text-anchor="" x="915.52" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:post:166 (1 samples, 0.08%)</title><rect x="1175.6" y="389" width="1.0" height="15.0" fill="rgb(216,162,1)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="994.1" y="181" width="1.0" height="15.0" fill="rgb(235,41,43)" rx="2" ry="2" />
<text text-anchor="" x="997.13" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="838.6" y="117" width="1.0" height="15.0" fill="rgb(252,83,50)" rx="2" ry="2" />
<text text-anchor="" x="841.59" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="839.6" y="149" width="0.9" height="15.0" fill="rgb(218,14,37)" rx="2" ry="2" />
<text text-anchor="" x="842.55" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (8 samples, 0.65%)</title><rect x="972.1" y="149" width="7.6" height="15.0" fill="rgb(242,82,18)" rx="2" ry="2" />
<text text-anchor="" x="975.05" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="124.3" y="453" width="0.9" height="15.0" fill="rgb(219,166,17)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/home/odoo/server-tools/profiler/hooks.py:webreq_f:27 (4 samples, 0.33%)</title><rect x="22.5" y="741" width="3.8" height="15.0" fill="rgb(247,162,51)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1102 (1 samples, 0.08%)</title><rect x="475.7" y="197" width="0.9" height="15.0" fill="rgb(253,107,14)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="207.8" y="389" width="0.9" height="15.0" fill="rgb(231,120,54)" rx="2" ry="2" />
<text text-anchor="" x="210.79" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="1077.7" y="245" width="0.9" height="15.0" fill="rgb(211,70,17)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="905.8" y="101" width="1.0" height="15.0" fill="rgb(232,187,13)" rx="2" ry="2" />
<text text-anchor="" x="908.80" 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>/.repo_requirements/odoo/odoo/fields.py:read:2253 (1 samples, 0.08%)</title><rect x="737.8" y="133" width="0.9" height="15.0" fill="rgb(210,158,14)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="506.4" y="181" width="0.9" height="15.0" fill="rgb(226,7,26)" rx="2" ry="2" />
<text text-anchor="" x="509.39" 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>/home/odoo/odoo-11.0/addons/mail/models/mail_channel.py:_define_command_help:675 (1 samples, 0.08%)</title><rect x="122.3" y="645" width="1.0" height="15.0" fill="rgb(221,35,43)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="784.8" y="181" width="1.0" height="15.0" fill="rgb(223,169,41)" rx="2" ry="2" />
<text text-anchor="" x="787.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="397.9" y="165" width="1.0" height="15.0" fill="rgb(214,131,31)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1182.3" y="661" width="1.0" height="15.0" fill="rgb(245,11,33)" rx="2" ry="2" />
<text text-anchor="" x="1185.32" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="454.5" y="197" width="1.0" height="15.0" fill="rgb(206,182,14)" rx="2" ry="2" />
<text text-anchor="" x="457.54" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="155.0" y="245" width="0.9" height="15.0" fill="rgb(237,51,44)" rx="2" ry="2" />
<text text-anchor="" x="157.98" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="215.5" y="293" width="0.9" height="15.0" fill="rgb(209,160,49)" rx="2" ry="2" />
<text text-anchor="" x="218.47" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="639.8" y="245" width="1.0" height="15.0" fill="rgb(232,137,54)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="482.4" y="117" width="0.9" height="15.0" fill="rgb(253,24,43)" rx="2" ry="2" />
<text text-anchor="" x="485.38" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="123.3" y="421" width="1.0" height="15.0" fill="rgb(229,222,42)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/api.py:call_kw:687 (5 samples, 0.41%)</title><rect x="1176.6" y="677" width="4.8" height="15.0" fill="rgb(238,125,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="143.5" y="245" width="0.9" height="15.0" fill="rgb(231,227,54)" rx="2" ry="2" />
<text text-anchor="" x="146.46" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1007.6" y="181" width="0.9" height="15.0" fill="rgb(253,186,42)" rx="2" ry="2" />
<text text-anchor="" x="1010.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="235.6" y="293" width="1.0" height="15.0" fill="rgb(207,139,53)" rx="2" ry="2" />
<text text-anchor="" x="238.63" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="1160.2" y="309" width="1.0" height="15.0" fill="rgb(210,40,32)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>/.repo_requirements/odoo/odoo/models.py:_write:3182 (1 samples, 0.08%)</title><rect x="1118.0" y="325" width="1.0" height="15.0" fill="rgb(208,39,22)" rx="2" ry="2" />
<text text-anchor="" x="1120.99" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="416.1" y="149" width="1.0" height="15.0" fill="rgb(215,196,17)" rx="2" ry="2" />
<text text-anchor="" x="419.14" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="548.6" y="117" width="1.0" height="15.0" fill="rgb(245,111,50)" rx="2" ry="2" />
<text text-anchor="" x="551.63" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (3 samples, 0.24%)</title><rect x="220.3" y="293" width="2.8" height="15.0" fill="rgb(233,124,13)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:render:1217 (3 samples, 0.24%)</title><rect x="1187.1" y="661" width="2.9" height="15.0" fill="rgb(246,42,43)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="21.5" y="853" width="1.0" height="15.0" fill="rgb(252,84,2)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/utils/pbkdf2.py:gen:407 (1 samples, 0.08%)</title><rect x="1186.2" y="437" width="0.9" height="15.0" fill="rgb(215,33,11)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.16%)</title><rect x="318.2" y="117" width="1.9" height="15.0" fill="rgb(210,58,17)" rx="2" ry="2" />
<text text-anchor="" x="321.20" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.08%)</title><rect x="1187.1" y="197" width="1.0" height="15.0" fill="rgb(235,137,44)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/addons/website/controllers/main.py:web_login:91 (1 samples, 0.08%)</title><rect x="1186.2" y="709" width="0.9" height="15.0" fill="rgb(237,103,49)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="348.9" y="149" width="1.0" height="15.0" fill="rgb(248,59,36)" rx="2" ry="2" />
<text text-anchor="" x="351.93" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="625.4" y="277" width="1.0" height="15.0" fill="rgb(211,56,17)" rx="2" ry="2" />
<text text-anchor="" x="628.44" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.08%)</title><rect x="27.3" y="853" width="0.9" height="15.0" fill="rgb(205,22,34)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/models.py:_create:3530 (3 samples, 0.24%)</title><rect x="690.7" y="357" width="2.9" height="15.0" fill="rgb(228,9,38)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="709.9" y="261" width="1.0" height="15.0" fill="rgb(214,36,50)" rx="2" ry="2" />
<text text-anchor="" x="712.93" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (21 samples, 1.71%)</title><rect x="10.0" y="1125" width="20.2" height="15.0" fill="rgb(242,144,16)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2692 (1 samples, 0.08%)</title><rect x="710.9" y="101" width="1.0" height="15.0" fill="rgb(222,139,25)" rx="2" ry="2" />
<text text-anchor="" x="713.90" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (23 samples, 1.87%)</title><rect x="374.8" y="213" width="22.1" height="15.0" fill="rgb(206,21,54)" rx="2" ry="2" />
<text text-anchor="" x="377.85" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="1175.6" y="245" width="1.0" height="15.0" fill="rgb(247,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:996 (5 samples, 0.41%)</title><rect x="242.4" y="245" width="4.8" height="15.0" fill="rgb(205,110,17)" rx="2" ry="2" />
<text text-anchor="" x="245.35" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="759.9" y="165" width="0.9" height="15.0" fill="rgb(212,61,6)" rx="2" ry="2" />
<text text-anchor="" x="762.86" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1282 (2 samples, 0.16%)</title><rect x="416.1" y="197" width="2.0" height="15.0" fill="rgb(210,11,6)" rx="2" ry="2" />
<text text-anchor="" x="419.14" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="399.8" y="165" width="1.0" height="15.0" fill="rgb(227,37,54)" rx="2" ry="2" />
<text text-anchor="" x="402.81" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="326.8" y="181" width="1.0" height="15.0" fill="rgb(240,148,22)" rx="2" ry="2" />
<text text-anchor="" x="329.84" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="794.4" y="133" width="1.0" height="15.0" fill="rgb(225,26,50)" rx="2" ry="2" />
<text text-anchor="" x="797.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="933.6" y="165" width="2.0" height="15.0" fill="rgb(205,66,10)" rx="2" ry="2" />
<text text-anchor="" x="936.65" 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>/.repo_requirements/odoo/odoo/models.py:_write:3172 (1 samples, 0.08%)</title><rect x="606.2" y="325" width="1.0" height="15.0" fill="rgb(233,170,43)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="679.2" y="325" width="1.0" height="15.0" fill="rgb(215,28,19)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="498.7" y="149" width="1.0" height="15.0" fill="rgb(215,170,15)" rx="2" ry="2" />
<text text-anchor="" x="501.71" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_partner_id:78 (13 samples, 1.06%)</title><rect x="478.5" y="229" width="12.5" height="15.0" fill="rgb(235,201,20)" rx="2" ry="2" />
<text text-anchor="" x="481.54" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (5 samples, 0.41%)</title><rect x="419.0" y="165" width="4.8" height="15.0" fill="rgb(207,208,45)" rx="2" ry="2" />
<text text-anchor="" x="422.02" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="670.6" y="245" width="0.9" height="15.0" fill="rgb(218,174,25)" rx="2" ry="2" />
<text text-anchor="" x="673.57" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (15 samples, 1.22%)</title><rect x="1131.4" y="309" width="14.4" height="15.0" fill="rgb(231,216,54)" rx="2" ry="2" />
<text text-anchor="" x="1134.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>/.repo_requirements/odoo/odoo/models.py:_create:3514 (9 samples, 0.73%)</title><rect x="681.1" y="357" width="8.7" height="15.0" fill="rgb(246,41,50)" rx="2" ry="2" />
<text text-anchor="" x="684.13" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="382.5" y="133" width="1.0" height="15.0" fill="rgb(218,150,18)" rx="2" ry="2" />
<text text-anchor="" x="385.53" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="210.7" y="357" width="0.9" height="15.0" fill="rgb(249,49,22)" rx="2" ry="2" />
<text text-anchor="" x="213.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>/home/odoo/odoo-11.0/addons/account/models/account_payment.py:_create_payment_entry:627 (1,096 samples, 89.18%)</title><rect x="124.3" y="501" width="1052.3" height="15.0" fill="rgb(250,182,45)" rx="2" ry="2" />
<text text-anchor="" x="127.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_payment.py:_create_payment_entry:627</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="863.6" y="133" width="0.9" height="15.0" fill="rgb(209,132,16)" rx="2" ry="2" />
<text text-anchor="" x="866.56" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="863.6" y="181" width="0.9" height="15.0" fill="rgb(226,119,33)" rx="2" ry="2" />
<text text-anchor="" x="866.56" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4458 (1 samples, 0.08%)</title><rect x="125.2" y="325" width="1.0" height="15.0" fill="rgb(239,182,35)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22 (1,113 samples, 90.56%)</title><rect x="121.4" y="869" width="1068.6" height="15.0" fill="rgb(221,198,50)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="462.2" y="197" width="1.9" height="15.0" fill="rgb(231,21,7)" rx="2" ry="2" />
<text text-anchor="" x="465.22" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (5 samples, 0.41%)</title><rect x="982.6" y="165" width="4.8" height="15.0" fill="rgb(247,134,15)" rx="2" ry="2" />
<text text-anchor="" x="985.61" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="745.5" y="69" width="0.9" height="15.0" fill="rgb(242,31,49)" rx="2" ry="2" />
<text text-anchor="" x="748.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="1060.4" y="293" width="3.8" height="15.0" fill="rgb(234,59,32)" rx="2" ry="2" />
<text text-anchor="" x="1063.38" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:web_login:486 (1 samples, 0.08%)</title><rect x="1186.2" y="645" width="0.9" height="15.0" fill="rgb(235,61,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="183.8" y="293" width="1.9" height="15.0" fill="rgb(211,9,50)" rx="2" ry="2" />
<text text-anchor="" x="186.78" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="801.1" y="37" width="1.0" height="15.0" fill="rgb(211,21,23)" rx="2" ry="2" />
<text text-anchor="" x="804.15" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="521.7" y="181" width="1.0" height="15.0" fill="rgb(222,220,11)" rx="2" ry="2" />
<text text-anchor="" x="524.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="128.1" y="341" width="1.0" height="15.0" fill="rgb(209,99,3)" rx="2" ry="2" />
<text text-anchor="" x="131.10" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="759.9" y="149" width="0.9" height="15.0" fill="rgb(225,117,38)" rx="2" ry="2" />
<text text-anchor="" x="762.86" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="1179.4" y="469" width="1.0" height="15.0" fill="rgb(213,118,39)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (1 samples, 0.08%)</title><rect x="668.6" y="309" width="1.0" height="15.0" fill="rgb(242,71,28)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (2 samples, 0.16%)</title><rect x="23.4" y="357" width="2.0" height="15.0" fill="rgb(252,92,26)" rx="2" ry="2" />
<text text-anchor="" x="26.44" 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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.08%)</title><rect x="30.2" y="1189" width="0.9" height="15.0" fill="rgb(231,138,31)" rx="2" ry="2" />
<text text-anchor="" x="33.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (8 samples, 0.65%)</title><rect x="798.3" y="197" width="7.6" height="15.0" fill="rgb(251,119,6)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1007 (1 samples, 0.08%)</title><rect x="1166.0" y="309" width="1.0" height="15.0" fill="rgb(229,20,33)" rx="2" ry="2" />
<text text-anchor="" x="1169.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="995.1" y="197" width="1.0" height="15.0" fill="rgb(231,111,28)" rx="2" ry="2" />
<text text-anchor="" x="998.09" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (1 samples, 0.08%)</title><rect x="1155.4" y="277" width="1.0" height="15.0" fill="rgb(217,166,52)" rx="2" ry="2" />
<text text-anchor="" x="1158.44" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="919.2" y="117" width="1.0" height="15.0" fill="rgb(233,175,26)" rx="2" ry="2" />
<text text-anchor="" x="922.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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="1170.8" y="309" width="1.0" height="15.0" fill="rgb(253,180,41)" rx="2" ry="2" />
<text text-anchor="" x="1173.80" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="902.0" y="165" width="0.9" height="15.0" fill="rgb(254,112,0)" rx="2" ry="2" />
<text text-anchor="" x="904.96" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="330.7" y="117" width="0.9" height="15.0" fill="rgb(241,114,1)" rx="2" ry="2" />
<text text-anchor="" x="333.68" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:1016 (1 samples, 0.08%)</title><rect x="475.7" y="165" width="0.9" height="15.0" fill="rgb(241,124,29)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="440.1" y="165" width="1.0" height="15.0" fill="rgb(240,115,11)" rx="2" ry="2" />
<text text-anchor="" x="443.14" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="400.8" y="197" width="1.9" height="15.0" fill="rgb(228,162,5)" rx="2" ry="2" />
<text text-anchor="" x="403.77" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="1057.5" y="261" width="1.0" height="15.0" fill="rgb(212,47,40)" rx="2" ry="2" />
<text text-anchor="" x="1060.50" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1177.5" y="501" width="1.0" height="15.0" fill="rgb(214,104,46)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="757.9" y="133" width="1.0" height="15.0" fill="rgb(206,184,37)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (1 samples, 0.08%)</title><rect x="877.0" y="197" width="1.0" height="15.0" fill="rgb(250,39,31)" rx="2" ry="2" />
<text text-anchor="" x="880.00" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="702.3" y="309" width="0.9" height="15.0" fill="rgb(243,190,26)" rx="2" ry="2" />
<text text-anchor="" x="705.25" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="905.8" y="149" width="1.0" height="15.0" fill="rgb(243,197,19)" rx="2" ry="2" />
<text text-anchor="" x="908.80" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:818 (1 samples, 0.08%)</title><rect x="1153.5" y="229" width="1.0" height="15.0" fill="rgb(242,165,41)" rx="2" ry="2" />
<text text-anchor="" x="1156.52" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (3 samples, 0.24%)</title><rect x="800.2" y="117" width="2.9" height="15.0" fill="rgb(214,132,25)" rx="2" ry="2" />
<text text-anchor="" x="803.19" 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>/.repo_requirements/odoo/odoo/http.py:check_security:1068 (1 samples, 0.08%)</title><rect x="121.4" y="821" width="0.9" height="15.0" fill="rgb(214,90,19)" rx="2" ry="2" />
<text text-anchor="" x="124.38" 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>/usr/lib/python3.5/xml/etree/ElementTree.py:write:772 (1 samples, 0.08%)</title><rect x="1185.2" y="661" width="1.0" height="15.0" fill="rgb(225,104,23)" rx="2" ry="2" />
<text text-anchor="" x="1188.20" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (6 samples, 0.49%)</title><rect x="429.6" y="181" width="5.7" height="15.0" fill="rgb(222,206,46)" rx="2" ry="2" />
<text text-anchor="" x="432.58" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="781.9" y="197" width="1.0" height="15.0" fill="rgb(211,93,5)" rx="2" ry="2" />
<text text-anchor="" x="784.94" 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>/.repo_requirements/odoo/odoo/models.py:modified:4845 (1 samples, 0.08%)</title><rect x="1148.7" y="309" width="1.0" height="15.0" fill="rgb(220,50,48)" rx="2" ry="2" />
<text text-anchor="" x="1151.71" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (3 samples, 0.24%)</title><rect x="1150.6" y="245" width="2.9" height="15.0" fill="rgb(220,164,48)" rx="2" ry="2" />
<text text-anchor="" x="1153.63" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="833.8" y="149" width="1.0" height="15.0" fill="rgb(217,30,25)" rx="2" ry="2" />
<text text-anchor="" x="836.79" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="219.3" y="293" width="1.0" height="15.0" fill="rgb(248,205,44)" rx="2" ry="2" />
<text text-anchor="" x="222.31" 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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (1 samples, 0.08%)</title><rect x="795.4" y="197" width="0.9" height="15.0" fill="rgb(241,190,42)" rx="2" ry="2" />
<text text-anchor="" x="798.39" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="13.8" y="773" width="1.0" height="15.0" fill="rgb(222,82,10)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154 (1,113 samples, 90.56%)</title><rect x="121.4" y="981" width="1068.6" height="15.0" fill="rgb(213,152,13)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (340 samples, 27.66%)</title><rect x="234.7" y="325" width="326.4" height="15.0" fill="rgb(233,174,8)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:&lt;dic..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/http/server.py:handle:422 (1,113 samples, 90.56%)</title><rect x="121.4" y="1077" width="1068.6" height="15.0" fill="rgb(212,47,2)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/http/server.py:handle:422</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1343 (488 samples, 39.71%)</title><rect x="211.6" y="389" width="468.6" height="15.0" fill="rgb(249,177,49)" rx="2" ry="2" />
<text text-anchor="" x="214.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:creat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="208.7" y="341" width="1.0" height="15.0" fill="rgb(244,14,21)" rx="2" ry="2" />
<text text-anchor="" x="211.75" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:binary_content:325 (1 samples, 0.08%)</title><rect x="1183.3" y="661" width="0.9" height="15.0" fill="rgb(247,207,20)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1777 (1 samples, 0.08%)</title><rect x="680.2" y="405" width="0.9" height="15.0" fill="rgb(223,119,43)" rx="2" ry="2" />
<text text-anchor="" x="683.17" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:1296 (1 samples, 0.08%)</title><rect x="1176.6" y="629" width="0.9" height="15.0" fill="rgb(235,26,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="571.7" y="293" width="1.9" height="15.0" fill="rgb(228,158,28)" rx="2" ry="2" />
<text text-anchor="" x="574.68" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4912 (5 samples, 0.41%)</title><rect x="570.7" y="341" width="4.8" height="15.0" fill="rgb(207,141,2)" rx="2" ry="2" />
<text text-anchor="" x="573.72" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (25 samples, 2.03%)</title><rect x="850.1" y="213" width="24.0" height="15.0" fill="rgb(248,87,4)" rx="2" ry="2" />
<text text-anchor="" x="853.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="770.4" y="133" width="1.0" height="15.0" fill="rgb(241,120,40)" rx="2" ry="2" />
<text text-anchor="" x="773.42" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (27 samples, 2.20%)</title><rect x="338.4" y="213" width="25.9" height="15.0" fill="rgb(216,147,30)" rx="2" ry="2" />
<text text-anchor="" x="341.36" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="862.6" y="117" width="1.0" height="15.0" fill="rgb(225,102,35)" rx="2" ry="2" />
<text text-anchor="" x="865.60" 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>/.repo_requirements/odoo/odoo/api.py:__iter__:943 (1 samples, 0.08%)</title><rect x="276.9" y="69" width="1.0" height="15.0" fill="rgb(229,151,42)" rx="2" ry="2" />
<text text-anchor="" x="279.92" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (3 samples, 0.24%)</title><rect x="1157.4" y="261" width="2.8" height="15.0" fill="rgb(232,134,17)" rx="2" ry="2" />
<text text-anchor="" x="1160.36" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="442.1" y="181" width="0.9" height="15.0" fill="rgb(252,91,27)" rx="2" ry="2" />
<text text-anchor="" x="445.06" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="978.8" y="133" width="0.9" height="15.0" fill="rgb(215,54,21)" rx="2" ry="2" />
<text text-anchor="" x="981.77" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="530.4" y="149" width="1.0" height="15.0" fill="rgb(209,48,4)" rx="2" ry="2" />
<text text-anchor="" x="533.39" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="379.7" y="165" width="0.9" height="15.0" fill="rgb(216,80,38)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="483.3" y="117" width="1.0" height="15.0" fill="rgb(238,47,8)" rx="2" ry="2" />
<text text-anchor="" x="486.34" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (2 samples, 0.16%)</title><rect x="271.2" y="69" width="1.9" height="15.0" fill="rgb(209,141,46)" rx="2" ry="2" />
<text text-anchor="" x="274.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="383.5" y="149" width="1.0" height="15.0" fill="rgb(213,97,37)" rx="2" ry="2" />
<text text-anchor="" x="386.49" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="24.4" y="293" width="1.0" height="15.0" fill="rgb(223,147,36)" rx="2" ry="2" />
<text text-anchor="" x="27.40" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (2 samples, 0.16%)</title><rect x="583.2" y="325" width="1.9" height="15.0" fill="rgb(233,107,9)" rx="2" ry="2" />
<text text-anchor="" x="586.20" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (2 samples, 0.16%)</title><rect x="239.5" y="85" width="1.9" height="15.0" fill="rgb(217,95,7)" rx="2" ry="2" />
<text text-anchor="" x="242.47" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="397.9" y="133" width="1.0" height="15.0" fill="rgb(241,118,6)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2539 (1 samples, 0.08%)</title><rect x="157.9" y="229" width="0.9" height="15.0" fill="rgb(211,206,51)" rx="2" ry="2" />
<text text-anchor="" x="160.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>/.repo_requirements/odoo/odoo/api.py:in_onchange:837 (1 samples, 0.08%)</title><rect x="981.7" y="197" width="0.9" height="15.0" fill="rgb(206,179,49)" rx="2" ry="2" />
<text text-anchor="" x="984.65" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="524.6" y="133" width="1.0" height="15.0" fill="rgb(210,64,29)" rx="2" ry="2" />
<text text-anchor="" x="527.63" 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>/usr/lib/python3.5/socketserver.py:process_request_thread:625 (1,113 samples, 90.56%)</title><rect x="121.4" y="1141" width="1068.6" height="15.0" fill="rgb(229,21,18)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:process_request_thread:625</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="27.3" y="837" width="0.9" height="15.0" fill="rgb(237,191,11)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (3 samples, 0.24%)</title><rect x="27.3" y="901" width="2.9" height="15.0" fill="rgb(238,111,48)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.08%)</title><rect x="133.9" y="277" width="0.9" height="15.0" fill="rgb(221,101,37)" rx="2" ry="2" />
<text text-anchor="" x="136.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="499.7" y="149" width="0.9" height="15.0" fill="rgb(211,52,19)" rx="2" ry="2" />
<text text-anchor="" x="502.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (10 samples, 0.81%)</title><rect x="478.5" y="165" width="9.6" height="15.0" fill="rgb(222,10,30)" rx="2" ry="2" />
<text text-anchor="" x="481.54" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="805.9" y="197" width="2.0" height="15.0" fill="rgb(254,171,32)" rx="2" ry="2" />
<text text-anchor="" x="808.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (6 samples, 0.49%)</title><rect x="522.7" y="197" width="5.8" height="15.0" fill="rgb(234,227,41)" rx="2" ry="2" />
<text text-anchor="" x="525.71" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="922.1" y="181" width="1.0" height="15.0" fill="rgb(217,94,26)" rx="2" ry="2" />
<text text-anchor="" x="925.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="208.7" y="373" width="1.0" height="15.0" fill="rgb(218,160,42)" rx="2" ry="2" />
<text text-anchor="" x="211.75" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1119.0" y="261" width="0.9" height="15.0" fill="rgb(235,163,42)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="945.2" y="197" width="1.9" height="15.0" fill="rgb(239,215,9)" rx="2" ry="2" />
<text text-anchor="" x="948.17" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (5 samples, 0.41%)</title><rect x="682.1" y="325" width="4.8" height="15.0" fill="rgb(229,179,53)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="573.6" y="293" width="1.0" height="15.0" fill="rgb(222,154,27)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (3 samples, 0.24%)</title><rect x="555.4" y="277" width="2.8" height="15.0" fill="rgb(236,194,53)" rx="2" ry="2" />
<text text-anchor="" x="558.35" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="1070.9" y="261" width="1.0" height="15.0" fill="rgb(248,148,19)" rx="2" ry="2" />
<text text-anchor="" x="1073.94" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1009.5" y="181" width="1.0" height="15.0" fill="rgb(254,94,28)" rx="2" ry="2" />
<text text-anchor="" x="1012.50" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="408.5" y="213" width="0.9" height="15.0" fill="rgb(230,191,0)" rx="2" ry="2" />
<text text-anchor="" x="411.45" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="546.7" y="165" width="1.0" height="15.0" fill="rgb(208,22,19)" rx="2" ry="2" />
<text text-anchor="" x="549.71" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="635.0" y="277" width="1.0" height="15.0" fill="rgb(241,2,46)" rx="2" ry="2" />
<text text-anchor="" x="638.04" 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>/usr/lib/python3.5/xml/etree/ElementTree.py:parse:1195 (1 samples, 0.08%)</title><rect x="1184.2" y="677" width="1.0" height="15.0" fill="rgb(246,168,54)" rx="2" ry="2" />
<text text-anchor="" x="1187.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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="383.5" y="133" width="1.0" height="15.0" fill="rgb(251,125,5)" rx="2" ry="2" />
<text text-anchor="" x="386.49" 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>/.repo_requirements/odoo/odoo/api.py:call_kw_model:672 (5 samples, 0.41%)</title><rect x="1176.6" y="661" width="4.8" height="15.0" fill="rgb(242,95,32)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="245" width="0.9" height="15.0" fill="rgb(233,84,51)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="930.8" y="117" width="0.9" height="15.0" fill="rgb(213,46,0)" rx="2" ry="2" />
<text text-anchor="" x="933.76" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (21 samples, 1.71%)</title><rect x="257.7" y="197" width="20.2" height="15.0" fill="rgb(228,75,17)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (2 samples, 0.16%)</title><rect x="1048.9" y="325" width="1.9" height="15.0" fill="rgb(254,229,40)" rx="2" ry="2" />
<text text-anchor="" x="1051.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (6 samples, 0.49%)</title><rect x="329.7" y="181" width="5.8" height="15.0" fill="rgb(217,207,15)" rx="2" ry="2" />
<text text-anchor="" x="332.72" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (2 samples, 0.16%)</title><rect x="763.7" y="197" width="1.9" height="15.0" fill="rgb(247,172,40)" rx="2" ry="2" />
<text text-anchor="" x="766.70" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (4 samples, 0.33%)</title><rect x="1156.4" y="309" width="3.8" height="15.0" fill="rgb(254,215,16)" rx="2" ry="2" />
<text text-anchor="" x="1159.40" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1166.0" y="293" width="1.0" height="15.0" fill="rgb(210,208,6)" rx="2" ry="2" />
<text text-anchor="" x="1169.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>/.repo_requirements/odoo/odoo/api.py:set:966 (6 samples, 0.49%)</title><rect x="898.1" y="197" width="5.8" height="15.0" fill="rgb(222,181,21)" rx="2" ry="2" />
<text text-anchor="" x="901.12" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="337.4" y="181" width="1.0" height="15.0" fill="rgb(253,81,11)" rx="2" ry="2" />
<text text-anchor="" x="340.40" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (4 samples, 0.33%)</title><rect x="288.4" y="197" width="3.9" height="15.0" fill="rgb(207,118,41)" rx="2" ry="2" />
<text text-anchor="" x="291.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (3 samples, 0.24%)</title><rect x="1125.7" y="261" width="2.9" height="15.0" fill="rgb(240,121,37)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="1177.5" y="437" width="1.0" height="15.0" fill="rgb(225,27,4)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="581.3" y="245" width="0.9" height="15.0" fill="rgb(250,207,25)" rx="2" ry="2" />
<text text-anchor="" x="584.28" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.08%)</title><rect x="685.9" y="261" width="1.0" height="15.0" fill="rgb(241,54,15)" rx="2" ry="2" />
<text text-anchor="" x="688.93" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_button:938 (1,097 samples, 89.26%)</title><rect x="123.3" y="709" width="1053.3" height="15.0" fill="rgb(232,166,13)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_button:938</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="486.2" y="133" width="1.9" height="15.0" fill="rgb(218,14,50)" rx="2" ry="2" />
<text text-anchor="" x="489.22" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="921.2" y="165" width="0.9" height="15.0" fill="rgb(233,58,43)" rx="2" ry="2" />
<text text-anchor="" x="924.16" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (4 samples, 0.33%)</title><rect x="1023.9" y="149" width="3.8" height="15.0" fill="rgb(218,10,31)" rx="2" ry="2" />
<text text-anchor="" x="1026.90" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="987.4" y="197" width="1.0" height="15.0" fill="rgb(221,1,25)" rx="2" ry="2" />
<text text-anchor="" x="990.41" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="10.0" y="821" width="1.0" height="15.0" fill="rgb(230,201,36)" 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>/.repo_requirements/odoo/odoo/api.py:remove_todo:901 (1 samples, 0.08%)</title><rect x="565.0" y="309" width="0.9" height="15.0" fill="rgb(254,120,47)" rx="2" ry="2" />
<text text-anchor="" x="567.96" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (11 samples, 0.90%)</title><rect x="10.0" y="933" width="10.6" height="15.0" fill="rgb(211,99,22)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="265.4" y="69" width="1.0" height="15.0" fill="rgb(212,197,27)" rx="2" ry="2" />
<text text-anchor="" x="268.39" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:&lt;lambda&gt;:911 (4 samples, 0.33%)</title><rect x="125.2" y="437" width="3.9" height="15.0" fill="rgb(252,119,42)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="925.0" y="181" width="1.0" height="15.0" fill="rgb(207,191,11)" rx="2" ry="2" />
<text text-anchor="" x="928.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="324.0" y="165" width="2.8" height="15.0" fill="rgb(239,9,27)" rx="2" ry="2" />
<text text-anchor="" x="326.96" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="605.3" y="293" width="0.9" height="15.0" fill="rgb(218,134,31)" rx="2" ry="2" />
<text text-anchor="" x="608.28" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:875 (1 samples, 0.08%)</title><rect x="799.2" y="101" width="1.0" height="15.0" fill="rgb(216,46,4)" rx="2" ry="2" />
<text text-anchor="" x="802.23" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="435.3" y="197" width="1.0" height="15.0" fill="rgb(237,93,40)" rx="2" ry="2" />
<text text-anchor="" x="438.34" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (10 samples, 0.81%)</title><rect x="10.0" y="901" width="9.6" height="15.0" fill="rgb(252,111,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (5 samples, 0.41%)</title><rect x="909.6" y="165" width="4.8" height="15.0" fill="rgb(226,170,37)" rx="2" ry="2" />
<text text-anchor="" x="912.64" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="753.1" y="69" width="1.0" height="15.0" fill="rgb(207,215,1)" rx="2" ry="2" />
<text text-anchor="" x="756.14" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="22.5" y="469" width="3.8" height="15.0" fill="rgb(232,101,52)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1178.5" y="485" width="0.9" height="15.0" fill="rgb(232,112,32)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (2 samples, 0.16%)</title><rect x="674.4" y="325" width="1.9" height="15.0" fill="rgb(213,201,37)" rx="2" ry="2" />
<text text-anchor="" x="677.41" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="531.4" y="133" width="0.9" height="15.0" fill="rgb(227,217,36)" rx="2" ry="2" />
<text text-anchor="" x="534.35" 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>/.repo_requirements/odoo/odoo/http.py:__call__:937 (1,105 samples, 89.91%)</title><rect x="122.3" y="741" width="1061.0" height="15.0" fill="rgb(251,227,51)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:937</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="759.9" y="197" width="0.9" height="15.0" fill="rgb(215,175,25)" rx="2" ry="2" />
<text text-anchor="" x="762.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (5 samples, 0.41%)</title><rect x="837.6" y="165" width="4.8" height="15.0" fill="rgb(250,137,46)" rx="2" ry="2" />
<text text-anchor="" x="840.63" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="915.4" y="181" width="1.0" height="15.0" fill="rgb(229,2,46)" rx="2" ry="2" />
<text text-anchor="" x="918.40" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="1050.8" y="293" width="0.9" height="15.0" fill="rgb(248,53,7)" rx="2" ry="2" />
<text text-anchor="" x="1053.78" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="805.9" y="133" width="1.0" height="15.0" fill="rgb(209,86,12)" rx="2" ry="2" />
<text text-anchor="" x="808.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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="719.5" y="213" width="1.0" height="15.0" fill="rgb(232,62,37)" rx="2" ry="2" />
<text text-anchor="" x="722.54" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="561.1" y="309" width="1.0" height="15.0" fill="rgb(214,96,36)" rx="2" ry="2" />
<text text-anchor="" x="564.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="807.9" y="165" width="0.9" height="15.0" fill="rgb(251,113,46)" rx="2" ry="2" />
<text text-anchor="" x="810.87" 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>/.repo_requirements/odoo/odoo/service/server.py:cron_thread:234 (2 samples, 0.16%)</title><rect x="116.6" y="1125" width="1.9" height="15.0" fill="rgb(238,16,24)" rx="2" ry="2" />
<text text-anchor="" x="119.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="653.3" y="261" width="0.9" height="15.0" fill="rgb(245,131,7)" rx="2" ry="2" />
<text text-anchor="" x="656.29" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.08%)</title><rect x="130.0" y="293" width="1.0" height="15.0" fill="rgb(247,127,33)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="633.1" y="277" width="1.9" height="15.0" fill="rgb(244,160,40)" rx="2" ry="2" />
<text text-anchor="" x="636.12" 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>/.repo_requirements/odoo/odoo/http.py:dispatch:707 (4 samples, 0.33%)</title><rect x="22.5" y="725" width="3.8" height="15.0" fill="rgb(251,186,4)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/api.py:get:960 (2 samples, 0.16%)</title><rect x="190.5" y="309" width="1.9" height="15.0" fill="rgb(233,95,32)" rx="2" ry="2" />
<text text-anchor="" x="193.50" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="313.4" y="181" width="1.9" height="15.0" fill="rgb(217,35,3)" rx="2" ry="2" />
<text text-anchor="" x="316.40" 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>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.08%)</title><rect x="666.7" y="277" width="1.0" height="15.0" fill="rgb(207,121,35)" rx="2" ry="2" />
<text text-anchor="" x="669.73" 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>/.repo_requirements/odoo/odoo/models.py:_write:3174 (36 samples, 2.93%)</title><rect x="1082.5" y="325" width="34.5" height="15.0" fill="rgb(248,129,23)" rx="2" ry="2" />
<text text-anchor="" x="1085.47" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="452.6" y="197" width="1.0" height="15.0" fill="rgb(238,223,6)" rx="2" ry="2" />
<text text-anchor="" x="455.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="615.8" y="261" width="2.0" height="15.0" fill="rgb(244,96,40)" rx="2" ry="2" />
<text text-anchor="" x="618.84" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="755.1" y="181" width="0.9" height="15.0" fill="rgb(232,20,42)" rx="2" ry="2" />
<text text-anchor="" x="758.06" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (8 samples, 0.65%)</title><rect x="249.1" y="229" width="7.7" height="15.0" fill="rgb(235,32,4)" rx="2" ry="2" />
<text text-anchor="" x="252.07" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="493.9" y="133" width="1.0" height="15.0" fill="rgb(236,115,40)" rx="2" ry="2" />
<text text-anchor="" x="496.91" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="734.9" y="213" width="1.0" height="15.0" fill="rgb(242,165,1)" rx="2" ry="2" />
<text text-anchor="" x="737.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="955.7" y="197" width="1.9" height="15.0" fill="rgb(209,150,3)" rx="2" ry="2" />
<text text-anchor="" x="958.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="941.3" y="181" width="1.0" height="15.0" fill="rgb(212,137,40)" rx="2" ry="2" />
<text text-anchor="" x="944.33" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="137.7" y="261" width="1.0" height="15.0" fill="rgb(221,50,37)" rx="2" ry="2" />
<text text-anchor="" x="140.70" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (17 samples, 1.38%)</title><rect x="737.8" y="181" width="16.3" height="15.0" fill="rgb(205,49,3)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="214.5" y="277" width="1.0" height="15.0" fill="rgb(205,112,26)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1046.9" y="277" width="1.0" height="15.0" fill="rgb(240,78,34)" rx="2" ry="2" />
<text text-anchor="" x="1049.94" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="131.0" y="277" width="0.9" height="15.0" fill="rgb(240,3,11)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="629.3" y="277" width="3.8" height="15.0" fill="rgb(243,53,6)" rx="2" ry="2" />
<text text-anchor="" x="632.28" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1041 (1 samples, 0.08%)</title><rect x="1067.1" y="309" width="1.0" height="15.0" fill="rgb(240,134,36)" rx="2" ry="2" />
<text text-anchor="" x="1070.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="467.0" y="181" width="1.0" height="15.0" fill="rgb(215,182,12)" rx="2" ry="2" />
<text text-anchor="" x="470.02" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="546.7" y="181" width="4.8" height="15.0" fill="rgb(228,65,9)" rx="2" ry="2" />
<text text-anchor="" x="549.71" 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>/.repo_requirements/odoo/odoo/models.py:_search:3797 (1 samples, 0.08%)</title><rect x="685.9" y="309" width="1.0" height="15.0" fill="rgb(212,34,38)" rx="2" ry="2" />
<text text-anchor="" x="688.93" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="889.5" y="197" width="0.9" height="15.0" fill="rgb(238,35,34)" rx="2" ry="2" />
<text text-anchor="" x="892.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="857.8" y="133" width="1.0" height="15.0" fill="rgb(235,4,22)" rx="2" ry="2" />
<text text-anchor="" x="860.79" 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>/.repo_requirements/odoo/odoo/api.py:call_kw:689 (1,097 samples, 89.26%)</title><rect x="123.3" y="677" width="1053.3" height="15.0" fill="rgb(220,169,21)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw:689</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="758.9" y="165" width="1.0" height="15.0" fill="rgb(231,146,37)" rx="2" ry="2" />
<text text-anchor="" x="761.90" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (4 samples, 0.33%)</title><rect x="14.8" y="853" width="3.8" height="15.0" fill="rgb(254,115,25)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/models.py:_in_cache_without:4791 (1 samples, 0.08%)</title><rect x="317.2" y="117" width="1.0" height="15.0" fill="rgb(211,150,2)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (12 samples, 0.98%)</title><rect x="265.4" y="117" width="11.5" height="15.0" fill="rgb(216,188,43)" rx="2" ry="2" />
<text text-anchor="" x="268.39" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="487.2" y="101" width="0.9" height="15.0" fill="rgb(253,67,18)" rx="2" ry="2" />
<text text-anchor="" x="490.18" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (1 samples, 0.08%)</title><rect x="129.1" y="245" width="0.9" height="15.0" fill="rgb(234,66,46)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.08%)</title><rect x="131.0" y="325" width="0.9" height="15.0" fill="rgb(251,62,1)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="894.3" y="181" width="0.9" height="15.0" fill="rgb(222,68,47)" rx="2" ry="2" />
<text text-anchor="" x="897.28" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:365 (4 samples, 0.33%)</title><rect x="280.8" y="229" width="3.8" height="15.0" fill="rgb(208,79,14)" rx="2" ry="2" />
<text text-anchor="" x="283.76" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="702.3" y="325" width="0.9" height="15.0" fill="rgb(236,174,49)" rx="2" ry="2" />
<text text-anchor="" x="705.25" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (9 samples, 0.73%)</title><rect x="1055.6" y="325" width="8.6" height="15.0" fill="rgb(213,202,19)" rx="2" ry="2" />
<text text-anchor="" x="1058.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="301.9" y="213" width="0.9" height="15.0" fill="rgb(218,134,10)" rx="2" ry="2" />
<text text-anchor="" x="304.88" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1108.4" y="245" width="0.9" height="15.0" fill="rgb(210,215,7)" rx="2" ry="2" />
<text text-anchor="" x="1111.39" 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>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="325" width="0.9" height="15.0" fill="rgb(215,30,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.08%)</title><rect x="1154.5" y="245" width="0.9" height="15.0" fill="rgb(254,220,41)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (5 samples, 0.41%)</title><rect x="657.1" y="309" width="4.8" height="15.0" fill="rgb(228,156,40)" rx="2" ry="2" />
<text text-anchor="" x="660.13" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="236.6" y="277" width="2.9" height="15.0" fill="rgb(208,66,17)" rx="2" ry="2" />
<text text-anchor="" x="239.59" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2768 (1 samples, 0.08%)</title><rect x="169.4" y="309" width="0.9" height="15.0" fill="rgb(239,144,25)" rx="2" ry="2" />
<text text-anchor="" x="172.38" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="541.0" y="165" width="1.9" height="15.0" fill="rgb(254,12,3)" rx="2" ry="2" />
<text text-anchor="" x="543.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>/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:398 (4 samples, 0.33%)</title><rect x="22.5" y="693" width="3.8" height="15.0" fill="rgb(247,114,32)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="929.8" y="165" width="1.0" height="15.0" fill="rgb(215,123,28)" rx="2" ry="2" />
<text text-anchor="" x="932.80" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="665.8" y="181" width="0.9" height="15.0" fill="rgb(227,95,32)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/api.py:get_records:1020 (1 samples, 0.08%)</title><rect x="475.7" y="181" width="0.9" height="15.0" fill="rgb(213,79,47)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="667.7" y="261" width="0.9" height="15.0" fill="rgb(226,175,28)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.08%)</title><rect x="1047.9" y="213" width="1.0" height="15.0" fill="rgb(251,217,12)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.08%)</title><rect x="129.1" y="357" width="0.9" height="15.0" fill="rgb(217,107,28)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (3 samples, 0.24%)</title><rect x="1157.4" y="293" width="2.8" height="15.0" fill="rgb(206,90,17)" rx="2" ry="2" />
<text text-anchor="" x="1160.36" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="560.2" y="245" width="0.9" height="15.0" fill="rgb(229,221,10)" rx="2" ry="2" />
<text text-anchor="" x="563.15" 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>/home/odoo/enterprise/l10n_mx_edi/models/account_payment.py:post:92 (1,096 samples, 89.18%)</title><rect x="124.3" y="533" width="1052.3" height="15.0" fill="rgb(223,213,3)" rx="2" ry="2" />
<text text-anchor="" x="127.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi/models/account_payment.py:post:92</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3795 (1 samples, 0.08%)</title><rect x="665.8" y="197" width="0.9" height="15.0" fill="rgb(212,123,35)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-24&gt;:load_menus:2 (3 samples, 0.24%)</title><rect x="1178.5" y="645" width="2.9" height="15.0" fill="rgb(237,208,52)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2714 (1 samples, 0.08%)</title><rect x="711.9" y="117" width="0.9" height="15.0" fill="rgb(224,116,11)" rx="2" ry="2" />
<text text-anchor="" x="714.86" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="283.6" y="181" width="1.0" height="15.0" fill="rgb(253,31,14)" rx="2" ry="2" />
<text text-anchor="" x="286.64" 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>/.repo_requirements/odoo/odoo/models.py:_write:3322 (1 samples, 0.08%)</title><rect x="1175.6" y="341" width="1.0" height="15.0" fill="rgb(238,124,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.08%)</title><rect x="595.7" y="229" width="0.9" height="15.0" fill="rgb(251,115,17)" rx="2" ry="2" />
<text text-anchor="" x="598.68" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="593.8" y="229" width="0.9" height="15.0" fill="rgb(227,70,24)" rx="2" ry="2" />
<text text-anchor="" x="596.76" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_translation.py:_get_source:404 (1 samples, 0.08%)</title><rect x="122.3" y="613" width="1.0" height="15.0" fill="rgb(220,98,8)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="13.8" y="805" width="1.0" height="15.0" fill="rgb(239,203,6)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="791.5" y="197" width="2.0" height="15.0" fill="rgb(253,180,27)" rx="2" ry="2" />
<text text-anchor="" x="794.55" 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>/usr/lib/python3.5/logging/__init__.py:isEnabledFor:1522 (1 samples, 0.08%)</title><rect x="117.5" y="1093" width="1.0" height="15.0" fill="rgb(221,226,6)" rx="2" ry="2" />
<text text-anchor="" x="120.53" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="994.1" y="197" width="1.0" height="15.0" fill="rgb(233,223,53)" rx="2" ry="2" />
<text text-anchor="" x="997.13" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="257.7" y="69" width="1.0" height="15.0" fill="rgb(242,56,25)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (21 samples, 1.71%)</title><rect x="257.7" y="165" width="20.2" height="15.0" fill="rgb(249,79,40)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="639.8" y="293" width="2.0" height="15.0" fill="rgb(208,123,8)" rx="2" ry="2" />
<text text-anchor="" x="642.85" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="926.0" y="197" width="0.9" height="15.0" fill="rgb(239,121,36)" rx="2" ry="2" />
<text text-anchor="" x="928.96" 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>/home/odoo/odoo-11.0/addons/web_editor/models/ir_ui_view.py:render:27 (3 samples, 0.24%)</title><rect x="1187.1" y="677" width="2.9" height="15.0" fill="rgb(240,115,20)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="13.8" y="869" width="1.0" height="15.0" fill="rgb(212,187,32)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="989.3" y="197" width="1.0" height="15.0" fill="rgb(212,64,31)" rx="2" ry="2" />
<text text-anchor="" x="992.33" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (4 samples, 0.33%)</title><rect x="886.6" y="213" width="3.8" height="15.0" fill="rgb(222,110,26)" rx="2" ry="2" />
<text text-anchor="" x="889.60" 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>/.repo_requirements/odoo/odoo/osv/expression.py:generate_table_alias:355 (1 samples, 0.08%)</title><rect x="1154.5" y="197" width="0.9" height="15.0" fill="rgb(223,0,24)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1176.6" y="549" width="0.9" height="15.0" fill="rgb(225,86,19)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (4 samples, 0.33%)</title><rect x="571.7" y="325" width="3.8" height="15.0" fill="rgb(209,222,11)" rx="2" ry="2" />
<text text-anchor="" x="574.68" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1121.8" y="293" width="1.0" height="15.0" fill="rgb(209,154,14)" rx="2" ry="2" />
<text text-anchor="" x="1124.83" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="21.5" y="901" width="1.0" height="15.0" fill="rgb(218,38,34)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="934.6" y="133" width="1.0" height="15.0" fill="rgb(249,224,14)" rx="2" ry="2" />
<text text-anchor="" x="937.61" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="495.8" y="165" width="1.0" height="15.0" fill="rgb(238,44,28)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="266.4" y="101" width="1.9" height="15.0" fill="rgb(250,210,44)" rx="2" ry="2" />
<text text-anchor="" x="269.35" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="398.9" y="133" width="0.9" height="15.0" fill="rgb(251,60,14)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (21 samples, 1.71%)</title><rect x="10.0" y="981" width="20.2" height="15.0" fill="rgb(248,109,6)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="548.6" y="149" width="1.0" height="15.0" fill="rgb(214,223,27)" rx="2" ry="2" />
<text text-anchor="" x="551.63" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1035 (1 samples, 0.08%)</title><rect x="674.4" y="309" width="1.0" height="15.0" fill="rgb(249,165,4)" rx="2" ry="2" />
<text text-anchor="" x="677.41" 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>/.repo_requirements/odoo/odoo/models.py:_create:3518 (1 samples, 0.08%)</title><rect x="689.8" y="357" width="0.9" height="15.0" fill="rgb(232,112,48)" rx="2" ry="2" />
<text text-anchor="" x="692.77" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="574.6" y="293" width="0.9" height="15.0" fill="rgb(213,43,53)" rx="2" ry="2" />
<text text-anchor="" x="577.56" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (4 samples, 0.33%)</title><rect x="933.6" y="197" width="3.9" height="15.0" fill="rgb(216,96,13)" rx="2" ry="2" />
<text text-anchor="" x="936.65" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="668.6" y="293" width="1.0" height="15.0" fill="rgb(207,194,0)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="282.7" y="165" width="0.9" height="15.0" fill="rgb(244,81,48)" rx="2" ry="2" />
<text text-anchor="" x="285.68" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="358.5" y="181" width="4.8" height="15.0" fill="rgb(206,137,12)" rx="2" ry="2" />
<text text-anchor="" x="361.53" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (7 samples, 0.57%)</title><rect x="864.5" y="197" width="6.7" height="15.0" fill="rgb(238,101,10)" rx="2" ry="2" />
<text text-anchor="" x="867.52" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="28.2" y="869" width="1.0" height="15.0" fill="rgb(229,88,6)" rx="2" ry="2" />
<text text-anchor="" x="31.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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="712.8" y="69" width="1.0" height="15.0" fill="rgb(251,218,29)" rx="2" ry="2" />
<text text-anchor="" x="715.82" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="284.6" y="197" width="1.0" height="15.0" fill="rgb(227,150,27)" rx="2" ry="2" />
<text text-anchor="" x="287.60" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:894 (1 samples, 0.08%)</title><rect x="1070.9" y="277" width="1.0" height="15.0" fill="rgb(220,51,41)" rx="2" ry="2" />
<text text-anchor="" x="1073.94" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="920.2" y="149" width="1.0" height="15.0" fill="rgb(243,136,25)" rx="2" ry="2" />
<text text-anchor="" x="923.20" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (7 samples, 0.57%)</title><rect x="798.3" y="181" width="6.7" height="15.0" fill="rgb(224,149,36)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="996.1" y="197" width="1.9" height="15.0" fill="rgb(228,229,51)" rx="2" ry="2" />
<text text-anchor="" x="999.05" 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>/.repo_requirements/odoo/odoo/models.py:_uniquify_list:3804 (1 samples, 0.08%)</title><rect x="258.7" y="85" width="0.9" height="15.0" fill="rgb(232,145,45)" rx="2" ry="2" />
<text text-anchor="" x="261.67" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="293" width="0.9" height="15.0" fill="rgb(229,4,38)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (3 samples, 0.24%)</title><rect x="710.9" y="133" width="2.9" height="15.0" fill="rgb(217,58,18)" rx="2" ry="2" />
<text text-anchor="" x="713.90" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="21.5" y="837" width="1.0" height="15.0" fill="rgb(206,94,48)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (2 samples, 0.16%)</title><rect x="228.9" y="325" width="1.9" height="15.0" fill="rgb(224,103,2)" rx="2" ry="2" />
<text text-anchor="" x="231.91" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="935.6" y="165" width="0.9" height="15.0" fill="rgb(248,135,25)" rx="2" ry="2" />
<text text-anchor="" x="938.57" 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>/usr/lib/python3.5/contextlib.py:__exit__:68 (1 samples, 0.08%)</title><rect x="1172.7" y="325" width="1.0" height="15.0" fill="rgb(214,142,46)" rx="2" ry="2" />
<text text-anchor="" x="1175.72" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:129 (3 samples, 0.24%)</title><rect x="1143.0" y="277" width="2.8" height="15.0" fill="rgb(223,172,28)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>/.repo_requirements/odoo/odoo/models.py:create:3377 (1 samples, 0.08%)</title><rect x="129.1" y="405" width="0.9" height="15.0" fill="rgb(205,112,50)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (1 samples, 0.08%)</title><rect x="1064.2" y="325" width="1.0" height="15.0" fill="rgb(214,151,16)" rx="2" ry="2" />
<text text-anchor="" x="1067.22" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="337.4" y="197" width="1.0" height="15.0" fill="rgb(219,79,37)" rx="2" ry="2" />
<text text-anchor="" x="340.40" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (7 samples, 0.57%)</title><rect x="1011.4" y="197" width="6.7" height="15.0" fill="rgb(248,131,32)" rx="2" ry="2" />
<text text-anchor="" x="1014.42" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="379.7" y="133" width="0.9" height="15.0" fill="rgb(223,38,9)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.16%)</title><rect x="127.1" y="373" width="2.0" height="15.0" fill="rgb(222,126,9)" rx="2" ry="2" />
<text text-anchor="" x="130.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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="1175.6" y="261" width="1.0" height="15.0" fill="rgb(237,153,15)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="519.8" y="181" width="1.9" height="15.0" fill="rgb(254,155,20)" rx="2" ry="2" />
<text text-anchor="" x="522.83" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.08%)</title><rect x="25.4" y="229" width="0.9" height="15.0" fill="rgb(234,167,15)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="816.5" y="181" width="1.0" height="15.0" fill="rgb(239,86,28)" rx="2" ry="2" />
<text text-anchor="" x="819.51" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:1018 (5 samples, 0.41%)</title><rect x="961.5" y="165" width="4.8" height="15.0" fill="rgb(250,100,3)" rx="2" ry="2" />
<text text-anchor="" x="964.49" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="780.0" y="181" width="1.0" height="15.0" fill="rgb(214,128,5)" rx="2" ry="2" />
<text text-anchor="" x="783.02" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (21 samples, 1.71%)</title><rect x="10.0" y="1141" width="20.2" height="15.0" fill="rgb(219,104,2)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/api.py:protected:859 (1 samples, 0.08%)</title><rect x="213.5" y="325" width="1.0" height="15.0" fill="rgb(208,105,50)" rx="2" ry="2" />
<text text-anchor="" x="216.55" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="1053.7" y="325" width="0.9" height="15.0" fill="rgb(208,116,16)" rx="2" ry="2" />
<text text-anchor="" x="1056.66" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_attachment.py:_file_read:101 (1 samples, 0.08%)</title><rect x="1183.3" y="549" width="0.9" height="15.0" fill="rgb(252,202,1)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:930 (1 samples, 0.08%)</title><rect x="765.6" y="165" width="1.0" height="15.0" fill="rgb(246,182,6)" rx="2" ry="2" />
<text text-anchor="" x="768.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="444.0" y="165" width="0.9" height="15.0" fill="rgb(216,98,29)" rx="2" ry="2" />
<text text-anchor="" x="446.98" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="128.1" y="325" width="1.0" height="15.0" fill="rgb(230,37,16)" rx="2" ry="2" />
<text text-anchor="" x="131.10" 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>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.08%)</title><rect x="1187.1" y="181" width="1.0" height="15.0" fill="rgb(208,210,20)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (1 samples, 0.08%)</title><rect x="1032.5" y="213" width="1.0" height="15.0" fill="rgb(211,58,11)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.08%)</title><rect x="1051.7" y="229" width="1.0" height="15.0" fill="rgb(235,106,46)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="665.8" y="245" width="0.9" height="15.0" fill="rgb(212,194,3)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:3191 (1 samples, 0.08%)</title><rect x="31.1" y="1189" width="1.0" height="15.0" fill="rgb(221,62,45)" rx="2" ry="2" />
<text text-anchor="" x="34.12" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_compute:41 (4 samples, 0.33%)</title><rect x="754.1" y="229" width="3.8" height="15.0" fill="rgb(214,2,52)" rx="2" ry="2" />
<text text-anchor="" x="757.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="21.5" y="821" width="1.0" height="15.0" fill="rgb(231,143,10)" rx="2" ry="2" />
<text text-anchor="" x="24.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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (3 samples, 0.24%)</title><rect x="769.5" y="213" width="2.8" height="15.0" fill="rgb(249,160,24)" rx="2" ry="2" />
<text text-anchor="" x="772.46" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="22.5" y="613" width="3.8" height="15.0" fill="rgb(220,123,25)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (3 samples, 0.24%)</title><rect x="451.7" y="213" width="2.8" height="15.0" fill="rgb(219,190,17)" rx="2" ry="2" />
<text text-anchor="" x="454.66" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (4 samples, 0.33%)</title><rect x="710.9" y="229" width="3.8" height="15.0" fill="rgb(210,220,15)" rx="2" ry="2" />
<text text-anchor="" x="713.90" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2609 (1 samples, 0.08%)</title><rect x="22.5" y="341" width="0.9" height="15.0" fill="rgb(218,135,6)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (3 samples, 0.24%)</title><rect x="1042.1" y="245" width="2.9" height="15.0" fill="rgb(219,147,40)" rx="2" ry="2" />
<text text-anchor="" x="1045.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="980.7" y="197" width="1.0" height="15.0" fill="rgb(253,60,18)" rx="2" ry="2" />
<text text-anchor="" x="983.69" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="984.5" y="149" width="1.0" height="15.0" fill="rgb(235,220,31)" rx="2" ry="2" />
<text text-anchor="" x="987.53" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="302.8" y="181" width="1.0" height="15.0" fill="rgb(208,15,42)" rx="2" ry="2" />
<text text-anchor="" x="305.84" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="184.7" y="277" width="1.0" height="15.0" fill="rgb(217,213,19)" rx="2" ry="2" />
<text text-anchor="" x="187.74" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="969.2" y="117" width="0.9" height="15.0" fill="rgb(219,171,34)" rx="2" ry="2" />
<text text-anchor="" x="972.17" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2619 (1 samples, 0.08%)</title><rect x="317.2" y="133" width="1.0" height="15.0" fill="rgb(214,7,50)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="695.5" y="293" width="1.0" height="15.0" fill="rgb(220,140,37)" rx="2" ry="2" />
<text text-anchor="" x="698.53" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="136.7" y="229" width="1.0" height="15.0" fill="rgb(224,151,12)" rx="2" ry="2" />
<text text-anchor="" x="139.74" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (3 samples, 0.24%)</title><rect x="214.5" y="341" width="2.9" height="15.0" fill="rgb(243,0,7)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/.repo_requirements/odoo/odoo/api.py:protecting:871 (1 samples, 0.08%)</title><rect x="25.4" y="389" width="0.9" height="15.0" fill="rgb(226,65,8)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (3 samples, 0.24%)</title><rect x="690.7" y="277" width="2.9" height="15.0" fill="rgb(247,60,41)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="505.4" y="181" width="1.0" height="15.0" fill="rgb(241,152,32)" rx="2" ry="2" />
<text text-anchor="" x="508.43" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="843.4" y="165" width="1.0" height="15.0" fill="rgb(237,75,35)" rx="2" ry="2" />
<text text-anchor="" x="846.39" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_compute:40 (22 samples, 1.79%)</title><rect x="256.8" y="229" width="21.1" height="15.0" fill="rgb(227,162,2)" rx="2" ry="2" />
<text text-anchor="" x="259.75" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (6 samples, 0.49%)</title><rect x="496.8" y="213" width="5.7" height="15.0" fill="rgb(234,57,18)" rx="2" ry="2" />
<text text-anchor="" x="499.79" 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>/.repo_requirements/odoo/odoo/api.py:__new__:748 (1 samples, 0.08%)</title><rect x="276.9" y="85" width="1.0" height="15.0" fill="rgb(211,179,35)" rx="2" ry="2" />
<text text-anchor="" x="279.92" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (4 samples, 0.33%)</title><rect x="318.2" y="133" width="3.8" height="15.0" fill="rgb(254,139,24)" rx="2" ry="2" />
<text text-anchor="" x="321.20" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="541.0" y="101" width="0.9" height="15.0" fill="rgb(251,67,45)" rx="2" ry="2" />
<text text-anchor="" x="543.95" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.08%)</title><rect x="679.2" y="277" width="1.0" height="15.0" fill="rgb(234,208,39)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/models.py:modified:4867 (1 samples, 0.08%)</title><rect x="1155.4" y="309" width="1.0" height="15.0" fill="rgb(223,129,38)" rx="2" ry="2" />
<text text-anchor="" x="1158.44" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="515.0" y="165" width="1.0" height="15.0" fill="rgb(241,211,25)" rx="2" ry="2" />
<text text-anchor="" x="518.03" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="823.2" y="149" width="1.0" height="15.0" fill="rgb(234,31,32)" rx="2" ry="2" />
<text text-anchor="" x="826.23" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.08%)</title><rect x="1187.1" y="213" width="1.0" height="15.0" fill="rgb(207,9,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (1 samples, 0.08%)</title><rect x="337.4" y="213" width="1.0" height="15.0" fill="rgb(246,42,28)" rx="2" ry="2" />
<text text-anchor="" x="340.40" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:953 (2 samples, 0.16%)</title><rect x="793.5" y="213" width="1.9" height="15.0" fill="rgb(239,156,20)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (21 samples, 1.71%)</title><rect x="824.2" y="197" width="20.2" height="15.0" fill="rgb(233,205,38)" rx="2" ry="2" />
<text text-anchor="" x="827.19" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (38 samples, 3.09%)</title><rect x="133.9" y="373" width="36.4" height="15.0" fill="rgb(226,66,0)" rx="2" ry="2" />
<text text-anchor="" x="136.86" y="383.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>/.repo_requirements/odoo/odoo/models.py:recompute:4916 (1 samples, 0.08%)</title><rect x="1065.2" y="341" width="0.9" height="15.0" fill="rgb(205,16,53)" rx="2" ry="2" />
<text text-anchor="" x="1068.18" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="392.1" y="149" width="1.0" height="15.0" fill="rgb(245,128,22)" rx="2" ry="2" />
<text text-anchor="" x="395.13" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (47 samples, 3.82%)</title><rect x="51.3" y="1173" width="45.1" height="15.0" fill="rgb(246,36,2)" rx="2" ry="2" />
<text text-anchor="" x="54.29" y="1183.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>/.repo_requirements/odoo/odoo/models.py:modified:4863 (1 samples, 0.08%)</title><rect x="217.4" y="341" width="0.9" height="15.0" fill="rgb(219,59,31)" rx="2" ry="2" />
<text text-anchor="" x="220.39" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="188.6" y="293" width="0.9" height="15.0" fill="rgb(252,15,42)" rx="2" ry="2" />
<text text-anchor="" x="191.58" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="423.8" y="165" width="1.0" height="15.0" fill="rgb(222,74,34)" rx="2" ry="2" />
<text text-anchor="" x="426.82" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="1127.6" y="229" width="1.0" height="15.0" fill="rgb(249,106,30)" rx="2" ry="2" />
<text text-anchor="" x="1130.59" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2715 (1 samples, 0.08%)</title><rect x="319.2" y="101" width="0.9" height="15.0" fill="rgb(245,95,0)" rx="2" ry="2" />
<text text-anchor="" x="322.16" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (22 samples, 1.79%)</title><rect x="316.3" y="213" width="21.1" height="15.0" fill="rgb(252,8,53)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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>/.repo_requirements/odoo/odoo/models.py:_in_cache_without:4791 (1 samples, 0.08%)</title><rect x="798.3" y="117" width="0.9" height="15.0" fill="rgb(208,88,8)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="846.3" y="165" width="0.9" height="15.0" fill="rgb(207,66,23)" rx="2" ry="2" />
<text text-anchor="" x="849.27" 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>/.repo_requirements/odoo/odoo/http.py:_call_function:342 (4 samples, 0.33%)</title><rect x="22.5" y="773" width="3.8" height="15.0" fill="rgb(221,166,30)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="269.2" y="53" width="2.0" height="15.0" fill="rgb(207,12,4)" rx="2" ry="2" />
<text text-anchor="" x="272.24" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (6 samples, 0.49%)</title><rect x="365.2" y="213" width="5.8" height="15.0" fill="rgb(229,38,26)" rx="2" ry="2" />
<text text-anchor="" x="368.25" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="792.5" y="181" width="1.0" height="15.0" fill="rgb(249,20,54)" rx="2" ry="2" />
<text text-anchor="" x="795.51" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="814.6" y="165" width="0.9" height="15.0" fill="rgb(241,90,5)" rx="2" ry="2" />
<text text-anchor="" x="817.59" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="953.8" y="149" width="1.0" height="15.0" fill="rgb(209,128,51)" rx="2" ry="2" />
<text text-anchor="" x="956.81" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (2 samples, 0.16%)</title><rect x="1168.9" y="325" width="1.9" height="15.0" fill="rgb(238,62,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.88" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="11.0" y="661" width="0.9" height="15.0" fill="rgb(223,80,23)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_matched_percentage:60 (3 samples, 0.24%)</title><rect x="475.7" y="229" width="2.8" height="15.0" fill="rgb(237,229,4)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="1175.6" y="229" width="1.0" height="15.0" fill="rgb(227,42,12)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:897 (3 samples, 0.24%)</title><rect x="1150.6" y="229" width="2.9" height="15.0" fill="rgb(231,150,46)" rx="2" ry="2" />
<text text-anchor="" x="1153.63" 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>/.repo_requirements/odoo/odoo/api.py:_do_in_mode:815 (21 samples, 1.71%)</title><rect x="10.0" y="1077" width="20.2" height="15.0" fill="rgb(229,94,4)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (4 samples, 0.33%)</title><rect x="400.8" y="213" width="3.8" height="15.0" fill="rgb(208,19,36)" rx="2" ry="2" />
<text text-anchor="" x="403.77" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1759 (1 samples, 0.08%)</title><rect x="207.8" y="405" width="0.9" height="15.0" fill="rgb(221,159,54)" rx="2" ry="2" />
<text text-anchor="" x="210.79" 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>/.repo_requirements/odoo/odoo/models.py:create:3377 (514 samples, 41.82%)</title><rect x="681.1" y="373" width="493.5" height="15.0" fill="rgb(228,77,19)" rx="2" ry="2" />
<text text-anchor="" x="684.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:create:3377</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4761 (1 samples, 0.08%)</title><rect x="144.4" y="277" width="1.0" height="15.0" fill="rgb(249,151,30)" rx="2" ry="2" />
<text text-anchor="" x="147.42" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="223.1" y="293" width="1.0" height="15.0" fill="rgb(254,215,13)" rx="2" ry="2" />
<text text-anchor="" x="226.15" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (12 samples, 0.98%)</title><rect x="464.1" y="213" width="11.6" height="15.0" fill="rgb(229,198,41)" rx="2" ry="2" />
<text text-anchor="" x="467.14" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="494.9" y="133" width="0.9" height="15.0" fill="rgb(221,198,19)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="408.5" y="197" width="0.9" height="15.0" fill="rgb(225,31,17)" rx="2" ry="2" />
<text text-anchor="" x="411.45" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.08%)</title><rect x="573.6" y="213" width="1.0" height="15.0" fill="rgb(205,66,22)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="355.6" y="117" width="1.0" height="15.0" fill="rgb(219,175,19)" rx="2" ry="2" />
<text text-anchor="" x="358.65" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="266.4" y="85" width="1.9" height="15.0" fill="rgb(253,53,18)" rx="2" ry="2" />
<text text-anchor="" x="269.35" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (1 samples, 0.08%)</title><rect x="397.9" y="213" width="1.0" height="15.0" fill="rgb(225,137,7)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="220.3" y="245" width="0.9" height="15.0" fill="rgb(205,149,24)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4926 (1 samples, 0.08%)</title><rect x="678.3" y="341" width="0.9" height="15.0" fill="rgb(236,40,11)" rx="2" ry="2" />
<text text-anchor="" x="681.25" 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>/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22 (4 samples, 0.33%)</title><rect x="22.5" y="677" width="3.8" height="15.0" fill="rgb(246,38,43)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (21 samples, 1.71%)</title><rect x="10.0" y="1045" width="20.2" height="15.0" fill="rgb(234,182,53)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/home/odoo/build/vauxoo/typ/shopify_extension/models/sale_workflow_process.py:_process_shopify_order_payments:167 (1,096 samples, 89.18%)</title><rect x="124.3" y="549" width="1052.3" height="15.0" fill="rgb(239,0,30)" rx="2" ry="2" />
<text text-anchor="" x="127.26" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/build/vauxoo/typ/shopify_extension/models/sale_workflow_process.py:_process_shopify_order_payments:167</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:2000 (1 samples, 0.08%)</title><rect x="1177.5" y="613" width="1.0" height="15.0" fill="rgb(213,117,26)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.08%)</title><rect x="125.2" y="341" width="1.0" height="15.0" fill="rgb(224,107,36)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="422.9" y="133" width="0.9" height="15.0" fill="rgb(205,50,48)" rx="2" ry="2" />
<text text-anchor="" x="425.86" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (8 samples, 0.65%)</title><rect x="456.5" y="213" width="7.6" height="15.0" fill="rgb(229,127,38)" rx="2" ry="2" />
<text text-anchor="" x="459.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (5 samples, 0.41%)</title><rect x="198.2" y="293" width="4.8" height="15.0" fill="rgb(249,109,46)" rx="2" ry="2" />
<text text-anchor="" x="201.19" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="343.2" y="165" width="0.9" height="15.0" fill="rgb(239,226,41)" rx="2" ry="2" />
<text text-anchor="" x="346.17" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="941.3" y="197" width="1.0" height="15.0" fill="rgb(222,152,11)" rx="2" ry="2" />
<text text-anchor="" x="944.33" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="130.0" y="261" width="1.0" height="15.0" fill="rgb(219,84,17)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.08%)</title><rect x="667.7" y="213" width="0.9" height="15.0" fill="rgb(252,169,34)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (1 samples, 0.08%)</title><rect x="293.2" y="213" width="1.0" height="15.0" fill="rgb(214,110,29)" rx="2" ry="2" />
<text text-anchor="" x="296.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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (1 samples, 0.08%)</title><rect x="1180.4" y="485" width="1.0" height="15.0" fill="rgb(246,59,38)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (4 samples, 0.33%)</title><rect x="22.5" y="869" width="3.8" height="15.0" fill="rgb(224,6,32)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="493.9" y="149" width="1.0" height="15.0" fill="rgb(235,104,23)" rx="2" ry="2" />
<text text-anchor="" x="496.91" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1103 (1 samples, 0.08%)</title><rect x="959.6" y="197" width="0.9" height="15.0" fill="rgb(242,1,35)" rx="2" ry="2" />
<text text-anchor="" x="962.57" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="755.1" y="197" width="1.9" height="15.0" fill="rgb(242,47,21)" rx="2" ry="2" />
<text text-anchor="" x="758.06" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (4 samples, 0.33%)</title><rect x="22.5" y="597" width="3.8" height="15.0" fill="rgb(236,183,39)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (17 samples, 1.38%)</title><rect x="737.8" y="165" width="16.3" height="15.0" fill="rgb(241,21,53)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="379.7" y="181" width="0.9" height="15.0" fill="rgb(232,151,5)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (3 samples, 0.24%)</title><rect x="1157.4" y="245" width="2.8" height="15.0" fill="rgb(236,169,11)" rx="2" ry="2" />
<text text-anchor="" x="1160.36" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="930.8" y="133" width="0.9" height="15.0" fill="rgb(232,97,8)" rx="2" ry="2" />
<text text-anchor="" x="933.76" 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>/.repo_requirements/odoo/odoo/api.py:_do_in_mode:815 (4 samples, 0.33%)</title><rect x="22.5" y="533" width="3.8" height="15.0" fill="rgb(242,218,17)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (310 samples, 25.22%)</title><rect x="735.9" y="245" width="297.6" height="15.0" fill="rgb(209,131,38)" rx="2" ry="2" />
<text text-anchor="" x="738.86" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (8 samples, 0.65%)</title><rect x="1037.3" y="293" width="7.7" height="15.0" fill="rgb(207,176,53)" rx="2" ry="2" />
<text text-anchor="" x="1040.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="757.9" y="165" width="1.0" height="15.0" fill="rgb(212,144,51)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (3 samples, 0.24%)</title><rect x="682.1" y="277" width="2.9" height="15.0" fill="rgb(241,83,1)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="821.3" y="181" width="1.0" height="15.0" fill="rgb(231,55,22)" rx="2" ry="2" />
<text text-anchor="" x="824.31" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="735.9" y="165" width="0.9" height="15.0" fill="rgb(224,228,41)" rx="2" ry="2" />
<text text-anchor="" x="738.86" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1024.9" y="133" width="0.9" height="15.0" fill="rgb(223,168,9)" rx="2" ry="2" />
<text text-anchor="" x="1027.86" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="239.5" y="197" width="1.9" height="15.0" fill="rgb(230,121,8)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="445.9" y="149" width="1.0" height="15.0" fill="rgb(225,1,31)" rx="2" ry="2" />
<text text-anchor="" x="448.90" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="765.6" y="149" width="1.0" height="15.0" fill="rgb(219,108,9)" rx="2" ry="2" />
<text text-anchor="" x="768.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="439.2" y="197" width="2.9" height="15.0" fill="rgb(244,31,29)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="500.6" y="181" width="1.0" height="15.0" fill="rgb(228,39,32)" rx="2" ry="2" />
<text text-anchor="" x="503.63" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="510.2" y="181" width="1.0" height="15.0" fill="rgb(252,152,8)" rx="2" ry="2" />
<text text-anchor="" x="513.23" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="745.5" y="85" width="0.9" height="15.0" fill="rgb(208,163,2)" rx="2" ry="2" />
<text text-anchor="" x="748.46" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="325.9" y="133" width="0.9" height="15.0" fill="rgb(247,27,26)" rx="2" ry="2" />
<text text-anchor="" x="328.88" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (11 samples, 0.90%)</title><rect x="478.5" y="181" width="10.6" height="15.0" fill="rgb(221,40,52)" rx="2" ry="2" />
<text text-anchor="" x="481.54" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:517 (4 samples, 0.33%)</title><rect x="22.5" y="837" width="3.8" height="15.0" fill="rgb(230,79,8)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="506.4" y="197" width="1.9" height="15.0" fill="rgb(208,174,5)" rx="2" ry="2" />
<text text-anchor="" x="509.39" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.08%)</title><rect x="692.7" y="245" width="0.9" height="15.0" fill="rgb(224,85,51)" rx="2" ry="2" />
<text text-anchor="" x="695.65" 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>/.repo_requirements/odoo/odoo/models.py:with_context:4439 (1 samples, 0.08%)</title><rect x="276.9" y="117" width="1.0" height="15.0" fill="rgb(242,40,16)" rx="2" ry="2" />
<text text-anchor="" x="279.92" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (2 samples, 0.16%)</title><rect x="924.0" y="213" width="2.0" height="15.0" fill="rgb(252,182,46)" rx="2" ry="2" />
<text text-anchor="" x="927.04" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="760.8" y="197" width="1.0" height="15.0" fill="rgb(219,37,2)" rx="2" ry="2" />
<text text-anchor="" x="763.82" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (37 samples, 3.01%)</title><rect x="133.9" y="325" width="35.5" height="15.0" fill="rgb(243,184,0)" rx="2" ry="2" />
<text text-anchor="" x="136.86" y="335.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="525.6" y="149" width="1.0" height="15.0" fill="rgb(238,199,53)" rx="2" ry="2" />
<text text-anchor="" x="528.59" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (2 samples, 0.16%)</title><rect x="239.5" y="229" width="1.9" height="15.0" fill="rgb(205,36,15)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (6 samples, 0.49%)</title><rect x="352.8" y="165" width="5.7" height="15.0" fill="rgb(252,229,41)" rx="2" ry="2" />
<text text-anchor="" x="355.77" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1052 (1 samples, 0.08%)</title><rect x="123.3" y="517" width="1.0" height="15.0" fill="rgb(211,79,0)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_translation.py:__get_source:371 (1 samples, 0.08%)</title><rect x="122.3" y="565" width="1.0" height="15.0" fill="rgb(242,163,28)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/home/odoo/server-tools/profiler/hooks.py:webreq_f:27 (1,105 samples, 89.91%)</title><rect x="122.3" y="805" width="1061.0" height="15.0" fill="rgb(252,89,34)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/server-tools/profiler/hooks.py:webreq_f:27</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/web/controllers/main.py:binary_content:431 (1 samples, 0.08%)</title><rect x="1183.3" y="693" width="0.9" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_check:4885 (4 samples, 0.33%)</title><rect x="1033.5" y="261" width="3.8" height="15.0" fill="rgb(217,72,5)" rx="2" ry="2" />
<text text-anchor="" x="1036.50" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (4 samples, 0.33%)</title><rect x="1110.3" y="277" width="3.8" height="15.0" fill="rgb(205,87,8)" rx="2" ry="2" />
<text text-anchor="" x="1113.31" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="1177.5" y="549" width="1.0" height="15.0" fill="rgb(245,219,50)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:_recompute_done:4893 (1 samples, 0.08%)</title><rect x="1046.9" y="325" width="1.0" height="15.0" fill="rgb(231,38,20)" rx="2" ry="2" />
<text text-anchor="" x="1049.94" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:381 (52 samples, 4.23%)</title><rect x="502.5" y="229" width="50.0" height="15.0" fill="rgb(241,111,28)" rx="2" ry="2" />
<text text-anchor="" x="505.55" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/website/models/ir_http.py:binary_content:251 (1 samples, 0.08%)</title><rect x="1183.3" y="677" width="0.9" height="15.0" fill="rgb(246,113,27)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.08%)</title><rect x="801.1" y="85" width="1.0" height="15.0" fill="rgb(224,25,9)" rx="2" ry="2" />
<text text-anchor="" x="804.15" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:render:57 (3 samples, 0.24%)</title><rect x="1187.1" y="645" width="2.9" height="15.0" fill="rgb(210,58,29)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="720.5" y="213" width="1.0" height="15.0" fill="rgb(238,38,19)" rx="2" ry="2" />
<text text-anchor="" x="723.50" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:search:134 (3 samples, 0.24%)</title><rect x="1178.5" y="581" width="2.9" height="15.0" fill="rgb(221,143,52)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="455.5" y="197" width="1.0" height="15.0" fill="rgb(223,36,23)" rx="2" ry="2" />
<text text-anchor="" x="458.50" 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>/.repo_requirements/odoo/odoo/models.py:fields_view_get:1375 (1 samples, 0.08%)</title><rect x="1176.6" y="613" width="0.9" height="15.0" fill="rgb(235,95,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (3 samples, 0.24%)</title><rect x="1187.1" y="485" width="2.9" height="15.0" fill="rgb(223,15,48)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/api.py:__iter__:943 (1 samples, 0.08%)</title><rect x="25.4" y="181" width="0.9" height="15.0" fill="rgb(244,77,9)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="348.9" y="117" width="1.0" height="15.0" fill="rgb(236,129,39)" rx="2" ry="2" />
<text text-anchor="" x="351.93" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="1152.6" y="165" width="0.9" height="15.0" fill="rgb(210,210,29)" rx="2" ry="2" />
<text text-anchor="" x="1155.55" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="524.6" y="181" width="1.0" height="15.0" fill="rgb(206,43,17)" rx="2" ry="2" />
<text text-anchor="" x="527.63" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (4 samples, 0.33%)</title><rect x="541.0" y="197" width="3.8" height="15.0" fill="rgb(235,183,45)" rx="2" ry="2" />
<text text-anchor="" x="543.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1130.5" y="261" width="0.9" height="15.0" fill="rgb(209,133,11)" rx="2" ry="2" />
<text text-anchor="" x="1133.47" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (5 samples, 0.41%)</title><rect x="715.7" y="229" width="4.8" height="15.0" fill="rgb(237,202,34)" rx="2" ry="2" />
<text text-anchor="" x="718.70" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="23.4" y="341" width="1.0" height="15.0" fill="rgb(230,61,39)" rx="2" ry="2" />
<text text-anchor="" x="26.44" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.08%)</title><rect x="257.7" y="101" width="1.0" height="15.0" fill="rgb(206,219,1)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="255.8" y="197" width="1.0" height="15.0" fill="rgb(228,6,32)" rx="2" ry="2" />
<text text-anchor="" x="258.79" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.08%)</title><rect x="1154.5" y="229" width="0.9" height="15.0" fill="rgb(229,123,48)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="473.7" y="197" width="2.0" height="15.0" fill="rgb(219,102,13)" rx="2" ry="2" />
<text text-anchor="" x="476.74" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="883.7" y="165" width="1.0" height="15.0" fill="rgb(226,21,45)" rx="2" ry="2" />
<text text-anchor="" x="886.72" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (5 samples, 0.41%)</title><rect x="468.0" y="197" width="4.8" height="15.0" fill="rgb(226,7,30)" rx="2" ry="2" />
<text text-anchor="" x="470.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="924.0" y="165" width="1.0" height="15.0" fill="rgb(252,216,42)" rx="2" ry="2" />
<text text-anchor="" x="927.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="403.7" y="133" width="0.9" height="15.0" fill="rgb(207,24,31)" rx="2" ry="2" />
<text text-anchor="" x="406.65" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="235.6" y="261" width="1.0" height="15.0" fill="rgb(215,137,17)" rx="2" ry="2" />
<text text-anchor="" x="238.63" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="665.8" y="117" width="0.9" height="15.0" fill="rgb(210,174,2)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="632.2" y="229" width="0.9" height="15.0" fill="rgb(236,225,40)" rx="2" ry="2" />
<text text-anchor="" x="635.16" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="534.2" y="149" width="1.0" height="15.0" fill="rgb(217,137,23)" rx="2" ry="2" />
<text text-anchor="" x="537.23" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="396.0" y="197" width="0.9" height="15.0" fill="rgb(214,228,23)" rx="2" ry="2" />
<text text-anchor="" x="398.97" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="559.2" y="261" width="1.0" height="15.0" fill="rgb(209,200,5)" rx="2" ry="2" />
<text text-anchor="" x="562.19" 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>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (13 samples, 1.06%)</title><rect x="478.5" y="213" width="12.5" height="15.0" fill="rgb(225,99,29)" rx="2" ry="2" />
<text text-anchor="" x="481.54" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_matched_percentage:53 (22 samples, 1.79%)</title><rect x="937.5" y="229" width="21.1" height="15.0" fill="rgb(217,26,38)" rx="2" ry="2" />
<text text-anchor="" x="940.49" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="1018.1" y="181" width="1.0" height="15.0" fill="rgb(249,199,38)" rx="2" ry="2" />
<text text-anchor="" x="1021.14" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1009.5" y="149" width="1.0" height="15.0" fill="rgb(228,57,15)" rx="2" ry="2" />
<text text-anchor="" x="1012.50" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (2 samples, 0.16%)</title><rect x="251.0" y="213" width="1.9" height="15.0" fill="rgb(232,59,36)" rx="2" ry="2" />
<text text-anchor="" x="253.99" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="278.8" y="181" width="1.0" height="15.0" fill="rgb(218,216,51)" rx="2" ry="2" />
<text text-anchor="" x="281.84" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="370.0" y="197" width="1.0" height="15.0" fill="rgb(220,38,17)" rx="2" ry="2" />
<text text-anchor="" x="373.05" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="21.5" y="869" width="1.0" height="15.0" fill="rgb(247,10,49)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="406.5" y="181" width="1.0" height="15.0" fill="rgb(219,52,12)" rx="2" ry="2" />
<text text-anchor="" x="409.53" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (2 samples, 0.16%)</title><rect x="239.5" y="101" width="1.9" height="15.0" fill="rgb(251,190,54)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="992.2" y="165" width="1.0" height="15.0" fill="rgb(242,60,4)" rx="2" ry="2" />
<text text-anchor="" x="995.21" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="151.1" y="229" width="1.0" height="15.0" fill="rgb(221,42,25)" rx="2" ry="2" />
<text text-anchor="" x="154.14" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="835.7" y="133" width="1.9" height="15.0" fill="rgb(225,64,49)" rx="2" ry="2" />
<text text-anchor="" x="838.71" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="707.1" y="293" width="0.9" height="15.0" fill="rgb(225,207,6)" rx="2" ry="2" />
<text text-anchor="" x="710.05" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="489.1" y="165" width="1.0" height="15.0" fill="rgb(227,174,5)" rx="2" ry="2" />
<text text-anchor="" x="492.10" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-22&gt;:_visible_menu_ids:2 (3 samples, 0.24%)</title><rect x="1178.5" y="549" width="2.9" height="15.0" fill="rgb(247,163,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="1058.5" y="277" width="1.9" height="15.0" fill="rgb(224,197,53)" rx="2" ry="2" />
<text text-anchor="" x="1061.46" 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>/.repo_requirements/odoo/odoo/service/server.py:http_thread:262 (8 samples, 0.65%)</title><rect x="107.0" y="1141" width="7.7" height="15.0" fill="rgb(219,127,32)" rx="2" ry="2" />
<text text-anchor="" x="109.97" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="203.0" y="293" width="0.9" height="15.0" fill="rgb(254,213,4)" rx="2" ry="2" />
<text text-anchor="" x="205.99" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="877.0" y="181" width="1.0" height="15.0" fill="rgb(215,119,40)" rx="2" ry="2" />
<text text-anchor="" x="880.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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="410.4" y="181" width="0.9" height="15.0" fill="rgb(252,34,41)" rx="2" ry="2" />
<text text-anchor="" x="413.37" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (4 samples, 0.33%)</title><rect x="533.3" y="181" width="3.8" height="15.0" fill="rgb(208,208,30)" rx="2" ry="2" />
<text text-anchor="" x="536.27" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="372.9" y="197" width="1.0" height="15.0" fill="rgb(209,31,38)" rx="2" ry="2" />
<text text-anchor="" x="375.93" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="236.6" y="245" width="1.9" height="15.0" fill="rgb(213,88,11)" rx="2" ry="2" />
<text text-anchor="" x="239.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="452.6" y="181" width="1.0" height="15.0" fill="rgb(223,135,48)" rx="2" ry="2" />
<text text-anchor="" x="455.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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.08%)</title><rect x="27.3" y="869" width="0.9" height="15.0" fill="rgb(226,171,29)" rx="2" ry="2" />
<text text-anchor="" x="30.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="775.2" y="165" width="1.0" height="15.0" fill="rgb(254,171,7)" rx="2" ry="2" />
<text text-anchor="" x="778.22" 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>/.repo_requirements/odoo/odoo/service/server.py:cron_thread:231 (1 samples, 0.08%)</title><rect x="115.6" y="1125" width="1.0" height="15.0" fill="rgb(226,155,52)" rx="2" ry="2" />
<text text-anchor="" x="118.61" 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>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.08%)</title><rect x="685.0" y="261" width="0.9" height="15.0" fill="rgb(253,187,19)" rx="2" ry="2" />
<text text-anchor="" x="687.97" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4907 (6 samples, 0.49%)</title><rect x="693.6" y="341" width="5.8" height="15.0" fill="rgb(231,171,28)" rx="2" ry="2" />
<text text-anchor="" x="696.61" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="470.9" y="181" width="0.9" height="15.0" fill="rgb(228,121,21)" rx="2" ry="2" />
<text text-anchor="" x="473.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="879.9" y="197" width="0.9" height="15.0" fill="rgb(222,57,1)" rx="2" ry="2" />
<text text-anchor="" x="882.88" 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>/.repo_requirements/odoo/odoo/api.py:get_missing_ids:1027 (1 samples, 0.08%)</title><rect x="798.3" y="101" width="0.9" height="15.0" fill="rgb(219,146,44)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="760.8" y="181" width="1.0" height="15.0" fill="rgb(206,83,16)" rx="2" ry="2" />
<text text-anchor="" x="763.82" 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>&lt;template&gt;:set_188:3 (3 samples, 0.24%)</title><rect x="1187.1" y="565" width="2.9" height="15.0" fill="rgb(212,65,30)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="1176.6" y="501" width="0.9" height="15.0" fill="rgb(223,151,15)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="841.5" y="133" width="0.9" height="15.0" fill="rgb(230,4,0)" rx="2" ry="2" />
<text text-anchor="" x="844.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (6 samples, 0.49%)</title><rect x="613.9" y="293" width="5.8" height="15.0" fill="rgb(230,89,4)" rx="2" ry="2" />
<text text-anchor="" x="616.92" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1020.1" y="133" width="0.9" height="15.0" fill="rgb(223,133,24)" rx="2" ry="2" />
<text text-anchor="" x="1023.06" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (111 samples, 9.03%)</title><rect x="1066.1" y="341" width="106.6" height="15.0" fill="rgb(219,80,16)" rx="2" ry="2" />
<text text-anchor="" x="1069.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requir..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (3 samples, 0.24%)</title><rect x="593.8" y="293" width="2.8" height="15.0" fill="rgb(225,203,40)" rx="2" ry="2" />
<text text-anchor="" x="596.76" 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>/.repo_requirements/odoo/odoo/models.py:_write:3222 (18 samples, 1.46%)</title><rect x="1145.8" y="325" width="17.3" height="15.0" fill="rgb(223,46,15)" rx="2" ry="2" />
<text text-anchor="" x="1148.83" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="13.8" y="741" width="1.0" height="15.0" fill="rgb(212,60,33)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="589.0" y="309" width="0.9" height="15.0" fill="rgb(210,172,52)" rx="2" ry="2" />
<text text-anchor="" x="591.96" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1890 (1 samples, 0.08%)</title><rect x="129.1" y="421" width="0.9" height="15.0" fill="rgb(237,201,4)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="1174.6" y="357" width="1.0" height="15.0" fill="rgb(248,28,24)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="203.0" y="277" width="0.9" height="15.0" fill="rgb(242,166,14)" rx="2" ry="2" />
<text text-anchor="" x="205.99" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.08%)</title><rect x="24.4" y="277" width="1.0" height="15.0" fill="rgb(240,56,23)" rx="2" ry="2" />
<text text-anchor="" x="27.40" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.08%)</title><rect x="596.6" y="293" width="1.0" height="15.0" fill="rgb(241,144,42)" rx="2" ry="2" />
<text text-anchor="" x="599.64" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1111 (6 samples, 0.49%)</title><rect x="960.5" y="197" width="5.8" height="15.0" fill="rgb(236,193,2)" rx="2" ry="2" />
<text text-anchor="" x="963.53" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="805.0" y="149" width="0.9" height="15.0" fill="rgb(250,214,42)" rx="2" ry="2" />
<text text-anchor="" x="807.99" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="623.5" y="293" width="1.9" height="15.0" fill="rgb(211,86,35)" rx="2" ry="2" />
<text text-anchor="" x="626.52" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="427.7" y="133" width="0.9" height="15.0" fill="rgb(237,165,1)" rx="2" ry="2" />
<text text-anchor="" x="430.66" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (4 samples, 0.33%)</title><rect x="491.0" y="197" width="3.9" height="15.0" fill="rgb(246,59,31)" rx="2" ry="2" />
<text text-anchor="" x="494.03" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="955.7" y="181" width="1.0" height="15.0" fill="rgb(233,63,11)" rx="2" ry="2" />
<text text-anchor="" x="958.73" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (5 samples, 0.41%)</title><rect x="317.2" y="149" width="4.8" height="15.0" fill="rgb(210,10,16)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (6 samples, 0.49%)</title><rect x="286.5" y="213" width="5.8" height="15.0" fill="rgb(229,119,33)" rx="2" ry="2" />
<text text-anchor="" x="289.52" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1119.0" y="293" width="0.9" height="15.0" fill="rgb(249,61,39)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="153.1" y="229" width="0.9" height="15.0" fill="rgb(222,87,39)" rx="2" ry="2" />
<text text-anchor="" x="156.06" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:read_template:1103 (1 samples, 0.08%)</title><rect x="1187.1" y="325" width="1.0" height="15.0" fill="rgb(222,170,48)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="884.7" y="165" width="0.9" height="15.0" fill="rgb(235,15,26)" rx="2" ry="2" />
<text text-anchor="" x="887.68" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="931.7" y="133" width="1.0" height="15.0" fill="rgb(226,123,26)" rx="2" ry="2" />
<text text-anchor="" x="934.72" 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>/.repo_requirements/odoo/odoo/models.py:load_views:1296 (1 samples, 0.08%)</title><rect x="1176.6" y="645" width="0.9" height="15.0" fill="rgb(238,113,7)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="815.5" y="213" width="1.0" height="15.0" fill="rgb(227,152,47)" rx="2" ry="2" />
<text text-anchor="" x="818.55" 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>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (14 samples, 1.14%)</title><rect x="966.3" y="197" width="13.4" height="15.0" fill="rgb(236,5,26)" rx="2" ry="2" />
<text text-anchor="" x="969.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="396.9" y="197" width="1.0" height="15.0" fill="rgb(243,101,28)" rx="2" ry="2" />
<text text-anchor="" x="399.93" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (7 samples, 0.57%)</title><rect x="798.3" y="165" width="6.7" height="15.0" fill="rgb(227,217,24)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (3 samples, 0.24%)</title><rect x="757.9" y="213" width="2.9" height="15.0" fill="rgb(220,12,8)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="1013.3" y="181" width="2.0" height="15.0" fill="rgb(232,172,38)" rx="2" ry="2" />
<text text-anchor="" x="1016.34" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="739.7" y="117" width="1.0" height="15.0" fill="rgb(250,40,10)" rx="2" ry="2" />
<text text-anchor="" x="742.70" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.08%)</title><rect x="1115.1" y="261" width="1.0" height="15.0" fill="rgb(237,56,39)" rx="2" ry="2" />
<text text-anchor="" x="1118.11" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="990.3" y="117" width="1.0" height="15.0" fill="rgb(240,176,34)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (2 samples, 0.16%)</title><rect x="774.3" y="197" width="1.9" height="15.0" fill="rgb(249,47,54)" rx="2" ry="2" />
<text text-anchor="" x="777.26" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="136.7" y="213" width="1.0" height="15.0" fill="rgb(209,58,42)" rx="2" ry="2" />
<text text-anchor="" x="139.74" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="355.6" y="133" width="1.0" height="15.0" fill="rgb(246,4,53)" rx="2" ry="2" />
<text text-anchor="" x="358.65" 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>/usr/lib/python3.5/threading.py:_bootstrap:882 (1,128 samples, 91.78%)</title><rect x="107.0" y="1189" width="1083.0" height="15.0" fill="rgb(209,68,36)" rx="2" ry="2" />
<text text-anchor="" x="109.97" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap:882</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (4 samples, 0.33%)</title><rect x="252.9" y="213" width="3.9" height="15.0" fill="rgb(234,109,43)" rx="2" ry="2" />
<text text-anchor="" x="255.91" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="735.9" y="213" width="1.9" height="15.0" fill="rgb(223,27,39)" rx="2" ry="2" />
<text text-anchor="" x="738.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="143.5" y="261" width="0.9" height="15.0" fill="rgb(236,167,7)" rx="2" ry="2" />
<text text-anchor="" x="146.46" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (14 samples, 1.14%)</title><rect x="538.1" y="213" width="13.4" height="15.0" fill="rgb(234,223,51)" rx="2" ry="2" />
<text text-anchor="" x="541.07" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (3 samples, 0.24%)</title><rect x="22.5" y="421" width="2.9" height="15.0" fill="rgb(234,167,12)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="821.3" y="165" width="1.0" height="15.0" fill="rgb(212,66,28)" rx="2" ry="2" />
<text text-anchor="" x="824.31" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_users.py:_login:475 (1 samples, 0.08%)</title><rect x="1186.2" y="533" width="0.9" height="15.0" fill="rgb(252,13,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:apply_view_inheritance:671 (1 samples, 0.08%)</title><rect x="1187.1" y="245" width="1.0" height="15.0" fill="rgb(226,200,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.08%)</title><rect x="682.1" y="229" width="1.0" height="15.0" fill="rgb(229,59,44)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="919.2" y="149" width="1.0" height="15.0" fill="rgb(205,157,17)" rx="2" ry="2" />
<text text-anchor="" x="922.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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="844.4" y="197" width="1.9" height="15.0" fill="rgb(221,113,16)" rx="2" ry="2" />
<text text-anchor="" x="847.35" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="524.6" y="165" width="1.0" height="15.0" fill="rgb(217,138,49)" rx="2" ry="2" />
<text text-anchor="" x="527.63" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="235.6" y="245" width="1.0" height="15.0" fill="rgb(218,127,1)" rx="2" ry="2" />
<text text-anchor="" x="238.63" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.08%)</title><rect x="122.3" y="533" width="1.0" height="15.0" fill="rgb(253,102,4)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (12 samples, 0.98%)</title><rect x="903.9" y="197" width="11.5" height="15.0" fill="rgb(214,32,26)" rx="2" ry="2" />
<text text-anchor="" x="906.88" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1057 (1,091 samples, 88.77%)</title><rect x="129.1" y="453" width="1047.5" height="15.0" fill="rgb(219,190,31)" rx="2" ry="2" />
<text text-anchor="" x="132.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1057</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="157.9" y="213" width="0.9" height="15.0" fill="rgb(244,48,20)" rx="2" ry="2" />
<text text-anchor="" x="160.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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="28.2" y="853" width="1.0" height="15.0" fill="rgb(241,218,42)" rx="2" ry="2" />
<text text-anchor="" x="31.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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (3 samples, 0.24%)</title><rect x="990.3" y="213" width="2.9" height="15.0" fill="rgb(247,85,3)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.08%)</title><rect x="130.0" y="277" width="1.0" height="15.0" fill="rgb(237,163,7)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="426.7" y="149" width="1.0" height="15.0" fill="rgb(242,153,5)" rx="2" ry="2" />
<text text-anchor="" x="429.70" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (2 samples, 0.16%)</title><rect x="1187.1" y="405" width="1.9" height="15.0" fill="rgb(253,89,32)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (9 samples, 0.73%)</title><rect x="854.9" y="197" width="8.7" height="15.0" fill="rgb(253,124,45)" rx="2" ry="2" />
<text text-anchor="" x="857.91" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="916.4" y="117" width="0.9" height="15.0" fill="rgb(208,222,46)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="772.3" y="165" width="1.0" height="15.0" fill="rgb(237,72,45)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (3 samples, 0.24%)</title><rect x="1157.4" y="229" width="2.8" height="15.0" fill="rgb(241,145,46)" rx="2" ry="2" />
<text text-anchor="" x="1160.36" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (2 samples, 0.16%)</title><rect x="180.9" y="309" width="1.9" height="15.0" fill="rgb(212,224,7)" rx="2" ry="2" />
<text text-anchor="" x="183.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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (3 samples, 0.24%)</title><rect x="475.7" y="213" width="2.8" height="15.0" fill="rgb(235,214,44)" rx="2" ry="2" />
<text text-anchor="" x="478.66" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="322.0" y="181" width="2.0" height="15.0" fill="rgb(239,149,20)" rx="2" ry="2" />
<text text-anchor="" x="325.04" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (1 samples, 0.08%)</title><rect x="21.5" y="757" width="1.0" height="15.0" fill="rgb(215,228,20)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:515 (1 samples, 0.08%)</title><rect x="1186.2" y="661" width="0.9" height="15.0" fill="rgb(225,128,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="1056.5" y="261" width="1.0" height="15.0" fill="rgb(221,141,45)" rx="2" ry="2" />
<text text-anchor="" x="1059.54" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="26.3" y="821" width="1.0" height="15.0" fill="rgb(214,208,13)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (3 samples, 0.24%)</title><rect x="1178.5" y="533" width="2.9" height="15.0" fill="rgb(207,4,50)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="971.1" y="133" width="1.0" height="15.0" fill="rgb(220,81,32)" rx="2" ry="2" />
<text text-anchor="" x="974.09" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="907.7" y="165" width="1.0" height="15.0" fill="rgb(205,52,28)" rx="2" ry="2" />
<text text-anchor="" x="910.72" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="1044.1" y="229" width="0.9" height="15.0" fill="rgb(238,224,53)" rx="2" ry="2" />
<text text-anchor="" x="1047.06" 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>/.repo_requirements/odoo/odoo/osv/expression.py:generate_alias:561 (1 samples, 0.08%)</title><rect x="1154.5" y="213" width="0.9" height="15.0" fill="rgb(206,110,27)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="666.7" y="245" width="1.0" height="15.0" fill="rgb(238,105,33)" rx="2" ry="2" />
<text text-anchor="" x="669.73" 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>/.repo_requirements/odoo/odoo/modules/module.py:get_module_path:167 (1 samples, 0.08%)</title><rect x="1189.0" y="437" width="1.0" height="15.0" fill="rgb(251,133,20)" rx="2" ry="2" />
<text text-anchor="" x="1192.04" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="1047.9" y="293" width="1.0" height="15.0" fill="rgb(237,122,37)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/.repo_requirements/odoo/odoo/service/model.py:wrapper:97 (7 samples, 0.57%)</title><rect x="1183.3" y="773" width="6.7" height="15.0" fill="rgb(247,136,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:get_template:369 (1 samples, 0.08%)</title><rect x="1187.1" y="357" width="1.0" height="15.0" fill="rgb(239,201,19)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="1180.4" y="437" width="1.0" height="15.0" fill="rgb(226,204,25)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/models.py:__init__:5197 (1 samples, 0.08%)</title><rect x="1179.4" y="357" width="1.0" height="15.0" fill="rgb(246,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1183.3" y="645" width="0.9" height="15.0" fill="rgb(238,11,40)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="542.9" y="165" width="0.9" height="15.0" fill="rgb(216,165,34)" rx="2" ry="2" />
<text text-anchor="" x="545.87" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:translations:598 (2 samples, 0.16%)</title><rect x="1181.4" y="709" width="1.9" height="15.0" fill="rgb(218,168,23)" rx="2" ry="2" />
<text text-anchor="" x="1184.36" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-37&gt;:compile:2 (2 samples, 0.16%)</title><rect x="1187.1" y="421" width="1.9" height="15.0" fill="rgb(248,207,46)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (11 samples, 0.90%)</title><rect x="10.0" y="949" width="10.6" height="15.0" fill="rgb(207,123,51)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:_create:3540 (1 samples, 0.08%)</title><rect x="1173.7" y="357" width="0.9" height="15.0" fill="rgb(227,161,26)" rx="2" ry="2" />
<text text-anchor="" x="1176.68" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="821.3" y="197" width="2.9" height="15.0" fill="rgb(206,137,15)" rx="2" ry="2" />
<text text-anchor="" x="824.31" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1113.2" y="229" width="0.9" height="15.0" fill="rgb(217,13,1)" rx="2" ry="2" />
<text text-anchor="" x="1116.19" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="167.5" y="229" width="0.9" height="15.0" fill="rgb(243,183,45)" rx="2" ry="2" />
<text text-anchor="" x="170.46" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:2107 (1 samples, 0.08%)</title><rect x="20.6" y="901" width="0.9" height="15.0" fill="rgb(230,153,43)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (1 samples, 0.08%)</title><rect x="122.3" y="677" width="1.0" height="15.0" fill="rgb(211,60,30)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="1032.5" y="117" width="1.0" height="15.0" fill="rgb(234,136,24)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_compute:40 (19 samples, 1.55%)</title><rect x="735.9" y="229" width="18.2" height="15.0" fill="rgb(253,9,36)" rx="2" ry="2" />
<text text-anchor="" x="738.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>/.repo_requirements/odoo/odoo/fields.py:__getattr__:333 (1 samples, 0.08%)</title><rect x="611.0" y="309" width="1.0" height="15.0" fill="rgb(250,56,29)" rx="2" ry="2" />
<text text-anchor="" x="614.04" 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>&lt;template&gt;:body_call_content_190:2 (3 samples, 0.24%)</title><rect x="1187.1" y="581" width="2.9" height="15.0" fill="rgb(251,208,22)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="494.9" y="197" width="0.9" height="15.0" fill="rgb(240,229,53)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="398.9" y="149" width="0.9" height="15.0" fill="rgb(236,135,10)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="483.3" y="101" width="1.0" height="15.0" fill="rgb(232,87,40)" rx="2" ry="2" />
<text text-anchor="" x="486.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="577.4" y="325" width="1.0" height="15.0" fill="rgb(245,223,23)" rx="2" ry="2" />
<text text-anchor="" x="580.44" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="25.4" y="357" width="0.9" height="15.0" fill="rgb(223,40,38)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_compute:41 (3 samples, 0.24%)</title><rect x="277.9" y="229" width="2.9" height="15.0" fill="rgb(214,120,26)" rx="2" ry="2" />
<text text-anchor="" x="280.88" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-32&gt;:__get_source:2 (1 samples, 0.08%)</title><rect x="122.3" y="597" width="1.0" height="15.0" fill="rgb(228,138,15)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="301.9" y="181" width="0.9" height="15.0" fill="rgb(252,48,6)" rx="2" ry="2" />
<text text-anchor="" x="304.88" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.08%)</title><rect x="688.8" y="325" width="1.0" height="15.0" fill="rgb(249,206,52)" rx="2" ry="2" />
<text text-anchor="" x="691.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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="995.1" y="213" width="2.9" height="15.0" fill="rgb(208,74,19)" rx="2" ry="2" />
<text text-anchor="" x="998.09" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="397.9" y="197" width="1.0" height="15.0" fill="rgb(206,51,24)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1020.1" y="149" width="0.9" height="15.0" fill="rgb(233,157,44)" rx="2" ry="2" />
<text text-anchor="" x="1023.06" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="794.4" y="149" width="1.0" height="15.0" fill="rgb(250,38,32)" rx="2" ry="2" />
<text text-anchor="" x="797.43" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (1 samples, 0.08%)</title><rect x="1187.1" y="293" width="1.0" height="15.0" fill="rgb(240,94,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="301.9" y="165" width="0.9" height="15.0" fill="rgb(234,122,31)" rx="2" ry="2" />
<text text-anchor="" x="304.88" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="766.6" y="181" width="1.9" height="15.0" fill="rgb(247,211,42)" rx="2" ry="2" />
<text text-anchor="" x="769.58" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="1065.2" y="309" width="0.9" height="15.0" fill="rgb(218,174,13)" rx="2" ry="2" />
<text text-anchor="" x="1068.18" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="950.9" y="197" width="1.0" height="15.0" fill="rgb(223,108,31)" rx="2" ry="2" />
<text text-anchor="" x="953.93" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="541.9" y="133" width="1.0" height="15.0" fill="rgb(219,96,14)" rx="2" ry="2" />
<text text-anchor="" x="544.91" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="1128.6" y="245" width="0.9" height="15.0" fill="rgb(210,88,39)" rx="2" ry="2" />
<text text-anchor="" x="1131.55" 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>/.repo_requirements/odoo/odoo/models.py:_cache:4781 (1 samples, 0.08%)</title><rect x="1179.4" y="373" width="1.0" height="15.0" fill="rgb(250,67,24)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (6 samples, 0.49%)</title><rect x="808.8" y="165" width="5.8" height="15.0" fill="rgb(248,204,24)" rx="2" ry="2" />
<text text-anchor="" x="811.83" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (3 samples, 0.24%)</title><rect x="653.3" y="293" width="2.9" height="15.0" fill="rgb(235,124,34)" rx="2" ry="2" />
<text text-anchor="" x="656.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (1 samples, 0.08%)</title><rect x="1032.5" y="197" width="1.0" height="15.0" fill="rgb(218,115,21)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1014.3" y="149" width="1.0" height="15.0" fill="rgb(220,49,1)" rx="2" ry="2" />
<text text-anchor="" x="1017.30" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="761.8" y="197" width="0.9" height="15.0" fill="rgb(237,48,27)" rx="2" ry="2" />
<text text-anchor="" x="764.78" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="883.7" y="133" width="1.0" height="15.0" fill="rgb(251,5,41)" rx="2" ry="2" />
<text text-anchor="" x="886.72" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="494.9" y="181" width="0.9" height="15.0" fill="rgb(244,138,51)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="886.6" y="197" width="2.9" height="15.0" fill="rgb(244,52,45)" rx="2" ry="2" />
<text text-anchor="" x="889.60" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.24%)</title><rect x="1050.8" y="309" width="2.9" height="15.0" fill="rgb(221,73,3)" rx="2" ry="2" />
<text text-anchor="" x="1053.78" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="559.2" y="245" width="1.0" height="15.0" fill="rgb(209,147,25)" rx="2" ry="2" />
<text text-anchor="" x="562.19" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="453.6" y="181" width="0.9" height="15.0" fill="rgb(223,202,12)" rx="2" ry="2" />
<text text-anchor="" x="456.58" 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>/.repo_requirements/odoo/odoo/models.py:_write:3169 (1 samples, 0.08%)</title><rect x="1081.5" y="325" width="1.0" height="15.0" fill="rgb(214,70,51)" rx="2" ry="2" />
<text text-anchor="" x="1084.51" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="619.7" y="293" width="0.9" height="15.0" fill="rgb(218,169,37)" rx="2" ry="2" />
<text text-anchor="" x="622.68" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="188.6" y="277" width="0.9" height="15.0" fill="rgb(219,74,1)" rx="2" ry="2" />
<text text-anchor="" x="191.58" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="363.3" y="197" width="1.0" height="15.0" fill="rgb(219,44,32)" rx="2" ry="2" />
<text text-anchor="" x="366.33" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.08%)</title><rect x="28.2" y="837" width="1.0" height="15.0" fill="rgb(215,199,32)" rx="2" ry="2" />
<text text-anchor="" x="31.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>/.repo_requirements/odoo/odoo/models.py:_create:3534 (475 samples, 38.65%)</title><rect x="223.1" y="357" width="456.1" height="15.0" fill="rgb(237,103,38)" rx="2" ry="2" />
<text text-anchor="" x="226.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:_create:3534</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="541.9" y="149" width="1.0" height="15.0" fill="rgb(225,180,37)" rx="2" ry="2" />
<text text-anchor="" x="544.91" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="426.7" y="165" width="1.9" height="15.0" fill="rgb(237,179,8)" rx="2" ry="2" />
<text text-anchor="" x="429.70" 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>/.repo_requirements/odoo/odoo/tools/misc.py:split_every:701 (3 samples, 0.24%)</title><rect x="100.3" y="1189" width="2.8" height="15.0" fill="rgb(235,72,43)" rx="2" ry="2" />
<text text-anchor="" x="103.25" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="182.8" y="309" width="2.9" height="15.0" fill="rgb(228,92,50)" rx="2" ry="2" />
<text text-anchor="" x="185.82" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="642.7" y="293" width="1.0" height="15.0" fill="rgb(212,186,7)" rx="2" ry="2" />
<text text-anchor="" x="645.73" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="441.1" y="181" width="1.0" height="15.0" fill="rgb(220,221,13)" rx="2" ry="2" />
<text text-anchor="" x="444.10" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (3 samples, 0.24%)</title><rect x="682.1" y="293" width="2.9" height="15.0" fill="rgb(208,209,28)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="464.1" y="197" width="1.0" height="15.0" fill="rgb(219,124,47)" rx="2" ry="2" />
<text text-anchor="" x="467.14" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:377 (6 samples, 0.49%)</title><rect x="496.8" y="229" width="5.7" height="15.0" fill="rgb(207,107,53)" rx="2" ry="2" />
<text text-anchor="" x="499.79" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="203.0" y="309" width="1.9" height="15.0" fill="rgb(243,150,17)" rx="2" ry="2" />
<text text-anchor="" x="205.99" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (2 samples, 0.16%)</title><rect x="780.0" y="213" width="1.9" height="15.0" fill="rgb(248,188,50)" rx="2" ry="2" />
<text text-anchor="" x="783.02" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="808.8" y="149" width="1.0" height="15.0" fill="rgb(246,38,29)" rx="2" ry="2" />
<text text-anchor="" x="811.83" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="299.0" y="181" width="1.0" height="15.0" fill="rgb(218,24,42)" rx="2" ry="2" />
<text text-anchor="" x="302.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="547.7" y="117" width="0.9" height="15.0" fill="rgb(237,31,5)" rx="2" ry="2" />
<text text-anchor="" x="550.67" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="393.1" y="149" width="1.0" height="15.0" fill="rgb(215,86,38)" rx="2" ry="2" />
<text text-anchor="" x="396.09" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (1 samples, 0.08%)</title><rect x="816.5" y="213" width="1.0" height="15.0" fill="rgb(241,136,36)" rx="2" ry="2" />
<text text-anchor="" x="819.51" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (1 samples, 0.08%)</title><rect x="670.6" y="277" width="0.9" height="15.0" fill="rgb(212,173,2)" rx="2" ry="2" />
<text text-anchor="" x="673.57" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:365 (3 samples, 0.24%)</title><rect x="757.9" y="229" width="2.9" height="15.0" fill="rgb(249,44,41)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (3 samples, 0.24%)</title><rect x="439.2" y="213" width="2.9" height="15.0" fill="rgb(239,154,49)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="124.3" y="357" width="0.9" height="15.0" fill="rgb(229,180,46)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="334.5" y="117" width="1.0" height="15.0" fill="rgb(212,214,54)" rx="2" ry="2" />
<text text-anchor="" x="337.52" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (2 samples, 0.16%)</title><rect x="565.9" y="325" width="1.9" height="15.0" fill="rgb(228,77,11)" rx="2" ry="2" />
<text text-anchor="" x="568.92" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:894 (1 samples, 0.08%)</title><rect x="1077.7" y="277" width="0.9" height="15.0" fill="rgb(211,58,0)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="913.5" y="133" width="0.9" height="15.0" fill="rgb(205,138,11)" rx="2" ry="2" />
<text text-anchor="" x="916.48" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.08%)</title><rect x="1153.5" y="261" width="1.0" height="15.0" fill="rgb(240,15,42)" rx="2" ry="2" />
<text text-anchor="" x="1156.52" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="484.3" y="133" width="1.9" height="15.0" fill="rgb(208,97,39)" rx="2" ry="2" />
<text text-anchor="" x="487.30" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="1165.0" y="293" width="1.0" height="15.0" fill="rgb(239,168,19)" rx="2" ry="2" />
<text text-anchor="" x="1168.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="296.1" y="165" width="1.9" height="15.0" fill="rgb(212,133,41)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="1047.9" y="309" width="1.0" height="15.0" fill="rgb(233,125,12)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="912.5" y="117" width="1.0" height="15.0" fill="rgb(206,121,47)" rx="2" ry="2" />
<text text-anchor="" x="915.52" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="827.1" y="133" width="0.9" height="15.0" fill="rgb(246,66,13)" rx="2" ry="2" />
<text text-anchor="" x="830.07" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="675.4" y="293" width="0.9" height="15.0" fill="rgb(222,119,14)" rx="2" ry="2" />
<text text-anchor="" x="678.37" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1037 (3 samples, 0.24%)</title><rect x="690.7" y="341" width="2.9" height="15.0" fill="rgb(240,27,44)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="1165.0" y="309" width="1.0" height="15.0" fill="rgb(249,54,35)" rx="2" ry="2" />
<text text-anchor="" x="1168.04" 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>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:875 (1 samples, 0.08%)</title><rect x="799.2" y="85" width="1.0" height="15.0" fill="rgb(208,154,18)" rx="2" ry="2" />
<text text-anchor="" x="802.23" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="985.5" y="149" width="1.0" height="15.0" fill="rgb(235,61,54)" rx="2" ry="2" />
<text text-anchor="" x="988.49" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="625.4" y="293" width="2.0" height="15.0" fill="rgb(220,110,41)" rx="2" ry="2" />
<text text-anchor="" x="628.44" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="353.7" y="149" width="1.9" height="15.0" fill="rgb(223,227,53)" rx="2" ry="2" />
<text text-anchor="" x="356.73" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="496.8" y="197" width="0.9" height="15.0" fill="rgb(250,124,30)" rx="2" ry="2" />
<text text-anchor="" x="499.79" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="24.4" y="309" width="1.0" height="15.0" fill="rgb(207,222,12)" rx="2" ry="2" />
<text text-anchor="" x="27.40" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by_inner:3741 (2 samples, 0.16%)</title><rect x="1068.1" y="245" width="1.9" height="15.0" fill="rgb(253,222,44)" rx="2" ry="2" />
<text text-anchor="" x="1071.06" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="277.9" y="197" width="1.9" height="15.0" fill="rgb(216,40,18)" rx="2" ry="2" />
<text text-anchor="" x="280.88" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="438.2" y="197" width="1.0" height="15.0" fill="rgb(234,60,24)" rx="2" ry="2" />
<text text-anchor="" x="441.22" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="1056.5" y="293" width="1.0" height="15.0" fill="rgb(238,103,37)" rx="2" ry="2" />
<text text-anchor="" x="1059.54" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="958.6" y="213" width="1.0" height="15.0" fill="rgb(225,33,13)" rx="2" ry="2" />
<text text-anchor="" x="961.61" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="1071.9" y="293" width="1.0" height="15.0" fill="rgb(224,135,37)" rx="2" ry="2" />
<text text-anchor="" x="1074.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="224.1" y="261" width="1.0" height="15.0" fill="rgb(233,193,49)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (1 samples, 0.08%)</title><rect x="686.9" y="341" width="1.0" height="15.0" fill="rgb(216,59,38)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="713.8" y="101" width="0.9" height="15.0" fill="rgb(240,159,18)" rx="2" ry="2" />
<text text-anchor="" x="716.78" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="19.6" y="901" width="1.0" height="15.0" fill="rgb(243,88,20)" rx="2" ry="2" />
<text text-anchor="" x="22.60" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (7 samples, 0.57%)</title><rect x="837.6" y="181" width="6.8" height="15.0" fill="rgb(231,226,9)" rx="2" ry="2" />
<text text-anchor="" x="840.63" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:2005 (1 samples, 0.08%)</title><rect x="320.1" y="101" width="1.0" height="15.0" fill="rgb(232,151,50)" rx="2" ry="2" />
<text text-anchor="" x="323.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="920.2" y="181" width="1.9" height="15.0" fill="rgb(213,144,29)" rx="2" ry="2" />
<text text-anchor="" x="923.20" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="379.7" y="117" width="0.9" height="15.0" fill="rgb(210,89,51)" rx="2" ry="2" />
<text text-anchor="" x="382.65" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="525.6" y="165" width="1.0" height="15.0" fill="rgb(211,30,28)" rx="2" ry="2" />
<text text-anchor="" x="528.59" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="541.0" y="117" width="0.9" height="15.0" fill="rgb(218,60,31)" rx="2" ry="2" />
<text text-anchor="" x="543.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="200.1" y="277" width="1.0" height="15.0" fill="rgb(222,40,1)" rx="2" ry="2" />
<text text-anchor="" x="203.11" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="758.9" y="149" width="1.0" height="15.0" fill="rgb(228,212,15)" rx="2" ry="2" />
<text text-anchor="" x="761.90" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (4 samples, 0.33%)</title><rect x="150.2" y="261" width="3.8" height="15.0" fill="rgb(251,154,26)" rx="2" ry="2" />
<text text-anchor="" x="153.18" 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>/.repo_requirements/odoo/odoo/http.py:__call__:1319 (1,113 samples, 90.56%)</title><rect x="121.4" y="965" width="1068.6" height="15.0" fill="rgb(234,172,37)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1319</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="505.4" y="197" width="1.0" height="15.0" fill="rgb(253,45,45)" rx="2" ry="2" />
<text text-anchor="" x="508.43" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.08%)</title><rect x="665.8" y="261" width="0.9" height="15.0" fill="rgb(249,191,11)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (2 samples, 0.16%)</title><rect x="16.7" y="805" width="1.9" height="15.0" fill="rgb(239,212,12)" rx="2" ry="2" />
<text text-anchor="" x="19.72" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:_float_check_precision:35 (1 samples, 0.08%)</title><rect x="515.0" y="149" width="1.0" height="15.0" fill="rgb(253,219,18)" rx="2" ry="2" />
<text text-anchor="" x="518.03" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (36 samples, 2.93%)</title><rect x="133.9" y="309" width="34.5" height="15.0" fill="rgb(239,84,27)" rx="2" ry="2" />
<text text-anchor="" x="136.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="13.8" y="757" width="1.0" height="15.0" fill="rgb(209,153,9)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:876 (1 samples, 0.08%)</title><rect x="30.2" y="1173" width="0.9" height="15.0" fill="rgb(231,127,34)" rx="2" ry="2" />
<text text-anchor="" x="33.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="879.9" y="165" width="0.9" height="15.0" fill="rgb(227,61,20)" rx="2" ry="2" />
<text text-anchor="" x="882.88" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="434.4" y="149" width="0.9" height="15.0" fill="rgb(253,81,1)" rx="2" ry="2" />
<text text-anchor="" x="437.38" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="770.4" y="165" width="1.0" height="15.0" fill="rgb(251,229,40)" rx="2" ry="2" />
<text text-anchor="" x="773.42" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="527.5" y="133" width="1.0" height="15.0" fill="rgb(229,206,23)" rx="2" ry="2" />
<text text-anchor="" x="530.51" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="321.1" y="117" width="0.9" height="15.0" fill="rgb(233,5,19)" rx="2" ry="2" />
<text text-anchor="" x="324.08" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="650.4" y="277" width="2.9" height="15.0" fill="rgb(234,223,25)" rx="2" ry="2" />
<text text-anchor="" x="653.41" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="504.5" y="197" width="0.9" height="15.0" fill="rgb(241,164,19)" rx="2" ry="2" />
<text text-anchor="" x="507.47" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.08%)</title><rect x="712.8" y="101" width="1.0" height="15.0" fill="rgb(208,153,25)" rx="2" ry="2" />
<text text-anchor="" x="715.82" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="292.3" y="165" width="0.9" height="15.0" fill="rgb(245,35,35)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="1035.4" y="213" width="1.0" height="15.0" fill="rgb(216,165,13)" rx="2" ry="2" />
<text text-anchor="" x="1038.42" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="499.7" y="133" width="0.9" height="15.0" fill="rgb(207,122,31)" rx="2" ry="2" />
<text text-anchor="" x="502.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="130.0" y="325" width="1.0" height="15.0" fill="rgb(223,218,10)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.08%)</title><rect x="320.1" y="117" width="1.0" height="15.0" fill="rgb(206,10,34)" rx="2" ry="2" />
<text text-anchor="" x="323.12" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="409.4" y="197" width="1.9" height="15.0" fill="rgb(229,169,4)" rx="2" ry="2" />
<text text-anchor="" x="412.41" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="427.7" y="149" width="0.9" height="15.0" fill="rgb(222,87,17)" rx="2" ry="2" />
<text text-anchor="" x="430.66" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.16%)</title><rect x="257.7" y="117" width="1.9" height="15.0" fill="rgb(243,35,49)" rx="2" ry="2" />
<text text-anchor="" x="260.71" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="453.6" y="197" width="0.9" height="15.0" fill="rgb(243,126,40)" rx="2" ry="2" />
<text text-anchor="" x="456.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="541.0" y="133" width="0.9" height="15.0" fill="rgb(242,202,39)" rx="2" ry="2" />
<text text-anchor="" x="543.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>/.repo_requirements/odoo/odoo/models.py:&lt;lambda&gt;:4357 (1 samples, 0.08%)</title><rect x="592.8" y="309" width="1.0" height="15.0" fill="rgb(233,116,53)" rx="2" ry="2" />
<text text-anchor="" x="595.80" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="923.1" y="181" width="0.9" height="15.0" fill="rgb(211,161,22)" rx="2" ry="2" />
<text text-anchor="" x="926.08" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.08%)</title><rect x="126.2" y="341" width="0.9" height="15.0" fill="rgb(242,187,44)" rx="2" ry="2" />
<text text-anchor="" x="129.18" 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>/.repo_requirements/odoo/odoo/models.py:_check_qorder:3580 (1 samples, 0.08%)</title><rect x="1069.0" y="229" width="1.0" height="15.0" fill="rgb(221,122,27)" rx="2" ry="2" />
<text text-anchor="" x="1072.02" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="1030.6" y="197" width="1.0" height="15.0" fill="rgb(226,139,8)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="679.2" y="309" width="1.0" height="15.0" fill="rgb(250,169,29)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1128.6" y="293" width="0.9" height="15.0" fill="rgb(224,228,51)" rx="2" ry="2" />
<text text-anchor="" x="1131.55" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="158.8" y="229" width="1.9" height="15.0" fill="rgb(242,68,10)" rx="2" ry="2" />
<text text-anchor="" x="161.82" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="605.3" y="277" width="0.9" height="15.0" fill="rgb(242,139,41)" rx="2" ry="2" />
<text text-anchor="" x="608.28" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (20 samples, 1.63%)</title><rect x="344.1" y="197" width="19.2" height="15.0" fill="rgb(235,141,26)" rx="2" ry="2" />
<text text-anchor="" x="347.13" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="544.8" y="181" width="1.9" height="15.0" fill="rgb(245,81,41)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/odoo/odoo/models.py:_write:3201 (1 samples, 0.08%)</title><rect x="662.9" y="325" width="0.9" height="15.0" fill="rgb(221,29,27)" rx="2" ry="2" />
<text text-anchor="" x="665.89" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="342.2" y="181" width="1.9" height="15.0" fill="rgb(249,48,22)" rx="2" ry="2" />
<text text-anchor="" x="345.21" 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>/home/odoo/odoo-11.0/addons/bus/models/bus.py:loop:164 (3 samples, 0.24%)</title><rect x="118.5" y="1125" width="2.9" height="15.0" fill="rgb(244,214,7)" rx="2" ry="2" />
<text text-anchor="" x="121.49" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="380.6" y="149" width="1.0" height="15.0" fill="rgb(217,66,50)" rx="2" ry="2" />
<text text-anchor="" x="383.61" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-25&gt;:_read_template:2 (1 samples, 0.08%)</title><rect x="1187.1" y="309" width="1.0" height="15.0" fill="rgb(253,105,27)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="26.3" y="837" width="1.0" height="15.0" fill="rgb(253,224,2)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>&lt;string&gt;:&lt;lambda&gt;:1 (1 samples, 0.08%)</title><rect x="221.2" y="197" width="1.0" height="15.0" fill="rgb(207,133,34)" rx="2" ry="2" />
<text text-anchor="" x="224.23" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="643.7" y="309" width="0.9" height="15.0" fill="rgb(208,191,13)" rx="2" ry="2" />
<text text-anchor="" x="646.69" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (3 samples, 0.24%)</title><rect x="882.8" y="197" width="2.8" height="15.0" fill="rgb(220,211,42)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="136.7" y="245" width="1.0" height="15.0" fill="rgb(253,20,15)" rx="2" ry="2" />
<text text-anchor="" x="139.74" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (4 samples, 0.33%)</title><rect x="682.1" y="309" width="3.8" height="15.0" fill="rgb(244,75,10)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1029.7" y="149" width="0.9" height="15.0" fill="rgb(225,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1032.66" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1019.1" y="197" width="1.0" height="15.0" fill="rgb(235,14,23)" rx="2" ry="2" />
<text text-anchor="" x="1022.10" 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>/.repo_requirements/odoo/odoo/models.py:create:3377 (486 samples, 39.54%)</title><rect x="212.6" y="373" width="466.6" height="15.0" fill="rgb(242,93,52)" rx="2" ry="2" />
<text text-anchor="" x="215.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:create:3377</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/logging/__init__.py:debug:1268 (2 samples, 0.16%)</title><rect x="116.6" y="1109" width="1.9" height="15.0" fill="rgb(224,217,9)" rx="2" ry="2" />
<text text-anchor="" x="119.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>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350 (1,097 samples, 89.26%)</title><rect x="123.3" y="581" width="1053.3" height="15.0" fill="rgb(243,58,30)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="613.9" y="277" width="1.0" height="15.0" fill="rgb(211,41,23)" rx="2" ry="2" />
<text text-anchor="" x="616.92" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="25.4" y="325" width="0.9" height="15.0" fill="rgb(252,95,9)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (2 samples, 0.16%)</title><rect x="11.9" y="837" width="1.9" height="15.0" fill="rgb(226,123,28)" rx="2" ry="2" />
<text text-anchor="" x="14.92" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="745.5" y="101" width="0.9" height="15.0" fill="rgb(205,13,6)" rx="2" ry="2" />
<text text-anchor="" x="748.46" 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>/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15 (1,113 samples, 90.56%)</title><rect x="121.4" y="901" width="1068.6" height="15.0" fill="rgb(214,91,7)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="26.3" y="885" width="1.0" height="15.0" fill="rgb(218,118,1)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="394.1" y="149" width="0.9" height="15.0" fill="rgb(245,112,27)" rx="2" ry="2" />
<text text-anchor="" x="397.05" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (4 samples, 0.33%)</title><rect x="14.8" y="869" width="3.8" height="15.0" fill="rgb(246,54,14)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="1119.0" y="245" width="0.9" height="15.0" fill="rgb(253,9,3)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="123.3" y="373" width="1.0" height="15.0" fill="rgb(245,168,16)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/sql_db.py:split_for_in_conditions:260 (1 samples, 0.08%)</title><rect x="656.2" y="309" width="0.9" height="15.0" fill="rgb(251,16,42)" rx="2" ry="2" />
<text text-anchor="" x="659.17" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.08%)</title><rect x="1036.4" y="213" width="0.9" height="15.0" fill="rgb(252,210,0)" rx="2" ry="2" />
<text text-anchor="" x="1039.38" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (1 samples, 0.08%)</title><rect x="11.0" y="741" width="0.9" height="15.0" fill="rgb(254,57,11)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="222.2" y="261" width="0.9" height="15.0" fill="rgb(236,64,14)" rx="2" ry="2" />
<text text-anchor="" x="225.19" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="861.6" y="149" width="2.0" height="15.0" fill="rgb(208,10,40)" rx="2" ry="2" />
<text text-anchor="" x="864.64" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="971.1" y="117" width="1.0" height="15.0" fill="rgb(251,82,42)" rx="2" ry="2" />
<text text-anchor="" x="974.09" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="488.1" y="165" width="1.0" height="15.0" fill="rgb(207,50,40)" rx="2" ry="2" />
<text text-anchor="" x="491.14" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="708.0" y="277" width="2.9" height="15.0" fill="rgb(233,207,23)" rx="2" ry="2" />
<text text-anchor="" x="711.01" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="400.8" y="181" width="1.9" height="15.0" fill="rgb(216,135,20)" rx="2" ry="2" />
<text text-anchor="" x="403.77" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="855.9" y="181" width="3.8" height="15.0" fill="rgb(240,1,8)" rx="2" ry="2" />
<text text-anchor="" x="858.87" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1009.5" y="165" width="1.0" height="15.0" fill="rgb(236,85,29)" rx="2" ry="2" />
<text text-anchor="" x="1012.50" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (14 samples, 1.14%)</title><rect x="966.3" y="181" width="13.4" height="15.0" fill="rgb(239,96,42)" rx="2" ry="2" />
<text text-anchor="" x="969.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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.08%)</title><rect x="677.3" y="293" width="1.0" height="15.0" fill="rgb(210,182,53)" rx="2" ry="2" />
<text text-anchor="" x="680.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="494.9" y="117" width="0.9" height="15.0" fill="rgb(253,203,5)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="10.0" y="725" width="1.0" height="15.0" fill="rgb(219,137,53)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="1177.5" y="629" width="1.0" height="15.0" fill="rgb(243,226,4)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (326 samples, 26.53%)</title><rect x="239.5" y="261" width="313.0" height="15.0" fill="rgb(246,132,53)" rx="2" ry="2" />
<text text-anchor="" x="242.47" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="595.7" y="261" width="0.9" height="15.0" fill="rgb(252,110,44)" rx="2" ry="2" />
<text text-anchor="" x="598.68" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (5 samples, 0.41%)</title><rect x="1040.2" y="277" width="4.8" height="15.0" fill="rgb(238,40,40)" rx="2" ry="2" />
<text text-anchor="" x="1043.22" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:74 (1 samples, 0.08%)</title><rect x="806.9" y="165" width="1.0" height="15.0" fill="rgb(254,196,30)" rx="2" ry="2" />
<text text-anchor="" x="809.91" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (4 samples, 0.33%)</title><rect x="601.4" y="309" width="3.9" height="15.0" fill="rgb(239,104,34)" rx="2" ry="2" />
<text text-anchor="" x="604.44" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="762.7" y="181" width="1.0" height="15.0" fill="rgb(251,102,49)" rx="2" ry="2" />
<text text-anchor="" x="765.74" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (4 samples, 0.33%)</title><rect x="22.5" y="645" width="3.8" height="15.0" fill="rgb(220,2,38)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:modified:4861 (1 samples, 0.08%)</title><rect x="681.1" y="341" width="1.0" height="15.0" fill="rgb(237,72,12)" rx="2" ry="2" />
<text text-anchor="" x="684.13" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="1153.5" y="245" width="1.0" height="15.0" fill="rgb(229,159,41)" rx="2" ry="2" />
<text text-anchor="" x="1156.52" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="208.7" y="357" width="1.0" height="15.0" fill="rgb(237,48,45)" rx="2" ry="2" />
<text text-anchor="" x="211.75" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4761 (2 samples, 0.16%)</title><rect x="234.7" y="309" width="1.9" height="15.0" fill="rgb(230,122,15)" rx="2" ry="2" />
<text text-anchor="" x="237.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="227.9" y="293" width="1.0" height="15.0" fill="rgb(245,224,10)" rx="2" ry="2" />
<text text-anchor="" x="230.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>/.repo_requirements/odoo/odoo/api.py:__new__:748 (1 samples, 0.08%)</title><rect x="121.4" y="805" width="0.9" height="15.0" fill="rgb(241,213,52)" rx="2" ry="2" />
<text text-anchor="" x="124.38" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="893.3" y="197" width="1.9" height="15.0" fill="rgb(231,46,39)" rx="2" ry="2" />
<text text-anchor="" x="896.32" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="650.4" y="261" width="1.0" height="15.0" fill="rgb(223,20,30)" rx="2" ry="2" />
<text text-anchor="" x="653.41" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.08%)</title><rect x="803.1" y="117" width="0.9" height="15.0" fill="rgb(211,88,53)" rx="2" ry="2" />
<text text-anchor="" x="806.07" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="398.9" y="197" width="1.9" height="15.0" fill="rgb(253,108,7)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (5 samples, 0.41%)</title><rect x="46.5" y="1173" width="4.8" height="15.0" fill="rgb(226,66,54)" rx="2" ry="2" />
<text text-anchor="" x="49.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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:997 (15 samples, 1.22%)</title><rect x="721.5" y="245" width="14.4" height="15.0" fill="rgb(251,127,10)" rx="2" ry="2" />
<text text-anchor="" x="724.46" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="878.9" y="165" width="1.0" height="15.0" fill="rgb(213,91,18)" rx="2" ry="2" />
<text text-anchor="" x="881.92" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="443.0" y="133" width="1.0" height="15.0" fill="rgb(225,224,53)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (23 samples, 1.87%)</title><rect x="516.0" y="213" width="22.1" height="15.0" fill="rgb(225,133,48)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:compile:320 (1 samples, 0.08%)</title><rect x="1188.1" y="373" width="0.9" height="15.0" fill="rgb(249,161,37)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="216.4" y="293" width="1.0" height="15.0" fill="rgb(253,111,28)" rx="2" ry="2" />
<text text-anchor="" x="219.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="1062.3" y="277" width="1.9" height="15.0" fill="rgb(219,58,39)" rx="2" ry="2" />
<text text-anchor="" x="1065.30" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (10 samples, 0.81%)</title><rect x="20.6" y="949" width="9.6" height="15.0" fill="rgb(217,21,44)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="640.8" y="261" width="1.0" height="15.0" fill="rgb(213,199,5)" rx="2" ry="2" />
<text text-anchor="" x="643.81" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.08%)</title><rect x="712.8" y="85" width="1.0" height="15.0" fill="rgb(207,64,38)" rx="2" ry="2" />
<text text-anchor="" x="715.82" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="397.9" y="181" width="1.0" height="15.0" fill="rgb(215,185,38)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="189.5" y="293" width="1.0" height="15.0" fill="rgb(230,70,54)" rx="2" ry="2" />
<text text-anchor="" x="192.54" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="827.1" y="149" width="0.9" height="15.0" fill="rgb(213,106,46)" rx="2" ry="2" />
<text text-anchor="" x="830.07" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:997 (10 samples, 0.81%)</title><rect x="247.2" y="245" width="9.6" height="15.0" fill="rgb(241,148,50)" rx="2" ry="2" />
<text text-anchor="" x="250.15" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="289.4" y="165" width="2.9" height="15.0" fill="rgb(242,145,29)" rx="2" ry="2" />
<text text-anchor="" x="292.40" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="292.3" y="133" width="0.9" height="15.0" fill="rgb(239,229,44)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="720.5" y="229" width="1.0" height="15.0" fill="rgb(243,96,18)" rx="2" ry="2" />
<text text-anchor="" x="723.50" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="882.8" y="165" width="0.9" height="15.0" fill="rgb(215,188,41)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="1080.5" y="293" width="1.0" height="15.0" fill="rgb(243,101,53)" rx="2" ry="2" />
<text text-anchor="" x="1083.55" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="437.3" y="165" width="0.9" height="15.0" fill="rgb(239,134,36)" rx="2" ry="2" />
<text text-anchor="" x="440.26" 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>/.repo_requirements/odoo/odoo/fields.py:read:2257 (3 samples, 0.24%)</title><rect x="259.6" y="133" width="2.9" height="15.0" fill="rgb(226,2,33)" rx="2" ry="2" />
<text text-anchor="" x="262.63" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:370 (71 samples, 5.78%)</title><rect x="776.2" y="229" width="68.2" height="15.0" fill="rgb(232,196,39)" rx="2" ry="2" />
<text text-anchor="" x="779.18" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:376 (2 samples, 0.16%)</title><rect x="979.7" y="229" width="2.0" height="15.0" fill="rgb(243,161,30)" rx="2" ry="2" />
<text text-anchor="" x="982.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="129.1" y="325" width="0.9" height="15.0" fill="rgb(205,165,29)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="915.4" y="197" width="1.0" height="15.0" fill="rgb(253,185,27)" rx="2" ry="2" />
<text text-anchor="" x="918.40" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="296.1" y="149" width="1.0" height="15.0" fill="rgb(242,187,15)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="443.0" y="149" width="1.0" height="15.0" fill="rgb(213,224,54)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="904.8" y="181" width="3.9" height="15.0" fill="rgb(224,167,48)" rx="2" ry="2" />
<text text-anchor="" x="907.84" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="433.4" y="149" width="1.0" height="15.0" fill="rgb(212,213,8)" rx="2" ry="2" />
<text text-anchor="" x="436.42" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4926 (1 samples, 0.08%)</title><rect x="1172.7" y="341" width="1.0" height="15.0" fill="rgb(240,90,13)" rx="2" ry="2" />
<text text-anchor="" x="1175.72" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="433.4" y="133" width="1.0" height="15.0" fill="rgb(250,202,13)" rx="2" ry="2" />
<text text-anchor="" x="436.42" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="771.4" y="181" width="0.9" height="15.0" fill="rgb(207,115,5)" rx="2" ry="2" />
<text text-anchor="" x="774.38" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:956 (1 samples, 0.08%)</title><rect x="515.0" y="213" width="1.0" height="15.0" fill="rgb(234,42,22)" rx="2" ry="2" />
<text text-anchor="" x="518.03" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="524.6" y="149" width="1.0" height="15.0" fill="rgb(229,7,17)" rx="2" ry="2" />
<text text-anchor="" x="527.63" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="1025.8" y="133" width="1.0" height="15.0" fill="rgb(218,173,10)" rx="2" ry="2" />
<text text-anchor="" x="1028.82" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="696.5" y="277" width="1.9" height="15.0" fill="rgb(247,81,15)" rx="2" ry="2" />
<text text-anchor="" x="699.49" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (1 samples, 0.08%)</title><rect x="642.7" y="309" width="1.0" height="15.0" fill="rgb(236,224,47)" rx="2" ry="2" />
<text text-anchor="" x="645.73" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="711.9" y="101" width="0.9" height="15.0" fill="rgb(217,166,50)" rx="2" ry="2" />
<text text-anchor="" x="714.86" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="713.8" y="133" width="0.9" height="15.0" fill="rgb(233,226,33)" rx="2" ry="2" />
<text text-anchor="" x="716.78" 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>/usr/lib/python3.5/socketserver.py:service_actions:257 (2 samples, 0.16%)</title><rect x="112.7" y="1093" width="2.0" height="15.0" fill="rgb(210,207,52)" rx="2" ry="2" />
<text text-anchor="" x="115.73" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="129.1" y="341" width="0.9" height="15.0" fill="rgb(253,36,15)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/handlers/pbkdf2.py:_calc_checksum:84 (1 samples, 0.08%)</title><rect x="1186.2" y="469" width="0.9" height="15.0" fill="rgb(250,144,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (1 samples, 0.08%)</title><rect x="223.1" y="325" width="1.0" height="15.0" fill="rgb(249,134,5)" rx="2" ry="2" />
<text text-anchor="" x="226.15" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (354 samples, 28.80%)</title><rect x="230.8" y="341" width="339.9" height="15.0" fill="rgb(224,58,51)" rx="2" ry="2" />
<text text-anchor="" x="233.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:recomp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="879.9" y="149" width="0.9" height="15.0" fill="rgb(246,225,36)" rx="2" ry="2" />
<text text-anchor="" x="882.88" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="749.3" y="53" width="1.0" height="15.0" fill="rgb(216,99,0)" rx="2" ry="2" />
<text text-anchor="" x="752.30" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="805.0" y="181" width="0.9" height="15.0" fill="rgb(210,127,53)" rx="2" ry="2" />
<text text-anchor="" x="807.99" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (4 samples, 0.33%)</title><rect x="130.0" y="357" width="3.9" height="15.0" fill="rgb(207,215,46)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1435 (77 samples, 6.27%)</title><rect x="133.9" y="389" width="73.9" height="15.0" fill="rgb(224,122,5)" rx="2" ry="2" />
<text text-anchor="" x="136.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/od..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.08%)</title><rect x="1152.6" y="181" width="0.9" height="15.0" fill="rgb(223,174,52)" rx="2" ry="2" />
<text text-anchor="" x="1155.55" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (2 samples, 0.16%)</title><rect x="665.8" y="309" width="1.9" height="15.0" fill="rgb(213,34,39)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="297.1" y="133" width="0.9" height="15.0" fill="rgb(236,165,50)" rx="2" ry="2" />
<text text-anchor="" x="300.08" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="751.2" y="85" width="2.9" height="15.0" fill="rgb(250,178,31)" rx="2" ry="2" />
<text text-anchor="" x="754.22" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="858.8" y="133" width="0.9" height="15.0" fill="rgb(230,95,51)" rx="2" ry="2" />
<text text-anchor="" x="861.76" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (2 samples, 0.16%)</title><rect x="239.5" y="149" width="1.9" height="15.0" fill="rgb(210,95,12)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (1 samples, 0.08%)</title><rect x="1071.9" y="277" width="1.0" height="15.0" fill="rgb(219,108,54)" rx="2" ry="2" />
<text text-anchor="" x="1074.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (11 samples, 0.90%)</title><rect x="969.2" y="165" width="10.5" height="15.0" fill="rgb(206,161,44)" rx="2" ry="2" />
<text text-anchor="" x="972.17" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="185.7" y="293" width="1.9" height="15.0" fill="rgb(230,83,6)" rx="2" ry="2" />
<text text-anchor="" x="188.70" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="1010.5" y="181" width="0.9" height="15.0" fill="rgb(208,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.46" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="863.6" y="197" width="0.9" height="15.0" fill="rgb(213,170,52)" rx="2" ry="2" />
<text text-anchor="" x="866.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="533.3" y="133" width="0.9" height="15.0" fill="rgb(242,184,15)" rx="2" ry="2" />
<text text-anchor="" x="536.27" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="21.5" y="677" width="1.0" height="15.0" fill="rgb(246,209,0)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (3 samples, 0.24%)</title><rect x="593.8" y="309" width="2.8" height="15.0" fill="rgb(216,156,54)" rx="2" ry="2" />
<text text-anchor="" x="596.76" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="765.6" y="181" width="1.0" height="15.0" fill="rgb(208,127,8)" rx="2" ry="2" />
<text text-anchor="" x="768.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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:get_inheriting_views_arch:492 (1 samples, 0.08%)</title><rect x="1187.1" y="229" width="1.0" height="15.0" fill="rgb(235,37,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:union:4697 (1 samples, 0.08%)</title><rect x="490.1" y="181" width="0.9" height="15.0" fill="rgb(244,22,7)" rx="2" ry="2" />
<text text-anchor="" x="493.07" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="739.7" y="85" width="1.0" height="15.0" fill="rgb(246,135,54)" rx="2" ry="2" />
<text text-anchor="" x="742.70" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1051.7" y="181" width="1.0" height="15.0" fill="rgb(248,170,17)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1278 (1 samples, 0.08%)</title><rect x="1130.5" y="309" width="0.9" height="15.0" fill="rgb(212,122,16)" rx="2" ry="2" />
<text text-anchor="" x="1133.47" 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>/.repo_requirements/odoo/odoo/models.py:__hash__:4745 (1 samples, 0.08%)</title><rect x="22.5" y="325" width="0.9" height="15.0" fill="rgb(205,170,54)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:_write:3260 (1 samples, 0.08%)</title><rect x="673.4" y="325" width="1.0" height="15.0" fill="rgb(212,45,7)" rx="2" ry="2" />
<text text-anchor="" x="676.45" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1051.7" y="197" width="1.0" height="15.0" fill="rgb(225,30,11)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/models.py:_uniquify_list:3804 (1 samples, 0.08%)</title><rect x="217.4" y="293" width="0.9" height="15.0" fill="rgb(209,37,32)" rx="2" ry="2" />
<text text-anchor="" x="220.39" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="876.0" y="149" width="1.0" height="15.0" fill="rgb(213,108,46)" rx="2" ry="2" />
<text text-anchor="" x="879.04" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="772.3" y="133" width="1.0" height="15.0" fill="rgb(219,16,26)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926 (5 samples, 0.41%)</title><rect x="1176.6" y="693" width="4.8" height="15.0" fill="rgb(237,229,1)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="241.4" y="213" width="1.0" height="15.0" fill="rgb(208,95,18)" rx="2" ry="2" />
<text text-anchor="" x="244.39" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (8 samples, 0.65%)</title><rect x="553.4" y="293" width="7.7" height="15.0" fill="rgb(219,171,43)" rx="2" ry="2" />
<text text-anchor="" x="556.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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="308.6" y="181" width="1.0" height="15.0" fill="rgb(206,177,15)" rx="2" ry="2" />
<text text-anchor="" x="311.60" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="679.2" y="341" width="1.0" height="15.0" fill="rgb(244,9,11)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (1 samples, 0.08%)</title><rect x="637.0" y="293" width="0.9" height="15.0" fill="rgb(249,143,46)" rx="2" ry="2" />
<text text-anchor="" x="639.97" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="149.2" y="213" width="1.0" height="15.0" fill="rgb(244,81,39)" rx="2" ry="2" />
<text text-anchor="" x="152.22" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4901 (1 samples, 0.08%)</title><rect x="223.1" y="341" width="1.0" height="15.0" fill="rgb(221,137,34)" rx="2" ry="2" />
<text text-anchor="" x="226.15" 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>/.repo_requirements/odoo/odoo/sql_db.py:&lt;dictcomp&gt;:196 (1 samples, 0.08%)</title><rect x="319.2" y="37" width="0.9" height="15.0" fill="rgb(224,166,10)" rx="2" ry="2" />
<text text-anchor="" x="322.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="920.2" y="133" width="1.0" height="15.0" fill="rgb(240,9,35)" rx="2" ry="2" />
<text text-anchor="" x="923.20" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:read:207 (1 samples, 0.08%)</title><rect x="1179.4" y="437" width="1.0" height="15.0" fill="rgb(209,81,15)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="521.7" y="165" width="1.0" height="15.0" fill="rgb(244,47,23)" rx="2" ry="2" />
<text text-anchor="" x="524.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="743.5" y="117" width="1.0" height="15.0" fill="rgb(213,168,54)" rx="2" ry="2" />
<text text-anchor="" x="746.54" 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>/.repo_requirements/odoo/odoo/api.py:_do_in_mode:815 (4 samples, 0.33%)</title><rect x="26.3" y="917" width="3.9" height="15.0" fill="rgb(222,66,49)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (2 samples, 0.16%)</title><rect x="1140.1" y="277" width="1.9" height="15.0" fill="rgb(215,82,32)" rx="2" ry="2" />
<text text-anchor="" x="1143.07" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="1125.7" y="277" width="2.9" height="15.0" fill="rgb(214,186,41)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="606.2" y="277" width="1.0" height="15.0" fill="rgb(216,3,6)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="948.0" y="197" width="1.0" height="15.0" fill="rgb(244,75,13)" rx="2" ry="2" />
<text text-anchor="" x="951.05" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:967 (1 samples, 0.08%)</title><rect x="772.3" y="213" width="1.0" height="15.0" fill="rgb(230,20,13)" rx="2" ry="2" />
<text text-anchor="" x="775.34" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="546.7" y="149" width="1.0" height="15.0" fill="rgb(223,76,16)" rx="2" ry="2" />
<text text-anchor="" x="549.71" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="201.1" y="277" width="1.9" height="15.0" fill="rgb(214,48,46)" rx="2" ry="2" />
<text text-anchor="" x="204.07" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.08%)</title><rect x="1175.6" y="309" width="1.0" height="15.0" fill="rgb(213,176,53)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="489.1" y="149" width="1.0" height="15.0" fill="rgb(208,212,25)" rx="2" ry="2" />
<text text-anchor="" x="492.10" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="805.9" y="149" width="1.0" height="15.0" fill="rgb(219,25,36)" rx="2" ry="2" />
<text text-anchor="" x="808.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="974.0" y="117" width="1.9" height="15.0" fill="rgb(218,76,37)" rx="2" ry="2" />
<text text-anchor="" x="976.97" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="440.1" y="133" width="1.0" height="15.0" fill="rgb(254,183,17)" rx="2" ry="2" />
<text text-anchor="" x="443.14" 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>/.repo_requirements/odoo/odoo/tools/translate.py:parse_xml:284 (1 samples, 0.08%)</title><rect x="1177.5" y="373" width="1.0" height="15.0" fill="rgb(233,193,12)" rx="2" ry="2" />
<text text-anchor="" x="1180.52" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="793.5" y="165" width="0.9" height="15.0" fill="rgb(247,217,42)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="668.6" y="245" width="1.0" height="15.0" fill="rgb(243,216,16)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (1 samples, 0.08%)</title><rect x="923.1" y="213" width="0.9" height="15.0" fill="rgb(244,76,10)" rx="2" ry="2" />
<text text-anchor="" x="926.08" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (9 samples, 0.73%)</title><rect x="1022.0" y="197" width="8.6" height="15.0" fill="rgb(239,69,39)" rx="2" ry="2" />
<text text-anchor="" x="1024.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="902.0" y="181" width="0.9" height="15.0" fill="rgb(250,132,54)" rx="2" ry="2" />
<text text-anchor="" x="904.96" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="395.0" y="181" width="1.0" height="15.0" fill="rgb(220,34,52)" rx="2" ry="2" />
<text text-anchor="" x="398.01" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (4 samples, 0.33%)</title><rect x="710.9" y="245" width="3.8" height="15.0" fill="rgb(227,142,11)" rx="2" ry="2" />
<text text-anchor="" x="713.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1893 (1,090 samples, 88.69%)</title><rect x="130.0" y="421" width="1046.6" height="15.0" fill="rgb(229,196,50)" rx="2" ry="2" />
<text text-anchor="" x="133.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1893</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (2 samples, 0.16%)</title><rect x="498.7" y="197" width="1.9" height="15.0" fill="rgb(223,163,48)" rx="2" ry="2" />
<text text-anchor="" x="501.71" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="990.3" y="149" width="1.9" height="15.0" fill="rgb(246,53,40)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.08%)</title><rect x="737.8" y="117" width="0.9" height="15.0" fill="rgb(223,118,8)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="307.6" y="197" width="2.0" height="15.0" fill="rgb(218,76,8)" rx="2" ry="2" />
<text text-anchor="" x="310.64" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1128.6" y="261" width="0.9" height="15.0" fill="rgb(236,12,0)" rx="2" ry="2" />
<text text-anchor="" x="1131.55" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (1 samples, 0.08%)</title><rect x="979.7" y="213" width="1.0" height="15.0" fill="rgb(227,122,6)" rx="2" ry="2" />
<text text-anchor="" x="982.73" 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>/usr/lib/python3.5/socketserver.py:serve_forever:232 (8 samples, 0.65%)</title><rect x="107.0" y="1109" width="7.7" height="15.0" fill="rgb(228,207,31)" rx="2" ry="2" />
<text text-anchor="" x="109.97" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="529.4" y="133" width="1.0" height="15.0" fill="rgb(216,153,13)" rx="2" ry="2" />
<text text-anchor="" x="532.43" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="526.6" y="149" width="1.9" height="15.0" fill="rgb(220,145,25)" rx="2" ry="2" />
<text text-anchor="" x="529.55" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="992.2" y="149" width="1.0" height="15.0" fill="rgb(209,129,31)" rx="2" ry="2" />
<text text-anchor="" x="995.21" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="439.2" y="181" width="1.9" height="15.0" fill="rgb(228,29,53)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="1112.2" y="245" width="1.9" height="15.0" fill="rgb(250,88,37)" rx="2" ry="2" />
<text text-anchor="" x="1115.23" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="781.9" y="213" width="1.0" height="15.0" fill="rgb(226,43,54)" rx="2" ry="2" />
<text text-anchor="" x="784.94" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="631.2" y="245" width="1.9" height="15.0" fill="rgb(252,15,53)" rx="2" ry="2" />
<text text-anchor="" x="634.20" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="533.3" y="149" width="0.9" height="15.0" fill="rgb(247,131,38)" rx="2" ry="2" />
<text text-anchor="" x="536.27" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="991.3" y="133" width="0.9" height="15.0" fill="rgb(220,93,36)" rx="2" ry="2" />
<text text-anchor="" x="994.25" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="970.1" y="117" width="1.0" height="15.0" fill="rgb(238,192,35)" rx="2" ry="2" />
<text text-anchor="" x="973.13" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_analytic_lines:1487 (1 samples, 0.08%)</title><rect x="1174.6" y="373" width="1.0" height="15.0" fill="rgb(231,159,2)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="436.3" y="181" width="1.9" height="15.0" fill="rgb(218,222,27)" rx="2" ry="2" />
<text text-anchor="" x="439.30" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="547.7" y="133" width="0.9" height="15.0" fill="rgb(238,150,10)" rx="2" ry="2" />
<text text-anchor="" x="550.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:129 (1 samples, 0.08%)</title><rect x="711.9" y="69" width="0.9" height="15.0" fill="rgb(220,158,2)" rx="2" ry="2" />
<text text-anchor="" x="714.86" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (3 samples, 0.24%)</title><rect x="236.6" y="261" width="2.9" height="15.0" fill="rgb(240,76,23)" rx="2" ry="2" />
<text text-anchor="" x="239.59" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="533.3" y="117" width="0.9" height="15.0" fill="rgb(249,131,10)" rx="2" ry="2" />
<text text-anchor="" x="536.27" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (1 samples, 0.08%)</title><rect x="318.2" y="85" width="1.0" height="15.0" fill="rgb(218,78,43)" rx="2" ry="2" />
<text text-anchor="" x="321.20" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2259 (30 samples, 2.44%)</title><rect x="139.6" y="293" width="28.8" height="15.0" fill="rgb(225,206,32)" rx="2" ry="2" />
<text text-anchor="" x="142.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (8 samples, 0.65%)</title><rect x="807.9" y="197" width="7.6" height="15.0" fill="rgb(223,14,41)" rx="2" ry="2" />
<text text-anchor="" x="810.87" 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>/.repo_requirements/odoo/odoo/models.py:_write:3226 (3 samples, 0.24%)</title><rect x="1163.1" y="325" width="2.9" height="15.0" fill="rgb(214,121,36)" rx="2" ry="2" />
<text text-anchor="" x="1166.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="880.8" y="197" width="2.0" height="15.0" fill="rgb(215,185,7)" rx="2" ry="2" />
<text text-anchor="" x="883.84" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.08%)</title><rect x="638.9" y="293" width="0.9" height="15.0" fill="rgb(210,196,26)" rx="2" ry="2" />
<text text-anchor="" x="641.89" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="420.9" y="117" width="2.0" height="15.0" fill="rgb(227,125,23)" rx="2" ry="2" />
<text text-anchor="" x="423.94" 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>/.repo_requirements/odoo/odoo/models.py:name_get:1509 (1 samples, 0.08%)</title><rect x="1177.5" y="517" width="1.0" height="15.0" fill="rgb(206,81,12)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="421.9" y="101" width="1.0" height="15.0" fill="rgb(253,19,30)" rx="2" ry="2" />
<text text-anchor="" x="424.90" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="416.1" y="165" width="1.0" height="15.0" fill="rgb(215,224,22)" rx="2" ry="2" />
<text text-anchor="" x="419.14" 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>/usr/lib/python3.5/ast.py:_fix:144 (1 samples, 0.08%)</title><rect x="1188.1" y="277" width="0.9" height="15.0" fill="rgb(248,49,13)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="1097.8" y="293" width="4.8" height="15.0" fill="rgb(226,20,54)" rx="2" ry="2" />
<text text-anchor="" x="1100.83" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (3 samples, 0.24%)</title><rect x="669.6" y="309" width="2.9" height="15.0" fill="rgb(222,198,51)" rx="2" ry="2" />
<text text-anchor="" x="672.61" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="512.1" y="165" width="1.0" height="15.0" fill="rgb(250,13,33)" rx="2" ry="2" />
<text text-anchor="" x="515.15" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="447.8" y="149" width="1.0" height="15.0" fill="rgb(230,102,54)" rx="2" ry="2" />
<text text-anchor="" x="450.82" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="356.6" y="133" width="1.9" height="15.0" fill="rgb(241,93,20)" rx="2" ry="2" />
<text text-anchor="" x="359.61" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="521.7" y="133" width="1.0" height="15.0" fill="rgb(253,86,18)" rx="2" ry="2" />
<text text-anchor="" x="524.75" 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>/.repo_requirements/odoo/odoo/models.py:_write:3194 (4 samples, 0.33%)</title><rect x="641.8" y="325" width="3.8" height="15.0" fill="rgb(211,132,23)" rx="2" ry="2" />
<text text-anchor="" x="644.77" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.08%)</title><rect x="261.6" y="117" width="0.9" height="15.0" fill="rgb(208,228,2)" rx="2" ry="2" />
<text text-anchor="" x="264.55" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (7 samples, 0.57%)</title><rect x="418.1" y="197" width="6.7" height="15.0" fill="rgb(233,227,42)" rx="2" ry="2" />
<text text-anchor="" x="421.06" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="392.1" y="133" width="1.0" height="15.0" fill="rgb(232,57,10)" rx="2" ry="2" />
<text text-anchor="" x="395.13" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="926.0" y="149" width="0.9" height="15.0" fill="rgb(220,80,9)" rx="2" ry="2" />
<text text-anchor="" x="928.96" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="673.4" y="309" width="1.0" height="15.0" fill="rgb(242,99,51)" rx="2" ry="2" />
<text text-anchor="" x="676.45" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (7 samples, 0.57%)</title><rect x="798.3" y="149" width="6.7" height="15.0" fill="rgb(223,94,42)" rx="2" ry="2" />
<text text-anchor="" x="801.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1175.6" y="277" width="1.0" height="15.0" fill="rgb(230,21,20)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (2 samples, 0.16%)</title><rect x="1045.0" y="325" width="1.9" height="15.0" fill="rgb(254,126,40)" rx="2" ry="2" />
<text text-anchor="" x="1048.02" 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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.08%)</title><rect x="799.2" y="117" width="1.0" height="15.0" fill="rgb(205,114,41)" rx="2" ry="2" />
<text text-anchor="" x="802.23" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.08%)</title><rect x="29.2" y="885" width="1.0" height="15.0" fill="rgb(210,112,12)" rx="2" ry="2" />
<text text-anchor="" x="32.20" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (2 samples, 0.16%)</title><rect x="454.5" y="213" width="2.0" height="15.0" fill="rgb(253,226,2)" rx="2" ry="2" />
<text text-anchor="" x="457.54" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="915.4" y="133" width="1.0" height="15.0" fill="rgb(236,229,45)" rx="2" ry="2" />
<text text-anchor="" x="918.40" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="283.6" y="165" width="1.0" height="15.0" fill="rgb(218,99,47)" rx="2" ry="2" />
<text text-anchor="" x="286.64" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:concat_xml:212 (1 samples, 0.08%)</title><rect x="1184.2" y="693" width="1.0" height="15.0" fill="rgb(235,145,4)" rx="2" ry="2" />
<text text-anchor="" x="1187.24" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="13.8" y="789" width="1.0" height="15.0" fill="rgb(206,211,53)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="1071.9" y="245" width="1.0" height="15.0" fill="rgb(239,116,39)" rx="2" ry="2" />
<text text-anchor="" x="1074.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="551.5" y="213" width="1.0" height="15.0" fill="rgb(219,89,9)" rx="2" ry="2" />
<text text-anchor="" x="554.51" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.08%)</title><rect x="26.3" y="789" width="1.0" height="15.0" fill="rgb(247,102,47)" rx="2" ry="2" />
<text text-anchor="" x="29.32" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="793.5" y="181" width="0.9" height="15.0" fill="rgb(241,63,7)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="11.0" y="821" width="0.9" height="15.0" fill="rgb(243,68,17)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="802.1" y="53" width="1.0" height="15.0" fill="rgb(254,74,11)" rx="2" ry="2" />
<text text-anchor="" x="805.11" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="377.7" y="165" width="2.0" height="15.0" fill="rgb(210,118,35)" rx="2" ry="2" />
<text text-anchor="" x="380.73" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="908.7" y="149" width="0.9" height="15.0" fill="rgb(225,205,24)" rx="2" ry="2" />
<text text-anchor="" x="911.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1119.0" y="277" width="0.9" height="15.0" fill="rgb(235,148,34)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="814.6" y="149" width="0.9" height="15.0" fill="rgb(247,202,53)" rx="2" ry="2" />
<text text-anchor="" x="817.59" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (1,097 samples, 89.26%)</title><rect x="123.3" y="597" width="1053.3" height="15.0" fill="rgb(244,0,39)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (6 samples, 0.49%)</title><rect x="1149.7" y="293" width="5.7" height="15.0" fill="rgb(247,224,37)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.16%)</title><rect x="1151.6" y="213" width="1.9" height="15.0" fill="rgb(213,109,33)" rx="2" ry="2" />
<text text-anchor="" x="1154.59" 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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (1 samples, 0.08%)</title><rect x="819.4" y="197" width="0.9" height="15.0" fill="rgb(214,215,34)" rx="2" ry="2" />
<text text-anchor="" x="822.39" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.08%)</title><rect x="240.4" y="69" width="1.0" height="15.0" fill="rgb(251,225,0)" rx="2" ry="2" />
<text text-anchor="" x="243.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="827.1" y="165" width="0.9" height="15.0" fill="rgb(250,41,44)" rx="2" ry="2" />
<text text-anchor="" x="830.07" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="874.1" y="197" width="1.0" height="15.0" fill="rgb(252,82,32)" rx="2" ry="2" />
<text text-anchor="" x="877.12" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263 (1,113 samples, 90.56%)</title><rect x="121.4" y="1061" width="1068.6" height="15.0" fill="rgb(213,85,14)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (3 samples, 0.24%)</title><rect x="1027.7" y="181" width="2.9" height="15.0" fill="rgb(238,200,35)" rx="2" ry="2" />
<text text-anchor="" x="1030.74" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="261.6" y="101" width="0.9" height="15.0" fill="rgb(224,185,30)" rx="2" ry="2" />
<text text-anchor="" x="264.55" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="409.4" y="149" width="1.0" height="15.0" fill="rgb(235,206,33)" rx="2" ry="2" />
<text text-anchor="" x="412.41" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="653.3" y="277" width="0.9" height="15.0" fill="rgb(253,197,34)" rx="2" ry="2" />
<text text-anchor="" x="656.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="495.8" y="133" width="1.0" height="15.0" fill="rgb(254,139,45)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="969.2" y="101" width="0.9" height="15.0" fill="rgb(233,52,17)" rx="2" ry="2" />
<text text-anchor="" x="972.17" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="1148.7" y="293" width="1.0" height="15.0" fill="rgb(244,183,48)" rx="2" ry="2" />
<text text-anchor="" x="1151.71" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="920.2" y="117" width="1.0" height="15.0" fill="rgb(224,192,16)" rx="2" ry="2" />
<text text-anchor="" x="923.20" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="352.8" y="133" width="0.9" height="15.0" fill="rgb(239,22,5)" rx="2" ry="2" />
<text text-anchor="" x="355.77" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="839.6" y="133" width="0.9" height="15.0" fill="rgb(250,162,24)" rx="2" ry="2" />
<text text-anchor="" x="842.55" 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>/usr/lib/python3.5/threading.py:_bootstrap_inner:914 (1,128 samples, 91.78%)</title><rect x="107.0" y="1173" width="1083.0" height="15.0" fill="rgb(229,92,37)" rx="2" ry="2" />
<text text-anchor="" x="109.97" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap_inner:914</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1008.5" y="181" width="1.0" height="15.0" fill="rgb(236,224,16)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="472.8" y="181" width="0.9" height="15.0" fill="rgb(253,205,47)" rx="2" ry="2" />
<text text-anchor="" x="475.78" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="762.7" y="197" width="1.0" height="15.0" fill="rgb(212,216,0)" rx="2" ry="2" />
<text text-anchor="" x="765.74" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="299.0" y="133" width="1.0" height="15.0" fill="rgb(251,207,3)" rx="2" ry="2" />
<text text-anchor="" x="302.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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="847.2" y="181" width="1.0" height="15.0" fill="rgb(211,111,20)" rx="2" ry="2" />
<text text-anchor="" x="850.23" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (2 samples, 0.16%)</title><rect x="14.8" y="789" width="1.9" height="15.0" fill="rgb(242,21,9)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/models.py:_create:3534 (500 samples, 40.68%)</title><rect x="693.6" y="357" width="480.1" height="15.0" fill="rgb(220,51,43)" rx="2" ry="2" />
<text text-anchor="" x="696.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:_create:3534</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (2 samples, 0.16%)</title><rect x="239.5" y="165" width="1.9" height="15.0" fill="rgb(234,181,19)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="668.6" y="261" width="1.0" height="15.0" fill="rgb(248,139,51)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="667.7" y="229" width="0.9" height="15.0" fill="rgb(215,214,3)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="514.1" y="181" width="0.9" height="15.0" fill="rgb(210,74,13)" rx="2" ry="2" />
<text text-anchor="" x="517.07" 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>/usr/lib/python3.5/xml/etree/ElementTree.py:_namespaces:893 (1 samples, 0.08%)</title><rect x="1185.2" y="645" width="1.0" height="15.0" fill="rgb(246,25,39)" rx="2" ry="2" />
<text text-anchor="" x="1188.20" 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>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.08%)</title><rect x="683.1" y="229" width="0.9" height="15.0" fill="rgb(252,20,10)" rx="2" ry="2" />
<text text-anchor="" x="686.05" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (5 samples, 0.41%)</title><rect x="982.6" y="197" width="4.8" height="15.0" fill="rgb(209,82,9)" rx="2" ry="2" />
<text text-anchor="" x="985.61" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="470.9" y="165" width="0.9" height="15.0" fill="rgb(238,132,4)" rx="2" ry="2" />
<text text-anchor="" x="473.86" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="992.2" y="181" width="1.0" height="15.0" fill="rgb(233,5,21)" rx="2" ry="2" />
<text text-anchor="" x="995.21" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (1 samples, 0.08%)</title><rect x="489.1" y="181" width="1.0" height="15.0" fill="rgb(223,124,1)" rx="2" ry="2" />
<text text-anchor="" x="492.10" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="1070.9" y="293" width="1.0" height="15.0" fill="rgb(223,55,44)" rx="2" ry="2" />
<text text-anchor="" x="1073.94" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (308 samples, 25.06%)</title><rect x="256.8" y="245" width="295.7" height="15.0" fill="rgb(245,198,30)" rx="2" ry="2" />
<text text-anchor="" x="259.75" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="681.1" y="325" width="1.0" height="15.0" fill="rgb(252,60,38)" rx="2" ry="2" />
<text text-anchor="" x="684.13" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (3 samples, 0.24%)</title><rect x="990.3" y="197" width="2.9" height="15.0" fill="rgb(239,110,33)" rx="2" ry="2" />
<text text-anchor="" x="993.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="933.6" y="181" width="2.0" height="15.0" fill="rgb(214,184,30)" rx="2" ry="2" />
<text text-anchor="" x="936.65" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205 (1,113 samples, 90.56%)</title><rect x="121.4" y="1045" width="1068.6" height="15.0" fill="rgb(218,161,13)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="284.6" y="165" width="1.0" height="15.0" fill="rgb(220,214,34)" rx="2" ry="2" />
<text text-anchor="" x="287.60" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="822.3" y="149" width="0.9" height="15.0" fill="rgb(244,212,7)" rx="2" ry="2" />
<text text-anchor="" x="825.27" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="444.9" y="149" width="1.0" height="15.0" fill="rgb(252,26,9)" rx="2" ry="2" />
<text text-anchor="" x="447.94" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="786.7" y="181" width="2.0" height="15.0" fill="rgb(254,215,25)" rx="2" ry="2" />
<text text-anchor="" x="789.75" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="771.4" y="165" width="0.9" height="15.0" fill="rgb(209,195,31)" rx="2" ry="2" />
<text text-anchor="" x="774.38" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="420.0" y="117" width="0.9" height="15.0" fill="rgb(233,27,4)" rx="2" ry="2" />
<text text-anchor="" x="422.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="994.1" y="213" width="1.0" height="15.0" fill="rgb(240,118,53)" rx="2" ry="2" />
<text text-anchor="" x="997.13" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.08%)</title><rect x="24.4" y="341" width="1.0" height="15.0" fill="rgb(230,123,39)" rx="2" ry="2" />
<text text-anchor="" x="27.40" 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>/usr/lib/python3.5/socketserver.py:__init__:681 (1,113 samples, 90.56%)</title><rect x="121.4" y="1109" width="1068.6" height="15.0" fill="rgb(223,132,46)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:__init__:681</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (1 samples, 0.08%)</title><rect x="1180.4" y="501" width="1.0" height="15.0" fill="rgb(246,204,28)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="736.8" y="197" width="1.0" height="15.0" fill="rgb(237,166,18)" rx="2" ry="2" />
<text text-anchor="" x="739.82" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="891.4" y="181" width="1.0" height="15.0" fill="rgb(206,73,46)" rx="2" ry="2" />
<text text-anchor="" x="894.40" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="359.5" y="133" width="0.9" height="15.0" fill="rgb(247,227,28)" rx="2" ry="2" />
<text text-anchor="" x="362.49" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="950.0" y="197" width="0.9" height="15.0" fill="rgb(222,147,5)" rx="2" ry="2" />
<text text-anchor="" x="952.97" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.24%)</title><rect x="695.5" y="309" width="2.9" height="15.0" fill="rgb(252,186,0)" rx="2" ry="2" />
<text text-anchor="" x="698.53" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="296.1" y="133" width="1.0" height="15.0" fill="rgb(210,153,41)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="123.3" y="533" width="1.0" height="15.0" fill="rgb(232,156,34)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="1070.0" y="277" width="0.9" height="15.0" fill="rgb(254,88,29)" rx="2" ry="2" />
<text text-anchor="" x="1072.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="984.5" y="133" width="1.0" height="15.0" fill="rgb(242,22,15)" rx="2" ry="2" />
<text text-anchor="" x="987.53" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (7 samples, 0.57%)</title><rect x="830.9" y="165" width="6.7" height="15.0" fill="rgb(208,73,43)" rx="2" ry="2" />
<text text-anchor="" x="833.91" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-60&gt;:get_installed:2 (1 samples, 0.08%)</title><rect x="1116.1" y="309" width="0.9" height="15.0" fill="rgb(246,9,23)" rx="2" ry="2" />
<text text-anchor="" x="1119.07" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (4 samples, 0.33%)</title><rect x="130.0" y="341" width="3.9" height="15.0" fill="rgb(237,71,5)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/models.py:_add_missing_default_values:1592 (1 samples, 0.08%)</title><rect x="211.6" y="357" width="1.0" height="15.0" fill="rgb(223,180,49)" rx="2" ry="2" />
<text text-anchor="" x="214.63" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="561.1" y="325" width="1.0" height="15.0" fill="rgb(236,126,3)" rx="2" ry="2" />
<text text-anchor="" x="564.11" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="945.2" y="165" width="0.9" height="15.0" fill="rgb(247,198,8)" rx="2" ry="2" />
<text text-anchor="" x="948.17" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.08%)</title><rect x="802.1" y="69" width="1.0" height="15.0" fill="rgb(236,55,23)" rx="2" ry="2" />
<text text-anchor="" x="805.11" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1434 (4 samples, 0.33%)</title><rect x="130.0" y="389" width="3.9" height="15.0" fill="rgb(205,151,42)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (3 samples, 0.24%)</title><rect x="141.5" y="277" width="2.9" height="15.0" fill="rgb(247,221,37)" rx="2" ry="2" />
<text text-anchor="" x="144.54" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (24 samples, 1.95%)</title><rect x="145.4" y="277" width="23.0" height="15.0" fill="rgb(234,16,28)" rx="2" ry="2" />
<text text-anchor="" x="148.38" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:381 (1 samples, 0.08%)</title><rect x="11.0" y="757" width="0.9" height="15.0" fill="rgb(247,193,20)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="365.2" y="197" width="1.0" height="15.0" fill="rgb(239,223,7)" rx="2" ry="2" />
<text text-anchor="" x="368.25" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="757.9" y="149" width="1.0" height="15.0" fill="rgb(207,140,18)" rx="2" ry="2" />
<text text-anchor="" x="760.94" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="781.9" y="181" width="1.0" height="15.0" fill="rgb(230,96,17)" rx="2" ry="2" />
<text text-anchor="" x="784.94" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="514.1" y="197" width="0.9" height="15.0" fill="rgb(234,122,21)" rx="2" ry="2" />
<text text-anchor="" x="517.07" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="140.6" y="261" width="0.9" height="15.0" fill="rgb(206,35,11)" rx="2" ry="2" />
<text text-anchor="" x="143.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="407.5" y="213" width="1.0" height="15.0" fill="rgb(211,48,48)" rx="2" ry="2" />
<text text-anchor="" x="410.49" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="548.6" y="133" width="1.0" height="15.0" fill="rgb(241,166,37)" rx="2" ry="2" />
<text text-anchor="" x="551.63" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.08%)</title><rect x="21.5" y="661" width="1.0" height="15.0" fill="rgb(241,15,28)" rx="2" ry="2" />
<text text-anchor="" x="24.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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.08%)</title><rect x="801.1" y="69" width="1.0" height="15.0" fill="rgb(233,123,44)" rx="2" ry="2" />
<text text-anchor="" x="804.15" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="402.7" y="181" width="1.9" height="15.0" fill="rgb(227,190,21)" rx="2" ry="2" />
<text text-anchor="" x="405.69" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="780.0" y="149" width="1.0" height="15.0" fill="rgb(236,202,27)" rx="2" ry="2" />
<text text-anchor="" x="783.02" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="259.6" y="117" width="2.0" height="15.0" fill="rgb(206,207,11)" rx="2" ry="2" />
<text text-anchor="" x="262.63" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="280.8" y="197" width="0.9" height="15.0" fill="rgb(242,192,12)" rx="2" ry="2" />
<text text-anchor="" x="283.76" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.08%)</title><rect x="802.1" y="85" width="1.0" height="15.0" fill="rgb(221,79,21)" rx="2" ry="2" />
<text text-anchor="" x="805.11" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="494.9" y="101" width="0.9" height="15.0" fill="rgb(253,53,13)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="768.5" y="197" width="1.0" height="15.0" fill="rgb(234,197,47)" rx="2" ry="2" />
<text text-anchor="" x="771.50" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="688.8" y="309" width="1.0" height="15.0" fill="rgb(241,83,35)" rx="2" ry="2" />
<text text-anchor="" x="691.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>/usr/lib/python3.5/selectors.py:select:368 (1 samples, 0.08%)</title><rect x="109.9" y="1093" width="0.9" height="15.0" fill="rgb(246,143,39)" rx="2" ry="2" />
<text text-anchor="" x="112.85" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency:493 (3 samples, 0.24%)</title><rect x="690.7" y="325" width="2.9" height="15.0" fill="rgb(213,101,23)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="863.6" y="149" width="0.9" height="15.0" fill="rgb(229,15,28)" rx="2" ry="2" />
<text text-anchor="" x="866.56" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (2 samples, 0.16%)</title><rect x="972.1" y="133" width="1.9" height="15.0" fill="rgb(208,93,4)" rx="2" ry="2" />
<text text-anchor="" x="975.05" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="757.0" y="197" width="0.9" height="15.0" fill="rgb(254,104,28)" rx="2" ry="2" />
<text text-anchor="" x="759.98" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="595.7" y="245" width="0.9" height="15.0" fill="rgb(216,205,44)" rx="2" ry="2" />
<text text-anchor="" x="598.68" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="11.0" y="709" width="0.9" height="15.0" fill="rgb(212,128,34)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:_visible_menu_ids:107 (2 samples, 0.16%)</title><rect x="1178.5" y="517" width="1.9" height="15.0" fill="rgb(243,107,32)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="1015.3" y="149" width="1.9" height="15.0" fill="rgb(245,84,53)" rx="2" ry="2" />
<text text-anchor="" x="1018.26" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="867.4" y="165" width="1.9" height="15.0" fill="rgb(249,157,29)" rx="2" ry="2" />
<text text-anchor="" x="870.40" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.08%)</title><rect x="216.4" y="309" width="1.0" height="15.0" fill="rgb(233,203,4)" rx="2" ry="2" />
<text text-anchor="" x="219.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="923.1" y="197" width="0.9" height="15.0" fill="rgb(216,136,36)" rx="2" ry="2" />
<text text-anchor="" x="926.08" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (1 samples, 0.08%)</title><rect x="224.1" y="325" width="1.0" height="15.0" fill="rgb(206,39,9)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="672.5" y="309" width="0.9" height="15.0" fill="rgb(221,6,12)" rx="2" ry="2" />
<text text-anchor="" x="675.49" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="983.6" y="149" width="0.9" height="15.0" fill="rgb(216,176,42)" rx="2" ry="2" />
<text text-anchor="" x="986.57" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="882.8" y="181" width="1.9" height="15.0" fill="rgb(213,145,50)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (4 samples, 0.33%)</title><rect x="14.8" y="821" width="3.8" height="15.0" fill="rgb(214,80,37)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="384.5" y="165" width="0.9" height="15.0" fill="rgb(239,222,7)" rx="2" ry="2" />
<text text-anchor="" x="387.45" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1720 (81 samples, 6.59%)</title><rect x="130.0" y="405" width="77.8" height="15.0" fill="rgb(227,194,11)" rx="2" ry="2" />
<text text-anchor="" x="133.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/od..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="754.1" y="197" width="1.0" height="15.0" fill="rgb(229,113,32)" rx="2" ry="2" />
<text text-anchor="" x="757.10" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:1018 (1 samples, 0.08%)</title><rect x="959.6" y="165" width="0.9" height="15.0" fill="rgb(241,203,25)" rx="2" ry="2" />
<text text-anchor="" x="962.57" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="812.7" y="117" width="0.9" height="15.0" fill="rgb(231,66,0)" rx="2" ry="2" />
<text text-anchor="" x="815.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="417.1" y="165" width="1.0" height="15.0" fill="rgb(235,215,28)" rx="2" ry="2" />
<text text-anchor="" x="420.10" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="662.9" y="293" width="0.9" height="15.0" fill="rgb(232,193,27)" rx="2" ry="2" />
<text text-anchor="" x="665.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (3 samples, 0.24%)</title><rect x="690.7" y="309" width="2.9" height="15.0" fill="rgb(232,122,44)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="892.4" y="213" width="2.8" height="15.0" fill="rgb(217,14,29)" rx="2" ry="2" />
<text text-anchor="" x="895.36" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:242 (1 samples, 0.08%)</title><rect x="643.7" y="293" width="0.9" height="15.0" fill="rgb(232,134,4)" rx="2" ry="2" />
<text text-anchor="" x="646.69" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__iter__:65 (4 samples, 0.33%)</title><rect x="103.1" y="1189" width="3.9" height="15.0" fill="rgb(245,79,30)" rx="2" ry="2" />
<text text-anchor="" x="106.13" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="535.2" y="149" width="1.9" height="15.0" fill="rgb(207,16,34)" rx="2" ry="2" />
<text text-anchor="" x="538.19" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="956.7" y="181" width="0.9" height="15.0" fill="rgb(234,160,28)" rx="2" ry="2" />
<text text-anchor="" x="959.69" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (5 samples, 0.41%)</title><rect x="516.9" y="197" width="4.8" height="15.0" fill="rgb(237,71,9)" rx="2" ry="2" />
<text text-anchor="" x="519.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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (2 samples, 0.16%)</title><rect x="148.3" y="261" width="1.9" height="15.0" fill="rgb(226,131,12)" rx="2" ry="2" />
<text text-anchor="" x="151.26" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.08%)</title><rect x="800.2" y="85" width="0.9" height="15.0" fill="rgb(232,62,6)" rx="2" ry="2" />
<text text-anchor="" x="803.19" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="291.3" y="149" width="1.0" height="15.0" fill="rgb(243,100,54)" rx="2" ry="2" />
<text text-anchor="" x="294.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="128.1" y="309" width="1.0" height="15.0" fill="rgb(247,32,41)" rx="2" ry="2" />
<text text-anchor="" x="131.10" 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>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.08%)</title><rect x="319.2" y="85" width="0.9" height="15.0" fill="rgb(209,88,3)" rx="2" ry="2" />
<text text-anchor="" x="322.16" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:381 (41 samples, 3.34%)</title><rect x="993.2" y="229" width="39.3" height="15.0" fill="rgb(236,118,41)" rx="2" ry="2" />
<text text-anchor="" x="996.17" y="239.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/context.py:verify_and_update:2616 (1 samples, 0.08%)</title><rect x="1186.2" y="501" width="0.9" height="15.0" fill="rgb(235,120,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="416.1" y="181" width="1.0" height="15.0" fill="rgb(206,55,35)" rx="2" ry="2" />
<text text-anchor="" x="419.14" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="315.3" y="197" width="1.0" height="15.0" fill="rgb(251,127,34)" rx="2" ry="2" />
<text text-anchor="" x="318.32" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="525.6" y="117" width="1.0" height="15.0" fill="rgb(247,188,44)" rx="2" ry="2" />
<text text-anchor="" x="528.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (15 samples, 1.22%)</title><rect x="154.0" y="261" width="14.4" height="15.0" fill="rgb(240,189,53)" rx="2" ry="2" />
<text text-anchor="" x="157.02" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="23.4" y="325" width="1.0" height="15.0" fill="rgb(213,38,28)" rx="2" ry="2" />
<text text-anchor="" x="26.44" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="443.0" y="181" width="1.9" height="15.0" fill="rgb(225,45,1)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="414.2" y="165" width="1.9" height="15.0" fill="rgb(221,1,19)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="322.0" y="133" width="2.0" height="15.0" fill="rgb(244,172,6)" rx="2" ry="2" />
<text text-anchor="" x="325.04" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="905.8" y="117" width="1.0" height="15.0" fill="rgb(240,144,19)" rx="2" ry="2" />
<text text-anchor="" x="908.80" 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>/.repo_requirements/odoo/odoo/osv/expression.py:_quote:330 (1 samples, 0.08%)</title><rect x="1154.5" y="181" width="0.9" height="15.0" fill="rgb(230,78,21)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="974.9" y="101" width="1.0" height="15.0" fill="rgb(222,108,7)" rx="2" ry="2" />
<text text-anchor="" x="977.93" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (2 samples, 0.16%)</title><rect x="535.2" y="133" width="1.9" height="15.0" fill="rgb(207,114,6)" rx="2" ry="2" />
<text text-anchor="" x="538.19" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (21 samples, 1.71%)</title><rect x="10.0" y="1189" width="20.2" height="15.0" fill="rgb(219,29,41)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (4 samples, 0.33%)</title><rect x="710.9" y="149" width="3.8" height="15.0" fill="rgb(226,109,45)" rx="2" ry="2" />
<text text-anchor="" x="713.90" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="1094.0" y="277" width="1.9" height="15.0" fill="rgb(224,52,34)" rx="2" ry="2" />
<text text-anchor="" x="1096.99" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (9 samples, 0.73%)</title><rect x="268.3" y="101" width="8.6" height="15.0" fill="rgb(245,59,17)" rx="2" ry="2" />
<text text-anchor="" x="271.28" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (4 samples, 0.33%)</title><rect x="22.5" y="853" width="3.8" height="15.0" fill="rgb(234,70,19)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1095.9" y="293" width="1.0" height="15.0" fill="rgb(226,211,42)" rx="2" ry="2" />
<text text-anchor="" x="1098.91" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__delitem__:82 (1 samples, 0.08%)</title><rect x="12.9" y="789" width="0.9" height="15.0" fill="rgb(213,2,54)" rx="2" ry="2" />
<text text-anchor="" x="15.88" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="446.9" y="165" width="1.9" height="15.0" fill="rgb(230,151,19)" rx="2" ry="2" />
<text text-anchor="" x="449.86" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="947.1" y="181" width="0.9" height="15.0" fill="rgb(251,142,4)" rx="2" ry="2" />
<text text-anchor="" x="950.09" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="292.3" y="149" width="0.9" height="15.0" fill="rgb(236,88,44)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="775.2" y="149" width="1.0" height="15.0" fill="rgb(254,145,6)" rx="2" ry="2" />
<text text-anchor="" x="778.22" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="444.0" y="117" width="0.9" height="15.0" fill="rgb(210,166,35)" rx="2" ry="2" />
<text text-anchor="" x="446.98" 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>/.repo_requirements/odoo/odoo/service/server.py:app:260 (1,113 samples, 90.56%)</title><rect x="121.4" y="1013" width="1068.6" height="15.0" fill="rgb(238,178,43)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/server.py:app:260</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="446.9" y="149" width="0.9" height="15.0" fill="rgb(243,222,12)" rx="2" ry="2" />
<text text-anchor="" x="449.86" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="564.0" y="309" width="1.0" height="15.0" fill="rgb(242,77,44)" rx="2" ry="2" />
<text text-anchor="" x="567.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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (2 samples, 0.16%)</title><rect x="239.5" y="181" width="1.9" height="15.0" fill="rgb(230,78,29)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (13 samples, 1.06%)</title><rect x="825.2" y="181" width="12.4" height="15.0" fill="rgb(220,126,9)" rx="2" ry="2" />
<text text-anchor="" x="828.15" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (4 samples, 0.33%)</title><rect x="269.2" y="85" width="3.9" height="15.0" fill="rgb(228,94,30)" rx="2" ry="2" />
<text text-anchor="" x="272.24" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="422.9" y="149" width="0.9" height="15.0" fill="rgb(244,107,20)" rx="2" ry="2" />
<text text-anchor="" x="425.86" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1175.6" y="293" width="1.0" height="15.0" fill="rgb(253,88,16)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="768.5" y="149" width="1.0" height="15.0" fill="rgb(213,73,0)" rx="2" ry="2" />
<text text-anchor="" x="771.50" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (2 samples, 0.16%)</title><rect x="170.3" y="341" width="2.0" height="15.0" fill="rgb(239,127,47)" rx="2" ry="2" />
<text text-anchor="" x="173.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="269.2" y="69" width="2.0" height="15.0" fill="rgb(238,66,13)" rx="2" ry="2" />
<text text-anchor="" x="272.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="19.6" y="885" width="1.0" height="15.0" fill="rgb(238,208,0)" rx="2" ry="2" />
<text text-anchor="" x="22.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1180.4" y="453" width="1.0" height="15.0" fill="rgb(250,147,30)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="11.0" y="773" width="0.9" height="15.0" fill="rgb(232,149,53)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (10 samples, 0.81%)</title><rect x="744.5" y="117" width="9.6" height="15.0" fill="rgb(244,55,26)" rx="2" ry="2" />
<text text-anchor="" x="747.50" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (336 samples, 27.34%)</title><rect x="710.9" y="261" width="322.6" height="15.0" fill="rgb(206,141,4)" rx="2" ry="2" />
<text text-anchor="" x="713.90" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57 (1,097 samples, 89.26%)</title><rect x="123.3" y="613" width="1053.3" height="15.0" fill="rgb(212,190,1)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.16%)</title><rect x="131.9" y="325" width="2.0" height="15.0" fill="rgb(218,216,14)" rx="2" ry="2" />
<text text-anchor="" x="134.94" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (5 samples, 0.41%)</title><rect x="1000.9" y="181" width="4.8" height="15.0" fill="rgb(213,186,23)" rx="2" ry="2" />
<text text-anchor="" x="1003.85" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="151.1" y="245" width="1.0" height="15.0" fill="rgb(208,65,7)" rx="2" ry="2" />
<text text-anchor="" x="154.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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="481.4" y="149" width="2.9" height="15.0" fill="rgb(248,225,20)" rx="2" ry="2" />
<text text-anchor="" x="484.42" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-40&gt;:_get_asset_content:2 (3 samples, 0.24%)</title><rect x="1187.1" y="501" width="2.9" height="15.0" fill="rgb(225,72,48)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="935.6" y="181" width="1.9" height="15.0" fill="rgb(233,149,42)" rx="2" ry="2" />
<text text-anchor="" x="938.57" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (3 samples, 0.24%)</title><rect x="1157.4" y="277" width="2.8" height="15.0" fill="rgb(242,104,39)" rx="2" ry="2" />
<text text-anchor="" x="1160.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="320.1" y="85" width="1.0" height="15.0" fill="rgb(209,226,47)" rx="2" ry="2" />
<text text-anchor="" x="323.12" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="439.2" y="133" width="0.9" height="15.0" fill="rgb(251,171,47)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="334.5" y="133" width="1.0" height="15.0" fill="rgb(240,35,41)" rx="2" ry="2" />
<text text-anchor="" x="337.52" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="455.5" y="165" width="1.0" height="15.0" fill="rgb(254,166,41)" rx="2" ry="2" />
<text text-anchor="" x="458.50" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:372 (1 samples, 0.08%)</title><rect x="13.8" y="837" width="1.0" height="15.0" fill="rgb(231,205,0)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/tools/misc.py:split_every:700 (1 samples, 0.08%)</title><rect x="99.3" y="1189" width="1.0" height="15.0" fill="rgb(237,195,34)" rx="2" ry="2" />
<text text-anchor="" x="102.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="1056.5" y="245" width="1.0" height="15.0" fill="rgb(209,31,31)" rx="2" ry="2" />
<text text-anchor="" x="1059.54" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="810.7" y="117" width="2.0" height="15.0" fill="rgb(207,202,28)" rx="2" ry="2" />
<text text-anchor="" x="813.75" 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>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="309" width="0.9" height="15.0" fill="rgb(247,129,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:963 (3 samples, 0.24%)</title><rect x="436.3" y="213" width="2.9" height="15.0" fill="rgb(244,13,1)" rx="2" ry="2" />
<text text-anchor="" x="439.30" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_cron.py:method_direct_trigger:76 (1,097 samples, 89.26%)</title><rect x="123.3" y="645" width="1053.3" height="15.0" fill="rgb(248,36,4)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_cron.py:method_direct_trigger:76</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2253 (1 samples, 0.08%)</title><rect x="133.9" y="293" width="0.9" height="15.0" fill="rgb(239,166,53)" rx="2" ry="2" />
<text text-anchor="" x="136.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1108.4" y="277" width="0.9" height="15.0" fill="rgb(208,45,53)" rx="2" ry="2" />
<text text-anchor="" x="1111.39" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (4 samples, 0.33%)</title><rect x="786.7" y="197" width="3.9" height="15.0" fill="rgb(221,92,7)" rx="2" ry="2" />
<text text-anchor="" x="789.75" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="1108.4" y="261" width="0.9" height="15.0" fill="rgb(237,66,2)" rx="2" ry="2" />
<text text-anchor="" x="1111.39" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (6 samples, 0.49%)</title><rect x="20.6" y="917" width="5.7" height="15.0" fill="rgb(254,178,3)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="634.1" y="245" width="0.9" height="15.0" fill="rgb(244,71,7)" rx="2" ry="2" />
<text text-anchor="" x="637.08" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:&lt;lambda&gt;:94 (1 samples, 0.08%)</title><rect x="1180.4" y="469" width="1.0" height="15.0" fill="rgb(218,27,25)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (2 samples, 0.16%)</title><rect x="890.4" y="213" width="2.0" height="15.0" fill="rgb(218,20,50)" rx="2" ry="2" />
<text text-anchor="" x="893.44" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="781.0" y="197" width="0.9" height="15.0" fill="rgb(253,109,30)" rx="2" ry="2" />
<text text-anchor="" x="783.98" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="626.4" y="261" width="1.0" height="15.0" fill="rgb(254,51,32)" rx="2" ry="2" />
<text text-anchor="" x="629.40" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="767.5" y="133" width="1.0" height="15.0" fill="rgb(228,70,51)" rx="2" ry="2" />
<text text-anchor="" x="770.54" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="985.5" y="133" width="1.0" height="15.0" fill="rgb(235,129,51)" rx="2" ry="2" />
<text text-anchor="" x="988.49" 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>/.repo_requirements/odoo/odoo/models.py:_search:3797 (1 samples, 0.08%)</title><rect x="215.5" y="309" width="0.9" height="15.0" fill="rgb(215,23,27)" rx="2" ry="2" />
<text text-anchor="" x="218.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="330.7" y="165" width="0.9" height="15.0" fill="rgb(236,3,30)" rx="2" ry="2" />
<text text-anchor="" x="333.68" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="213.5" y="293" width="1.0" height="15.0" fill="rgb(254,210,33)" rx="2" ry="2" />
<text text-anchor="" x="216.55" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="366.2" y="197" width="1.0" height="15.0" fill="rgb(211,96,12)" rx="2" ry="2" />
<text text-anchor="" x="369.21" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="1051.7" y="245" width="1.0" height="15.0" fill="rgb(216,214,27)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1027.7" y="133" width="1.0" height="15.0" fill="rgb(236,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.74" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (4 samples, 0.33%)</title><rect x="649.4" y="293" width="3.9" height="15.0" fill="rgb(221,17,9)" rx="2" ry="2" />
<text text-anchor="" x="652.45" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (4 samples, 0.33%)</title><rect x="22.5" y="581" width="3.8" height="15.0" fill="rgb(235,11,18)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/api.py:__call__:789 (1 samples, 0.08%)</title><rect x="25.4" y="213" width="0.9" height="15.0" fill="rgb(213,218,38)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/modules/module.py:get_resource_path:216 (1 samples, 0.08%)</title><rect x="1189.0" y="453" width="1.0" height="15.0" fill="rgb(235,120,1)" rx="2" ry="2" />
<text text-anchor="" x="1192.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="1098.8" y="277" width="0.9" height="15.0" fill="rgb(243,132,14)" rx="2" ry="2" />
<text text-anchor="" x="1101.79" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:894 (1 samples, 0.08%)</title><rect x="1047.9" y="277" width="1.0" height="15.0" fill="rgb(205,78,48)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="869.3" y="181" width="1.9" height="15.0" fill="rgb(220,67,54)" rx="2" ry="2" />
<text text-anchor="" x="872.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="990.3" y="133" width="1.0" height="15.0" fill="rgb(249,200,26)" rx="2" ry="2" />
<text text-anchor="" x="993.29" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.08%)</title><rect x="221.2" y="213" width="1.0" height="15.0" fill="rgb(250,182,3)" rx="2" ry="2" />
<text text-anchor="" x="224.23" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="1051.7" y="261" width="1.0" height="15.0" fill="rgb(220,117,37)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="246.2" y="229" width="1.0" height="15.0" fill="rgb(218,135,4)" rx="2" ry="2" />
<text text-anchor="" x="249.19" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (1 samples, 0.08%)</title><rect x="1175.6" y="373" width="1.0" height="15.0" fill="rgb(225,86,23)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="970.1" y="101" width="1.0" height="15.0" fill="rgb(227,135,47)" rx="2" ry="2" />
<text text-anchor="" x="973.13" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="500.6" y="197" width="1.9" height="15.0" fill="rgb(209,209,26)" rx="2" ry="2" />
<text text-anchor="" x="503.63" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="437.3" y="149" width="0.9" height="15.0" fill="rgb(227,59,0)" rx="2" ry="2" />
<text text-anchor="" x="440.26" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="265.4" y="53" width="1.0" height="15.0" fill="rgb(248,27,45)" rx="2" ry="2" />
<text text-anchor="" x="268.39" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="971.1" y="101" width="1.0" height="15.0" fill="rgb(220,4,32)" rx="2" ry="2" />
<text text-anchor="" x="974.09" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:qweb:547 (2 samples, 0.16%)</title><rect x="1184.2" y="709" width="2.0" height="15.0" fill="rgb(254,50,3)" rx="2" ry="2" />
<text text-anchor="" x="1187.24" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="221.2" y="261" width="1.0" height="15.0" fill="rgb(214,166,11)" rx="2" ry="2" />
<text text-anchor="" x="224.23" 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>/.repo_requirements/odoo/odoo/fields.py:translate:1331 (1 samples, 0.08%)</title><rect x="1177.5" y="405" width="1.0" height="15.0" fill="rgb(207,151,17)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="265.4" y="101" width="1.0" height="15.0" fill="rgb(251,171,0)" rx="2" ry="2" />
<text text-anchor="" x="268.39" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (6 samples, 0.49%)</title><rect x="1149.7" y="309" width="5.7" height="15.0" fill="rgb(249,85,21)" rx="2" ry="2" />
<text text-anchor="" x="1152.67" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="813.6" y="133" width="1.0" height="15.0" fill="rgb(235,42,43)" rx="2" ry="2" />
<text text-anchor="" x="816.63" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="667.7" y="245" width="0.9" height="15.0" fill="rgb(226,186,44)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.41%)</title><rect x="528.5" y="181" width="4.8" height="15.0" fill="rgb(223,35,2)" rx="2" ry="2" />
<text text-anchor="" x="531.47" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="865.5" y="181" width="3.8" height="15.0" fill="rgb(205,5,37)" rx="2" ry="2" />
<text text-anchor="" x="868.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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="1032.5" y="133" width="1.0" height="15.0" fill="rgb(219,136,46)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/home/odoo/build/vauxoo/typ/shopify_extension/models/sale_workflow_process.py:_process_shopify_order_payments:135 (1 samples, 0.08%)</title><rect x="123.3" y="549" width="1.0" height="15.0" fill="rgb(223,5,32)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="442.1" y="197" width="0.9" height="15.0" fill="rgb(233,111,17)" rx="2" ry="2" />
<text text-anchor="" x="445.06" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-39&gt;:_get_asset_nodes:2 (3 samples, 0.24%)</title><rect x="1187.1" y="549" width="2.9" height="15.0" fill="rgb(223,116,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/models.py:_write:3169 (1 samples, 0.08%)</title><rect x="605.3" y="325" width="0.9" height="15.0" fill="rgb(251,164,38)" rx="2" ry="2" />
<text text-anchor="" x="608.28" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="734.9" y="229" width="1.0" height="15.0" fill="rgb(223,198,52)" rx="2" ry="2" />
<text text-anchor="" x="737.90" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (20 samples, 1.63%)</title><rect x="188.6" y="325" width="19.2" height="15.0" fill="rgb(228,214,40)" rx="2" ry="2" />
<text text-anchor="" x="191.58" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.08%)</title><rect x="1032.5" y="85" width="1.0" height="15.0" fill="rgb(221,73,1)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="426.7" y="181" width="1.9" height="15.0" fill="rgb(210,117,16)" rx="2" ry="2" />
<text text-anchor="" x="429.70" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (2 samples, 0.16%)</title><rect x="796.3" y="197" width="2.0" height="15.0" fill="rgb(208,179,4)" rx="2" ry="2" />
<text text-anchor="" x="799.35" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="754.1" y="213" width="1.0" height="15.0" fill="rgb(236,103,13)" rx="2" ry="2" />
<text text-anchor="" x="757.10" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (2 samples, 0.16%)</title><rect x="1114.1" y="309" width="2.0" height="15.0" fill="rgb(241,153,50)" rx="2" ry="2" />
<text text-anchor="" x="1117.15" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="767.5" y="165" width="1.0" height="15.0" fill="rgb(210,28,0)" rx="2" ry="2" />
<text text-anchor="" x="770.54" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (338 samples, 27.50%)</title><rect x="236.6" y="309" width="324.5" height="15.0" fill="rgb(238,170,13)" rx="2" ry="2" />
<text text-anchor="" x="239.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:__g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:366 (16 samples, 1.30%)</title><rect x="284.6" y="229" width="15.4" height="15.0" fill="rgb(252,201,25)" rx="2" ry="2" />
<text text-anchor="" x="287.60" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="395.0" y="165" width="1.0" height="15.0" fill="rgb(219,201,1)" rx="2" ry="2" />
<text text-anchor="" x="398.01" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="926.0" y="181" width="0.9" height="15.0" fill="rgb(205,215,26)" rx="2" ry="2" />
<text text-anchor="" x="928.96" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1081.5" y="309" width="1.0" height="15.0" fill="rgb(206,159,18)" rx="2" ry="2" />
<text text-anchor="" x="1084.51" 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>/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393 (1,112 samples, 90.48%)</title><rect x="122.3" y="853" width="1067.7" height="15.0" fill="rgb(236,85,3)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="545.8" y="133" width="0.9" height="15.0" fill="rgb(234,132,3)" rx="2" ry="2" />
<text text-anchor="" x="548.75" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (1 samples, 0.08%)</title><rect x="299.0" y="197" width="1.0" height="15.0" fill="rgb(252,14,43)" rx="2" ry="2" />
<text text-anchor="" x="302.00" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__getitem__:980 (1 samples, 0.08%)</title><rect x="363.3" y="181" width="1.0" height="15.0" fill="rgb(222,189,18)" rx="2" ry="2" />
<text text-anchor="" x="366.33" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1017.2" y="149" width="0.9" height="15.0" fill="rgb(224,192,25)" rx="2" ry="2" />
<text text-anchor="" x="1020.18" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="996.1" y="181" width="0.9" height="15.0" fill="rgb(228,195,41)" rx="2" ry="2" />
<text text-anchor="" x="999.05" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="497.7" y="197" width="1.0" height="15.0" fill="rgb(240,205,34)" rx="2" ry="2" />
<text text-anchor="" x="500.75" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:_visible_menu_ids:94 (1 samples, 0.08%)</title><rect x="1180.4" y="517" width="1.0" height="15.0" fill="rgb(228,213,28)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (2 samples, 0.16%)</title><rect x="594.7" y="277" width="1.9" height="15.0" fill="rgb(212,215,35)" rx="2" ry="2" />
<text text-anchor="" x="597.72" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.08%)</title><rect x="215.5" y="277" width="0.9" height="15.0" fill="rgb(212,25,22)" rx="2" ry="2" />
<text text-anchor="" x="218.47" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (2 samples, 0.16%)</title><rect x="16.7" y="789" width="1.9" height="15.0" fill="rgb(225,224,16)" rx="2" ry="2" />
<text text-anchor="" x="19.72" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (39 samples, 3.17%)</title><rect x="170.3" y="357" width="37.5" height="15.0" fill="rgb(211,79,40)" rx="2" ry="2" />
<text text-anchor="" x="173.34" y="367.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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="474.7" y="181" width="1.0" height="15.0" fill="rgb(244,43,38)" rx="2" ry="2" />
<text text-anchor="" x="477.70" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="917.3" y="165" width="1.9" height="15.0" fill="rgb(211,160,24)" rx="2" ry="2" />
<text text-anchor="" x="920.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1051.7" y="293" width="1.0" height="15.0" fill="rgb(215,25,36)" rx="2" ry="2" />
<text text-anchor="" x="1054.74" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="256.8" y="213" width="0.9" height="15.0" fill="rgb(215,7,10)" rx="2" ry="2" />
<text text-anchor="" x="259.75" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="281.7" y="197" width="1.9" height="15.0" fill="rgb(214,9,6)" rx="2" ry="2" />
<text text-anchor="" x="284.72" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="528.5" y="149" width="1.9" height="15.0" fill="rgb(249,178,8)" rx="2" ry="2" />
<text text-anchor="" x="531.47" 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>/.repo_requirements/odoo/odoo/models.py:_write:3194 (4 samples, 0.33%)</title><rect x="1119.9" y="325" width="3.9" height="15.0" fill="rgb(230,185,36)" rx="2" ry="2" />
<text text-anchor="" x="1122.91" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (3 samples, 0.24%)</title><rect x="773.3" y="213" width="2.9" height="15.0" fill="rgb(235,172,6)" rx="2" ry="2" />
<text text-anchor="" x="776.30" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (4 samples, 0.33%)</title><rect x="597.6" y="309" width="3.8" height="15.0" fill="rgb(206,36,30)" rx="2" ry="2" />
<text text-anchor="" x="600.60" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (2 samples, 0.16%)</title><rect x="335.5" y="197" width="1.9" height="15.0" fill="rgb(239,93,27)" rx="2" ry="2" />
<text text-anchor="" x="338.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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:read_combined:715 (1 samples, 0.08%)</title><rect x="1176.6" y="581" width="0.9" height="15.0" fill="rgb(242,209,2)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (327 samples, 26.61%)</title><rect x="239.5" y="293" width="313.9" height="15.0" fill="rgb(254,37,46)" rx="2" ry="2" />
<text text-anchor="" x="242.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1130.5" y="293" width="0.9" height="15.0" fill="rgb(228,196,19)" rx="2" ry="2" />
<text text-anchor="" x="1133.47" 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>/.repo_requirements/odoo/odoo/service/server.py:target:252 (4 samples, 0.33%)</title><rect x="114.7" y="1141" width="3.8" height="15.0" fill="rgb(237,6,39)" rx="2" ry="2" />
<text text-anchor="" x="117.65" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:975 (2 samples, 0.16%)</title><rect x="880.8" y="213" width="2.0" height="15.0" fill="rgb(254,50,37)" rx="2" ry="2" />
<text text-anchor="" x="883.84" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.08%)</title><rect x="224.1" y="277" width="1.0" height="15.0" fill="rgb(228,194,37)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/fields.py:first:46 (1 samples, 0.08%)</title><rect x="573.6" y="197" width="1.0" height="15.0" fill="rgb(248,111,0)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="862.6" y="133" width="1.0" height="15.0" fill="rgb(225,212,14)" rx="2" ry="2" />
<text text-anchor="" x="865.60" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="924.0" y="149" width="1.0" height="15.0" fill="rgb(208,57,14)" rx="2" ry="2" />
<text text-anchor="" x="927.04" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.08%)</title><rect x="711.9" y="85" width="0.9" height="15.0" fill="rgb(230,18,6)" rx="2" ry="2" />
<text text-anchor="" x="714.86" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.08%)</title><rect x="573.6" y="229" width="1.0" height="15.0" fill="rgb(250,42,32)" rx="2" ry="2" />
<text text-anchor="" x="576.60" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (4 samples, 0.33%)</title><rect x="22.5" y="885" width="3.8" height="15.0" fill="rgb(249,17,27)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="980.7" y="213" width="1.0" height="15.0" fill="rgb(207,169,2)" rx="2" ry="2" />
<text text-anchor="" x="983.69" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="322.0" y="165" width="2.0" height="15.0" fill="rgb(238,63,40)" rx="2" ry="2" />
<text text-anchor="" x="325.04" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (1 samples, 0.08%)</title><rect x="572.6" y="261" width="1.0" height="15.0" fill="rgb(209,3,48)" rx="2" ry="2" />
<text text-anchor="" x="575.64" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.08%)</title><rect x="472.8" y="197" width="0.9" height="15.0" fill="rgb(251,139,13)" rx="2" ry="2" />
<text text-anchor="" x="475.78" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="500.6" y="165" width="1.0" height="15.0" fill="rgb(226,25,37)" rx="2" ry="2" />
<text text-anchor="" x="503.63" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="589.0" y="293" width="0.9" height="15.0" fill="rgb(210,90,2)" rx="2" ry="2" />
<text text-anchor="" x="591.96" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="316.3" y="181" width="0.9" height="15.0" fill="rgb(209,57,29)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (4 samples, 0.33%)</title><rect x="859.7" y="181" width="3.9" height="15.0" fill="rgb(246,146,49)" rx="2" ry="2" />
<text text-anchor="" x="862.72" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (5 samples, 0.41%)</title><rect x="1125.7" y="309" width="4.8" height="15.0" fill="rgb(232,184,37)" rx="2" ry="2" />
<text text-anchor="" x="1128.67" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (10 samples, 0.81%)</title><rect x="20.6" y="965" width="9.6" height="15.0" fill="rgb(248,226,25)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (2 samples, 0.16%)</title><rect x="322.0" y="117" width="2.0" height="15.0" fill="rgb(251,25,33)" rx="2" ry="2" />
<text text-anchor="" x="325.04" 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>/.repo_requirements/odoo/odoo/models.py:_write:3163 (3 samples, 0.24%)</title><rect x="1078.6" y="325" width="2.9" height="15.0" fill="rgb(243,34,50)" rx="2" ry="2" />
<text text-anchor="" x="1081.62" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="580.3" y="309" width="1.9" height="15.0" fill="rgb(207,123,18)" rx="2" ry="2" />
<text text-anchor="" x="583.32" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="840.5" y="149" width="1.9" height="15.0" fill="rgb(247,96,53)" rx="2" ry="2" />
<text text-anchor="" x="843.51" 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>/.repo_requirements/odoo/odoo/api.py:protecting:871 (21 samples, 1.71%)</title><rect x="10.0" y="1093" width="20.2" height="15.0" fill="rgb(226,82,10)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="322.0" y="149" width="2.0" height="15.0" fill="rgb(231,167,32)" rx="2" ry="2" />
<text text-anchor="" x="325.04" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="1090.1" y="293" width="1.0" height="15.0" fill="rgb(235,217,45)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (3 samples, 0.24%)</title><rect x="1178.5" y="629" width="2.9" height="15.0" fill="rgb(254,67,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="409.4" y="165" width="1.0" height="15.0" fill="rgb(239,81,11)" rx="2" ry="2" />
<text text-anchor="" x="412.41" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="774.3" y="181" width="1.9" height="15.0" fill="rgb(249,136,4)" rx="2" ry="2" />
<text text-anchor="" x="777.26" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (1 samples, 0.08%)</title><rect x="515.0" y="197" width="1.0" height="15.0" fill="rgb(224,117,2)" rx="2" ry="2" />
<text text-anchor="" x="518.03" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="907.7" y="149" width="1.0" height="15.0" fill="rgb(240,200,33)" rx="2" ry="2" />
<text text-anchor="" x="910.72" 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>/.repo_requirements/odoo/odoo/api.py:protecting:871 (4 samples, 0.33%)</title><rect x="22.5" y="549" width="3.8" height="15.0" fill="rgb(205,13,44)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/tools/misc.py:__iter__:994 (1 samples, 0.08%)</title><rect x="1047.9" y="197" width="1.0" height="15.0" fill="rgb(210,117,38)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>/.repo_requirements/odoo/odoo/models.py:_create:3530 (3 samples, 0.24%)</title><rect x="220.3" y="357" width="2.8" height="15.0" fill="rgb(237,140,21)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="402.7" y="149" width="1.9" height="15.0" fill="rgb(207,213,51)" rx="2" ry="2" />
<text text-anchor="" x="405.69" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (3 samples, 0.24%)</title><rect x="729.1" y="197" width="2.9" height="15.0" fill="rgb(233,207,38)" rx="2" ry="2" />
<text text-anchor="" x="732.14" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="759.9" y="181" width="0.9" height="15.0" fill="rgb(249,181,18)" rx="2" ry="2" />
<text text-anchor="" x="762.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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="25.4" y="421" width="0.9" height="15.0" fill="rgb(248,193,7)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>&lt;string&gt;:&lt;lambda&gt;:1 (1 samples, 0.08%)</title><rect x="209.7" y="293" width="1.0" height="15.0" fill="rgb(210,229,2)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="889.5" y="181" width="0.9" height="15.0" fill="rgb(246,44,38)" rx="2" ry="2" />
<text text-anchor="" x="892.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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.08%)</title><rect x="214.5" y="293" width="1.0" height="15.0" fill="rgb(252,18,26)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="1032.5" y="149" width="1.0" height="15.0" fill="rgb(218,109,41)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="10.0" y="757" width="1.0" height="15.0" fill="rgb(207,12,44)" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="401.7" y="165" width="1.0" height="15.0" fill="rgb(216,219,2)" rx="2" ry="2" />
<text text-anchor="" x="404.73" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by_inner:3741 (1 samples, 0.08%)</title><rect x="594.7" y="245" width="1.0" height="15.0" fill="rgb(247,25,7)" rx="2" ry="2" />
<text text-anchor="" x="597.72" 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>/.repo_requirements/odoo/odoo/api.py:get_records:1017 (2 samples, 0.16%)</title><rect x="476.6" y="181" width="1.9" height="15.0" fill="rgb(225,224,3)" rx="2" ry="2" />
<text text-anchor="" x="479.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="1179.4" y="421" width="1.0" height="15.0" fill="rgb(230,93,35)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="757.0" y="213" width="0.9" height="15.0" fill="rgb(241,187,18)" rx="2" ry="2" />
<text text-anchor="" x="759.98" 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>/.repo_requirements/odoo/odoo/api.py:set:966 (1 samples, 0.08%)</title><rect x="927.9" y="197" width="0.9" height="15.0" fill="rgb(223,58,7)" rx="2" ry="2" />
<text text-anchor="" x="930.88" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="495.8" y="149" width="1.0" height="15.0" fill="rgb(215,81,23)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="441.1" y="149" width="1.0" height="15.0" fill="rgb(213,177,27)" rx="2" ry="2" />
<text text-anchor="" x="444.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="916.4" y="165" width="0.9" height="15.0" fill="rgb(226,206,54)" rx="2" ry="2" />
<text text-anchor="" x="919.36" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="397.9" y="149" width="1.0" height="15.0" fill="rgb(205,22,38)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="868.4" y="133" width="0.9" height="15.0" fill="rgb(239,178,13)" rx="2" ry="2" />
<text text-anchor="" x="871.36" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="858.8" y="149" width="0.9" height="15.0" fill="rgb(228,205,31)" rx="2" ry="2" />
<text text-anchor="" x="861.76" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (2 samples, 0.16%)</title><rect x="152.1" y="245" width="1.9" height="15.0" fill="rgb(244,30,17)" rx="2" ry="2" />
<text text-anchor="" x="155.10" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="480.5" y="149" width="0.9" height="15.0" fill="rgb(220,87,51)" rx="2" ry="2" />
<text text-anchor="" x="483.46" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="129.1" y="293" width="0.9" height="15.0" fill="rgb(227,216,2)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="358.5" y="149" width="1.9" height="15.0" fill="rgb(214,191,0)" rx="2" ry="2" />
<text text-anchor="" x="361.53" 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>/.repo_requirements/odoo/odoo/http.py:checked_call:338 (3 samples, 0.24%)</title><rect x="1187.1" y="757" width="2.9" height="15.0" fill="rgb(239,88,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680 (1,097 samples, 89.26%)</title><rect x="123.3" y="661" width="1053.3" height="15.0" fill="rgb(234,74,3)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="397.9" y="117" width="1.0" height="15.0" fill="rgb(227,172,41)" rx="2" ry="2" />
<text text-anchor="" x="400.89" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="807.9" y="181" width="0.9" height="15.0" fill="rgb(236,189,11)" rx="2" ry="2" />
<text text-anchor="" x="810.87" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (3 samples, 0.24%)</title><rect x="1050.8" y="325" width="2.9" height="15.0" fill="rgb(224,150,41)" rx="2" ry="2" />
<text text-anchor="" x="1053.78" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:register_payment:911 (5 samples, 0.41%)</title><rect x="124.3" y="485" width="4.8" height="15.0" fill="rgb(214,134,49)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/usr/lib/python3.5/logging/__init__.py:getEffectiveLevel:1512 (1 samples, 0.08%)</title><rect x="117.5" y="1077" width="1.0" height="15.0" fill="rgb(244,206,21)" rx="2" ry="2" />
<text text-anchor="" x="120.53" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="547.7" y="149" width="0.9" height="15.0" fill="rgb(236,140,54)" rx="2" ry="2" />
<text text-anchor="" x="550.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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="866.4" y="165" width="1.0" height="15.0" fill="rgb(211,37,7)" rx="2" ry="2" />
<text text-anchor="" x="869.44" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="175.1" y="309" width="1.0" height="15.0" fill="rgb(215,214,6)" rx="2" ry="2" />
<text text-anchor="" x="178.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="544.8" y="117" width="1.0" height="15.0" fill="rgb(230,100,41)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (4 samples, 0.33%)</title><rect x="22.5" y="901" width="3.8" height="15.0" fill="rgb(250,129,47)" rx="2" ry="2" />
<text text-anchor="" x="25.48" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (2 samples, 0.16%)</title><rect x="1100.7" y="277" width="1.9" height="15.0" fill="rgb(236,102,11)" rx="2" ry="2" />
<text text-anchor="" x="1103.71" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1020.1" y="181" width="0.9" height="15.0" fill="rgb(212,8,5)" rx="2" ry="2" />
<text text-anchor="" x="1023.06" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="439.2" y="165" width="0.9" height="15.0" fill="rgb(216,202,11)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1061.3" y="277" width="1.0" height="15.0" fill="rgb(234,40,50)" rx="2" ry="2" />
<text text-anchor="" x="1064.34" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_matched_percentage:60 (8 samples, 0.65%)</title><rect x="958.6" y="229" width="7.7" height="15.0" fill="rgb(211,100,53)" rx="2" ry="2" />
<text text-anchor="" x="961.61" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="203.9" y="293" width="1.0" height="15.0" fill="rgb(236,213,17)" rx="2" ry="2" />
<text text-anchor="" x="206.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="919.2" y="165" width="1.0" height="15.0" fill="rgb(238,7,51)" rx="2" ry="2" />
<text text-anchor="" x="922.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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.08%)</title><rect x="10.0" y="709" width="1.0" height="15.0" fill="rgb(219,38,22)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:381 (1 samples, 0.08%)</title><rect x="10.0" y="789" width="1.0" height="15.0" fill="rgb(216,169,50)" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="213.5" y="309" width="1.0" height="15.0" fill="rgb(206,92,42)" rx="2" ry="2" />
<text text-anchor="" x="216.55" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (4 samples, 0.33%)</title><rect x="288.4" y="181" width="3.9" height="15.0" fill="rgb(240,68,19)" rx="2" ry="2" />
<text text-anchor="" x="291.44" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="209.7" y="357" width="1.0" height="15.0" fill="rgb(218,79,5)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="385.4" y="181" width="1.0" height="15.0" fill="rgb(224,169,18)" rx="2" ry="2" />
<text text-anchor="" x="388.41" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="501.6" y="165" width="0.9" height="15.0" fill="rgb(249,199,29)" rx="2" ry="2" />
<text text-anchor="" x="504.59" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="398.9" y="181" width="1.9" height="15.0" fill="rgb(223,89,34)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="324.0" y="149" width="2.8" height="15.0" fill="rgb(221,65,51)" rx="2" ry="2" />
<text text-anchor="" x="326.96" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (38 samples, 3.09%)</title><rect x="133.9" y="341" width="36.4" height="15.0" fill="rgb(231,63,27)" rx="2" ry="2" />
<text text-anchor="" x="136.86" y="351.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.16%)</title><rect x="125.2" y="373" width="1.9" height="15.0" fill="rgb(236,219,9)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="581.3" y="277" width="0.9" height="15.0" fill="rgb(235,141,4)" rx="2" ry="2" />
<text text-anchor="" x="584.28" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/utils/pbkdf2.py:pbkdf2:411 (1 samples, 0.08%)</title><rect x="1186.2" y="453" width="0.9" height="15.0" fill="rgb(206,32,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="182.8" y="277" width="1.0" height="15.0" fill="rgb(247,141,25)" rx="2" ry="2" />
<text text-anchor="" x="185.82" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (4 samples, 0.33%)</title><rect x="125.2" y="405" width="3.9" height="15.0" fill="rgb(237,51,5)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="13.8" y="853" width="1.0" height="15.0" fill="rgb(240,209,54)" rx="2" ry="2" />
<text text-anchor="" x="16.84" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.24%)</title><rect x="324.0" y="181" width="2.8" height="15.0" fill="rgb(230,146,44)" rx="2" ry="2" />
<text text-anchor="" x="326.96" 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>/usr/lib/python3.5/ast.py:_fix:149 (1 samples, 0.08%)</title><rect x="1188.1" y="261" width="0.9" height="15.0" fill="rgb(212,167,31)" rx="2" ry="2" />
<text text-anchor="" x="1191.08" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="544.8" y="149" width="1.0" height="15.0" fill="rgb(209,146,38)" rx="2" ry="2" />
<text text-anchor="" x="547.79" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (1 samples, 0.08%)</title><rect x="1177.5" y="485" width="1.0" height="15.0" fill="rgb(226,19,39)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.08%)</title><rect x="682.1" y="213" width="1.0" height="15.0" fill="rgb(232,163,24)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/passlib/utils/handlers.py:verify:571 (1 samples, 0.08%)</title><rect x="1186.2" y="485" width="0.9" height="15.0" fill="rgb(220,222,37)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1029.7" y="133" width="0.9" height="15.0" fill="rgb(224,117,49)" rx="2" ry="2" />
<text text-anchor="" x="1032.66" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="480.5" y="133" width="0.9" height="15.0" fill="rgb(247,201,6)" rx="2" ry="2" />
<text text-anchor="" x="483.46" 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>/home/odoo/server-tools/profiler/hooks.py:webreq_f:27 (7 samples, 0.57%)</title><rect x="1183.3" y="805" width="6.7" height="15.0" fill="rgb(247,189,13)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="634.1" y="261" width="0.9" height="15.0" fill="rgb(251,207,38)" rx="2" ry="2" />
<text text-anchor="" x="637.08" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (4 samples, 0.33%)</title><rect x="303.8" y="213" width="3.8" height="15.0" fill="rgb(206,204,25)" rx="2" ry="2" />
<text text-anchor="" x="306.80" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="878.9" y="181" width="1.0" height="15.0" fill="rgb(234,205,47)" rx="2" ry="2" />
<text text-anchor="" x="881.92" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4913 (10 samples, 0.81%)</title><rect x="1055.6" y="341" width="9.6" height="15.0" fill="rgb(250,10,22)" rx="2" ry="2" />
<text text-anchor="" x="1058.58" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (1 samples, 0.08%)</title><rect x="668.6" y="277" width="1.0" height="15.0" fill="rgb(229,174,1)" rx="2" ry="2" />
<text text-anchor="" x="671.65" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="11.0" y="805" width="0.9" height="15.0" fill="rgb(208,42,37)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/models.py:_write:3260 (1 samples, 0.08%)</title><rect x="676.3" y="325" width="1.0" height="15.0" fill="rgb(225,6,2)" rx="2" ry="2" />
<text text-anchor="" x="679.33" 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>/.repo_requirements/odoo/odoo/models.py:check_field_access_rights:2535 (1 samples, 0.08%)</title><rect x="168.4" y="309" width="1.0" height="15.0" fill="rgb(236,74,11)" rx="2" ry="2" />
<text text-anchor="" x="171.42" 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>/.repo_requirements/odoo/odoo/models.py:modified:4863 (1 samples, 0.08%)</title><rect x="596.6" y="309" width="1.0" height="15.0" fill="rgb(207,216,12)" rx="2" ry="2" />
<text text-anchor="" x="599.64" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4912 (5 samples, 0.41%)</title><rect x="1050.8" y="341" width="4.8" height="15.0" fill="rgb(252,209,52)" rx="2" ry="2" />
<text text-anchor="" x="1053.78" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="1120.9" y="293" width="0.9" height="15.0" fill="rgb(244,130,10)" rx="2" ry="2" />
<text text-anchor="" x="1123.87" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_store_balance:353 (1 samples, 0.08%)</title><rect x="1032.5" y="229" width="1.0" height="15.0" fill="rgb(248,45,13)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (3 samples, 0.24%)</title><rect x="562.1" y="325" width="2.9" height="15.0" fill="rgb(207,196,19)" rx="2" ry="2" />
<text text-anchor="" x="565.07" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="21.5" y="693" width="1.0" height="15.0" fill="rgb(242,24,3)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (1 samples, 0.08%)</title><rect x="1175.6" y="325" width="1.0" height="15.0" fill="rgb(254,36,42)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="302.8" y="197" width="1.0" height="15.0" fill="rgb(236,142,39)" rx="2" ry="2" />
<text text-anchor="" x="305.84" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="380.6" y="165" width="1.0" height="15.0" fill="rgb(246,130,9)" rx="2" ry="2" />
<text text-anchor="" x="383.61" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="281.7" y="181" width="1.9" height="15.0" fill="rgb(249,227,32)" rx="2" ry="2" />
<text text-anchor="" x="284.72" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554 (1,097 samples, 89.26%)</title><rect x="123.3" y="629" width="1053.3" height="15.0" fill="rgb(234,141,1)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1056 (1 samples, 0.08%)</title><rect x="22.5" y="389" width="0.9" height="15.0" fill="rgb(206,123,50)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="530.4" y="165" width="2.9" height="15.0" fill="rgb(217,189,36)" rx="2" ry="2" />
<text text-anchor="" x="533.39" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="1047.9" y="261" width="1.0" height="15.0" fill="rgb(245,162,6)" rx="2" ry="2" />
<text text-anchor="" x="1050.90" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="223.1" y="309" width="1.0" height="15.0" fill="rgb(234,170,29)" rx="2" ry="2" />
<text text-anchor="" x="226.15" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="22.5" y="405" width="2.9" height="15.0" fill="rgb(234,45,39)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/home/odoo/odoo-11.0/addons/auth_signup/models/ir_http.py:_dispatch:19 (1,113 samples, 90.56%)</title><rect x="121.4" y="885" width="1068.6" height="15.0" fill="rgb(219,57,49)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/auth_signup/models/ir_http.py:_dispatch:19</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="761.8" y="213" width="1.9" height="15.0" fill="rgb(216,70,22)" rx="2" ry="2" />
<text text-anchor="" x="764.78" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (11 samples, 0.90%)</title><rect x="1009.5" y="213" width="10.6" height="15.0" fill="rgb(252,38,48)" rx="2" ry="2" />
<text text-anchor="" x="1012.50" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="970.1" y="133" width="1.0" height="15.0" fill="rgb(242,186,19)" rx="2" ry="2" />
<text text-anchor="" x="973.13" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="498.7" y="181" width="1.9" height="15.0" fill="rgb(216,49,25)" rx="2" ry="2" />
<text text-anchor="" x="501.71" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="1129.5" y="293" width="1.0" height="15.0" fill="rgb(247,183,21)" rx="2" ry="2" />
<text text-anchor="" x="1132.51" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="793.5" y="133" width="0.9" height="15.0" fill="rgb(238,108,4)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="986.5" y="149" width="0.9" height="15.0" fill="rgb(250,218,7)" rx="2" ry="2" />
<text text-anchor="" x="989.45" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="176.1" y="293" width="1.0" height="15.0" fill="rgb(226,119,12)" rx="2" ry="2" />
<text text-anchor="" x="179.10" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_authenticate:108 (1 samples, 0.08%)</title><rect x="121.4" y="837" width="0.9" height="15.0" fill="rgb(210,218,14)" rx="2" ry="2" />
<text text-anchor="" x="124.38" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.08%)</title><rect x="1180.4" y="405" width="1.0" height="15.0" fill="rgb(219,85,13)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" 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>/.repo_requirements/odoo/odoo/api.py:get_records:1017 (6 samples, 0.49%)</title><rect x="960.5" y="181" width="5.8" height="15.0" fill="rgb(253,27,52)" rx="2" ry="2" />
<text text-anchor="" x="963.53" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;lambda&gt;:1435 (37 samples, 3.01%)</title><rect x="172.3" y="341" width="35.5" height="15.0" fill="rgb(236,83,31)" rx="2" ry="2" />
<text text-anchor="" x="175.26" y="351.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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (5 samples, 0.41%)</title><rect x="657.1" y="293" width="4.8" height="15.0" fill="rgb(246,127,6)" rx="2" ry="2" />
<text text-anchor="" x="660.13" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="159.8" y="213" width="0.9" height="15.0" fill="rgb(230,174,20)" rx="2" ry="2" />
<text text-anchor="" x="162.78" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="878.0" y="197" width="1.9" height="15.0" fill="rgb(229,210,46)" rx="2" ry="2" />
<text text-anchor="" x="880.96" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (5 samples, 0.41%)</title><rect x="1040.2" y="261" width="4.8" height="15.0" fill="rgb(211,218,14)" rx="2" ry="2" />
<text text-anchor="" x="1043.22" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="1087.3" y="309" width="0.9" height="15.0" fill="rgb(239,184,15)" rx="2" ry="2" />
<text text-anchor="" x="1090.27" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (2 samples, 0.16%)</title><rect x="398.9" y="213" width="1.9" height="15.0" fill="rgb(219,29,41)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="505.4" y="213" width="2.9" height="15.0" fill="rgb(248,215,10)" rx="2" ry="2" />
<text text-anchor="" x="508.43" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="292.3" y="213" width="0.9" height="15.0" fill="rgb(233,148,21)" rx="2" ry="2" />
<text text-anchor="" x="295.28" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="606.2" y="245" width="1.0" height="15.0" fill="rgb(244,47,42)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (1 samples, 0.08%)</title><rect x="773.3" y="197" width="1.0" height="15.0" fill="rgb(207,28,11)" rx="2" ry="2" />
<text text-anchor="" x="776.30" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:876 (1 samples, 0.08%)</title><rect x="220.3" y="261" width="0.9" height="15.0" fill="rgb(222,200,34)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1052.7" y="293" width="1.0" height="15.0" fill="rgb(218,15,47)" rx="2" ry="2" />
<text text-anchor="" x="1055.70" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (1 samples, 0.08%)</title><rect x="582.2" y="325" width="1.0" height="15.0" fill="rgb(242,92,22)" rx="2" ry="2" />
<text text-anchor="" x="585.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="780.0" y="165" width="1.0" height="15.0" fill="rgb(254,146,23)" rx="2" ry="2" />
<text text-anchor="" x="783.02" 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>/.repo_requirements/odoo/odoo/models.py:modified:4867 (1 samples, 0.08%)</title><rect x="667.7" y="309" width="0.9" height="15.0" fill="rgb(206,92,6)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:read_combined:699 (1 samples, 0.08%)</title><rect x="1176.6" y="565" width="0.9" height="15.0" fill="rgb(246,87,35)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="775.2" y="133" width="1.0" height="15.0" fill="rgb(210,166,9)" rx="2" ry="2" />
<text text-anchor="" x="778.22" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (3 samples, 0.24%)</title><rect x="239.5" y="245" width="2.9" height="15.0" fill="rgb(231,92,5)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="362.4" y="149" width="0.9" height="15.0" fill="rgb(253,85,49)" rx="2" ry="2" />
<text text-anchor="" x="365.37" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1775 (491 samples, 39.95%)</title><rect x="208.7" y="405" width="471.5" height="15.0" fill="rgb(230,24,39)" rx="2" ry="2" />
<text text-anchor="" x="211.75" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:creat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="805.9" y="165" width="1.0" height="15.0" fill="rgb(239,30,20)" rx="2" ry="2" />
<text text-anchor="" x="808.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>/.repo_requirements/odoo/odoo/http.py:__call__:937 (4 samples, 0.33%)</title><rect x="22.5" y="821" width="3.8" height="15.0" fill="rgb(226,228,49)" rx="2" ry="2" />
<text text-anchor="" x="25.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>/.repo_requirements/odoo/odoo/api.py:__call__:789 (1 samples, 0.08%)</title><rect x="276.9" y="101" width="1.0" height="15.0" fill="rgb(251,143,31)" rx="2" ry="2" />
<text text-anchor="" x="279.92" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.08%)</title><rect x="665.8" y="165" width="0.9" height="15.0" fill="rgb(211,159,39)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/http.py:checked_call:335 (4 samples, 0.33%)</title><rect x="1183.3" y="757" width="3.8" height="15.0" fill="rgb(253,9,30)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (1 samples, 0.08%)</title><rect x="123.3" y="405" width="1.0" height="15.0" fill="rgb(231,132,14)" rx="2" ry="2" />
<text text-anchor="" x="126.30" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="494.9" y="149" width="0.9" height="15.0" fill="rgb(247,216,44)" rx="2" ry="2" />
<text text-anchor="" x="497.87" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="1177.5" y="453" width="1.0" height="15.0" fill="rgb(247,204,14)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (4 samples, 0.33%)</title><rect x="125.2" y="421" width="3.9" height="15.0" fill="rgb(215,121,39)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.08%)</title><rect x="1077.7" y="293" width="0.9" height="15.0" fill="rgb(219,188,47)" rx="2" ry="2" />
<text text-anchor="" x="1080.66" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (1 samples, 0.08%)</title><rect x="667.7" y="277" width="0.9" height="15.0" fill="rgb(205,154,26)" rx="2" ry="2" />
<text text-anchor="" x="670.69" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="816.5" y="165" width="1.0" height="15.0" fill="rgb(223,97,19)" rx="2" ry="2" />
<text text-anchor="" x="819.51" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1617 (1 samples, 0.08%)</title><rect x="125.2" y="309" width="1.0" height="15.0" fill="rgb(253,37,16)" rx="2" ry="2" />
<text text-anchor="" x="128.22" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="1087.3" y="293" width="0.9" height="15.0" fill="rgb(231,3,34)" rx="2" ry="2" />
<text text-anchor="" x="1090.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="528.5" y="165" width="1.9" height="15.0" fill="rgb(226,36,44)" rx="2" ry="2" />
<text text-anchor="" x="531.47" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="938.4" y="197" width="2.0" height="15.0" fill="rgb(252,19,16)" rx="2" ry="2" />
<text text-anchor="" x="941.45" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="427.7" y="117" width="0.9" height="15.0" fill="rgb(244,36,0)" rx="2" ry="2" />
<text text-anchor="" x="430.66" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:975 (1 samples, 0.08%)</title><rect x="1152.6" y="149" width="0.9" height="15.0" fill="rgb(209,184,18)" rx="2" ry="2" />
<text text-anchor="" x="1155.55" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_menu.py:&lt;lambda&gt;:101 (1 samples, 0.08%)</title><rect x="1179.4" y="501" width="1.0" height="15.0" fill="rgb(212,31,33)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="939.4" y="181" width="1.0" height="15.0" fill="rgb(230,166,5)" rx="2" ry="2" />
<text text-anchor="" x="942.41" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="360.4" y="133" width="1.0" height="15.0" fill="rgb(215,8,39)" rx="2" ry="2" />
<text text-anchor="" x="363.45" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (8 samples, 0.65%)</title><rect x="387.3" y="181" width="7.7" height="15.0" fill="rgb(223,138,48)" rx="2" ry="2" />
<text text-anchor="" x="390.33" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:956 (1 samples, 0.08%)</title><rect x="315.3" y="213" width="1.0" height="15.0" fill="rgb(222,220,51)" rx="2" ry="2" />
<text text-anchor="" x="318.32" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="860.7" y="133" width="0.9" height="15.0" fill="rgb(239,192,34)" rx="2" ry="2" />
<text text-anchor="" x="863.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1128.6" y="277" width="0.9" height="15.0" fill="rgb(207,227,47)" rx="2" ry="2" />
<text text-anchor="" x="1131.55" 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>/.repo_requirements/odoo/odoo/models.py:modified:4867 (1 samples, 0.08%)</title><rect x="218.3" y="341" width="1.0" height="15.0" fill="rgb(228,122,54)" rx="2" ry="2" />
<text text-anchor="" x="221.35" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.16%)</title><rect x="691.7" y="261" width="1.9" height="15.0" fill="rgb(230,143,9)" rx="2" ry="2" />
<text text-anchor="" x="694.69" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:999 (1 samples, 0.08%)</title><rect x="1183.3" y="581" width="0.9" height="15.0" fill="rgb(234,41,41)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:968 (1 samples, 0.08%)</title><rect x="682.1" y="181" width="1.0" height="15.0" fill="rgb(209,36,4)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:372 (46 samples, 3.74%)</title><rect x="404.6" y="229" width="44.2" height="15.0" fill="rgb(234,55,41)" rx="2" ry="2" />
<text text-anchor="" x="407.61" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="495.8" y="117" width="1.0" height="15.0" fill="rgb(241,57,33)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="436.3" y="197" width="1.9" height="15.0" fill="rgb(250,75,16)" rx="2" ry="2" />
<text text-anchor="" x="439.30" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (5 samples, 0.41%)</title><rect x="809.8" y="149" width="4.8" height="15.0" fill="rgb(211,3,4)" rx="2" ry="2" />
<text text-anchor="" x="812.79" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:content_common:1007 (1 samples, 0.08%)</title><rect x="1183.3" y="709" width="0.9" height="15.0" fill="rgb(245,203,19)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:372 (54 samples, 4.39%)</title><rect x="885.6" y="229" width="51.9" height="15.0" fill="rgb(230,144,15)" rx="2" ry="2" />
<text text-anchor="" x="888.64" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="400.8" y="133" width="0.9" height="15.0" fill="rgb(226,74,53)" rx="2" ry="2" />
<text text-anchor="" x="403.77" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="373.9" y="197" width="0.9" height="15.0" fill="rgb(214,87,1)" rx="2" ry="2" />
<text text-anchor="" x="376.89" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="651.4" y="261" width="1.9" height="15.0" fill="rgb(254,203,11)" rx="2" ry="2" />
<text text-anchor="" x="654.37" 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>/.repo_requirements/odoo/odoo/fields.py:read:2257 (1 samples, 0.08%)</title><rect x="124.3" y="389" width="0.9" height="15.0" fill="rgb(216,65,46)" rx="2" ry="2" />
<text text-anchor="" x="127.26" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:966 (3 samples, 0.24%)</title><rect x="877.0" y="213" width="2.9" height="15.0" fill="rgb(244,215,50)" rx="2" ry="2" />
<text text-anchor="" x="880.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="11.0" y="693" width="0.9" height="15.0" fill="rgb(251,156,14)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (3 samples, 0.24%)</title><rect x="602.4" y="293" width="2.9" height="15.0" fill="rgb(247,174,7)" rx="2" ry="2" />
<text text-anchor="" x="605.40" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (5 samples, 0.41%)</title><rect x="982.6" y="181" width="4.8" height="15.0" fill="rgb(228,62,52)" rx="2" ry="2" />
<text text-anchor="" x="985.61" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:553 (1 samples, 0.08%)</title><rect x="595.7" y="197" width="0.9" height="15.0" fill="rgb(220,220,12)" rx="2" ry="2" />
<text text-anchor="" x="598.68" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="606.2" y="293" width="1.0" height="15.0" fill="rgb(224,185,44)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.08%)</title><rect x="224.1" y="293" width="1.0" height="15.0" fill="rgb(244,15,9)" rx="2" ry="2" />
<text text-anchor="" x="227.11" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="185.7" y="309" width="2.9" height="15.0" fill="rgb(225,139,38)" rx="2" ry="2" />
<text text-anchor="" x="188.70" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:515 (4 samples, 0.33%)</title><rect x="1183.3" y="725" width="3.8" height="15.0" fill="rgb(239,131,9)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.08%)</title><rect x="593.8" y="277" width="0.9" height="15.0" fill="rgb(236,131,49)" rx="2" ry="2" />
<text text-anchor="" x="596.76" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (38 samples, 3.09%)</title><rect x="133.9" y="357" width="36.4" height="15.0" fill="rgb(222,138,35)" rx="2" ry="2" />
<text text-anchor="" x="136.86" y="367.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="545.8" y="149" width="0.9" height="15.0" fill="rgb(212,37,15)" rx="2" ry="2" />
<text text-anchor="" x="548.75" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="25.4" y="341" width="0.9" height="15.0" fill="rgb(221,68,28)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="261.6" y="85" width="0.9" height="15.0" fill="rgb(235,91,20)" rx="2" ry="2" />
<text text-anchor="" x="264.55" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:959 (5 samples, 0.41%)</title><rect x="491.0" y="213" width="4.8" height="15.0" fill="rgb(235,139,27)" rx="2" ry="2" />
<text text-anchor="" x="494.03" 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>/.repo_requirements/odoo/odoo/api.py:get_missing_ids:1027 (1 samples, 0.08%)</title><rect x="317.2" y="101" width="1.0" height="15.0" fill="rgb(230,104,46)" rx="2" ry="2" />
<text text-anchor="" x="320.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>/.repo_requirements/odoo/odoo/models.py:_fields_view_get:1338 (1 samples, 0.08%)</title><rect x="1176.6" y="597" width="0.9" height="15.0" fill="rgb(220,107,32)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="686.9" y="277" width="1.0" height="15.0" fill="rgb(215,198,33)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="970.1" y="149" width="2.0" height="15.0" fill="rgb(214,187,21)" rx="2" ry="2" />
<text text-anchor="" x="973.13" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (2 samples, 0.16%)</title><rect x="1161.2" y="309" width="1.9" height="15.0" fill="rgb(247,103,18)" rx="2" ry="2" />
<text text-anchor="" x="1164.20" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.08%)</title><rect x="1122.8" y="293" width="1.0" height="15.0" fill="rgb(237,177,8)" rx="2" ry="2" />
<text text-anchor="" x="1125.79" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="793.5" y="149" width="0.9" height="15.0" fill="rgb(243,73,49)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="501.6" y="181" width="0.9" height="15.0" fill="rgb(253,212,44)" rx="2" ry="2" />
<text text-anchor="" x="504.59" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.16%)</title><rect x="682.1" y="245" width="1.9" height="15.0" fill="rgb(221,129,43)" rx="2" ry="2" />
<text text-anchor="" x="685.09" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="443.0" y="197" width="1.9" height="15.0" fill="rgb(231,229,1)" rx="2" ry="2" />
<text text-anchor="" x="446.02" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="461.3" y="181" width="0.9" height="15.0" fill="rgb(214,6,41)" rx="2" ry="2" />
<text text-anchor="" x="464.26" 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>/.repo_requirements/odoo/odoo/http.py:dispatch:693 (1,105 samples, 89.91%)</title><rect x="122.3" y="821" width="1061.0" height="15.0" fill="rgb(224,129,34)" rx="2" ry="2" />
<text text-anchor="" x="125.34" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:693</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1277 (7 samples, 0.57%)</title><rect x="649.4" y="309" width="6.8" height="15.0" fill="rgb(252,122,2)" rx="2" ry="2" />
<text text-anchor="" x="652.45" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="529.4" y="117" width="1.0" height="15.0" fill="rgb(239,126,32)" rx="2" ry="2" />
<text text-anchor="" x="532.43" 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>/.repo_requirements/odoo/odoo/http.py:authenticate:1037 (1 samples, 0.08%)</title><rect x="1186.2" y="629" width="0.9" height="15.0" fill="rgb(209,53,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1014.3" y="165" width="1.0" height="15.0" fill="rgb(229,210,1)" rx="2" ry="2" />
<text text-anchor="" x="1017.30" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="1177.5" y="565" width="1.0" height="15.0" fill="rgb(248,24,34)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="367.2" y="181" width="0.9" height="15.0" fill="rgb(244,34,18)" rx="2" ry="2" />
<text text-anchor="" x="370.17" 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>/usr/lib/python3.5/xml/etree/ElementTree.py:parse:590 (1 samples, 0.08%)</title><rect x="1184.2" y="661" width="1.0" height="15.0" fill="rgb(246,162,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (6 samples, 0.49%)</title><rect x="726.3" y="213" width="5.7" height="15.0" fill="rgb(247,54,16)" rx="2" ry="2" />
<text text-anchor="" x="729.26" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="662.9" y="309" width="0.9" height="15.0" fill="rgb(205,89,28)" rx="2" ry="2" />
<text text-anchor="" x="665.89" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="440.1" y="149" width="1.0" height="15.0" fill="rgb(243,211,25)" rx="2" ry="2" />
<text text-anchor="" x="443.14" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="732.0" y="213" width="1.0" height="15.0" fill="rgb(230,30,52)" rx="2" ry="2" />
<text text-anchor="" x="735.02" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="784.8" y="165" width="1.0" height="15.0" fill="rgb(216,61,52)" rx="2" ry="2" />
<text text-anchor="" x="787.83" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="409.4" y="213" width="1.9" height="15.0" fill="rgb(216,31,15)" rx="2" ry="2" />
<text text-anchor="" x="412.41" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1049 (1 samples, 0.08%)</title><rect x="1072.9" y="293" width="0.9" height="15.0" fill="rgb(208,26,47)" rx="2" ry="2" />
<text text-anchor="" x="1075.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>/home/odoo/odoo-11.0/addons/auth_signup/controllers/main.py:web_login:20 (1 samples, 0.08%)</title><rect x="1186.2" y="677" width="0.9" height="15.0" fill="rgb(233,150,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.08%)</title><rect x="746.4" y="69" width="1.0" height="15.0" fill="rgb(206,13,46)" rx="2" ry="2" />
<text text-anchor="" x="749.42" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="863.6" y="165" width="0.9" height="15.0" fill="rgb(229,133,20)" rx="2" ry="2" />
<text text-anchor="" x="866.56" 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>/.repo_requirements/odoo/odoo/models.py:write:3094 (1 samples, 0.08%)</title><rect x="1175.6" y="357" width="1.0" height="15.0" fill="rgb(238,100,21)" rx="2" ry="2" />
<text text-anchor="" x="1178.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (3 samples, 0.24%)</title><rect x="236.6" y="293" width="2.9" height="15.0" fill="rgb(250,165,4)" rx="2" ry="2" />
<text text-anchor="" x="239.59" 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>/.repo_requirements/odoo/odoo/models.py:_write:3136 (12 samples, 0.98%)</title><rect x="1067.1" y="325" width="11.5" height="15.0" fill="rgb(224,65,51)" rx="2" ry="2" />
<text text-anchor="" x="1070.10" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/ir_qweb.py:_get_asset_content:348 (1 samples, 0.08%)</title><rect x="1189.0" y="469" width="1.0" height="15.0" fill="rgb(209,120,53)" rx="2" ry="2" />
<text text-anchor="" x="1192.04" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.08%)</title><rect x="158.8" y="213" width="1.0" height="15.0" fill="rgb(221,212,28)" rx="2" ry="2" />
<text text-anchor="" x="161.82" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.08%)</title><rect x="1154.5" y="261" width="0.9" height="15.0" fill="rgb(220,76,17)" rx="2" ry="2" />
<text text-anchor="" x="1157.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="1107.4" y="293" width="1.9" height="15.0" fill="rgb(211,11,23)" rx="2" ry="2" />
<text text-anchor="" x="1110.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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="531.4" y="149" width="0.9" height="15.0" fill="rgb(212,55,5)" rx="2" ry="2" />
<text text-anchor="" x="534.35" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (11 samples, 0.90%)</title><rect x="926.9" y="213" width="10.6" height="15.0" fill="rgb(206,64,3)" rx="2" ry="2" />
<text text-anchor="" x="929.92" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="769.5" y="181" width="0.9" height="15.0" fill="rgb(229,19,1)" rx="2" ry="2" />
<text text-anchor="" x="772.46" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1028 (1 samples, 0.08%)</title><rect x="129.1" y="309" width="0.9" height="15.0" fill="rgb(252,82,6)" rx="2" ry="2" />
<text text-anchor="" x="132.06" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="351.8" y="133" width="1.0" height="15.0" fill="rgb(239,147,21)" rx="2" ry="2" />
<text text-anchor="" x="354.81" 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>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.08%)</title><rect x="25.4" y="197" width="0.9" height="15.0" fill="rgb(228,70,11)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="846.3" y="181" width="0.9" height="15.0" fill="rgb(229,0,50)" rx="2" ry="2" />
<text text-anchor="" x="849.27" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.08%)</title><rect x="666.7" y="229" width="1.0" height="15.0" fill="rgb(205,181,10)" rx="2" ry="2" />
<text text-anchor="" x="669.73" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:1018 (2 samples, 0.16%)</title><rect x="476.6" y="165" width="1.9" height="15.0" fill="rgb(219,222,50)" rx="2" ry="2" />
<text text-anchor="" x="479.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>/.repo_requirements/odoo/odoo/api.py:set:966 (3 samples, 0.24%)</title><rect x="852.0" y="197" width="2.9" height="15.0" fill="rgb(251,81,8)" rx="2" ry="2" />
<text text-anchor="" x="855.03" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="684.0" y="229" width="1.0" height="15.0" fill="rgb(236,164,6)" rx="2" ry="2" />
<text text-anchor="" x="687.01" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="946.1" y="165" width="1.0" height="15.0" fill="rgb(230,50,7)" rx="2" ry="2" />
<text text-anchor="" x="949.13" 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>:&lt;module&gt;:16 (1,097 samples, 89.26%)</title><rect x="123.3" y="565" width="1053.3" height="15.0" fill="rgb(233,59,44)" rx="2" ry="2" />
<text text-anchor="" x="126.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >:&lt;module&gt;:16</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (4 samples, 0.33%)</title><rect x="130.0" y="373" width="3.9" height="15.0" fill="rgb(226,199,38)" rx="2" ry="2" />
<text text-anchor="" x="133.02" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="934.6" y="149" width="1.0" height="15.0" fill="rgb(226,185,30)" rx="2" ry="2" />
<text text-anchor="" x="937.61" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_users.py:authenticate:497 (1 samples, 0.08%)</title><rect x="1186.2" y="549" width="0.9" height="15.0" fill="rgb(210,227,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="128.1" y="357" width="1.0" height="15.0" fill="rgb(235,150,47)" rx="2" ry="2" />
<text text-anchor="" x="131.10" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (67 samples, 5.45%)</title><rect x="32.1" y="1189" width="64.3" height="15.0" fill="rgb(207,172,17)" rx="2" ry="2" />
<text text-anchor="" x="35.08" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.16%)</title><rect x="185.7" y="277" width="1.9" height="15.0" fill="rgb(244,24,1)" rx="2" ry="2" />
<text text-anchor="" x="188.70" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.08%)</title><rect x="133.9" y="261" width="0.9" height="15.0" fill="rgb(214,50,46)" rx="2" ry="2" />
<text text-anchor="" x="136.86" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.08%)</title><rect x="637.0" y="309" width="0.9" height="15.0" fill="rgb(233,61,10)" rx="2" ry="2" />
<text text-anchor="" x="639.97" 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>/.repo_requirements/odoo/odoo/http.py:__call__:937 (4 samples, 0.33%)</title><rect x="1183.3" y="741" width="3.8" height="15.0" fill="rgb(234,79,54)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.08%)</title><rect x="1070.9" y="245" width="1.0" height="15.0" fill="rgb(217,21,29)" rx="2" ry="2" />
<text text-anchor="" x="1073.94" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:1001 (1 samples, 0.08%)</title><rect x="10.0" y="805" width="1.0" height="15.0" fill="rgb(245,23,22)" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="857.8" y="149" width="1.0" height="15.0" fill="rgb(223,130,20)" rx="2" ry="2" />
<text text-anchor="" x="860.79" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="495.8" y="181" width="1.0" height="15.0" fill="rgb(243,157,3)" rx="2" ry="2" />
<text text-anchor="" x="498.83" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.16%)</title><rect x="800.2" y="101" width="1.9" height="15.0" fill="rgb(233,129,43)" rx="2" ry="2" />
<text text-anchor="" x="803.19" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.16%)</title><rect x="444.9" y="181" width="2.0" height="15.0" fill="rgb(222,175,31)" rx="2" ry="2" />
<text text-anchor="" x="447.94" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (21 samples, 1.71%)</title><rect x="10.0" y="1029" width="20.2" height="15.0" fill="rgb(207,136,42)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1116 (1 samples, 0.08%)</title><rect x="988.4" y="197" width="0.9" height="15.0" fill="rgb(232,33,30)" rx="2" ry="2" />
<text text-anchor="" x="991.37" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.41%)</title><rect x="628.3" y="293" width="4.8" height="15.0" fill="rgb(247,171,2)" rx="2" ry="2" />
<text text-anchor="" x="631.32" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.08%)</title><rect x="1035.4" y="197" width="1.0" height="15.0" fill="rgb(252,153,19)" rx="2" ry="2" />
<text text-anchor="" x="1038.42" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="418.1" y="181" width="0.9" height="15.0" fill="rgb(215,144,32)" rx="2" ry="2" />
<text text-anchor="" x="421.06" 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>/.repo_requirements/odoo/odoo/models.py:__and__:4683 (1 samples, 0.08%)</title><rect x="552.5" y="229" width="0.9" height="15.0" fill="rgb(221,115,5)" rx="2" ry="2" />
<text text-anchor="" x="555.47" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="20.6" y="869" width="0.9" height="15.0" fill="rgb(221,37,22)" rx="2" ry="2" />
<text text-anchor="" x="23.56" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (3 samples, 0.24%)</title><rect x="367.2" y="197" width="2.8" height="15.0" fill="rgb(228,226,43)" rx="2" ry="2" />
<text text-anchor="" x="370.17" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:round:25 (1 samples, 0.08%)</title><rect x="655.2" y="261" width="1.0" height="15.0" fill="rgb(236,109,28)" rx="2" ry="2" />
<text text-anchor="" x="658.21" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (2 samples, 0.16%)</title><rect x="1167.0" y="309" width="1.9" height="15.0" fill="rgb(246,72,35)" rx="2" ry="2" />
<text text-anchor="" x="1169.96" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="932.7" y="165" width="0.9" height="15.0" fill="rgb(244,100,26)" rx="2" ry="2" />
<text text-anchor="" x="935.69" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (2 samples, 0.16%)</title><rect x="1068.1" y="261" width="1.9" height="15.0" fill="rgb(241,74,11)" rx="2" ry="2" />
<text text-anchor="" x="1071.06" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1273 (14 samples, 1.14%)</title><rect x="612.0" y="309" width="13.4" height="15.0" fill="rgb(244,228,12)" rx="2" ry="2" />
<text text-anchor="" x="615.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1273 (14 samples, 1.14%)</title><rect x="1089.2" y="309" width="13.4" height="15.0" fill="rgb(254,78,13)" rx="2" ry="2" />
<text text-anchor="" x="1092.19" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.08%)</title><rect x="138.7" y="277" width="0.9" height="15.0" fill="rgb(232,122,41)" rx="2" ry="2" />
<text text-anchor="" x="141.66" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228 (1,113 samples, 90.56%)</title><rect x="121.4" y="1093" width="1068.6" height="15.0" fill="rgb(223,179,24)" rx="2" ry="2" />
<text text-anchor="" x="124.38" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="911.6" y="117" width="0.9" height="15.0" fill="rgb(226,211,26)" rx="2" ry="2" />
<text text-anchor="" x="914.56" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.08%)</title><rect x="368.1" y="181" width="1.0" height="15.0" fill="rgb(226,27,3)" rx="2" ry="2" />
<text text-anchor="" x="371.13" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:760 (1 samples, 0.08%)</title><rect x="444.0" y="133" width="0.9" height="15.0" fill="rgb(213,102,30)" rx="2" ry="2" />
<text text-anchor="" x="446.98" 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>/usr/lib/python3.5/xml/etree/ElementTree.py:tostring:1134 (1 samples, 0.08%)</title><rect x="1185.2" y="677" width="1.0" height="15.0" fill="rgb(231,171,2)" rx="2" ry="2" />
<text text-anchor="" x="1188.20" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="670.6" y="261" width="0.9" height="15.0" fill="rgb(237,75,45)" rx="2" ry="2" />
<text text-anchor="" x="673.57" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="829.0" y="149" width="1.0" height="15.0" fill="rgb(233,221,20)" rx="2" ry="2" />
<text text-anchor="" x="831.99" 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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (1 samples, 0.08%)</title><rect x="376.8" y="197" width="0.9" height="15.0" fill="rgb(226,101,17)" rx="2" ry="2" />
<text text-anchor="" x="379.77" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (2 samples, 0.16%)</title><rect x="23.4" y="373" width="2.0" height="15.0" fill="rgb(253,11,50)" rx="2" ry="2" />
<text text-anchor="" x="26.44" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="299.0" y="149" width="1.0" height="15.0" fill="rgb(214,85,15)" rx="2" ry="2" />
<text text-anchor="" x="302.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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (3 samples, 0.24%)</title><rect x="690.7" y="293" width="2.9" height="15.0" fill="rgb(214,169,45)" rx="2" ry="2" />
<text text-anchor="" x="693.73" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1052.7" y="277" width="1.0" height="15.0" fill="rgb(207,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1055.70" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (4 samples, 0.33%)</title><rect x="951.9" y="197" width="3.8" height="15.0" fill="rgb(212,215,45)" rx="2" ry="2" />
<text text-anchor="" x="954.89" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (3 samples, 0.24%)</title><rect x="214.5" y="325" width="2.9" height="15.0" fill="rgb(216,201,25)" rx="2" ry="2" />
<text text-anchor="" x="217.51" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="492.9" y="149" width="1.0" height="15.0" fill="rgb(223,123,25)" rx="2" ry="2" />
<text text-anchor="" x="495.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>/.repo_requirements/odoo/odoo/api.py:__hash__:777 (2 samples, 0.16%)</title><rect x="964.4" y="149" width="1.9" height="15.0" fill="rgb(224,69,23)" rx="2" ry="2" />
<text text-anchor="" x="967.37" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="414.2" y="181" width="1.9" height="15.0" fill="rgb(242,225,51)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="392.1" y="117" width="1.0" height="15.0" fill="rgb(241,48,7)" rx="2" ry="2" />
<text text-anchor="" x="395.13" 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>/.repo_requirements/odoo/odoo/api.py:get:959 (1 samples, 0.08%)</title><rect x="780.0" y="197" width="1.0" height="15.0" fill="rgb(243,226,36)" rx="2" ry="2" />
<text text-anchor="" x="783.02" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.08%)</title><rect x="209.7" y="341" width="1.0" height="15.0" fill="rgb(247,167,25)" rx="2" ry="2" />
<text text-anchor="" x="212.71" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="606.2" y="261" width="1.0" height="15.0" fill="rgb(236,144,29)" rx="2" ry="2" />
<text text-anchor="" x="609.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.16%)</title><rect x="1126.6" y="245" width="2.0" height="15.0" fill="rgb(253,139,15)" rx="2" ry="2" />
<text text-anchor="" x="1129.63" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (1 samples, 0.08%)</title><rect x="1176.6" y="533" width="0.9" height="15.0" fill="rgb(253,182,51)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1015 (1 samples, 0.08%)</title><rect x="25.4" y="277" width="0.9" height="15.0" fill="rgb(235,0,11)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="10.0" y="741" width="1.0" height="15.0" fill="rgb(224,201,26)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="279.8" y="197" width="1.0" height="15.0" fill="rgb(253,97,39)" rx="2" ry="2" />
<text text-anchor="" x="282.80" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:891 (1 samples, 0.08%)</title><rect x="686.9" y="309" width="1.0" height="15.0" fill="rgb(216,200,20)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:894 (1 samples, 0.08%)</title><rect x="671.5" y="277" width="1.0" height="15.0" fill="rgb(206,60,44)" rx="2" ry="2" />
<text text-anchor="" x="674.53" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (1 samples, 0.08%)</title><rect x="10.0" y="773" width="1.0" height="15.0" fill="rgb(209,144,52)" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1286 (2 samples, 0.16%)</title><rect x="1009.5" y="197" width="1.9" height="15.0" fill="rgb(243,209,20)" rx="2" ry="2" />
<text text-anchor="" x="1012.50" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="1183.3" y="597" width="0.9" height="15.0" fill="rgb(209,113,52)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/http.py:dispatch_rpc:118 (1 samples, 0.08%)</title><rect x="1186.2" y="597" width="0.9" height="15.0" fill="rgb(208,206,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="131.0" y="293" width="0.9" height="15.0" fill="rgb(227,28,45)" rx="2" ry="2" />
<text text-anchor="" x="133.98" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="782.9" y="165" width="1.0" height="15.0" fill="rgb(218,33,8)" rx="2" ry="2" />
<text text-anchor="" x="785.90" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (2 samples, 0.16%)</title><rect x="381.6" y="149" width="1.9" height="15.0" fill="rgb(207,122,48)" rx="2" ry="2" />
<text text-anchor="" x="384.57" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (4 samples, 0.33%)</title><rect x="710.9" y="181" width="3.8" height="15.0" fill="rgb(211,204,43)" rx="2" ry="2" />
<text text-anchor="" x="713.90" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.08%)</title><rect x="25.4" y="245" width="0.9" height="15.0" fill="rgb(215,41,33)" rx="2" ry="2" />
<text text-anchor="" x="28.36" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="407.5" y="197" width="1.0" height="15.0" fill="rgb(217,82,54)" rx="2" ry="2" />
<text text-anchor="" x="410.49" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (1 samples, 0.08%)</title><rect x="122.3" y="581" width="1.0" height="15.0" fill="rgb(254,40,2)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="707.1" y="261" width="0.9" height="15.0" fill="rgb(253,82,16)" rx="2" ry="2" />
<text text-anchor="" x="710.05" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="358.5" y="133" width="1.0" height="15.0" fill="rgb(224,50,11)" rx="2" ry="2" />
<text text-anchor="" x="361.53" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1008 (1 samples, 0.08%)</title><rect x="21.5" y="789" width="1.0" height="15.0" fill="rgb(224,45,36)" rx="2" ry="2" />
<text text-anchor="" x="24.52" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (2 samples, 0.16%)</title><rect x="869.3" y="165" width="1.9" height="15.0" fill="rgb(224,99,7)" rx="2" ry="2" />
<text text-anchor="" x="872.32" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.08%)</title><rect x="1181.4" y="677" width="0.9" height="15.0" fill="rgb(252,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1184.36" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.08%)</title><rect x="1071.9" y="229" width="1.0" height="15.0" fill="rgb(247,108,10)" rx="2" ry="2" />
<text text-anchor="" x="1074.90" 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>/usr/lib/python3.5/selectors.py:select:376 (2 samples, 0.16%)</title><rect x="110.8" y="1093" width="1.9" height="15.0" fill="rgb(205,191,34)" rx="2" ry="2" />
<text text-anchor="" x="113.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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.16%)</title><rect x="1068.1" y="293" width="1.9" height="15.0" fill="rgb(254,66,31)" rx="2" ry="2" />
<text text-anchor="" x="1071.06" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1037 (3 samples, 0.24%)</title><rect x="220.3" y="341" width="2.8" height="15.0" fill="rgb(230,145,23)" rx="2" ry="2" />
<text text-anchor="" x="223.27" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="758.9" y="133" width="1.0" height="15.0" fill="rgb(250,219,5)" rx="2" ry="2" />
<text text-anchor="" x="761.90" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="541.0" y="149" width="0.9" height="15.0" fill="rgb(229,153,43)" rx="2" ry="2" />
<text text-anchor="" x="543.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (21 samples, 1.71%)</title><rect x="10.0" y="1173" width="20.2" height="15.0" fill="rgb(210,218,29)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.08%)</title><rect x="665.8" y="149" width="0.9" height="15.0" fill="rgb(246,95,49)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="589.0" y="325" width="0.9" height="15.0" fill="rgb(236,122,14)" rx="2" ry="2" />
<text text-anchor="" x="591.96" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="187.6" y="293" width="1.0" height="15.0" fill="rgb(213,0,27)" rx="2" ry="2" />
<text text-anchor="" x="190.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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.08%)</title><rect x="593.8" y="261" width="0.9" height="15.0" fill="rgb(223,42,1)" rx="2" ry="2" />
<text text-anchor="" x="596.76" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="1028.7" y="165" width="1.9" height="15.0" fill="rgb(250,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1031.70" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_check:4885 (1 samples, 0.08%)</title><rect x="552.5" y="261" width="0.9" height="15.0" fill="rgb(226,44,50)" rx="2" ry="2" />
<text text-anchor="" x="555.47" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="183.8" y="277" width="0.9" height="15.0" fill="rgb(254,216,40)" rx="2" ry="2" />
<text text-anchor="" x="186.78" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (4 samples, 0.33%)</title><rect x="10.0" y="869" width="3.8" height="15.0" fill="rgb(218,52,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (17 samples, 1.38%)</title><rect x="737.8" y="149" width="16.3" height="15.0" fill="rgb(226,198,9)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="245.2" y="197" width="1.0" height="15.0" fill="rgb(243,193,40)" rx="2" ry="2" />
<text text-anchor="" x="248.23" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="793.5" y="117" width="0.9" height="15.0" fill="rgb(242,183,8)" rx="2" ry="2" />
<text text-anchor="" x="796.47" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:961 (1 samples, 0.08%)</title><rect x="922.1" y="213" width="1.0" height="15.0" fill="rgb(225,226,48)" rx="2" ry="2" />
<text text-anchor="" x="925.12" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="574.6" y="245" width="0.9" height="15.0" fill="rgb(230,220,1)" rx="2" ry="2" />
<text text-anchor="" x="577.56" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (1 samples, 0.08%)</title><rect x="1130.5" y="277" width="0.9" height="15.0" fill="rgb(254,151,54)" rx="2" ry="2" />
<text text-anchor="" x="1133.47" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.16%)</title><rect x="519.8" y="165" width="1.9" height="15.0" fill="rgb(238,207,18)" rx="2" ry="2" />
<text text-anchor="" x="522.83" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.08%)</title><rect x="28.2" y="805" width="1.0" height="15.0" fill="rgb(218,173,30)" rx="2" ry="2" />
<text text-anchor="" x="31.24" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="581.3" y="261" width="0.9" height="15.0" fill="rgb(234,104,43)" rx="2" ry="2" />
<text text-anchor="" x="584.28" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1039 (1 samples, 0.08%)</title><rect x="10.0" y="837" width="1.0" height="15.0" fill="rgb(230,228,48)" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="768.5" y="181" width="1.0" height="15.0" fill="rgb(224,152,46)" rx="2" ry="2" />
<text text-anchor="" x="771.50" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:1016 (1 samples, 0.08%)</title><rect x="960.5" y="165" width="1.0" height="15.0" fill="rgb(224,36,48)" rx="2" ry="2" />
<text text-anchor="" x="963.53" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="406.5" y="213" width="1.0" height="15.0" fill="rgb(212,52,48)" rx="2" ry="2" />
<text text-anchor="" x="409.53" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (1 samples, 0.08%)</title><rect x="11.0" y="725" width="0.9" height="15.0" fill="rgb(251,106,18)" rx="2" ry="2" />
<text text-anchor="" x="13.96" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.08%)</title><rect x="1116.1" y="293" width="0.9" height="15.0" fill="rgb(240,54,10)" rx="2" ry="2" />
<text text-anchor="" x="1119.07" 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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (2 samples, 0.16%)</title><rect x="896.2" y="197" width="1.9" height="15.0" fill="rgb(248,110,18)" rx="2" ry="2" />
<text text-anchor="" x="899.20" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (2 samples, 0.16%)</title><rect x="654.2" y="277" width="2.0" height="15.0" fill="rgb(225,48,27)" rx="2" ry="2" />
<text text-anchor="" x="657.25" 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>/.repo_requirements/odoo/odoo/http.py:flatten:1270 (3 samples, 0.24%)</title><rect x="1187.1" y="741" width="2.9" height="15.0" fill="rgb(239,164,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>&lt;/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/decorator.py:decorator-gen-74&gt;:get_mention_commands:2 (1 samples, 0.08%)</title><rect x="122.3" y="693" width="1.0" height="15.0" fill="rgb(231,196,12)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="940.4" y="197" width="0.9" height="15.0" fill="rgb(239,170,12)" rx="2" ry="2" />
<text text-anchor="" x="943.37" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="436.3" y="149" width="1.0" height="15.0" fill="rgb(207,66,51)" rx="2" ry="2" />
<text text-anchor="" x="439.30" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="407.5" y="181" width="1.0" height="15.0" fill="rgb(222,9,28)" rx="2" ry="2" />
<text text-anchor="" x="410.49" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="790.6" y="197" width="0.9" height="15.0" fill="rgb(231,189,51)" rx="2" ry="2" />
<text text-anchor="" x="793.59" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:983 (28 samples, 2.28%)</title><rect x="817.5" y="213" width="26.9" height="15.0" fill="rgb(249,49,5)" rx="2" ry="2" />
<text text-anchor="" x="820.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (340 samples, 27.66%)</title><rect x="710.9" y="293" width="326.4" height="15.0" fill="rgb(213,19,19)" rx="2" ry="2" />
<text text-anchor="" x="713.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:__ge..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:58 (1 samples, 0.08%)</title><rect x="543.8" y="165" width="1.0" height="15.0" fill="rgb(251,130,51)" rx="2" ry="2" />
<text text-anchor="" x="546.83" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1287 (10 samples, 0.81%)</title><rect x="386.4" y="197" width="9.6" height="15.0" fill="rgb(223,206,52)" rx="2" ry="2" />
<text text-anchor="" x="389.37" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="1120.9" y="277" width="0.9" height="15.0" fill="rgb(245,48,44)" rx="2" ry="2" />
<text text-anchor="" x="1123.87" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (355 samples, 28.89%)</title><rect x="704.2" y="309" width="340.8" height="15.0" fill="rgb(210,29,50)" rx="2" ry="2" />
<text text-anchor="" x="707.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:__geti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="352.8" y="149" width="0.9" height="15.0" fill="rgb(224,99,2)" rx="2" ry="2" />
<text text-anchor="" x="355.77" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="679.2" y="293" width="1.0" height="15.0" fill="rgb(228,224,34)" rx="2" ry="2" />
<text text-anchor="" x="682.21" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="746.4" y="101" width="1.0" height="15.0" fill="rgb(223,182,13)" rx="2" ry="2" />
<text text-anchor="" x="749.42" 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>/.repo_requirements/odoo/odoo/models.py:_write:3235 (1 samples, 0.08%)</title><rect x="1065.2" y="325" width="0.9" height="15.0" fill="rgb(229,223,21)" rx="2" ry="2" />
<text text-anchor="" x="1068.18" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:render:272 (2 samples, 0.16%)</title><rect x="1187.1" y="437" width="1.9" height="15.0" fill="rgb(212,121,34)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.08%)</title><rect x="326.8" y="165" width="1.0" height="15.0" fill="rgb(237,95,18)" rx="2" ry="2" />
<text text-anchor="" x="329.84" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (1 samples, 0.08%)</title><rect x="444.9" y="133" width="1.0" height="15.0" fill="rgb(207,146,46)" rx="2" ry="2" />
<text text-anchor="" x="447.94" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1053.7" y="309" width="0.9" height="15.0" fill="rgb(220,44,30)" rx="2" ry="2" />
<text text-anchor="" x="1056.66" 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>/.repo_requirements/odoo/odoo/fields.py:cache_key:759 (2 samples, 0.16%)</title><rect x="617.8" y="261" width="1.9" height="15.0" fill="rgb(212,154,22)" rx="2" ry="2" />
<text text-anchor="" x="620.76" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1055 (4 samples, 0.33%)</title><rect x="597.6" y="293" width="3.8" height="15.0" fill="rgb(215,12,12)" rx="2" ry="2" />
<text text-anchor="" x="600.60" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.08%)</title><rect x="665.8" y="213" width="0.9" height="15.0" fill="rgb(225,218,22)" rx="2" ry="2" />
<text text-anchor="" x="668.77" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.24%)</title><rect x="296.1" y="181" width="2.9" height="15.0" fill="rgb(232,215,7)" rx="2" ry="2" />
<text text-anchor="" x="299.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.08%)</title><rect x="396.9" y="181" width="1.0" height="15.0" fill="rgb(252,151,14)" rx="2" ry="2" />
<text text-anchor="" x="399.93" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.08%)</title><rect x="1032.5" y="181" width="1.0" height="15.0" fill="rgb(228,7,41)" rx="2" ry="2" />
<text text-anchor="" x="1035.54" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.08%)</title><rect x="830.0" y="149" width="0.9" height="15.0" fill="rgb(237,83,52)" rx="2" ry="2" />
<text text-anchor="" x="832.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>/.repo_requirements/odoo/odoo/api.py:in_draft:826 (1 samples, 0.08%)</title><rect x="815.5" y="197" width="1.0" height="15.0" fill="rgb(226,141,35)" rx="2" ry="2" />
<text text-anchor="" x="818.55" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.08%)</title><rect x="122.3" y="549" width="1.0" height="15.0" fill="rgb(215,62,34)" rx="2" ry="2" />
<text text-anchor="" x="125.34" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.33%)</title><rect x="134.8" y="277" width="3.9" height="15.0" fill="rgb(248,109,54)" rx="2" ry="2" />
<text text-anchor="" x="137.82" 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>/.repo_requirements/odoo/odoo/models.py:create:3354 (1 samples, 0.08%)</title><rect x="211.6" y="373" width="1.0" height="15.0" fill="rgb(232,7,44)" rx="2" ry="2" />
<text text-anchor="" x="214.63" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:933 (1 samples, 0.08%)</title><rect x="794.4" y="165" width="1.0" height="15.0" fill="rgb(239,11,45)" rx="2" ry="2" />
<text text-anchor="" x="797.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2541 (1 samples, 0.08%)</title><rect x="182.8" y="293" width="1.0" height="15.0" fill="rgb(231,170,10)" rx="2" ry="2" />
<text text-anchor="" x="185.82" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_qweb/qweb.py:render:272 (3 samples, 0.24%)</title><rect x="1187.1" y="629" width="2.9" height="15.0" fill="rgb(244,7,15)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/http.py:dispatch:830 (7 samples, 0.57%)</title><rect x="1183.3" y="821" width="6.7" height="15.0" fill="rgb(205,62,16)" rx="2" ry="2" />
<text text-anchor="" x="1186.28" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.08%)</title><rect x="1071.9" y="261" width="1.0" height="15.0" fill="rgb(248,119,11)" rx="2" ry="2" />
<text text-anchor="" x="1074.90" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="398.9" y="165" width="0.9" height="15.0" fill="rgb(243,140,31)" rx="2" ry="2" />
<text text-anchor="" x="401.85" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (1 samples, 0.08%)</title><rect x="888.5" y="181" width="1.0" height="15.0" fill="rgb(245,149,36)" rx="2" ry="2" />
<text text-anchor="" x="891.52" 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>/.repo_requirements/odoo/odoo/models.py:read:2596 (1 samples, 0.08%)</title><rect x="169.4" y="325" width="0.9" height="15.0" fill="rgb(242,107,28)" rx="2" ry="2" />
<text text-anchor="" x="172.38" 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>/.repo_requirements/odoo/odoo/models.py:modified:4840 (1 samples, 0.08%)</title><rect x="1147.8" y="309" width="0.9" height="15.0" fill="rgb(218,171,16)" rx="2" ry="2" />
<text text-anchor="" x="1150.75" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.08%)</title><rect x="527.5" y="117" width="1.0" height="15.0" fill="rgb(235,208,21)" rx="2" ry="2" />
<text text-anchor="" x="530.51" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="1028.7" y="149" width="1.0" height="15.0" fill="rgb(216,96,5)" rx="2" ry="2" />
<text text-anchor="" x="1031.70" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="432.5" y="149" width="0.9" height="15.0" fill="rgb(212,226,45)" rx="2" ry="2" />
<text text-anchor="" x="435.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:941 (17 samples, 1.38%)</title><rect x="737.8" y="213" width="16.3" height="15.0" fill="rgb(250,186,21)" rx="2" ry="2" />
<text text-anchor="" x="740.78" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:render_template:1208 (3 samples, 0.24%)</title><rect x="1187.1" y="709" width="2.9" height="15.0" fill="rgb(228,14,28)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_ui_view.py:_read_template:1094 (1 samples, 0.08%)</title><rect x="1187.1" y="277" width="1.0" height="15.0" fill="rgb(214,96,23)" rx="2" ry="2" />
<text text-anchor="" x="1190.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1991 (1 samples, 0.08%)</title><rect x="439.2" y="149" width="0.9" height="15.0" fill="rgb(237,140,5)" rx="2" ry="2" />
<text text-anchor="" x="442.18" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="868.4" y="149" width="0.9" height="15.0" fill="rgb(205,191,44)" rx="2" ry="2" />
<text text-anchor="" x="871.36" 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>/.repo_requirements/odoo/odoo/api.py:get:960 (1 samples, 0.08%)</title><rect x="372.0" y="197" width="0.9" height="15.0" fill="rgb(205,164,28)" rx="2" ry="2" />
<text text-anchor="" x="374.97" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:975 (1 samples, 0.08%)</title><rect x="1021.0" y="213" width="1.0" height="15.0" fill="rgb(216,185,37)" rx="2" ry="2" />
<text text-anchor="" x="1024.02" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (4 samples, 0.33%)</title><rect x="578.4" y="325" width="3.8" height="15.0" fill="rgb(247,113,5)" rx="2" ry="2" />
<text text-anchor="" x="581.40" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (4 samples, 0.33%)</title><rect x="14.8" y="837" width="3.8" height="15.0" fill="rgb(254,81,17)" rx="2" ry="2" />
<text text-anchor="" x="17.80" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (2 samples, 0.16%)</title><rect x="239.5" y="213" width="1.9" height="15.0" fill="rgb(251,136,53)" rx="2" ry="2" />
<text text-anchor="" x="242.47" 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>/.repo_requirements/odoo/odoo/models.py:_compute_display_name:1490 (1 samples, 0.08%)</title><rect x="1177.5" y="533" width="1.0" height="15.0" fill="rgb(221,194,39)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (2 samples, 0.16%)</title><rect x="492.9" y="165" width="2.0" height="15.0" fill="rgb(225,198,49)" rx="2" ry="2" />
<text text-anchor="" x="495.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>/.repo_requirements/odoo/odoo/fields.py:__get__:935 (1 samples, 0.08%)</title><rect x="136.7" y="261" width="1.0" height="15.0" fill="rgb(253,172,10)" rx="2" ry="2" />
<text text-anchor="" x="139.74" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (1 samples, 0.08%)</title><rect x="431.5" y="149" width="1.0" height="15.0" fill="rgb(214,69,26)" rx="2" ry="2" />
<text text-anchor="" x="434.50" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4913 (10 samples, 0.81%)</title><rect x="575.5" y="341" width="9.6" height="15.0" fill="rgb(227,48,25)" rx="2" ry="2" />
<text text-anchor="" x="578.52" 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>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:966 (3 samples, 0.24%)</title><rect x="96.4" y="1189" width="2.9" height="15.0" fill="rgb(225,97,9)" rx="2" ry="2" />
<text text-anchor="" x="99.41" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.08%)</title><rect x="176.1" y="277" width="1.0" height="15.0" fill="rgb(207,40,10)" rx="2" ry="2" />
<text text-anchor="" x="179.10" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.08%)</title><rect x="1094.0" y="245" width="0.9" height="15.0" fill="rgb(243,115,10)" rx="2" ry="2" />
<text text-anchor="" x="1096.99" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (4 samples, 0.33%)</title><rect x="633.1" y="293" width="3.9" height="15.0" fill="rgb(254,220,6)" rx="2" ry="2" />
<text text-anchor="" x="636.12" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.08%)</title><rect x="1013.3" y="133" width="1.0" height="15.0" fill="rgb(213,215,22)" rx="2" ry="2" />
<text text-anchor="" x="1016.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (1 samples, 0.08%)</title><rect x="906.8" y="165" width="0.9" height="15.0" fill="rgb(209,53,50)" rx="2" ry="2" />
<text text-anchor="" x="909.76" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2543 (2 samples, 0.16%)</title><rect x="556.3" y="261" width="1.9" height="15.0" fill="rgb(237,149,51)" rx="2" ry="2" />
<text text-anchor="" x="559.31" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:949 (3 samples, 0.24%)</title><rect x="381.6" y="165" width="2.9" height="15.0" fill="rgb(214,50,4)" rx="2" ry="2" />
<text text-anchor="" x="384.57" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1283 (1 samples, 0.08%)</title><rect x="979.7" y="197" width="1.0" height="15.0" fill="rgb(234,175,5)" rx="2" ry="2" />
<text text-anchor="" x="982.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:937 (2 samples, 0.16%)</title><rect x="1058.5" y="293" width="1.9" height="15.0" fill="rgb(208,195,40)" rx="2" ry="2" />
<text text-anchor="" x="1061.46" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.08%)</title><rect x="1176.6" y="517" width="0.9" height="15.0" fill="rgb(232,161,23)" rx="2" ry="2" />
<text text-anchor="" x="1179.56" 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>/.repo_requirements/odoo/odoo/api.py:get:961 (3 samples, 0.24%)</title><rect x="974.0" y="133" width="2.9" height="15.0" fill="rgb(215,1,37)" rx="2" ry="2" />
<text text-anchor="" x="976.97" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (2 samples, 0.16%)</title><rect x="822.3" y="181" width="1.9" height="15.0" fill="rgb(218,4,40)" rx="2" ry="2" />
<text text-anchor="" x="825.27" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:936 (1 samples, 0.08%)</title><rect x="302.8" y="213" width="1.0" height="15.0" fill="rgb(211,42,18)" rx="2" ry="2" />
<text text-anchor="" x="305.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment