Skip to content

Instantly share code, notes, and snippets.

@estsauver
Created November 26, 2018 17:44
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 estsauver/8d514b2b072f3930183484d6ee9205c2 to your computer and use it in GitHub Desktop.
Save estsauver/8d514b2b072f3930183484d6ee9205c2 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
<?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="1110" onload="init(evt)" viewBox="0 0 1200 1110" 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="#e0e0ff" 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="1110.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="1093" 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="1093" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1540) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (156,081 μs, 0.39%)</title><rect x="586.1" y="1029" width="4.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="589.14" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (8,272 μs, 0.02%)</title><rect x="530.0" y="373" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="532.97" 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>reflect.runtime.universe.TypeTag[Int :: java.util.UUID :: String :: String :: String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (9,660 μs, 0.02%)</title><rect x="934.2" y="981" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="937.23" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (8,863 μs, 0.02%)</title><rect x="979.6" y="1045" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="982.56" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,820 μs, 0.01%)</title><rect x="64.2" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="67.17" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17254) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,860 μs, 0.02%)</title><rect x="417.9" y="613" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="420.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Int]] (expanded macros 0) (11,627 μs, 0.03%)</title><rect x="1040.7" y="821" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1043.72" 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>doobie.util.Put[Int] (expanded macros 0) (10,887 μs, 0.03%)</title><rect x="962.1" y="997" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="965.15" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (220,596 μs, 0.54%)</title><rect x="81.2" y="725" width="6.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="84.22" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (8,849 μs, 0.02%)</title><rect x="327.4" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="330.44" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22989) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (238,060 μs, 0.59%)</title><rect x="869.8" y="709" width="6.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="872.75" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21994) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (318,905 μs, 0.79%)</title><rect x="819.3" y="805" width="9.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="822.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>doobie.util.Put[Int :: shapeless.HNil] (expanded macros 0) (4,083 μs, 0.01%)</title><rect x="1017.2" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1020.15" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = G} (expanded macros 3) (3,491 μs, 0.01%)</title><rect x="210.2" y="933" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="213.21" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.Farmer] (expanded macros 0) (13,132 μs, 0.03%)</title><rect x="102.2" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="105.15" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28459) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (547,001 μs, 1.35%)</title><rect x="531.5" y="1029" width="16.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="534.52" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 8318) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (51,799 μs, 0.13%)</title><rect x="323.2" y="965" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="326.25" 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>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 23416) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (20,042 μs, 0.05%)</title><rect x="890.8" y="357" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="893.78" 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>doobie.util.Get[Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (12,705 μs, 0.03%)</title><rect x="204.2" y="741" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="207.20" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (15,107 μs, 0.04%)</title><rect x="991.4" y="901" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="994.44" 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>doobie.util.Read[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (92,197 μs, 0.23%)</title><rect x="378.9" y="1013" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="381.91" 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>doobie.util.Read[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (143,948 μs, 0.36%)</title><rect x="149.8" y="629" width="4.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="152.82" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 12750) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,681 μs, 0.02%)</title><rect x="667.5" y="741" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="670.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.LoanApplicationQueries.AdditionalInfo]{type Repr = L} (id 16216) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,680 μs, 0.01%)</title><rect x="676.8" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="679.83" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 8989) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (35,248 μs, 0.09%)</title><rect x="329.8" y="901" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="332.78" 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>doobie.util.Read[Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (39,449 μs, 0.10%)</title><rect x="152.7" y="341" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="155.74" 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>reflect.runtime.universe.TypeTag[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,893 μs, 0.03%)</title><rect x="880.1" y="917" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="883.06" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (6,009 μs, 0.01%)</title><rect x="450.8" y="757" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="453.78" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 2508) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (61,622 μs, 0.15%)</title><rect x="601.9" y="1029" width="1.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="604.88" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.FarmerPicture]{type Repr = L} (id 9941) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,254 μs, 0.01%)</title><rect x="304.5" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="307.52" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (10,167 μs, 0.03%)</title><rect x="473.5" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="476.51" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[String] :: shapeless.HNil]] (id 8166) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (32,161 μs, 0.08%)</title><rect x="295.3" y="709" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="298.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.TaskResult]{type Repr = L} (id 22223) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,627 μs, 0.02%)</title><rect x="757.7" y="1013" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="760.73" 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>shapeless.Lazy[doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21026) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (381,128 μs, 0.94%)</title><rect x="767.8" y="901" width="11.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="770.82" 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>doobie.util.Read[Option[String]] (expanded macros 0) (9,896 μs, 0.02%)</title><rect x="477.6" y="917" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="480.55" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: shapeless.HNil]] (id 22464) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (30,937 μs, 0.08%)</title><rect x="842.2" y="389" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="845.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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 5272) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,258 μs, 0.03%)</title><rect x="251.4" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="254.41" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,010 μs, 0.01%)</title><rect x="266.4" y="821" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="269.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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 26451) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (87,211 μs, 0.22%)</title><rect x="71.9" y="965" width="2.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="74.88" 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>shapeless.Lazy[doobie.util.Read[String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4558) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (219,701 μs, 0.54%)</title><rect x="175.7" y="773" width="6.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="178.69" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (9,593 μs, 0.02%)</title><rect x="281.9" y="949" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="284.87" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (97,309 μs, 0.24%)</title><rect x="435.6" y="917" width="2.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="438.59" 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>doobie.util.Put[(java.util.UUID, Int, com.apolloagriculture.pikachu.models.LoanApplicationStatus, String, Double)] (expanded macros 0) (8,521 μs, 0.02%)</title><rect x="941.8" y="1029" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="944.84" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil]] (id 5075) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (34,806 μs, 0.09%)</title><rect x="270.6" y="805" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="273.62" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.queries.TaskResult]{type Repr = G} (id 20969) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,315 μs, 0.02%)</title><rect x="761.1" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="764.06" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (5,462 μs, 0.01%)</title><rect x="262.9" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="265.92" 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>doobie.util.Read[Int :: String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (85,949 μs, 0.21%)</title><rect x="137.8" y="949" width="2.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="140.81" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (19,823 μs, 0.05%)</title><rect x="881.6" y="869" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="884.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>doobie.util.Put[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (101,481 μs, 0.25%)</title><rect x="1057.3" y="965" width="3.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1060.34" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 18726) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,379 μs, 0.03%)</title><rect x="688.7" y="837" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="691.68" 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>doobie.util.Get[java.util.UUID :: String :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,867 μs, 0.02%)</title><rect x="621.7" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="624.66" 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>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,652 μs, 0.01%)</title><rect x="399.5" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="402.45" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.ApprovedPaymentsRow :: shapeless.HNil] (expanded macros 0) (5,413 μs, 0.01%)</title><rect x="683.9" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="686.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 4072) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,686 μs, 0.02%)</title><rect x="168.1" y="901" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="171.06" 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>doobie.util.Get[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (8,453 μs, 0.02%)</title><rect x="874.0" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="877.02" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (4,929 μs, 0.01%)</title><rect x="957.5" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="960.48" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: shapeless.HNil] (expanded macros 0) (22,690 μs, 0.06%)</title><rect x="44.9" y="981" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="47.91" 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>doobie.util.param.Param[String :: Int :: shapeless.HNil] (expanded macros 0) (11,859 μs, 0.03%)</title><rect x="1009.9" y="1029" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1012.93" 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>doobie.util.Get[Option[String]] (expanded macros 0) (5,970 μs, 0.01%)</title><rect x="609.4" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="612.37" 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>shapeless.Generic[String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,648 μs, 0.01%)</title><rect x="222.1" y="821" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="225.08" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil]] (id 25788) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (84,582 μs, 0.21%)</title><rect x="719.8" y="901" width="2.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="722.83" 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>doobie.util.param.Param[Int :: String :: shapeless.HNil] (expanded macros 0) (11,869 μs, 0.03%)</title><rect x="1016.5" y="1029" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1019.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (10,156 μs, 0.03%)</title><rect x="178.0" y="581" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="181.04" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (30,663 μs, 0.08%)</title><rect x="444.2" y="821" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="447.18" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (8,895 μs, 0.02%)</title><rect x="1022.2" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1025.17" 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>doobie.util.Get[org.joda.time.DateTime :: java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 0) (7,463 μs, 0.02%)</title><rect x="731.9" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="734.93" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (7,915 μs, 0.02%)</title><rect x="74.1" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="77.10" 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>doobie.util.Put[Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (71,473 μs, 0.18%)</title><rect x="1103.4" y="773" width="2.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1106.37" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil]] (id 27370) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (417,036 μs, 1.03%)</title><rect x="106.7" y="933" width="12.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="109.72" 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>shapeless.Lazy[doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29538) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (314,379 μs, 0.78%)</title><rect x="503.0" y="933" width="9.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="505.98" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (15,445 μs, 0.04%)</title><rect x="533.3" y="949" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="536.32" 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>doobie.util.Read[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (70,079 μs, 0.17%)</title><rect x="385.2" y="949" width="2.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="388.16" 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>doobie.util.Read[Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (297,397 μs, 0.73%)</title><rect x="361.3" y="853" width="8.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="364.27" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21109) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (175,089 μs, 0.43%)</title><rect x="773.4" y="645" width="5.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="776.37" 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>shapeless.Lazy[doobie.util.Read[String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19187) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (67,613 μs, 0.17%)</title><rect x="440.7" y="997" width="2.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="443.68" 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>doobie.util.Read[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (134,331 μs, 0.33%)</title><rect x="872.7" y="533" width="3.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="875.68" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 6356) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (5,089 μs, 0.01%)</title><rect x="631.3" y="837" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="634.31" 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>shapeless.Generic[java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil]{type Repr = G} (expanded macros 3) (3,538 μs, 0.01%)</title><rect x="732.5" y="869" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="735.49" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (13,233 μs, 0.03%)</title><rect x="806.2" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="809.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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (15,371 μs, 0.04%)</title><rect x="95.7" y="613" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="98.65" 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>doobie.util.Get[Option[Double] :: Option[Double] :: shapeless.HNil] (expanded macros 0) (7,839 μs, 0.02%)</title><rect x="311.4" y="901" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="314.43" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.models.Product] (expanded macros 0) (185,626 μs, 0.46%)</title><rect x="439.7" y="1045" width="5.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="442.74" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22128) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (51,704 μs, 0.13%)</title><rect x="826.0" y="421" width="1.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="828.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (225,559 μs, 0.56%)</title><rect x="540.4" y="725" width="6.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="543.40" 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>doobie.util.Put[Option[Int] :: shapeless.HNil] (expanded macros 0) (7,100 μs, 0.02%)</title><rect x="1021.9" y="949" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1024.91" 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>reflect.runtime.universe.TypeTag[Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (14,394 μs, 0.04%)</title><rect x="345.7" y="917" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="348.69" 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>shapeless.Lazy[doobie.util.Read[Boolean :: shapeless.HNil]] (id 20401) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,055 μs, 0.02%)</title><rect x="579.3" y="901" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="582.26" 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>doobie.util.Get[java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (6,293 μs, 0.02%)</title><rect x="666.4" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="669.41" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (8,876 μs, 0.02%)</title><rect x="812.0" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="814.95" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29657) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (86,653 μs, 0.21%)</title><rect x="509.1" y="581" width="2.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="512.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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (19,271 μs, 0.05%)</title><rect x="804.2" y="741" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="807.18" 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>reflect.runtime.universe.TypeTag[String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (4,181 μs, 0.01%)</title><rect x="443.6" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="446.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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: shapeless.HNil]] (id 22145) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (29,359 μs, 0.07%)</title><rect x="826.3" y="389" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="829.30" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (5,836 μs, 0.01%)</title><rect x="416.5" y="757" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="419.46" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 18168) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (120,953 μs, 0.30%)</title><rect x="429.5" y="837" width="3.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="432.54" 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>reflect.runtime.universe.TypeTag[BigDecimal :: java.util.UUID :: Option[Int] :: shapeless.HNil] (expanded macros 1) (3,523 μs, 0.01%)</title><rect x="1008.3" y="997" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1011.28" 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>sourcecode.Line (expanded macros 0) (46,372 μs, 0.11%)</title><rect x="33.9" y="1013" width="1.3" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="36.89" 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>doobie.util.Read[Option[Int] :: java.util.UUID :: String :: Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (136,772 μs, 0.34%)</title><rect x="723.0" y="981" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="726.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>doobie.util.Read[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (47,596 μs, 0.12%)</title><rect x="86.1" y="405" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="89.09" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22050) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (184,467 μs, 0.46%)</title><rect x="822.8" y="645" width="5.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="825.76" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (60,379 μs, 0.15%)</title><rect x="993.8" y="853" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="996.83" 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>doobie.util.param.Param[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Int :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (16,007 μs, 0.04%)</title><rect x="982.0" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="985.04" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (10,758 μs, 0.03%)</title><rect x="87.2" y="341" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="90.17" 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>doobie.util.Read[Option[Double]] (expanded macros 0) (9,541 μs, 0.02%)</title><rect x="827.2" y="373" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="830.18" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 27415) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (131,906 μs, 0.33%)</title><rect x="114.9" y="613" width="3.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="117.94" 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>doobie.util.Get[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (7,823 μs, 0.02%)</title><rect x="874.4" y="389" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="877.39" 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>reflect.runtime.universe.TypeTag[Int :: Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.Authority :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 1) (6,673 μs, 0.02%)</title><rect x="572.0" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="575.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>doobie.util.Read[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (113,921 μs, 0.28%)</title><rect x="824.7" y="501" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="827.74" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: shapeless.HNil] (expanded macros 1) (4,642 μs, 0.01%)</title><rect x="1165.4" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1168.42" 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>doobie.util.param.Param[List[String]] (expanded macros 0) (13,251 μs, 0.03%)</title><rect x="1155.8" y="997" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1158.80" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (6,167 μs, 0.02%)</title><rect x="256.9" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="259.92" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (235,280 μs, 0.58%)</title><rect x="771.7" y="725" width="6.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="774.68" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 593) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (107,707 μs, 0.27%)</title><rect x="224.4" y="741" width="3.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="227.43" 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>doobie.util.Read[Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (22,756 μs, 0.06%)</title><rect x="666.9" y="725" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="669.86" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (14,016 μs, 0.03%)</title><rect x="877.1" y="885" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="880.11" 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>doobie.util.param.Param[Option[String] :: shapeless.HNil] (expanded macros 0) (6,815 μs, 0.02%)</title><rect x="997.5" y="1029" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1000.46" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12499) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (94,101 μs, 0.23%)</title><rect x="660.9" y="869" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="663.89" 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>reflect.runtime.universe.TypeTag[String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,074 μs, 0.02%)</title><rect x="935.8" y="853" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="938.81" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]{type Repr = L} (expanded macros 3) (4,542 μs, 0.01%)</title><rect x="798.0" y="949" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="800.96" 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>doobie.util.Read[Int :: java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (137,476 μs, 0.34%)</title><rect x="635.6" y="1013" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="638.58" 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>shapeless.Lazy[doobie.util.Read[String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22304) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (335,258 μs, 0.83%)</title><rect x="834.8" y="837" width="9.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="837.77" 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>doobie.util.Get[List[String]] (expanded macros 0) (7,252 μs, 0.02%)</title><rect x="173.8" y="837" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="176.79" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,914 μs, 0.01%)</title><rect x="477.7" y="885" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="480.67" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Double :: Boolean :: shapeless.HNil] (expanded macros 0) (34,748 μs, 0.09%)</title><rect x="580.8" y="917" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="583.84" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (7,832 μs, 0.02%)</title><rect x="664.0" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="667.02" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.Authority :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (87,408 μs, 0.22%)</title><rect x="574.5" y="757" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="577.51" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (5,484 μs, 0.01%)</title><rect x="136.3" y="933" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="139.26" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21338) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (381,658 μs, 0.94%)</title><rect x="784.2" y="869" width="11.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="787.16" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 28355) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,036 μs, 0.02%)</title><rect x="527.9" y="549" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="530.91" 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>doobie.util.Read[Int :: java.util.UUID :: java.util.UUID :: java.util.UUID :: org.joda.time.DateTime :: String :: shapeless.HNil] (expanded macros 0) (81,527 μs, 0.20%)</title><rect x="740.6" y="981" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="743.64" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,404 μs, 0.02%)</title><rect x="165.9" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="168.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Int :: Option[Int] :: shapeless.HNil] (expanded macros 0) (17,105 μs, 0.04%)</title><rect x="957.2" y="1029" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="960.21" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (5,806 μs, 0.01%)</title><rect x="134.7" y="805" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="137.66" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 23864) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,332 μs, 0.03%)</title><rect x="924.5" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="927.47" 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>doobie.util.Get[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (23,525 μs, 0.06%)</title><rect x="765.3" y="965" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="768.26" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1154) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (131,199 μs, 0.32%)</title><rect x="203.6" y="805" width="3.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="206.58" 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>shapeless.Lazy[doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23523) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (388,393 μs, 0.96%)</title><rect x="897.1" y="901" width="11.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="900.11" 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>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus]]] (id 15136) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,851 μs, 0.02%)</title><rect x="383.1" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="386.07" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 15357) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,165 μs, 0.01%)</title><rect x="386.9" y="709" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="389.95" 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>shapeless.Lazy[doobie.util.Read[Double :: Double :: shapeless.HNil]] (id 14841) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (16,608 μs, 0.04%)</title><rect x="378.2" y="773" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="381.20" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 3785) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (144,533 μs, 0.36%)</title><rect x="149.8" y="645" width="4.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="152.80" 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>doobie.util.Get[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (7,893 μs, 0.02%)</title><rect x="665.5" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="668.51" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.SubTask]{type Repr = G} (id 28742) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (7,841 μs, 0.02%)</title><rect x="454.2" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="457.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23025) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (150,988 μs, 0.37%)</title><rect x="872.2" y="581" width="4.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="875.21" 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>doobie.util.Get[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (23,181 μs, 0.06%)</title><rect x="910.4" y="965" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="913.36" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,495 μs, 0.01%)</title><rect x="856.5" y="501" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="859.46" 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>doobie.util.Read[Option[String]] (expanded macros 0) (9,936 μs, 0.02%)</title><rect x="827.5" y="405" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="830.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>doobie.util.Put[java.util.UUID :: shapeless.HNil] (expanded macros 0) (7,404 μs, 0.02%)</title><rect x="984.1" y="981" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="987.10" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (16,798 μs, 0.04%)</title><rect x="1158.9" y="917" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1161.92" 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>doobie.util.Read[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (34,167 μs, 0.08%)</title><rect x="130.7" y="341" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="133.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>doobie.util.Get[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (8,225 μs, 0.02%)</title><rect x="376.0" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="378.97" 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>doobie.util.Get[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (9,015 μs, 0.02%)</title><rect x="921.7" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="924.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,259 μs, 0.02%)</title><rect x="164.2" y="565" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="167.21" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,530 μs, 0.01%)</title><rect x="275.2" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="278.18" 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>reflect.runtime.universe.TypeTag[String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (4,599 μs, 0.01%)</title><rect x="138.2" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="141.24" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,132 μs, 0.05%)</title><rect x="1143.7" y="293" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1146.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>reflect.runtime.universe.TypeTag[Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (6,335 μs, 0.02%)</title><rect x="225.1" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="228.14" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,296 μs, 0.03%)</title><rect x="903.7" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="906.74" 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>doobie.util.Read[String :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (39,503 μs, 0.10%)</title><rect x="575.9" y="693" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="578.90" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (98,559 μs, 0.24%)</title><rect x="352.6" y="597" width="2.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="355.63" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (10,135 μs, 0.03%)</title><rect x="245.3" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="248.32" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19420) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (85,458 μs, 0.21%)</title><rect x="442.7" y="1029" width="2.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="445.65" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 25955) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,884 μs, 0.02%)</title><rect x="724.8" y="869" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="727.78" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (4,352 μs, 0.01%)</title><rect x="675.7" y="677" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="678.71" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 22455) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,013 μs, 0.02%)</title><rect x="843.1" y="389" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="846.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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (87,496 μs, 0.22%)</title><rect x="328.6" y="981" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="331.63" 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>doobie.util.Read[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (53,602 μs, 0.13%)</title><rect x="905.7" y="405" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="908.74" 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>doobie.util.Get[Int :: shapeless.HNil] (expanded macros 0) (5,471 μs, 0.01%)</title><rect x="53.6" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="56.61" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 1) (61,177 μs, 0.15%)</title><rect x="1068.6" y="901" width="1.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1071.58" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (13,180 μs, 0.03%)</title><rect x="992.6" y="869" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="995.57" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (170,110 μs, 0.42%)</title><rect x="177.1" y="661" width="4.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="180.08" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,344 μs, 0.01%)</title><rect x="321.7" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="324.65" 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>doobie.util.Get[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: Option[io.circe.Json] :: shapeless.HNil] (expanded macros 0) (8,959 μs, 0.02%)</title><rect x="567.2" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="570.20" 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>doobie.util.Get[Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (10,804 μs, 0.03%)</title><rect x="162.9" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="165.89" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (106,825 μs, 0.26%)</title><rect x="97.6" y="501" width="3.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="100.58" 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>reflect.runtime.universe.TypeTag[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,752 μs, 0.03%)</title><rect x="783.6" y="853" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="786.61" 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>doobie.util.Put[String :: shapeless.HNil] (expanded macros 0) (3,497 μs, 0.01%)</title><rect x="1003.5" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1006.49" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (21,627 μs, 0.05%)</title><rect x="782.6" y="901" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="785.59" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil]] (id 4340) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (31,150 μs, 0.08%)</title><rect x="169.4" y="837" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="172.43" 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>doobie.util.Read[Int :: java.util.UUID :: scala.math.BigDecimal :: com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (77,188 μs, 0.19%)</title><rect x="370.6" y="1013" width="2.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="373.55" 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>doobie.util.Read[String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (93,922 μs, 0.23%)</title><rect x="258.0" y="917" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="260.99" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,746 μs, 0.02%)</title><rect x="686.2" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="689.22" 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>doobie.util.Get[Int :: shapeless.HNil] (expanded macros 0) (7,684 μs, 0.02%)</title><rect x="595.0" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="597.99" 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>shapeless.ops.hlist.IsHCons[String :: String :: shapeless.HNil]{type H = H (3,544 μs, 0.01%)</title><rect x="59.3" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="62.30" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,240 μs, 0.01%)</title><rect x="48.4" y="853" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="51.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>doobie.util.param.Param[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (7,156 μs, 0.02%)</title><rect x="979.6" y="1013" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="982.58" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (19,056 μs, 0.05%)</title><rect x="230.0" y="933" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="233.01" 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>doobie.util.Read[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (102,628 μs, 0.25%)</title><rect x="873.6" y="469" width="3.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="876.58" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 3890) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (24,980 μs, 0.06%)</title><rect x="153.1" y="293" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="156.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>shapeless.Lazy[doobie.util.Read[Int :: Int :: Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil]] (id 18697) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (170,984 μs, 0.42%)</title><rect x="687.1" y="933" width="5.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="690.11" 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>doobie.util.Get[org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (6,250 μs, 0.02%)</title><rect x="305.8" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="308.85" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (9,428 μs, 0.02%)</title><rect x="869.3" y="693" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="872.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>shapeless.Generic[com.apolloagriculture.pikachu.models.MessageId]{type Repr = L} (id 10095) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,590 μs, 0.01%)</title><rect x="404.3" y="821" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="407.34" 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>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (9,040 μs, 0.02%)</title><rect x="355.1" y="309" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="358.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>doobie.util.Read[String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (116,619 μs, 0.29%)</title><rect x="268.8" y="981" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="271.77" 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>reflect.runtime.universe.TypeTag[Int :: Int :: com.apolloagriculture.pikachu.models.SubTaskType :: String :: shapeless.HNil] (expanded macros 1) (5,548 μs, 0.01%)</title><rect x="743.9" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="746.91" 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>doobie.util.Put[Float :: Float :: String :: Long :: shapeless.HNil] (expanded macros 0) (8,588 μs, 0.02%)</title><rect x="1013.0" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1016.03" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 8247) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,006 μs, 0.02%)</title><rect x="60.2" y="965" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="63.17" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.ApprovedPaymentsRow] (expanded macros 0) (83,568 μs, 0.21%)</title><rect x="684.1" y="917" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="687.07" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 1613) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (12,885 μs, 0.03%)</title><rect x="589.7" y="837" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="592.68" 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>shapeless.ops.hlist.IsHCons[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type H = H (20,967 μs, 0.05%)</title><rect x="197.0" y="1013" width="0.6" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="199.99" 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>doobie.util.Get[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,392 μs, 0.05%)</title><rect x="468.5" y="933" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="471.50" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 21498) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (12,773 μs, 0.03%)</title><rect x="793.7" y="389" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="796.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: Option[Int] :: java.util.UUID :: String :: Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (11,274 μs, 0.03%)</title><rect x="722.5" y="997" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="725.53" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29606) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (167,626 μs, 0.41%)</title><rect x="506.9" y="741" width="4.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="509.86" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (28,352 μs, 0.07%)</title><rect x="1163.0" y="821" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1166.03" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,985 μs, 0.01%)</title><rect x="353.2" y="533" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="356.18" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (14,287 μs, 0.04%)</title><rect x="96.2" y="581" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="99.18" 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>doobie.util.Get[Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (5,324 μs, 0.01%)</title><rect x="180.9" y="293" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="183.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>doobie.util.param.Param[String :: shapeless.HNil] (expanded macros 0) (12,129 μs, 0.03%)</title><rect x="1011.2" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1014.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 14925) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (82,157 μs, 0.20%)</title><rect x="379.2" y="997" width="2.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="382.20" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (3,518 μs, 0.01%)</title><rect x="671.2" y="693" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="674.22" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,711 μs, 0.02%)</title><rect x="64.5" y="869" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="67.55" 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>doobie.util.Read[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (156,223 μs, 0.39%)</title><rect x="223.1" y="789" width="4.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="226.06" 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>shapeless.Lazy[doobie.util.Write[java.util.UUID :: BigDecimal :: com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value] :: Option[Int] :: shapeless.HNil]] (id 19796) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (59,320 μs, 0.15%)</title><rect x="940.1" y="1029" width="1.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="943.10" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: String :: shapeless.HNil] (expanded macros 0) (6,992 μs, 0.02%)</title><rect x="278.2" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="281.18" 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>doobie.util.Put[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (77,721 μs, 0.19%)</title><rect x="1077.5" y="869" width="2.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1080.46" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (11,802 μs, 0.03%)</title><rect x="543.3" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="546.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: Int :: shapeless.HNil] (expanded macros 0) (57,998 μs, 0.14%)</title><rect x="619.1" y="981" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="622.13" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21792) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (74,001 μs, 0.18%)</title><rect x="809.3" y="453" width="2.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="812.33" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (6,345 μs, 0.02%)</title><rect x="264.3" y="853" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="267.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>reflect.runtime.universe.TypeTag[Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (7,224 μs, 0.02%)</title><rect x="129.8" y="405" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="132.76" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (8,761 μs, 0.02%)</title><rect x="723.4" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="726.44" 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> type T = T} (expanded macros 0) (3,798 μs, 0.01%)</title><rect x="644.0" y="997" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="646.96" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: com.apolloagriculture.pikachu.models.Task :: com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (921,553 μs, 2.27%)</title><rect x="105.5" y="981" width="26.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="108.51" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus]]] (id 16103) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,792 μs, 0.02%)</title><rect x="399.2" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="402.22" 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>doobie.util.Get[String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,168 μs, 0.02%)</title><rect x="261.4" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="264.39" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,470 μs, 0.01%)</title><rect x="276.3" y="821" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="279.29" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Option[String]] (expanded macros 0) (8,689 μs, 0.02%)</title><rect x="981.0" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="983.96" 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>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (17,529 μs, 0.04%)</title><rect x="503.1" y="901" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="506.09" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (4,118 μs, 0.01%)</title><rect x="372.1" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="375.12" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (8,144 μs, 0.02%)</title><rect x="288.6" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="291.65" 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>doobie.util.Get[Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (3,921 μs, 0.01%)</title><rect x="355.0" y="325" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="357.97" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (11,387 μs, 0.03%)</title><rect x="207.6" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="210.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>reflect.runtime.universe.TypeTag[Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,137 μs, 0.01%)</title><rect x="474.4" y="597" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="477.40" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,812 μs, 0.01%)</title><rect x="245.5" y="629" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="248.51" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Boolean :: org.joda.time.DateTime :: shapeless.HNil]] (id 5663) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (30,801 μs, 0.08%)</title><rect x="253.9" y="901" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="256.87" 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>doobie.util.Get[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (6,648 μs, 0.02%)</title><rect x="842.3" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="845.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>doobie.util.Get[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (7,831 μs, 0.02%)</title><rect x="510.1" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="513.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: String :: Option[Double] :: shapeless.HNil] (expanded macros 0) (4,439 μs, 0.01%)</title><rect x="645.5" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="648.51" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (19,789 μs, 0.05%)</title><rect x="836.4" y="741" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="839.38" 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>doobie.util.Read[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (60,325 μs, 0.15%)</title><rect x="398.8" y="917" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="401.76" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,119 μs, 0.01%)</title><rect x="397.1" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="400.13" 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>doobie.util.Read[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (60,712 μs, 0.15%)</title><rect x="393.4" y="917" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="396.43" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Write[String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (134,332 μs, 0.33%)</title><rect x="935.7" y="885" width="3.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="938.74" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (4,047 μs, 0.01%)</title><rect x="167.5" y="197" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="170.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>doobie.util.Read[Double :: Double :: shapeless.HNil] (expanded macros 0) (14,927 μs, 0.04%)</title><rect x="381.0" y="757" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="384.02" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (6,703 μs, 0.02%)</title><rect x="287.4" y="645" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="290.38" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (38,907 μs, 0.10%)</title><rect x="1126.6" y="581" width="1.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1129.63" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (1,247,238 μs, 3.08%)</title><rect x="1114.8" y="709" width="36.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1117.79" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 25852) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,997 μs, 0.02%)</title><rect x="721.7" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="724.74" 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>doobie.util.Get[Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (26,633 μs, 0.07%)</title><rect x="796.2" y="997" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="799.15" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,302 μs, 0.01%)</title><rect x="560.2" y="469" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="563.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (40,442 μs, 0.10%)</title><rect x="235.5" y="629" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="238.53" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (8,323 μs, 0.02%)</title><rect x="215.1" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="218.13" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 28549) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,095 μs, 0.02%)</title><rect x="547.0" y="805" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="550.01" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 13292) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,894 μs, 0.02%)</title><rect x="676.2" y="741" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="679.21" 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>shapeless.Lazy[doobie.util.Read[Int :: shapeless.HNil]] (id 14672) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,615 μs, 0.01%)</title><rect x="137.3" y="997" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="140.26" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (8,577 μs, 0.02%)</title><rect x="460.0" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="462.95" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (12,325 μs, 0.03%)</title><rect x="78.7" y="821" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="81.67" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (7,096 μs, 0.02%)</title><rect x="822.9" y="597" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="825.92" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent] (expanded macros 0) (7,269 μs, 0.02%)</title><rect x="154.5" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="157.48" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (15,367 μs, 0.04%)</title><rect x="139.6" y="725" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="142.59" 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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 15348) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,491 μs, 0.02%)</title><rect x="386.8" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="389.79" 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>reflect.runtime.universe.TypeTag[String :: Long :: Long :: Boolean :: shapeless.HNil] (expanded macros 1) (4,174 μs, 0.01%)</title><rect x="948.6" y="933" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="951.64" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,226 μs, 0.01%)</title><rect x="328.7" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="331.70" 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>doobie.util.Put[java.util.UUID :: shapeless.HNil] (expanded macros 0) (6,455 μs, 0.02%)</title><rect x="946.9" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="949.89" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (14,275 μs, 0.04%)</title><rect x="550.3" y="917" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="553.26" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.Farmer] (expanded macros 0) (26,189 μs, 0.06%)</title><rect x="68.7" y="997" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="71.68" 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>reflect.runtime.universe.TypeTag[String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 1) (4,189 μs, 0.01%)</title><rect x="629.0" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="631.96" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,113 μs, 0.01%)</title><rect x="843.5" y="373" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="846.55" 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>doobie.util.Get[org.joda.time.DateTime :: Option[String] :: Option[String] :: Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil] (expanded macros 0) (9,537 μs, 0.02%)</title><rect x="301.1" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="304.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 8939) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (105,694 μs, 0.26%)</title><rect x="328.2" y="1029" width="3.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="331.15" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (3,479 μs, 0.01%)</title><rect x="1010.9" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1013.86" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 22154) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (18,308 μs, 0.05%)</title><rect x="826.6" y="357" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="829.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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 17512) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (3,878 μs, 0.01%)</title><rect x="194.0" y="837" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="197.01" 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>shapeless.Lazy[doobie.util.Read[Int :: org.joda.time.DateTime :: shapeless.HNil]] (id 10296) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (32,624 μs, 0.08%)</title><rect x="273.0" y="997" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="275.99" 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>reflect.runtime.universe.TypeTag[Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (26,949 μs, 0.07%)</title><rect x="1129.7" y="533" width="0.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1132.73" 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>reflect.runtime.universe.TypeTag[(Option[BigDecimal], Option[BigDecimal], Option[BigDecimal])] (expanded macros 1) (4,968 μs, 0.01%)</title><rect x="54.2" y="1013" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="57.23" 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>doobie.util.Get[String :: org.joda.time.DateTime :: org.joda.time.DateTime :: java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 0) (8,267 μs, 0.02%)</title><rect x="731.2" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="734.19" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (10,648 μs, 0.03%)</title><rect x="669.0" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="672.03" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,272 μs, 0.01%)</title><rect x="653.7" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="656.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.AgentResult]{type Repr = L} (id 1796) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,924 μs, 0.01%)</title><rect x="584.8" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="587.84" 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>doobie.util.Read[Option[Double]] (expanded macros 0) (9,703 μs, 0.02%)</title><rect x="810.9" y="373" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="813.91" 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>shapeless.Lazy[doobie.util.Read[scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 2532) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (40,814 μs, 0.10%)</title><rect x="602.5" y="965" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="605.49" 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>doobie.util.Get[Option[scala.math.BigDecimal] :: shapeless.HNil] (expanded macros 0) (6,447 μs, 0.02%)</title><rect x="55.9" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="58.92" 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>doobie.util.param.Param[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (8,428 μs, 0.02%)</title><rect x="1002.8" y="901" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1005.85" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,533 μs, 0.01%)</title><rect x="329.1" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="332.06" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (4,449 μs, 0.01%)</title><rect x="393.0" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="395.98" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,140 μs, 0.01%)</title><rect x="685.7" y="757" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="688.69" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (12,358 μs, 0.03%)</title><rect x="144.8" y="885" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="147.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>doobie.util.param.Param[Int :: String :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (16,055 μs, 0.04%)</title><rect x="965.7" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="968.73" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Repr = G} (expanded macros 3) (3,977 μs, 0.01%)</title><rect x="690.2" y="773" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="693.24" 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>doobie.util.Get[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (6,414 μs, 0.02%)</title><rect x="776.7" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="779.72" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (5,415 μs, 0.01%)</title><rect x="327.9" y="917" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="330.91" 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>reflect.runtime.universe.TypeTag[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (3,893 μs, 0.01%)</title><rect x="545.0" y="437" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="547.96" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (224,855 μs, 0.55%)</title><rect x="853.7" y="693" width="6.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="856.68" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (14,786 μs, 0.04%)</title><rect x="504.5" y="837" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="507.47" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (13,177 μs, 0.03%)</title><rect x="780.9" y="949" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="783.91" 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>shapeless.Lazy[doobie.util.Read[Double :: Boolean :: shapeless.HNil]] (id 2436) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (35,525 μs, 0.09%)</title><rect x="580.8" y="933" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="583.82" 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>doobie.util.Get[Int :: String :: String :: String :: String :: String :: shapeless.HNil] (expanded macros 0) (4,892 μs, 0.01%)</title><rect x="693.6" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="696.59" 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>doobie.util.Get[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,127 μs, 0.01%)</title><rect x="389.0" y="805" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="392.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>reflect.runtime.universe.TypeTag[Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,600 μs, 0.02%)</title><rect x="871.9" y="565" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="874.88" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,064 μs, 0.01%)</title><rect x="559.8" y="501" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="562.79" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (32,261 μs, 0.08%)</title><rect x="263.1" y="789" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="266.12" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (9,195 μs, 0.02%)</title><rect x="235.1" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="238.13" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 10896) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,530 μs, 0.01%)</title><rect x="643.0" y="677" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="646.03" 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>doobie.util.Read[Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (16,848 μs, 0.04%)</title><rect x="369.3" y="341" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="372.26" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil]] (id 26839) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,750 μs, 0.04%)</title><rect x="86.6" y="357" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="89.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>doobie.util.Get[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (5,908 μs, 0.01%)</title><rect x="382.6" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="385.63" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 5096) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (18,713 μs, 0.05%)</title><rect x="271.1" y="741" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="274.07" 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>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29074) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (183,112 μs, 0.45%)</title><rect x="483.1" y="805" width="5.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="486.08" 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>doobie.util.Get[Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (9,120 μs, 0.02%)</title><rect x="598.3" y="901" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="601.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.queries.AdminReviewQueries.LoanEventDetails]{type Repr = G} (id 271) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,851 μs, 0.01%)</title><rect x="571.4" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="574.45" 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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (7,947 μs, 0.02%)</title><rect x="907.7" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="910.65" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.SubTask]{type Repr = L} (id 28736) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (7,886 μs, 0.02%)</title><rect x="452.2" y="1013" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="455.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (22,034 μs, 0.05%)</title><rect x="91.6" y="773" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="94.59" 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>doobie.util.Read[Option[String]] (expanded macros 0) (9,138 μs, 0.02%)</title><rect x="318.3" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="321.34" 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>doobie.util.Get[String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,175 μs, 0.02%)</title><rect x="685.0" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="687.97" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (4,929 μs, 0.01%)</title><rect x="643.2" y="741" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="646.20" 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>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json]]] (id 23659) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,723 μs, 0.02%)</title><rect x="907.6" y="453" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="910.61" 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>doobie.util.Read[String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (172,270 μs, 0.43%)</title><rect x="211.7" y="853" width="5.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="214.68" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (4,394 μs, 0.01%)</title><rect x="671.4" y="677" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="674.43" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Meta[shapeless.HNil] (expanded macros 0) (4,641 μs, 0.01%)</title><rect x="963.0" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="966.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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 15515) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,961 μs, 0.02%)</title><rect x="389.4" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="392.45" 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>shapeless.Lazy[doobie.util.Read[Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28228) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (383,918 μs, 0.95%)</title><rect x="520.3" y="901" width="11.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="523.25" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 28417) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,979 μs, 0.02%)</title><rect x="529.9" y="389" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="532.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.queries.InputPackageQueryBuilders.InputPackage]{type Repr = L} (id 13185) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,458 μs, 0.01%)</title><rect x="648.7" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="651.70" 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>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29327) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (186,910 μs, 0.46%)</title><rect x="494.2" y="805" width="5.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="497.17" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.Authority :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (116,525 μs, 0.29%)</title><rect x="573.7" y="853" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="576.73" 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>doobie.util.param.Param[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (5,928 μs, 0.01%)</title><rect x="1008.0" y="1029" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1011.04" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,140 μs, 0.01%)</title><rect x="316.6" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="319.64" 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>doobie.util.Get[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,155 μs, 0.03%)</title><rect x="905.0" y="453" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="907.98" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.CallLog]{type Repr = G} (id 10283) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,883 μs, 0.01%)</title><rect x="272.5" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="275.55" 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>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (4,723 μs, 0.01%)</title><rect x="720.4" y="821" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="723.35" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23882) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (241,657 μs, 0.60%)</title><rect x="917.4" y="709" width="7.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="920.41" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,336 μs, 0.01%)</title><rect x="891.1" y="293" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="894.14" 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>reflect.runtime.universe.TypeTag[String :: String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,968 μs, 0.01%)</title><rect x="183.3" y="853" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="186.31" 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>shapeless.Generic[List[String]]{type Repr = L} (expanded macros 3) (4,919 μs, 0.01%)</title><rect x="536.2" y="853" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="539.17" 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>doobie.util.Get[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (6,856 μs, 0.02%)</title><rect x="395.3" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="398.33" 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>doobie.util.Read[Option[String]] (expanded macros 0) (11,916 μs, 0.03%)</title><rect x="589.7" y="821" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="592.71" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (10,598 μs, 0.03%)</title><rect x="244.7" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="247.74" 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>doobie.util.param.Param[com.apolloagriculture.pikachu.models.ScheduledCallStatus.Value :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,056 μs, 0.02%)</title><rect x="968.0" y="1029" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="971.02" 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>doobie.util.Read[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: Option[io.circe.Json] :: shapeless.HNil] (expanded macros 0) (138,926 μs, 0.34%)</title><rect x="566.6" y="885" width="4.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="569.65" 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>doobie.util.param.Param[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (3,286,827 μs, 8.11%)</title><rect x="1056.5" y="981" width="95.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1059.54" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doobie.util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.Product :: Int :: shapeless.HNil]] (id 14545) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (115,145 μs, 0.28%)</title><rect x="137.0" y="1029" width="3.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="139.96" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,125 μs, 0.01%)</title><rect x="276.1" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="279.06" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Farmer]{type Repr = L} (id 27037) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,897 μs, 0.01%)</title><rect x="69.0" y="981" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="72.01" 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>doobie.util.Read[Int :: String :: Double :: Double :: Int :: shapeless.HNil] (expanded macros 0) (41,542 μs, 0.10%)</title><rect x="48.6" y="1013" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="51.63" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13272) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (53,279 μs, 0.13%)</title><rect x="674.9" y="805" width="1.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="677.90" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,956 μs, 0.01%)</title><rect x="340.6" y="517" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="343.55" 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>shapeless.Lazy[doobie.util.Read[String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: String :: String :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 20467) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (78,483 μs, 0.19%)</title><rect x="448.9" y="997" width="2.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="451.91" 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>reflect.runtime.universe.TypeTag[String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 1) (3,752 μs, 0.01%)</title><rect x="630.3" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="633.34" 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>doobie.util.param.Param[Option[java.util.UUID] :: shapeless.HNil] (expanded macros 0) (12,181 μs, 0.03%)</title><rect x="1023.9" y="997" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1026.91" 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>doobie.util.Put[java.util.UUID :: scala.math.BigDecimal :: com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (6,434 μs, 0.02%)</title><rect x="940.2" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="943.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (8,969 μs, 0.02%)</title><rect x="306.2" y="917" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="309.20" 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> type T = T} (expanded macros 0) (3,497 μs, 0.01%)</title><rect x="44.3" y="997" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="47.25" 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>shapeless.Lazy[doobie.util.Read[String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1691) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (168,959 μs, 0.42%)</title><rect x="591.7" y="965" width="5.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="594.73" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: String :: Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (8,168 μs, 0.02%)</title><rect x="290.6" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="293.55" 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>doobie.util.Read[Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (111,277 μs, 0.27%)</title><rect x="178.8" y="533" width="3.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="181.77" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24316) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (32,642 μs, 0.08%)</title><rect x="464.3" y="517" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="467.32" 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>doobie.util.Read[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (134,162 μs, 0.33%)</title><rect x="650.1" y="1013" width="3.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="653.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,828 μs, 0.01%)</title><rect x="179.9" y="405" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="182.91" 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>shapeless.Lazy[doobie.util.Read[String :: java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6324) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (26,086 μs, 0.06%)</title><rect x="630.7" y="933" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="633.73" 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>shapeless.Lazy[doobie.util.Read[Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 969) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (116,151 μs, 0.29%)</title><rect x="243.6" y="773" width="3.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="246.57" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (4,997 μs, 0.01%)</title><rect x="118.5" y="309" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="121.52" 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>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (16,671 μs, 0.04%)</title><rect x="457.9" y="901" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="460.90" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: shapeless.HNil] (expanded macros 0) (9,065 μs, 0.02%)</title><rect x="745.2" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="748.17" 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>doobie.util.Get[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (9,722 μs, 0.02%)</title><rect x="774.9" y="517" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="777.87" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24299) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (53,695 μs, 0.13%)</title><rect x="464.0" y="549" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="467.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[com.apolloagriculture.pikachu.models.ReviewStatus :: Int :: shapeless.HNil] (expanded macros 0) (6,188 μs, 0.02%)</title><rect x="1009.0" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1012.01" 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>doobie.util.Get[Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (20,246 μs, 0.05%)</title><rect x="362.3" y="805" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="365.29" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (15,154 μs, 0.04%)</title><rect x="821.7" y="677" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="824.69" 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> type T = T} (expanded macros 0) (3,643 μs, 0.01%)</title><rect x="304.8" y="997" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="307.75" 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>shapeless.Lazy[doobie.util.Read[Int :: Int :: com.apolloagriculture.pikachu.models.SubTaskType :: String :: shapeless.HNil]] (id 30395) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (80,549 μs, 0.20%)</title><rect x="743.8" y="1029" width="2.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="746.75" 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>doobie.util.Get[java.util.UUID :: java.util.UUID :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (6,668 μs, 0.02%)</title><rect x="616.2" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="619.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[String :: Option[Int] :: Option[java.util.UUID] :: shapeless.HNil] (expanded macros 0) (5,012 μs, 0.01%)</title><rect x="1023.5" y="1013" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1026.47" 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>doobie.util.Put[org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (5,967 μs, 0.01%)</title><rect x="1177.0" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1180.02" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 29166) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,807 μs, 0.02%)</title><rect x="488.0" y="517" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="490.98" 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>shapeless.Lazy[doobie.util.Read[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21136) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (123,548 μs, 0.30%)</title><rect x="774.8" y="549" width="3.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="777.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4567) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (202,134 μs, 0.50%)</title><rect x="176.2" y="741" width="5.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="179.18" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Farmer]{type Repr = L} (id 27058) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,748 μs, 0.01%)</title><rect x="102.2" y="949" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="105.25" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Boolean :: shapeless.HNil]] (id 3374) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (20,043 μs, 0.05%)</title><rect x="609.8" y="901" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="612.78" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (16,684 μs, 0.04%)</title><rect x="503.8" y="869" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="506.82" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.Farmer :: com.apolloagriculture.pikachu.models.PhoneNumber :: com.apolloagriculture.pikachu.models.Task :: com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (1,054,423 μs, 2.60%)</title><rect x="101.6" y="1013" width="30.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="104.64" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (288,509 μs, 0.71%)</title><rect x="503.7" y="885" width="8.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="506.73" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (4,722 μs, 0.01%)</title><rect x="442.4" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="445.44" 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>shapeless.Lazy[doobie.util.Read[Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1357) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (109,377 μs, 0.27%)</title><rect x="213.4" y="773" width="3.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="216.43" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 1) (5,774 μs, 0.01%)</title><rect x="106.9" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="109.86" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (43,562 μs, 0.11%)</title><rect x="1148.8" y="117" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1151.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>reflect.runtime.universe.TypeTag[String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,666 μs, 0.03%)</title><rect x="537.8" y="821" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="540.76" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[java.util.UUID :: shapeless.HNil] (expanded macros 0) (6,503 μs, 0.02%)</title><rect x="1152.6" y="1013" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1155.58" 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>doobie.util.Get[Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (4,438 μs, 0.01%)</title><rect x="652.9" y="709" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="655.89" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (10,194 μs, 0.03%)</title><rect x="507.9" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="510.88" 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>doobie.util.Read[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (54,236 μs, 0.13%)</title><rect x="529.0" y="469" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="531.96" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.queries.AgentResult] (expanded macros 1) (5,490 μs, 0.01%)</title><rect x="584.3" y="1013" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="587.27" 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>doobie.util.Read[Option[io.circe.Json]] (expanded macros 0) (8,837 μs, 0.02%)</title><rect x="100.4" y="437" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="103.41" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (3,442 μs, 0.01%)</title><rect x="752.5" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="755.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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (6,381 μs, 0.02%)</title><rect x="1022.4" y="949" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,764 μs, 0.01%)</title><rect x="561.5" y="357" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="564.49" 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>reflect.runtime.universe.TypeTag[Int :: Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,528 μs, 0.01%)</title><rect x="274.9" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="277.86" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[String]] (expanded macros 0) (6,792 μs, 0.02%)</title><rect x="607.4" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="610.43" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6333) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (18,827 μs, 0.05%)</title><rect x="630.9" y="901" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="633.94" 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>doobie.util.Get[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (27,373 μs, 0.07%)</title><rect x="534.2" y="933" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="537.16" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 18951) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,040 μs, 0.02%)</title><rect x="187.6" y="933" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="190.65" 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>shapeless.Generic[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,930 μs, 0.01%)</title><rect x="232.9" y="789" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="235.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>shapeless.Lazy[doobie.util.Read[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22254) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (468,105 μs, 1.16%)</title><rect x="831.3" y="965" width="13.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="834.27" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (4,143 μs, 0.01%)</title><rect x="657.7" y="677" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="660.67" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 13729) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (70,872 μs, 0.17%)</title><rect x="353.4" y="549" width="2.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="356.41" 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>doobie.util.Read[Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil] (expanded macros 0) (90,052 μs, 0.22%)</title><rect x="338.2" y="725" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="341.21" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 1) (3,901 μs, 0.01%)</title><rect x="598.8" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="601.81" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: Int :: shapeless.HNil]] (id 12828) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (21,456 μs, 0.05%)</title><rect x="646.7" y="1029" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="649.69" 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>doobie.util.Get[Option[java.util.UUID]] (expanded macros 0) (7,033 μs, 0.02%)</title><rect x="748.0" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="751.01" 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>doobie.util.Get[Int :: Option[Int] :: Int :: String :: shapeless.HNil] (expanded macros 0) (7,102 μs, 0.02%)</title><rect x="705.1" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="708.14" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19509) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,957 μs, 0.02%)</title><rect x="444.6" y="773" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="447.58" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 1) (3,754 μs, 0.01%)</title><rect x="134.7" y="789" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="137.70" 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>doobie.util.Get[Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (10,843 μs, 0.03%)</title><rect x="176.7" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="179.71" 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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (8,362 μs, 0.02%)</title><rect x="876.3" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="879.32" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,205 μs, 0.02%)</title><rect x="259.0" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="261.97" 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>doobie.util.Read[String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (42,752 μs, 0.11%)</title><rect x="183.5" y="853" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="186.50" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4176) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (148,530 μs, 0.37%)</title><rect x="163.6" y="645" width="4.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="166.64" 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>doobie.util.Read[Boolean :: shapeless.HNil] (expanded macros 0) (11,985 μs, 0.03%)</title><rect x="608.1" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="611.08" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (9,702 μs, 0.02%)</title><rect x="458.7" y="853" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="461.69" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1803) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (151,374 μs, 0.37%)</title><rect x="596.8" y="1029" width="4.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="599.79" 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>doobie.util.Read[Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (32,202 μs, 0.08%)</title><rect x="155.4" y="821" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="158.45" 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>doobie.util.Read[Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (191,440 μs, 0.47%)</title><rect x="350.0" y="757" width="5.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="352.97" 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>reflect.runtime.universe.TypeTag[Float :: Float :: String :: Long :: Long :: Boolean :: shapeless.HNil] (expanded macros 1) (4,958 μs, 0.01%)</title><rect x="948.0" y="965" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="951.03" 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>doobie.util.Get[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (7,656 μs, 0.02%)</title><rect x="385.2" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="388.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (12,011 μs, 0.03%)</title><rect x="542.8" y="581" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="545.80" 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>reflect.runtime.universe.TypeTag[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (10,729 μs, 0.03%)</title><rect x="222.5" y="789" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="225.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>doobie.util.Get[Option[Double] :: shapeless.HNil] (expanded macros 0) (6,759 μs, 0.02%)</title><rect x="311.8" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="314.78" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 5066) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,753 μs, 0.02%)</title><rect x="271.6" y="805" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="274.63" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: shapeless.HNil]] (id 11521) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,695 μs, 0.04%)</title><rect x="45.9" y="1029" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="48.92" 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>doobie.util.Put[Double :: Int :: Int :: shapeless.HNil] (expanded macros 0) (3,946 μs, 0.01%)</title><rect x="952.2" y="1013" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="955.20" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Agent]{type Repr = G} (id 685) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (8,663 μs, 0.02%)</title><rect x="198.4" y="1029" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="201.40" 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>doobie.util.param.Param[java.util.UUID] (expanded macros 0) (55,405 μs, 0.14%)</title><rect x="1167.6" y="1029" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1170.56" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13263) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (63,149 μs, 0.16%)</title><rect x="674.6" y="837" width="1.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="677.61" 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>shapeless.Lazy[doobie.util.Read[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24248) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (129,644 μs, 0.32%)</title><rect x="461.9" y="709" width="3.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="464.86" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,536 μs, 0.02%)</title><rect x="261.7" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="264.74" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 2621) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (60,829 μs, 0.15%)</title><rect x="603.7" y="1029" width="1.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="606.67" 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>doobie.util.Put[String :: Int :: String :: shapeless.HNil] (expanded macros 0) (4,185 μs, 0.01%)</title><rect x="999.5" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1002.48" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title> type T = T} (expanded macros 0) (7,099 μs, 0.02%)</title><rect x="280.3" y="997" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="283.25" 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>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 22792) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (19,223 μs, 0.05%)</title><rect x="858.7" y="357" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="861.66" 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>doobie.util.param.Param[io.circe.Json :: String :: Int :: shapeless.HNil] (expanded macros 0) (12,346 μs, 0.03%)</title><rect x="1009.9" y="1045" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1012.92" 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>scala.reflect.api.Universe#TypeTag[shapeless.HNil] (expanded macros 0) (9,697 μs, 0.02%)</title><rect x="1173.3" y="981" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1176.27" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,880 μs, 0.01%)</title><rect x="810.7" y="293" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="813.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>doobie.util.Get[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (5,995 μs, 0.01%)</title><rect x="379.5" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="382.49" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (5,407 μs, 0.01%)</title><rect x="1044.0" y="997" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1047.04" 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>doobie.util.Read[com.apolloagriculture.pikachu.queries.AgrodealerQueries.AgrodealerCheckoutInfo] (expanded macros 0) (385,302 μs, 0.95%)</title><rect x="157.1" y="981" width="11.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="160.06" 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>doobie.util.Get[Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (12,481 μs, 0.03%)</title><rect x="351.8" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="354.78" 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>doobie.util.Get[Option[String]] (expanded macros 0) (8,994 μs, 0.02%)</title><rect x="689.6" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="692.57" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Int :: String :: String :: shapeless.HNil]{type Repr = G} (expanded macros 3) (3,527 μs, 0.01%)</title><rect x="625.6" y="901" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="628.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: shapeless.HNil] (expanded macros 0) (20,243 μs, 0.05%)</title><rect x="619.8" y="917" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="622.81" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 29047) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,998 μs, 0.02%)</title><rect x="488.5" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="491.46" 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>doobie.util.Get[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: shapeless.HNil] (expanded macros 0) (3,696 μs, 0.01%)</title><rect x="61.1" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="64.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (14,596 μs, 0.04%)</title><rect x="870.0" y="661" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="873.02" 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>shapeless.Lazy[doobie.util.Read[Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil]] (id 9307) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (112,879 μs, 0.28%)</title><rect x="435.1" y="965" width="3.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="438.14" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil]] (id 24974) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (135,536 μs, 0.33%)</title><rect x="337.2" y="805" width="4.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="340.22" 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>doobie.util.Get[Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (5,259 μs, 0.01%)</title><rect x="184.2" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="187.18" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (5,421 μs, 0.01%)</title><rect x="322.1" y="917" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="325.10" 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>doobie.util.Get[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (26,437 μs, 0.07%)</title><rect x="515.7" y="997" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="518.70" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 27123) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,005 μs, 0.02%)</title><rect x="104.5" y="805" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="107.51" 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>doobie.util.param.Param[Option[Double] :: Int :: shapeless.HNil] (expanded macros 0) (16,770 μs, 0.04%)</title><rect x="978.2" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="981.25" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 18195) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (70,291 μs, 0.17%)</title><rect x="431.0" y="741" width="2.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="433.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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (9,109 μs, 0.02%)</title><rect x="505.2" y="789" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="508.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,919 μs, 0.02%)</title><rect x="325.2" y="997" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="328.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (17,540 μs, 0.04%)</title><rect x="480.6" y="901" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="483.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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 14853) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,498 μs, 0.03%)</title><rect x="378.3" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="381.34" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: com.apolloagriculture.pikachu.models.PhoneNumber :: org.joda.time.DateTime :: Int :: shapeless.HNil]] (id 10929) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (49,818 μs, 0.12%)</title><rect x="633.3" y="1029" width="1.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="636.29" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15816) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (23,158 μs, 0.06%)</title><rect x="394.4" y="805" width="0.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="397.45" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (10,942 μs, 0.03%)</title><rect x="189.7" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="192.65" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent]] (id 4318) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (66,152 μs, 0.16%)</title><rect x="168.4" y="965" width="2.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="171.43" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (4,938 μs, 0.01%)</title><rect x="1041.5" y="869" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1044.51" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: String :: shapeless.HNil] (expanded macros 0) (9,578 μs, 0.02%)</title><rect x="744.8" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="747.76" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,097 μs, 0.02%)</title><rect x="283.6" y="853" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="286.57" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (7,135 μs, 0.02%)</title><rect x="577.2" y="837" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="580.15" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (13,517 μs, 0.03%)</title><rect x="854.4" y="645" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="857.44" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (15,632 μs, 0.04%)</title><rect x="853.1" y="709" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="856.13" 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>reflect.runtime.universe.TypeTag[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,008 μs, 0.01%)</title><rect x="905.8" y="373" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="908.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (14,480 μs, 0.04%)</title><rect x="1144.4" y="261" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1147.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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 14746) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (102,562 μs, 0.25%)</title><rect x="375.8" y="1029" width="3.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="378.85" 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>doobie.util.param.Param[Long :: shapeless.HNil] (expanded macros 0) (15,347 μs, 0.04%)</title><rect x="1013.9" y="933" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1016.95" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1836) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (95,972 μs, 0.24%)</title><rect x="598.2" y="933" width="2.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="601.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (5,288 μs, 0.01%)</title><rect x="630.5" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="633.55" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (4,319 μs, 0.01%)</title><rect x="259.7" y="709" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="262.71" 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>doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (380,068 μs, 0.94%)</title><rect x="478.0" y="1013" width="11.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="481.03" 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>doobie.util.Get[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (9,027 μs, 0.02%)</title><rect x="673.0" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="676.04" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (468,210 μs, 1.16%)</title><rect x="799.2" y="917" width="13.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="802.23" 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>doobie.util.Read[Double :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (21,962 μs, 0.05%)</title><rect x="579.0" y="949" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="581.95" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (3,529 μs, 0.01%)</title><rect x="610.8" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="613.81" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (145,264 μs, 0.36%)</title><rect x="903.7" y="565" width="4.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="906.70" 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>doobie.util.Meta[Int] (expanded macros 0) (5,553 μs, 0.01%)</title><rect x="965.1" y="997" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="968.12" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.Agent] (expanded macros 1) (9,528 μs, 0.02%)</title><rect x="195.0" y="1013" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="197.98" 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>reflect.runtime.universe.TypeTag[Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,582 μs, 0.02%)</title><rect x="98.1" y="437" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="101.09" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (7,176 μs, 0.02%)</title><rect x="663.4" y="821" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="666.42" 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>doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (189,675 μs, 0.47%)</title><rect x="525.5" y="693" width="5.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="528.46" 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>shapeless.Generic[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,737 μs, 0.01%)</title><rect x="921.5" y="437" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="924.46" 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> type T = T} (expanded macros 0) (5,602 μs, 0.01%)</title><rect x="564.1" y="997" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="567.14" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 16459) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (445,909 μs, 1.10%)</title><rect x="357.2" y="997" width="13.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="360.18" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 26810) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (90,581 μs, 0.22%)</title><rect x="84.9" y="517" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="87.93" 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>doobie.util.Get[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (6,706 μs, 0.02%)</title><rect x="890.5" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="893.50" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 30063) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (67,427 μs, 0.17%)</title><rect x="560.1" y="517" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="563.08" 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>shapeless.Lazy[doobie.util.Get[String]] (id 9943) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (3,747 μs, 0.01%)</title><rect x="304.6" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="307.64" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.MessageId :: String :: shapeless.HNil] (expanded macros 0) (5,935 μs, 0.01%)</title><rect x="403.4" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="406.42" 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>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (5,415 μs, 0.01%)</title><rect x="312.5" y="853" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="315.53" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (10,540 μs, 0.03%)</title><rect x="106.8" y="901" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="109.79" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29521) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (350,695 μs, 0.87%)</title><rect x="502.2" y="965" width="10.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="505.22" 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>doobie.util.Read[Int :: Int :: shapeless.HNil] (expanded macros 0) (20,065 μs, 0.05%)</title><rect x="646.7" y="1013" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="649.73" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = G} (expanded macros 3) (4,698 μs, 0.01%)</title><rect x="245.6" y="645" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="248.62" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (29,454 μs, 0.07%)</title><rect x="354.5" y="405" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="357.55" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.TaskResult]{type Repr = L} (id 21585) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (11,062 μs, 0.03%)</title><rect x="757.1" y="1013" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="760.13" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: shapeless.HNil]] (id 23995) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (32,711 μs, 0.08%)</title><rect x="922.4" y="389" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="925.41" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,006 μs, 0.01%)</title><rect x="603.3" y="821" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="606.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>doobie.util.Read[Double :: Boolean :: shapeless.HNil] (expanded macros 0) (15,253 μs, 0.04%)</title><rect x="579.1" y="917" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="582.12" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.AgentQueries.Ward]{type Repr = G} (id 2237) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,852 μs, 0.01%)</title><rect x="582.5" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="585.54" 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>doobie.util.Get[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (9,170 μs, 0.02%)</title><rect x="775.3" y="485" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="778.28" 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>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json]]] (id 222) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,063 μs, 0.03%)</title><rect x="570.0" y="613" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="572.99" 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>shapeless.Lazy[doobie.util.Read[Double :: Option[io.circe.Json] :: shapeless.HNil]] (id 205) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (34,342 μs, 0.08%)</title><rect x="569.5" y="677" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="572.49" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Boolean :: String :: String :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,124 μs, 0.01%)</title><rect x="446.9" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="449.89" 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>doobie.util.Put[Double :: Int :: shapeless.HNil] (expanded macros 0) (4,117 μs, 0.01%)</title><rect x="1014.6" y="1013" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1017.61" 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>shapeless.Generic[List[String]]{type Repr = L} (expanded macros 3) (4,067 μs, 0.01%)</title><rect x="92.4" y="725" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="95.44" 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>doobie.util.Get[org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (5,808 μs, 0.01%)</title><rect x="273.4" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="276.40" 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>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (5,069 μs, 0.01%)</title><rect x="907.2" y="341" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="910.16" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.IdTranscription] (expanded macros 0) (358,800 μs, 0.89%)</title><rect x="331.2" y="1045" width="10.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="334.23" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (197,022 μs, 0.49%)</title><rect x="113.1" y="693" width="5.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="116.08" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 26518) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,168 μs, 0.02%)</title><rect x="73.8" y="805" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="76.77" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,459 μs, 0.01%)</title><rect x="64.7" y="853" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="67.73" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (4,174 μs, 0.01%)</title><rect x="607.0" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="609.95" 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>doobie.util.param.Param[Double :: Int :: shapeless.HNil] (expanded macros 0) (11,636 μs, 0.03%)</title><rect x="954.5" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="957.53" 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>doobie.util.Read[Option[String] :: Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (336,730 μs, 0.83%)</title><rect x="158.5" y="917" width="9.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="161.47" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Farmer]{type Repr = L} (id 8282) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,937 μs, 0.01%)</title><rect x="314.4" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="317.42" 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>shapeless.Lazy[doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21329) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (411,468 μs, 1.02%)</title><rect x="783.3" y="901" width="12.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="786.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (8,727 μs, 0.02%)</title><rect x="660.9" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="663.94" 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>doobie.util.Get[Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (7,391 μs, 0.02%)</title><rect x="117.6" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[String :: BigDecimal :: Int :: com.apolloagriculture.pikachu.models.PaymentReasonType :: shapeless.HNil] (expanded macros 0) (29,337 μs, 0.07%)</title><rect x="982.5" y="1045" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="985.51" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (76,320 μs, 0.19%)</title><rect x="103.2" y="917" width="2.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="106.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 20866) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (3,696 μs, 0.01%)</title><rect x="43.8" y="965" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="46.83" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,455 μs, 0.01%)</title><rect x="64.6" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="67.60" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,149 μs, 0.01%)</title><rect x="487.7" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="490.74" 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>doobie.util.Read[Int :: String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (77,176 μs, 0.19%)</title><rect x="440.4" y="1013" width="2.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="443.41" 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>shapeless.Lazy[doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21648) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (418,136 μs, 1.03%)</title><rect x="800.2" y="901" width="12.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="803.16" 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>doobie.util.param.Param[Int :: String :: shapeless.HNil] (expanded macros 0) (15,288 μs, 0.04%)</title><rect x="956.3" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="959.30" 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>doobie.util.param.Param[Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: String :: java.util.UUID :: String :: shapeless.HNil] (expanded macros 0) (16,736 μs, 0.04%)</title><rect x="980.0" y="901" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="983.02" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (5,409 μs, 0.01%)</title><rect x="1177.2" y="965" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1180.23" 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>doobie.util.Get[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,798 μs, 0.03%)</title><rect x="872.3" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="875.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>reflect.runtime.universe.TypeTag[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (3,760 μs, 0.01%)</title><rect x="385.5" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="388.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>shapeless.Generic[shapeless.HNil]{type Repr = G} (expanded macros 3) (3,916 μs, 0.01%)</title><rect x="923.3" y="293" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="926.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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (13,564 μs, 0.03%)</title><rect x="288.1" y="805" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="291.15" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,036 μs, 0.01%)</title><rect x="906.8" y="293" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="909.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>doobie.util.Get[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (7,126 μs, 0.02%)</title><rect x="86.7" y="325" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="89.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>doobie.util.Read[Option[List[String]]] (expanded macros 0) (9,593 μs, 0.02%)</title><rect x="145.9" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="148.93" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21923) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (511,477 μs, 1.26%)</title><rect x="814.2" y="997" width="14.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="817.16" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 787) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (91,489 μs, 0.23%)</title><rect x="234.1" y="741" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="237.11" 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>doobie.util.Read[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (183,001 μs, 0.45%)</title><rect x="222.3" y="821" width="5.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="225.31" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,227 μs, 0.02%)</title><rect x="320.3" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="323.30" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (418,493 μs, 1.03%)</title><rect x="75.5" y="917" width="12.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="78.49" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21285) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (520,442 μs, 1.28%)</title><rect x="780.5" y="997" width="15.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="783.54" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (12,021 μs, 0.03%)</title><rect x="97.6" y="485" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="100.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,366 μs, 0.01%)</title><rect x="267.8" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="270.82" 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>doobie.util.Get[org.joda.time.DateTime :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (9,858 μs, 0.02%)</title><rect x="249.2" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="252.20" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22351) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (221,049 μs, 0.55%)</title><rect x="837.7" y="709" width="6.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="840.70" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (23,592 μs, 0.06%)</title><rect x="225.1" y="677" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="228.08" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,643 μs, 0.01%)</title><rect x="562.6" y="757" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="565.61" 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>doobie.util.Get[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (7,989 μs, 0.02%)</title><rect x="130.5" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="133.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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (8,936 μs, 0.02%)</title><rect x="530.6" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="533.61" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (10,464 μs, 0.03%)</title><rect x="583.6" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="586.62" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (437,858 μs, 1.08%)</title><rect x="1137.9" y="437" width="12.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (7,754 μs, 0.02%)</title><rect x="788.5" y="629" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="791.49" 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>doobie.util.param.Param[Option[Int] :: String :: String :: String :: Option[Int] :: shapeless.HNil] (expanded macros 0) (83,099 μs, 0.21%)</title><rect x="1020.3" y="1029" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1023.33" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (146,742 μs, 0.36%)</title><rect x="596.9" y="1013" width="4.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="599.93" 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>shapeless.Lazy[doobie.util.Read[String :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 20526) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (28,397 μs, 0.07%)</title><rect x="450.1" y="837" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="453.14" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: String :: shapeless.HNil] (expanded macros 0) (40,810 μs, 0.10%)</title><rect x="582.7" y="1013" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="585.74" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (9,000 μs, 0.02%)</title><rect x="234.6" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="237.62" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (51,535 μs, 0.13%)</title><rect x="416.7" y="757" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="419.71" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (241,254 μs, 0.60%)</title><rect x="229.9" y="949" width="7.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="232.92" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (6,112 μs, 0.02%)</title><rect x="104.3" y="805" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="107.26" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (15,678 μs, 0.04%)</title><rect x="638.7" y="725" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="641.65" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22342) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (245,056 μs, 0.60%)</title><rect x="837.0" y="741" width="7.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="840.03" 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>doobie.util.Get[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,652 μs, 0.03%)</title><rect x="774.4" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="777.44" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent :: shapeless.HNil]] (id 4316) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (71,735 μs, 0.18%)</title><rect x="168.3" y="997" width="2.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="171.28" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: Double :: Double :: Boolean :: shapeless.HNil]] (id 20356) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (38,223 μs, 0.09%)</title><rect x="578.5" y="1029" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="581.54" 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>shapeless.Lazy[doobie.util.Read[Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12300) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (109,277 μs, 0.27%)</title><rect x="655.5" y="933" width="3.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="658.47" 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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 9224) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (19,262 μs, 0.05%)</title><rect x="57.4" y="997" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="60.44" 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>doobie.util.Get[String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (4,582 μs, 0.01%)</title><rect x="630.8" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="633.77" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (7,525 μs, 0.02%)</title><rect x="414.9" y="885" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="417.95" 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>doobie.util.Get[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (19,833 μs, 0.05%)</title><rect x="768.8" y="837" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="771.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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,032 μs, 0.03%)</title><rect x="538.5" y="789" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="541.54" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (3,541 μs, 0.01%)</title><rect x="58.7" y="949" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="61.71" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (76,521 μs, 0.19%)</title><rect x="889.8" y="437" width="2.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="892.75" 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>reflect.runtime.universe.TypeTag[Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (11,628 μs, 0.03%)</title><rect x="159.5" y="853" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="162.46" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Farmer]{type Repr = G} (id 7629) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,553 μs, 0.01%)</title><rect x="315.9" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="318.93" 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>doobie.util.Get[Option[Double]] (expanded macros 0) (8,020 μs, 0.02%)</title><rect x="827.2" y="357" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="830.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>doobie.util.Get[String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,919 μs, 0.05%)</title><rect x="456.3" y="965" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="459.34" 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>reflect.runtime.universe.TypeTag[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (6,732 μs, 0.02%)</title><rect x="659.5" y="949" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="662.50" 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>doobie.util.Get[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (17,913 μs, 0.04%)</title><rect x="915.5" y="773" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="918.45" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13284) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (43,661 μs, 0.11%)</title><rect x="675.1" y="773" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="678.14" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[shapeless.HNil] (expanded macros 0) (6,865 μs, 0.02%)</title><rect x="583.6" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="586.65" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.PhoneNumber]{type Repr = L} (id 1862) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,651 μs, 0.01%)</title><rect x="600.7" y="821" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="603.73" 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>doobie.util.Get[Int :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (11,099 μs, 0.03%)</title><rect x="248.3" y="997" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="251.34" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (14,923 μs, 0.04%)</title><rect x="1143.1" y="293" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1146.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>doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (92,369 μs, 0.23%)</title><rect x="674.0" y="885" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="676.96" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Boolean :: shapeless.HNil]] (id 817) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (41,756 μs, 0.10%)</title><rect x="235.5" y="645" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="238.49" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 8140) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (75,231 μs, 0.19%)</title><rect x="294.0" y="773" width="2.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="297.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 8951) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (88,185 μs, 0.22%)</title><rect x="328.6" y="997" width="2.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="331.61" 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>doobie.util.param.Param[String :: Int :: shapeless.HNil] (expanded macros 0) (21,137 μs, 0.05%)</title><rect x="1022.8" y="1029" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1025.80" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: Option[Double] :: Double :: shapeless.HNil]] (id 18306) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (54,906 μs, 0.14%)</title><rect x="680.5" y="997" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="683.47" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Farmer]{type Repr = G} (id 8288) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,670 μs, 0.01%)</title><rect x="316.1" y="1029" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="319.07" 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>doobie.util.Get[(com.apolloagriculture.pikachu.models.MpesaStatement, com.apolloagriculture.pikachu.models.PhoneNumber)] (expanded macros 0) (14,335 μs, 0.04%)</title><rect x="132.4" y="1029" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="135.37" 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>doobie.util.Put[Double :: Option[String] :: java.util.UUID :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,238 μs, 0.02%)</title><rect x="952.7" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="955.69" 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>doobie.util.Put[Int :: shapeless.HNil] (expanded macros 0) (10,303 μs, 0.03%)</title><rect x="985.6" y="1013" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="988.60" 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>shapeless.ops.hlist.IsHCons[Int :: String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil]{type H = H (3,499 μs, 0.01%)</title><rect x="606.2" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="609.15" 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>doobie.util.Get[String :: String :: shapeless.HNil] (expanded macros 0) (6,142 μs, 0.02%)</title><rect x="625.8" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="628.78" 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>reflect.runtime.universe.TypeTag[Int :: Int :: String :: String :: io.circe.Json :: io.circe.Json :: shapeless.HNil] (expanded macros 1) (4,717 μs, 0.01%)</title><rect x="955.0" y="997" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="957.97" 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>doobie.util.Get[Int :: String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (7,015 μs, 0.02%)</title><rect x="608.6" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="611.58" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (2,023,737 μs, 4.99%)</title><rect x="1092.4" y="853" width="58.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1095.37" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doobie..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Double :: shapeless.HNil] (expanded macros 0) (5,302 μs, 0.01%)</title><rect x="733.6" y="741" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="736.58" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 13328) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (5,276 μs, 0.01%)</title><rect x="676.0" y="645" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="679.04" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28657) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (70,039 μs, 0.17%)</title><rect x="544.5" y="517" width="2.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="547.49" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[String] :: shapeless.HNil]] (id 4290) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,503 μs, 0.04%)</title><rect x="167.3" y="261" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="170.30" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21604) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (544,377 μs, 1.34%)</title><rect x="797.1" y="997" width="15.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="800.07" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (9,743 μs, 0.02%)</title><rect x="1040.8" y="805" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1043.77" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,333 μs, 0.01%)</title><rect x="165.4" y="469" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="168.37" 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>doobie.util.param.Param[Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (842,388 μs, 2.08%)</title><rect x="1126.4" y="597" width="24.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1129.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28292) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (211,283 μs, 0.52%)</title><rect x="524.8" y="741" width="6.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="527.83" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (18,762 μs, 0.05%)</title><rect x="94.4" y="677" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="97.43" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io.circe.Encoder[List[Map[String,Int]]] (expanded macros 0) (9,020 μs, 0.02%)</title><rect x="1188.7" y="1045" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1191.68" 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>doobie.util.Get[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (6,394 μs, 0.02%)</title><rect x="131.0" y="293" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="134.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>doobie.util.Put[Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (4,592 μs, 0.01%)</title><rect x="940.9" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="943.91" 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>doobie.util.Read[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (273,080 μs, 0.67%)</title><rect x="281.0" y="1013" width="8.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="284.04" 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>doobie.util.Read[com.apolloagriculture.pikachu.queries.ApplicationSurveyQueries.ApplicationSurveyOptions] (expanded macros 0) (48,038 μs, 0.12%)</title><rect x="613.5" y="1045" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="616.46" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: shapeless.HNil]] (id 9969) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (22,678 μs, 0.06%)</title><rect x="305.8" y="965" width="0.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="308.80" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 10669) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (50,030 μs, 0.12%)</title><rect x="637.8" y="837" width="1.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="640.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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23826) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (378,562 μs, 0.93%)</title><rect x="913.8" y="869" width="11.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="916.82" 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>reflect.runtime.universe.TypeTag[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,183 μs, 0.02%)</title><rect x="1162.8" y="805" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1165.77" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (7,623 μs, 0.02%)</title><rect x="659.0" y="981" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="662.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Get[java.util.UUID]] (id 681) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (3,512 μs, 0.01%)</title><rect x="196.8" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="199.80" 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>doobie.util.Get[String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (9,460 μs, 0.02%)</title><rect x="597.9" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="600.88" 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>shapeless.Lazy[doobie.util.Read[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22573) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (475,053 μs, 1.17%)</title><rect x="847.3" y="965" width="13.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="850.31" 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>reflect.runtime.universe.TypeTag[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (13,867 μs, 0.03%)</title><rect x="911.5" y="917" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="914.47" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19483) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (31,042 μs, 0.08%)</title><rect x="444.2" y="837" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="447.17" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (8,900 μs, 0.02%)</title><rect x="979.1" y="1013" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="982.11" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (16,837 μs, 0.04%)</title><rect x="900.3" y="741" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="903.32" 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>doobie.util.Get[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (26,708 μs, 0.07%)</title><rect x="800.4" y="869" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="803.36" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15432) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (66,424 μs, 0.16%)</title><rect x="387.9" y="965" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="390.90" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21154) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (95,099 μs, 0.23%)</title><rect x="775.6" y="485" width="2.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="778.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent :: shapeless.HNil] (expanded macros 0) (83,377 μs, 0.21%)</title><rect x="182.4" y="981" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="185.35" 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>doobie.util.Get[Option[com.apolloagriculture.pikachu.models.ReviewStatus]] (expanded macros 0) (5,222 μs, 0.01%)</title><rect x="380.3" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="383.27" 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>doobie.util.Read[java.util.UUID :: String :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil] (expanded macros 0) (329,078 μs, 0.81%)</title><rect x="332.1" y="1013" width="9.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="335.10" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 8456) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (14,011 μs, 0.03%)</title><rect x="327.0" y="869" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="330.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>doobie.util.Read[Int :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (25,413 μs, 0.06%)</title><rect x="614.1" y="981" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="617.12" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (429,766 μs, 1.06%)</title><rect x="896.3" y="917" width="12.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="899.33" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[String :: shapeless.HNil] (expanded macros 0) (7,200 μs, 0.02%)</title><rect x="1015.3" y="997" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1018.28" 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>doobie.util.Read[Int :: String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (82,974 μs, 0.20%)</title><rect x="442.7" y="1013" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="445.73" 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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 15190) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,835 μs, 0.02%)</title><rect x="384.0" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="386.98" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (8,111 μs, 0.02%)</title><rect x="854.5" y="629" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="857.53" 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>doobie.util.Read[java.util.UUID :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (29,601 μs, 0.07%)</title><rect x="616.5" y="917" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="619.46" 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>doobie.util.Get[String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (14,607 μs, 0.04%)</title><rect x="174.7" y="805" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="177.68" 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>doobie.util.Get[Option[String]] (expanded macros 0) (7,909 μs, 0.02%)</title><rect x="811.2" y="389" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="814.23" 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>doobie.util.Get[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (10,967 μs, 0.03%)</title><rect x="177.6" y="613" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="180.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 8448) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (33,929 μs, 0.08%)</title><rect x="326.7" y="901" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="329.71" 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>reflect.runtime.universe.TypeTag[Int :: java.util.UUID :: scala.math.BigDecimal :: com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (4,838 μs, 0.01%)</title><rect x="370.6" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="373.64" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (6,276 μs, 0.02%)</title><rect x="251.8" y="821" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="254.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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 8418) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,756 μs, 0.03%)</title><rect x="327.8" y="965" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="330.75" 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>doobie.util.Read[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (140,668 μs, 0.35%)</title><rect x="473.0" y="725" width="4.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="476.02" 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>doobie.util.Get[Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (19,299 μs, 0.05%)</title><rect x="239.9" y="901" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="242.92" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (7,322 μs, 0.02%)</title><rect x="526.2" y="629" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="529.15" 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>reflect.runtime.universe.TypeTag[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (15,612 μs, 0.04%)</title><rect x="548.1" y="981" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="551.11" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 22333) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,084 μs, 0.02%)</title><rect x="844.2" y="741" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="847.16" 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>doobie.util.Read[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (165,236 μs, 0.41%)</title><rect x="658.9" y="1013" width="4.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="661.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.queries.AgentResult] (expanded macros 0) (52,729 μs, 0.13%)</title><rect x="584.1" y="1029" width="1.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="587.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 29193) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,853 μs, 0.02%)</title><rect x="487.7" y="453" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="490.70" 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>doobie.util.Get[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,662 μs, 0.05%)</title><rect x="457.1" y="933" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="460.14" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent :: shapeless.HNil]] (id 3925) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (72,819 μs, 0.18%)</title><rect x="154.3" y="997" width="2.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="157.30" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (8,362 μs, 0.02%)</title><rect x="541.3" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="544.27" 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>doobie.util.Get[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (11,259 μs, 0.03%)</title><rect x="484.3" y="709" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="487.26" 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>reflect.runtime.universe.TypeTag[Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (6,884 μs, 0.02%)</title><rect x="655.6" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="658.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>doobie.util.Get[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,619 μs, 0.02%)</title><rect x="149.9" y="613" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="152.87" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (5,409 μs, 0.01%)</title><rect x="1002.9" y="869" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1005.90" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,466 μs, 0.01%)</title><rect x="443.8" y="869" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="446.78" 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>doobie.util.Read[Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (27,882 μs, 0.07%)</title><rect x="181.1" y="277" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="184.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.AgrodealerQueries.AgrodealerCheckoutInfo]{type Repr = G} (id 3660) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (6,540 μs, 0.02%)</title><rect x="143.5" y="965" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="146.50" 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>doobie.util.param.Param[String :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (15,898 μs, 0.04%)</title><rect x="1003.7" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1006.70" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (7,238 μs, 0.02%)</title><rect x="472.6" y="725" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="475.65" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (38,981 μs, 0.10%)</title><rect x="276.0" y="885" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="278.99" 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>doobie.util.Get[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (10,864 μs, 0.03%)</title><rect x="507.4" y="677" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="510.41" 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>shapeless.Lazy[doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17117) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (681,665 μs, 1.68%)</title><rect x="405.7" y="1029" width="19.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="408.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (29,874 μs, 0.07%)</title><rect x="498.3" y="501" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="501.27" 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>doobie.util.param.Param[Option[Int]] (expanded macros 0) (11,579 μs, 0.03%)</title><rect x="1020.7" y="1013" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1023.67" 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>doobie.util.Put[String :: shapeless.HNil] (expanded macros 0) (7,279 μs, 0.02%)</title><rect x="1152.9" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1155.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 13706) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (99,040 μs, 0.24%)</title><rect x="352.6" y="613" width="2.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="355.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Double :: shapeless.HNil] (expanded macros 0) (3,450 μs, 0.01%)</title><rect x="384.0" y="709" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="387.01" 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>doobie.util.Get[Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,531 μs, 0.02%)</title><rect x="690.8" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="693.78" 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>doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (31,595 μs, 0.08%)</title><rect x="604.5" y="917" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="607.49" 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>shapeless.Generic[(String, String)]{type Repr = L} (id 8219) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (6,242 μs, 0.02%)</title><rect x="59.1" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="62.06" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: String :: String :: String :: shapeless.HNil]] (id 20600) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (37,174 μs, 0.09%)</title><rect x="693.5" y="1029" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="696.52" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (13,841 μs, 0.03%)</title><rect x="1144.9" y="245" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1147.93" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15733) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (92,472 μs, 0.23%)</title><rect x="392.5" y="1029" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="395.54" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,692 μs, 0.01%)</title><rect x="312.1" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="315.11" 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>doobie.util.param.Param[Option[Int] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,255 μs, 0.02%)</title><rect x="965.3" y="1029" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="968.30" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (4,338 μs, 0.01%)</title><rect x="245.4" y="629" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="248.38" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (3,839 μs, 0.01%)</title><rect x="1010.9" y="997" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1013.85" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,891 μs, 0.01%)</title><rect x="498.9" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="501.91" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (10,208 μs, 0.03%)</title><rect x="491.9" y="885" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="494.87" 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>doobie.util.Get[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (11,099 μs, 0.03%)</title><rect x="586.3" y="997" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="589.33" 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>doobie.util.param.Param[Option[Boolean]] (expanded macros 0) (9,571 μs, 0.02%)</title><rect x="1029.9" y="885" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1032.87" 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>doobie.util.Read[Option[Double]] (expanded macros 0) (9,988 μs, 0.02%)</title><rect x="907.0" y="373" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="910.01" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (9,405 μs, 0.02%)</title><rect x="1146.4" y="197" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>doobie.util.param.Param[String :: io.circe.Json :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (18,034 μs, 0.04%)</title><rect x="955.5" y="981" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="958.55" 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>doobie.util.Get[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,729 μs, 0.03%)</title><rect x="791.8" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="794.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[Int]] (expanded macros 0) (12,250 μs, 0.03%)</title><rect x="511.3" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="514.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (7,234 μs, 0.02%)</title><rect x="376.6" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="379.64" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 10204) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (54,816 μs, 0.14%)</title><rect x="317.3" y="965" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="320.32" 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>shapeless.Generic[Option[Boolean]]{type Repr = L} (expanded macros 3) (5,635 μs, 0.01%)</title><rect x="1040.1" y="773" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1043.10" 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>shapeless.Lazy[doobie.util.Read[Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: shapeless.HNil]] (id 8768) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (33,803 μs, 0.08%)</title><rect x="55.5" y="997" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="58.53" 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>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22414) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (97,718 μs, 0.24%)</title><rect x="841.2" y="485" width="2.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="844.18" 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> type T = T} (expanded macros 0) (3,905 μs, 0.01%)</title><rect x="590.4" y="805" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="593.39" 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>doobie.util.param.Param[Double :: Float :: Float :: String :: Long :: shapeless.HNil] (expanded macros 0) (60,872 μs, 0.15%)</title><rect x="1012.7" y="997" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1015.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (47,085 μs, 0.12%)</title><rect x="994.2" y="837" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="997.21" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (64,794 μs, 0.16%)</title><rect x="1148.3" y="149" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1151.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>doobie.util.Read[Option[String] :: Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (138,100 μs, 0.34%)</title><rect x="434.7" y="981" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="437.69" 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>scala.reflect.api.Universe#TypeTag[Option[org.joda.time.DateTime]] (expanded macros 0) (221,992 μs, 0.55%)</title><rect x="419.0" y="901" width="6.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="422.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>reflect.runtime.universe.TypeTag[shapeless.HNil] (expanded macros 1) (3,578 μs, 0.01%)</title><rect x="1009.5" y="965" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1012.55" 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>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,920 μs, 0.02%)</title><rect x="685.6" y="773" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="688.64" 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>shapeless.Lazy[doobie.util.Read[String :: org.joda.time.DateTime :: shapeless.HNil]] (id 9960) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (35,564 μs, 0.09%)</title><rect x="305.4" y="997" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="308.42" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (6,670 μs, 0.02%)</title><rect x="252.0" y="885" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="255.00" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 22438) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,471 μs, 0.03%)</title><rect x="843.4" y="421" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="846.41" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 30045) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,544 μs, 0.03%)</title><rect x="559.4" y="549" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="562.37" 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>doobie.util.Read[com.apolloagriculture.pikachu.queries.AgentQueries.AgentMatch] (expanded macros 0) (157,167 μs, 0.39%)</title><rect x="577.5" y="1045" width="4.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="580.47" 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>doobie.util.param.Param[Option[String]] (expanded macros 0) (11,386 μs, 0.03%)</title><rect x="996.6" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="999.65" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (20,311 μs, 0.05%)</title><rect x="1153.2" y="1013" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1156.23" 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>shapeless.Lazy[doobie.util.Write[Int :: shapeless.HNil]] (id 19917) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,235 μs, 0.02%)</title><rect x="928.0" y="933" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="931.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (13,035 μs, 0.03%)</title><rect x="455.6" y="981" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,123 μs, 0.03%)</title><rect x="125.2" y="693" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="128.23" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 5196) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,194 μs, 0.02%)</title><rect x="252.0" y="901" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="254.99" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (3,968 μs, 0.01%)</title><rect x="379.5" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="382.53" 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>doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (402,826 μs, 0.99%)</title><rect x="865.4" y="885" width="11.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="868.35" 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>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil] (expanded macros 0) (62,749 μs, 0.15%)</title><rect x="302.2" y="885" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="305.21" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (10,037 μs, 0.02%)</title><rect x="477.2" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="480.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>shapeless.Lazy[doobie.util.Read[String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil]] (id 2923) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (84,517 μs, 0.21%)</title><rect x="262.0" y="933" width="2.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="265.02" 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>shapeless.Lazy[doobie.util.Read[String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil]] (id 3946) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (40,164 μs, 0.10%)</title><rect x="155.2" y="869" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="158.23" 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>doobie.util.Get[Int :: Int :: Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (24,046 μs, 0.06%)</title><rect x="343.4" y="997" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="346.39" 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>doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 0) (92,594 μs, 0.23%)</title><rect x="731.6" y="949" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="734.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>doobie.util.Get[Option[Int]] (expanded macros 0) (4,930 μs, 0.01%)</title><rect x="448.1" y="741" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="451.13" 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>doobie.util.Put[Option[String]] (expanded macros 0) (5,718 μs, 0.01%)</title><rect x="996.1" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="999.15" 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>doobie.util.Get[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (9,998 μs, 0.02%)</title><rect x="873.2" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="876.19" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,503 μs, 0.01%)</title><rect x="296.9" y="917" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="299.91" 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>doobie.util.Write[Option[String] :: shapeless.HNil] (expanded macros 0) (9,567 μs, 0.02%)</title><rect x="939.3" y="469" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="942.28" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 5040) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,581 μs, 0.02%)</title><rect x="271.9" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="274.86" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19229) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (33,329 μs, 0.08%)</title><rect x="441.6" y="869" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="444.62" 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>doobie.util.Read[java.util.UUID :: org.joda.time.DateTime :: String :: shapeless.HNil] (expanded macros 0) (44,960 μs, 0.11%)</title><rect x="741.6" y="885" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="744.63" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 26564) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (353,646 μs, 0.87%)</title><rect x="90.6" y="837" width="10.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="93.57" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (12,308 μs, 0.03%)</title><rect x="230.1" y="917" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="233.12" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12919) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (134,898 μs, 0.33%)</title><rect x="668.6" y="997" width="3.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="671.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int]] (expanded macros 0) (6,044 μs, 0.01%)</title><rect x="643.4" y="821" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="646.37" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Task]{type Repr = L} (id 28168) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,439 μs, 0.02%)</title><rect x="513.1" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="516.07" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 8997) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (13,704 μs, 0.03%)</title><rect x="330.1" y="869" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="333.10" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29318) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (206,673 μs, 0.51%)</title><rect x="493.6" y="837" width="6.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="496.62" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: String :: shapeless.HNil] (expanded macros 1) (19,113 μs, 0.05%)</title><rect x="1026.1" y="965" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1029.09" 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>doobie.util.Put[Option[Boolean] :: Option[Int] :: Option[Boolean] :: String :: shapeless.HNil] (expanded macros 0) (266,601 μs, 0.66%)</title><rect x="1031.2" y="837" width="7.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1034.18" 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>shapeless.Lazy[doobie.util.Read[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21430) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (169,232 μs, 0.42%)</title><rect x="789.9" y="581" width="4.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="792.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[java.util.UUID :: java.util.UUID :: org.joda.time.DateTime :: String :: shapeless.HNil]] (id 30670) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (56,577 μs, 0.14%)</title><rect x="741.3" y="933" width="1.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="744.31" 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>shapeless.Lazy[doobie.util.Read[Int :: Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil]] (id 16989) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (81,310 μs, 0.20%)</title><rect x="274.8" y="997" width="2.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="277.75" 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>doobie.util.Read[java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (53,506 μs, 0.13%)</title><rect x="670.6" y="789" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="673.65" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,873 μs, 0.01%)</title><rect x="328.3" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="331.33" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (55,827 μs, 0.14%)</title><rect x="1162.3" y="853" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1165.31" 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>doobie.util.Get[Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (9,322 μs, 0.02%)</title><rect x="107.2" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="110.16" 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>shapeless.Lazy[doobie.util.Read[String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13216) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (116,029 μs, 0.29%)</title><rect x="673.3" y="965" width="3.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="676.32" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil]] (id 30202) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (39,698 μs, 0.10%)</title><rect x="188.9" y="1029" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="191.88" 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>doobie.util.Read[Option[List[String]]] (expanded macros 0) (7,974 μs, 0.02%)</title><rect x="159.9" y="853" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="162.88" 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>doobie.util.Get[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (6,120 μs, 0.02%)</title><rect x="395.9" y="933" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="398.87" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.LoanApplication]{type Repr = G} (id 14745) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,489 μs, 0.01%)</title><rect x="375.0" y="1029" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="378.03" 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>shapeless.Lazy[doobie.util.Read[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23330) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (148,039 μs, 0.37%)</title><rect x="888.0" y="581" width="4.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="891.02" 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>doobie.util.Get[io.circe.Json :: Option[java.util.UUID] :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (6,689 μs, 0.02%)</title><rect x="747.5" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="750.49" 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>doobie.util.Read[String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (191,123 μs, 0.47%)</title><rect x="231.4" y="885" width="5.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="234.35" 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>doobie.util.Get[Double :: Boolean :: shapeless.HNil] (expanded macros 0) (3,503 μs, 0.01%)</title><rect x="579.1" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="582.14" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (306,444 μs, 0.76%)</title><rect x="199.0" y="1013" width="9.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="202.04" 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>shapeless.Lazy[doobie.util.Read[Int :: Boolean :: Boolean :: shapeless.HNil]] (id 6760) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (25,923 μs, 0.06%)</title><rect x="614.1" y="997" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="617.10" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.Task :: com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil]] (id 27154) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (893,424 μs, 2.21%)</title><rect x="106.3" y="965" width="26.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="109.33" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber :: com.apolloagriculture.pikachu.models.Task :: com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (10,921 μs, 0.03%)</title><rect x="105.6" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="108.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>shapeless.Lazy[doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12312) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (94,491 μs, 0.23%)</title><rect x="655.9" y="901" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="658.86" 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>doobie.util.Read[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (115,169 μs, 0.28%)</title><rect x="904.5" y="501" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="907.54" 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>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (5,335 μs, 0.01%)</title><rect x="1022.3" y="917" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1025.27" 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>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15778) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (52,308 μs, 0.13%)</title><rect x="393.6" y="901" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="396.65" 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>doobie.util.Put[Int :: org.joda.time.DateTime :: Int :: shapeless.HNil] (expanded macros 0) (4,015 μs, 0.01%)</title><rect x="1016.9" y="1013" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1019.89" 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>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: shapeless.HNil]] (id 8573) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (51,269 μs, 0.13%)</title><rect x="65.0" y="869" width="1.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="67.95" 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>shapeless.Lazy[doobie.util.Read[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23936) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (129,314 μs, 0.32%)</title><rect x="920.6" y="517" width="3.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="923.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>doobie.util.Read[Option[Double]] (expanded macros 0) (9,204 μs, 0.02%)</title><rect x="131.5" y="309" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="134.46" 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>reflect.runtime.universe.TypeTag[Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,744 μs, 0.02%)</title><rect x="149.1" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="152.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.Product :: Int :: shapeless.HNil] (expanded macros 0) (3,864 μs, 0.01%)</title><rect x="137.1" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="140.13" 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>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 9593) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (22,422 μs, 0.06%)</title><rect x="278.8" y="965" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="281.78" 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>doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (36,890 μs, 0.09%)</title><rect x="510.1" y="501" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="513.11" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,670 μs, 0.01%)</title><rect x="306.2" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="309.22" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12457) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (149,533 μs, 0.37%)</title><rect x="659.4" y="997" width="4.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="662.36" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.LiabilitiesRow] (expanded macros 0) (89,538 μs, 0.22%)</title><rect x="370.2" y="1045" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="373.20" 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>doobie.util.Read[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (152,144 μs, 0.38%)</title><rect x="212.2" y="821" width="4.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="215.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>doobie.util.param.Param[Int :: Int :: shapeless.HNil] (expanded macros 0) (11,223 μs, 0.03%)</title><rect x="952.3" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="955.33" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[String :: shapeless.HNil] (expanded macros 0) (8,897 μs, 0.02%)</title><rect x="956.5" y="997" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="959.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Int] :: shapeless.HNil] (expanded macros 0) (17,516 μs, 0.04%)</title><rect x="979.0" y="1045" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="982.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (524,759 μs, 1.30%)</title><rect x="547.6" y="1013" width="15.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="550.64" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4654) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (74,117 μs, 0.18%)</title><rect x="179.8" y="453" width="2.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="182.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (102,912 μs, 0.25%)</title><rect x="328.2" y="1013" width="3.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="331.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[String] (expanded macros 0) (12,751 μs, 0.03%)</title><rect x="1001.0" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1004.03" 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>reflect.runtime.universe.TypeTag[String :: Int :: Int :: shapeless.HNil] (expanded macros 1) (3,747 μs, 0.01%)</title><rect x="945.5" y="997" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="948.51" 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>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (27,706 μs, 0.07%)</title><rect x="323.9" y="885" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="326.90" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (6,249 μs, 0.02%)</title><rect x="675.2" y="741" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="678.19" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28576) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (226,252 μs, 0.56%)</title><rect x="540.4" y="741" width="6.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="543.38" 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>shapeless.ops.hlist.IsHCons[Double :: org.joda.time.DateTime :: Option[String] :: Option[String] :: Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil]{type H = H (3,555 μs, 0.01%)</title><rect x="300.2" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="303.18" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,486 μs, 0.01%)</title><rect x="271.5" y="693" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="274.49" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17176) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (89,379 μs, 0.22%)</title><rect x="415.6" y="869" width="2.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="418.63" 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>doobie.util.param.Param[String :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (24,052 μs, 0.06%)</title><rect x="946.6" y="1029" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="949.58" 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>shapeless.Generic[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = G} (expanded macros 3) (27,424 μs, 0.07%)</title><rect x="242.8" y="773" width="0.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="245.77" 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>shapeless.Lazy[doobie.util.Read[List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 26567) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (324,002 μs, 0.80%)</title><rect x="91.4" y="805" width="9.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="94.42" 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>doobie.util.Get[Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (9,898 μs, 0.02%)</title><rect x="435.2" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="438.20" 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>doobie.util.Read[java.util.UUID :: java.util.UUID :: org.joda.time.DateTime :: String :: shapeless.HNil] (expanded macros 0) (55,992 μs, 0.14%)</title><rect x="741.3" y="917" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="744.33" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Boolean]] (expanded macros 0) (11,235 μs, 0.03%)</title><rect x="1039.9" y="805" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1042.94" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: shapeless.HNil]] (id 26842) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,474 μs, 0.02%)</title><rect x="86.9" y="325" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="89.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>doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (380,398 μs, 0.94%)</title><rect x="767.8" y="885" width="11.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="770.84" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.ApprovedPaymentsRow] (expanded macros 0) (11,862 μs, 0.03%)</title><rect x="684.1" y="901" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="687.09" 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>reflect.runtime.universe.TypeTag[Double :: Option[String] :: java.util.UUID :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,293 μs, 0.01%)</title><rect x="952.7" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="955.73" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,249 μs, 0.01%)</title><rect x="686.0" y="725" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="688.98" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 6219) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (5,971 μs, 0.01%)</title><rect x="629.6" y="837" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="632.59" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (14,660 μs, 0.04%)</title><rect x="992.0" y="885" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="995.01" 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>doobie.util.Get[Option[Int]] (expanded macros 0) (5,724 μs, 0.01%)</title><rect x="252.0" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="255.03" 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>reflect.runtime.universe.TypeTag[String :: Double :: Double :: Boolean :: shapeless.HNil] (expanded macros 1) (4,106 μs, 0.01%)</title><rect x="580.2" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="583.21" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil]] (id 2914) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (96,588 μs, 0.24%)</title><rect x="261.7" y="965" width="2.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="264.68" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (17,506 μs, 0.04%)</title><rect x="561.2" y="405" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="564.19" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,349 μs, 0.03%)</title><rect x="544.1" y="517" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="547.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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 7759) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,141 μs, 0.03%)</title><rect x="288.6" y="965" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="291.60" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15470) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (35,338 μs, 0.09%)</title><rect x="388.8" y="869" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="391.77" 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>doobie.util.Get[Int :: org.joda.time.DateTime :: String :: String :: String :: Option[String] :: String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (10,155 μs, 0.03%)</title><rect x="735.1" y="997" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="738.09" 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>doobie.util.param.Param[java.util.UUID :: BigDecimal :: String :: shapeless.HNil] (expanded macros 0) (21,723 μs, 0.05%)</title><rect x="1011.0" y="1045" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1013.99" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,324 μs, 0.01%)</title><rect x="791.9" y="405" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="794.86" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (382,652 μs, 0.94%)</title><rect x="489.2" y="1013" width="11.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="492.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 27094) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (53,754 μs, 0.13%)</title><rect x="103.5" y="901" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="106.54" 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>doobie.util.Read[Option[Int] :: shapeless.HNil] (expanded macros 0) (11,444 μs, 0.03%)</title><rect x="170.0" y="757" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="172.99" 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>doobie.util.Get[Option[String]] (expanded macros 0) (7,624 μs, 0.02%)</title><rect x="304.1" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="307.08" 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>reflect.runtime.universe.TypeTag[Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (8,290 μs, 0.02%)</title><rect x="291.8" y="853" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="294.82" 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>reflect.runtime.universe.TypeTag[String :: Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,122 μs, 0.01%)</title><rect x="719.5" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="722.55" 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>doobie.util.Get[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (23,671 μs, 0.06%)</title><rect x="781.6" y="933" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="784.62" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: Int :: java.util.UUID :: java.util.UUID :: java.util.UUID :: shapeless.HNil]] (id 25408) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (67,215 μs, 0.17%)</title><rect x="615.5" y="1029" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="618.46" 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>shapeless.Generic[(Int, java.util.UUID, String, String, String, Int, Int, Int, Option[String], String, Int, String, String, String, Int, Option[String], String, Option[String])]{type Repr = L} (id 13342) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (7,311 μs, 0.02%)</title><rect x="933.5" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="936.47" 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>reflect.runtime.universe.TypeTag[String :: String :: Int :: String :: String :: shapeless.HNil] (expanded macros 1) (3,718 μs, 0.01%)</title><rect x="624.7" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="627.73" 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>doobie.util.Read[Int :: org.joda.time.DateTime :: String :: String :: String :: Option[String] :: String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (154,326 μs, 0.38%)</title><rect x="735.1" y="1013" width="4.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="738.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Option[String]] (expanded macros 0) (9,671 μs, 0.02%)</title><rect x="996.7" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="999.66" 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>doobie.util.Read[Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (554,835 μs, 1.37%)</title><rect x="861.4" y="1013" width="16.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="864.41" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (5,011 μs, 0.01%)</title><rect x="983.2" y="981" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="986.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.Task]] (id 26542) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (453,625 μs, 1.12%)</title><rect x="87.7" y="933" width="13.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="90.68" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: shapeless.HNil]] (id 5684) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (13,435 μs, 0.03%)</title><rect x="254.4" y="837" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="257.36" 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>doobie.util.Read[io.circe.Json :: Option[java.util.UUID] :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (55,467 μs, 0.14%)</title><rect x="753.1" y="981" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="756.11" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber]] (id 22274) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,927 μs, 0.03%)</title><rect x="844.6" y="901" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="847.55" 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>doobie.util.Read[Boolean :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (20,634 μs, 0.05%)</title><rect x="678.7" y="789" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="681.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.FarmerWithLocation]{type Repr = L} (id 7923) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,396 μs, 0.01%)</title><rect x="623.8" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="626.82" 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>doobie.util.Get[Option[String]] (expanded macros 0) (7,838 μs, 0.02%)</title><rect x="528.0" y="517" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="530.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (108,451 μs, 0.27%)</title><rect x="660.5" y="885" width="3.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="663.47" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12768) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (16,031 μs, 0.04%)</title><rect x="667.1" y="709" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="670.05" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Write[shapeless.HNil] (expanded macros 0) (3,445 μs, 0.01%)</title><rect x="933.1" y="853" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="936.10" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Boolean :: shapeless.HNil] (expanded macros 0) (9,040 μs, 0.02%)</title><rect x="1015.8" y="997" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1018.80" 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>doobie.util.Read[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (29,754 μs, 0.07%)</title><rect x="396.9" y="821" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="399.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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (10,370 μs, 0.03%)</title><rect x="539.9" y="725" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="542.93" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 9683) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (31,373 μs, 0.08%)</title><rect x="298.8" y="933" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="301.81" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (3,943 μs, 0.01%)</title><rect x="1010.7" y="965" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1013.74" 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>doobie.util.param.Param[Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: String :: java.util.UUID :: String :: shapeless.HNil] (expanded macros 0) (21,849 μs, 0.05%)</title><rect x="979.9" y="949" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="982.91" 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>doobie.util.Get[Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (15,004 μs, 0.04%)</title><rect x="350.7" y="709" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="353.69" 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>doobie.util.Get[String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (6,674 μs, 0.02%)</title><rect x="138.2" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="141.21" 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>doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (16,745 μs, 0.04%)</title><rect x="117.9" y="341" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="120.87" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (9,700 μs, 0.02%)</title><rect x="492.5" y="853" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="495.54" 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>doobie.util.Meta[shapeless.HNil] (expanded macros 0) (4,584 μs, 0.01%)</title><rect x="1005.8" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1008.80" 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>doobie.util.Get[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (7,239 μs, 0.02%)</title><rect x="392.6" y="997" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="395.64" 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>shapeless.Lazy[doobie.util.Read[String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21666) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (345,271 μs, 0.85%)</title><rect x="802.3" y="837" width="10.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="805.25" 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>doobie.util.Read[java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (46,841 μs, 0.12%)</title><rect x="666.4" y="789" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="669.38" 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>doobie.util.param.Param[Int :: Int :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (43,343 μs, 0.11%)</title><rect x="983.4" y="1029" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="986.39" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 230) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,213 μs, 0.02%)</title><rect x="570.3" y="613" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="573.31" 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>doobie.util.Put[Double :: Double :: shapeless.HNil] (expanded macros 0) (4,210 μs, 0.01%)</title><rect x="954.0" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="956.97" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 30012) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (150,132 μs, 0.37%)</title><rect x="558.0" y="645" width="4.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="560.99" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,550 μs, 0.01%)</title><rect x="321.4" y="821" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="324.41" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.ApplicationSurveyQueries.ApplicationSurveyFarmerDetails] (expanded macros 0) (7,534 μs, 0.02%)</title><rect x="612.2" y="1029" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="615.18" 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>reflect.runtime.universe.TypeTag[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,216 μs, 0.01%)</title><rect x="873.7" y="437" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="876.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int]] (expanded macros 0) (10,608 μs, 0.03%)</title><rect x="499.2" y="501" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="502.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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (6,243 μs, 0.02%)</title><rect x="267.8" y="789" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="270.81" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[java.util.UUID :: shapeless.HNil] (expanded macros 0) (11,874 μs, 0.03%)</title><rect x="1167.2" y="1029" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1170.21" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (83,359 μs, 0.21%)</title><rect x="353.1" y="565" width="2.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="356.08" 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>reflect.runtime.universe.TypeTag[Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (7,158 μs, 0.02%)</title><rect x="640.6" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="643.63" 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>doobie.util.Put[Int :: String :: shapeless.HNil] (expanded macros 0) (5,287 μs, 0.01%)</title><rect x="956.3" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="959.31" 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>doobie.util.Read[String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (58,074 μs, 0.14%)</title><rect x="737.7" y="821" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="740.72" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil] (expanded macros 0) (8,497 μs, 0.02%)</title><rect x="339.2" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="342.24" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,194 μs, 0.02%)</title><rect x="354.3" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="357.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 1) (6,173 μs, 0.02%)</title><rect x="586.4" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="589.39" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 6658) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,559 μs, 0.01%)</title><rect x="613.2" y="901" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="616.25" 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>reflect.runtime.universe.TypeTag[Int :: Int :: java.util.UUID :: shapeless.HNil] (expanded macros 1) (5,407 μs, 0.01%)</title><rect x="983.5" y="997" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="986.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]{type Repr = G} (expanded macros 3) (4,260 μs, 0.01%)</title><rect x="854.2" y="677" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="857.22" 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>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: shapeless.HNil]] (id 27103) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (41,147 μs, 0.10%)</title><rect x="103.9" y="869" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="106.91" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.FarmerPicture]{type Repr = G} (id 9947) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,154 μs, 0.01%)</title><rect x="304.9" y="1029" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="307.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 26787) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (180,635 μs, 0.45%)</title><rect x="82.4" y="677" width="5.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="85.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>doobie.util.Read[String :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (34,858 μs, 0.09%)</title><rect x="305.4" y="981" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="308.44" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (4,038 μs, 0.01%)</title><rect x="393.2" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="396.24" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Boolean :: shapeless.HNil]] (id 2445) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (22,684 μs, 0.06%)</title><rect x="581.2" y="901" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="584.16" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (13,853 μs, 0.03%)</title><rect x="864.8" y="885" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="867.76" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.IncentiveQueries.Prize] (expanded macros 0) (6,429 μs, 0.02%)</title><rect x="645.2" y="1029" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="648.20" 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>doobie.util.Get[Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (9,033 μs, 0.02%)</title><rect x="382.3" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="385.27" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 18126) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (208,521 μs, 0.51%)</title><rect x="427.1" y="965" width="6.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="430.09" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,582 μs, 0.01%)</title><rect x="219.7" y="917" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="222.69" 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>doobie.util.param.Param[Int] (expanded macros 0) (5,404 μs, 0.01%)</title><rect x="951.4" y="1013" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="954.35" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,695 μs, 0.01%)</title><rect x="432.4" y="581" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="435.41" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (9,789 μs, 0.02%)</title><rect x="787.3" y="693" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="790.33" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23891) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (221,254 μs, 0.55%)</title><rect x="918.0" y="677" width="6.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="920.99" 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>shapeless.Lazy[doobie.util.Read[String :: String :: shapeless.HNil]] (id 13895) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (15,881 μs, 0.04%)</title><rect x="185.6" y="965" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="188.62" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (69,072 μs, 0.17%)</title><rect x="651.9" y="853" width="2.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="654.87" 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>shapeless.Lazy[doobie.util.Read[Int :: Boolean :: Boolean :: Boolean :: shapeless.HNil]] (id 16289) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (27,670 μs, 0.07%)</title><rect x="678.5" y="837" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="681.53" 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>doobie.util.Read[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (145,133 μs, 0.36%)</title><rect x="663.8" y="1013" width="4.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="666.81" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (7,103 μs, 0.02%)</title><rect x="630.0" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="632.98" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 30080) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,317 μs, 0.03%)</title><rect x="561.7" y="453" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="564.70" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (4,589 μs, 0.01%)</title><rect x="382.0" y="949" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="385.04" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,696 μs, 0.01%)</title><rect x="73.8" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="76.81" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (219,041 μs, 0.54%)</title><rect x="175.7" y="757" width="6.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="178.70" 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>doobie.util.Read[org.joda.time.DateTime :: Option[String] :: Option[String] :: Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil] (expanded macros 0) (114,214 μs, 0.28%)</title><rect x="301.1" y="981" width="3.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="304.06" 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>shapeless.Lazy[doobie.util.Read[Int :: shapeless.HNil]] (id 13034) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,700 μs, 0.03%)</title><rect x="671.6" y="677" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="674.58" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil] (expanded macros 1) (12,590 μs, 0.03%)</title><rect x="333.1" y="949" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="336.07" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1348) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (130,814 μs, 0.32%)</title><rect x="212.8" y="805" width="3.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="215.83" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Agent]{type Repr = L} (id 485) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,405 μs, 0.02%)</title><rect x="195.7" y="1013" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="198.74" 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>doobie.util.Get[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (28,883 μs, 0.07%)</title><rect x="846.4" y="965" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="849.39" 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>shapeless.Generic[Option[io.circe.Json]]{type Repr = L} (expanded macros 3) (5,665 μs, 0.01%)</title><rect x="892.1" y="405" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="895.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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 29701) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,308 μs, 0.03%)</title><rect x="510.8" y="453" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="513.83" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Boolean :: shapeless.HNil]] (id 3487) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,822 μs, 0.04%)</title><rect x="611.6" y="901" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="614.58" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (9,641 μs, 0.02%)</title><rect x="160.3" y="821" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="163.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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil]] (id 17872) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (36,448 μs, 0.09%)</title><rect x="134.9" y="805" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="137.86" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int]] (expanded macros 0) (10,027 μs, 0.02%)</title><rect x="294.6" y="725" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="297.61" 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>doobie.util.Get[(com.apolloagriculture.pikachu.queries.AgrodealerQueries.AgrodealerCheckoutInfo, com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent)] (expanded macros 0) (63,239 μs, 0.16%)</title><rect x="140.4" y="1029" width="1.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="143.44" 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>doobie.util.Get[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,232 μs, 0.05%)</title><rect x="479.8" y="933" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="482.81" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (210,545 μs, 0.52%)</title><rect x="524.9" y="725" width="6.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="527.85" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4242) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (58,590 μs, 0.14%)</title><rect x="166.2" y="421" width="1.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="169.19" 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>doobie.util.Read[Int :: Int :: java.util.UUID :: java.util.UUID :: java.util.UUID :: shapeless.HNil] (expanded macros 0) (65,177 μs, 0.16%)</title><rect x="615.5" y="1013" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="618.52" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.syntax.SqlInterpolator#fr.type =&gt; ?{def apply: ?} (expanded macros 0) (64,687 μs, 0.16%)</title><rect x="41.3" y="1045" width="1.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="44.32" 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>doobie.util.Read[com.apolloagriculture.pikachu.queries.ApplicationSurveyQueries.ApplicationSurveyFarmerDetails] (expanded macros 0) (44,986 μs, 0.11%)</title><rect x="612.1" y="1045" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="615.15" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Boolean :: shapeless.HNil]] (id 1205) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (43,840 μs, 0.11%)</title><rect x="206.0" y="645" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="209.03" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (8,534 μs, 0.02%)</title><rect x="82.5" y="629" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="85.54" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (6,117 μs, 0.02%)</title><rect x="967.7" y="981" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="970.74" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (9,861 μs, 0.02%)</title><rect x="716.1" y="917" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="719.08" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.IVRQueries.LaunchedIVR]{type Repr = L} (id 10583) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,368 μs, 0.01%)</title><rect x="635.0" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="637.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (74,748 μs, 0.18%)</title><rect x="993.4" y="869" width="2.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="996.43" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (9,146 μs, 0.02%)</title><rect x="793.4" y="309" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="796.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>doobie.util.Read[Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (53,851 μs, 0.13%)</title><rect x="594.5" y="853" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="597.54" 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>reflect.runtime.universe.TypeTag[Double :: Float :: Float :: String :: Long :: shapeless.HNil] (expanded macros 1) (4,444 μs, 0.01%)</title><rect x="1012.8" y="965" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1015.77" 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>doobie.util.Put[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (26,962 μs, 0.07%)</title><rect x="1137.1" y="437" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (5,206 μs, 0.01%)</title><rect x="391.0" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="394.02" 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>doobie.util.Put[String :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (4,642 μs, 0.01%)</title><rect x="958.7" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="961.74" 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>doobie.util.Read[Int :: java.util.UUID :: Int :: shapeless.HNil] (expanded macros 0) (41,342 μs, 0.10%)</title><rect x="53.0" y="1013" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="55.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (8,280 μs, 0.02%)</title><rect x="131.8" y="421" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="134.83" 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>doobie.util.Get[Int :: String :: Double :: Double :: Int :: shapeless.HNil] (expanded macros 0) (5,747 μs, 0.01%)</title><rect x="47.3" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="50.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (7,316 μs, 0.02%)</title><rect x="669.1" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="672.10" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (19,352 μs, 0.05%)</title><rect x="1154.3" y="997" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1157.26" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (5,822 μs, 0.01%)</title><rect x="980.2" y="789" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="983.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>doobie.util.Get[Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (5,662 μs, 0.01%)</title><rect x="576.2" y="645" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="579.18" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,345 μs, 0.01%)</title><rect x="309.1" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,321 μs, 0.02%)</title><rect x="872.3" y="533" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="875.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>doobie.util.Get[com.apolloagriculture.pikachu.queries.TaskResult] (expanded macros 0) (200,503 μs, 0.49%)</title><rect x="755.2" y="1029" width="5.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="758.22" 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>doobie.util.Put[Int :: Boolean :: shapeless.HNil] (expanded macros 0) (7,404 μs, 0.02%)</title><rect x="1015.6" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1018.56" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (263,938 μs, 0.65%)</title><rect x="492.4" y="885" width="7.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="495.35" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: String :: Option[String] :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (9,687 μs, 0.02%)</title><rect x="282.5" y="917" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="285.52" 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>reflect.runtime.universe.TypeTag[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,879 μs, 0.01%)</title><rect x="473.6" y="661" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="476.57" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (22,192 μs, 0.05%)</title><rect x="386.5" y="789" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="389.49" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 7826) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (115,629 μs, 0.29%)</title><rect x="284.7" y="837" width="3.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="287.74" 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>doobie.util.Read[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (321,132 μs, 0.79%)</title><rect x="479.7" y="949" width="9.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="482.70" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.InputPackageQueryBuilders.InputPackage]{type Repr = L} (id 12900) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,941 μs, 0.01%)</title><rect x="648.6" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="651.58" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,021 μs, 0.02%)</title><rect x="149.5" y="629" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="152.53" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.Task] (expanded macros 0) (452,931 μs, 1.12%)</title><rect x="87.7" y="917" width="13.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="90.70" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[String] :: shapeless.HNil]] (id 3899) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,840 μs, 0.04%)</title><rect x="153.3" y="261" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="156.33" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 19500) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,466 μs, 0.04%)</title><rect x="444.4" y="805" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="447.37" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.MessageId :: String :: shapeless.HNil]] (id 10081) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (40,857 μs, 0.10%)</title><rect x="403.4" y="901" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="406.38" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[String :: String :: shapeless.HNil] (expanded macros 0) (31,041 μs, 0.08%)</title><rect x="303.1" y="853" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="306.14" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[Int]] (expanded macros 0) (5,449 μs, 0.01%)</title><rect x="170.2" y="709" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="173.15" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: String :: java.util.UUID :: String :: shapeless.HNil] (expanded macros 0) (26,967 μs, 0.07%)</title><rect x="979.9" y="997" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="982.86" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (91,888 μs, 0.23%)</title><rect x="98.0" y="469" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="100.99" 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>doobie.util.Get[String :: shapeless.HNil] (expanded macros 0) (5,964 μs, 0.01%)</title><rect x="59.9" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="62.90" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (259,638 μs, 0.64%)</title><rect x="869.2" y="725" width="7.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="872.15" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,094 μs, 0.01%)</title><rect x="165.7" y="437" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="168.69" 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>doobie.util.Get[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (15,881 μs, 0.04%)</title><rect x="427.9" y="901" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="430.86" 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>doobie.util.Put[Int :: String :: String :: io.circe.Json :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (6,133 μs, 0.02%)</title><rect x="955.2" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="958.15" 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>doobie.util.param.Param[Option[String]] (expanded macros 0) (10,312 μs, 0.03%)</title><rect x="1042.5" y="965" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1045.53" 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>doobie.util.Put[com.apolloagriculture.pikachu.models.ResponseType :: Option[org.joda.time.DateTime] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (105,276 μs, 0.26%)</title><rect x="1049.3" y="997" width="3.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1052.32" 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>shapeless.Lazy[doobie.util.Write[Int :: Int :: shapeless.HNil]] (id 26103) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (28,049 μs, 0.07%)</title><rect x="926.4" y="997" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="929.37" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (4,928 μs, 0.01%)</title><rect x="263.1" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="266.14" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: String :: Int :: shapeless.HNil]] (id 14181) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (27,821 μs, 0.07%)</title><rect x="51.6" y="1029" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="54.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: String :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (8,152 μs, 0.02%)</title><rect x="305.1" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="308.11" 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>doobie.util.Read[Int :: String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (63,973 μs, 0.16%)</title><rect x="608.6" y="1013" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="611.55" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,832 μs, 0.01%)</title><rect x="254.6" y="789" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="257.61" 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>doobie.util.Get[Option[String]] (expanded macros 0) (8,242 μs, 0.02%)</title><rect x="559.4" y="517" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="562.41" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (73,881 μs, 0.18%)</title><rect x="962.7" y="997" width="2.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="965.65" 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>reflect.runtime.universe.TypeTag[Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,317 μs, 0.01%)</title><rect x="724.5" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="727.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>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (4,731 μs, 0.01%)</title><rect x="859.4" y="341" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="862.37" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 3821) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (89,164 μs, 0.22%)</title><rect x="151.4" y="517" width="2.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="154.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6303) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (44,082 μs, 0.11%)</title><rect x="630.3" y="997" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="633.26" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,337 μs, 0.01%)</title><rect x="689.7" y="757" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="692.68" 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>doobie.util.Get[java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (6,544 μs, 0.02%)</title><rect x="392.9" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="395.95" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 20705) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,248 μs, 0.02%)</title><rect x="617.9" y="997" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="620.87" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,773 μs, 0.02%)</title><rect x="129.0" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="132.01" 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>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (17,260 μs, 0.04%)</title><rect x="112.0" y="741" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="114.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>doobie.util.Get[Double :: shapeless.HNil] (expanded macros 0) (5,582 μs, 0.01%)</title><rect x="57.5" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="60.48" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title> type T = T} (expanded macros 0) (5,216 μs, 0.01%)</title><rect x="578.1" y="997" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="581.14" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (11,000 μs, 0.03%)</title><rect x="635.6" y="997" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="638.65" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12279) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (142,491 μs, 0.35%)</title><rect x="654.6" y="997" width="4.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="657.60" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 27401) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (177,893 μs, 0.44%)</title><rect x="113.6" y="677" width="5.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="116.61" 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>doobie.util.Read[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (460,291 μs, 1.14%)</title><rect x="534.0" y="949" width="13.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="536.98" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (140,274 μs, 0.35%)</title><rect x="292.6" y="853" width="4.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="295.63" 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>shapeless.Lazy[doobie.util.Read[String :: String :: shapeless.HNil]] (id 6640) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,701 μs, 0.04%)</title><rect x="612.9" y="965" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="615.88" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,893 μs, 0.01%)</title><rect x="795.0" y="693" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="798.04" 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>doobie.util.Read[Int :: Int :: com.apolloagriculture.pikachu.models.SubTaskType :: String :: shapeless.HNil] (expanded macros 0) (78,196 μs, 0.19%)</title><rect x="743.8" y="1013" width="2.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="746.82" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 5104) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,618 μs, 0.02%)</title><rect x="271.2" y="709" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="274.25" 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>reflect.runtime.universe.TypeTag[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (7,384 μs, 0.02%)</title><rect x="232.7" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="235.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (3,772 μs, 0.01%)</title><rect x="384.2" y="693" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="387.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>shapeless.Generic[com.apolloagriculture.pikachu.queries.AuditTaskResult]{type Repr = G} (id 25407) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,420 μs, 0.01%)</title><rect x="615.3" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="618.34" 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>doobie.util.Get[Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (5,491 μs, 0.01%)</title><rect x="611.0" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="613.99" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,775 μs, 0.01%)</title><rect x="691.7" y="613" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="694.70" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.SubTask]{type Repr = G} (id 29241) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (7,714 μs, 0.02%)</title><rect x="454.7" y="1029" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="457.66" 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>doobie.util.param.Param[Option[String]] (expanded macros 0) (6,528 μs, 0.02%)</title><rect x="953.1" y="997" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="956.06" 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>doobie.util.param.Param[Option[String]] (expanded macros 0) (6,262 μs, 0.02%)</title><rect x="953.5" y="965" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="956.51" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,635 μs, 0.02%)</title><rect x="152.1" y="421" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="155.05" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 4356) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,796 μs, 0.02%)</title><rect x="170.1" y="741" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="173.11" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil]] (id 7642) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (83,066 μs, 0.21%)</title><rect x="319.9" y="997" width="2.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="322.87" 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>reflect.runtime.universe.TypeTag[scala.math.BigDecimal :: com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (3,727 μs, 0.01%)</title><rect x="940.5" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="943.51" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1103) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (240,472 μs, 0.59%)</title><rect x="200.5" y="965" width="7.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="203.53" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,250 μs, 0.01%)</title><rect x="930.6" y="821" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="933.63" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (9,389 μs, 0.02%)</title><rect x="324.8" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="327.78" 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>shapeless.Lazy[doobie.util.Read[Int :: shapeless.HNil]] (id 1622) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (29,066 μs, 0.07%)</title><rect x="588.8" y="837" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="591.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>doobie.util.Get[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (18,973 μs, 0.05%)</title><rect x="899.6" y="773" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="902.57" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[shapeless.HNil] (expanded macros 0) (5,066 μs, 0.01%)</title><rect x="949.5" y="885" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="952.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>shapeless.Lazy[doobie.util.Write[com.apolloagriculture.pikachu.models.LiabilitySource.Value :: Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value] :: Option[Int] :: shapeless.HNil]] (id 19820) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (38,842 μs, 0.10%)</title><rect x="940.7" y="965" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="943.66" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (11,258 μs, 0.03%)</title><rect x="882.6" y="821" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="885.58" 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>doobie.util.Get[Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,843 μs, 0.02%)</title><rect x="178.8" y="517" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="181.82" 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>shapeless.Lazy[doobie.util.Read[Option[com.vividsolutions.jts.geom.Point]]] (id 29926) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,695 μs, 0.03%)</title><rect x="553.0" y="869" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="556.05" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (33,195 μs, 0.08%)</title><rect x="326.7" y="885" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="329.73" 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>doobie.util.Read[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (64,622 μs, 0.16%)</title><rect x="497.6" y="565" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="500.59" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 17075) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (3,887 μs, 0.01%)</title><rect x="277.0" y="741" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="279.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>doobie.util.Read[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (28,939 μs, 0.07%)</title><rect x="560.9" y="437" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="563.85" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (8,182 μs, 0.02%)</title><rect x="1041.4" y="885" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1044.42" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 6511) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,320 μs, 0.01%)</title><rect x="632.8" y="837" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="635.77" 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>reflect.runtime.universe.TypeTag[String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,300 μs, 0.02%)</title><rect x="163.8" y="597" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="166.78" 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>reflect.runtime.universe.TypeTag[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,416 μs, 0.01%)</title><rect x="856.9" y="469" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="859.88" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (11,580 μs, 0.03%)</title><rect x="85.0" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="88.01" 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>doobie.util.Read[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (373,898 μs, 0.92%)</title><rect x="866.2" y="853" width="10.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="869.19" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[String] :: org.joda.time.DateTime :: shapeless.HNil]] (id 9363) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (31,378 μs, 0.08%)</title><rect x="437.1" y="805" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="440.13" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber]] (id 1593) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (15,420 μs, 0.04%)</title><rect x="590.1" y="869" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="593.06" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,869 μs, 0.02%)</title><rect x="103.6" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="106.59" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,571 μs, 0.01%)</title><rect x="996.8" y="981" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="999.78" 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>doobie.util.Get[Double :: Int :: shapeless.HNil] (expanded macros 0) (4,048 μs, 0.01%)</title><rect x="48.0" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="50.98" 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>doobie.util.Get[String :: String :: String :: String :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (7,928 μs, 0.02%)</title><rect x="307.5" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="310.53" 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>doobie.util.Read[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (29,415 μs, 0.07%)</title><rect x="383.5" y="821" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="386.49" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13025) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,558 μs, 0.04%)</title><rect x="671.4" y="709" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="674.39" 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>doobie.util.Read[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (119,186 μs, 0.29%)</title><rect x="414.8" y="917" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="417.80" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (21,606 μs, 0.05%)</title><rect x="278.8" y="949" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="281.81" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (14,343 μs, 0.04%)</title><rect x="901.6" y="677" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="904.64" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: String :: shapeless.HNil] (expanded macros 0) (44,049 μs, 0.11%)</title><rect x="278.2" y="981" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="281.15" 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>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (50,739 μs, 0.13%)</title><rect x="385.7" y="885" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="388.70" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15953) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (38,218 μs, 0.09%)</title><rect x="396.7" y="869" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="399.71" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24154) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (321,808 μs, 0.79%)</title><rect x="457.0" y="965" width="9.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="460.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>doobie.util.Read[Option[String]] (expanded macros 0) (7,415 μs, 0.02%)</title><rect x="259.9" y="693" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="262.88" 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>doobie.util.param.Param[Int :: Int :: shapeless.HNil] (expanded macros 0) (19,450 μs, 0.05%)</title><rect x="945.7" y="1013" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="948.69" 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>doobie.util.Get[Int :: String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,330 μs, 0.02%)</title><rect x="264.7" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="267.66" 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>doobie.util.Get[Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (7,929 μs, 0.02%)</title><rect x="588.5" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="591.53" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: shapeless.HNil]] (id 18842) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,304 μs, 0.02%)</title><rect x="686.2" y="741" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="689.17" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (18,911 μs, 0.05%)</title><rect x="545.6" y="405" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="548.59" 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>shapeless.Lazy[doobie.util.Read[String :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 20254) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (27,556 μs, 0.07%)</title><rect x="447.5" y="837" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="450.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>doobie.util.Read[java.util.UUID :: String :: Double :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (79,985 μs, 0.20%)</title><rect x="579.7" y="1013" width="2.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="582.72" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,660 μs, 0.01%)</title><rect x="438.6" y="917" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="441.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>doobie.util.Get[java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (6,659 μs, 0.02%)</title><rect x="390.3" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="393.30" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 1740) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (13,451 μs, 0.03%)</title><rect x="595.7" y="837" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="598.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (6,526 μs, 0.02%)</title><rect x="688.3" y="821" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="691.34" 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>shapeless.Generic[(Int, java.util.UUID, Int)]{type Repr = L} (id 24048) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,196 μs, 0.01%)</title><rect x="52.5" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="55.51" 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>shapeless.ops.hlist.IsHCons[Option[Long] :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.MessageId :: String :: shapeless.HNil]{type H = H (3,624 μs, 0.01%)</title><rect x="401.1" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="404.07" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (53,616 μs, 0.13%)</title><rect x="690.4" y="757" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="693.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,513 μs, 0.01%)</title><rect x="889.8" y="405" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="892.83" 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>doobie.util.Read[Double :: shapeless.HNil] (expanded macros 0) (8,718 μs, 0.02%)</title><rect x="381.2" y="725" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="384.18" 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>doobie.util.Get[Int :: String :: shapeless.HNil] (expanded macros 0) (8,151 μs, 0.02%)</title><rect x="582.8" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="585.77" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,097 μs, 0.02%)</title><rect x="919.8" y="533" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="922.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[String :: String :: String :: Option[String] :: String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 1) (4,921 μs, 0.01%)</title><rect x="736.0" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="738.98" 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>reflect.runtime.universe.TypeTag[Double :: Double :: Double :: Float :: Float :: String :: Long :: shapeless.HNil] (expanded macros 1) (5,253 μs, 0.01%)</title><rect x="1012.2" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1015.21" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 1) (4,152 μs, 0.01%)</title><rect x="736.7" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="739.69" 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>reflect.runtime.universe.TypeTag[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (3,625 μs, 0.01%)</title><rect x="130.8" y="309" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="133.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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (6,041 μs, 0.01%)</title><rect x="1040.5" y="789" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1043.54" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (13,384 μs, 0.03%)</title><rect x="347.3" y="853" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="350.31" 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>doobie.util.Get[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (7,096 μs, 0.02%)</title><rect x="378.9" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="381.94" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (5,923 μs, 0.01%)</title><rect x="640.2" y="949" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="643.24" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[List[String]]]] (id 4089) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,527 μs, 0.02%)</title><rect x="159.9" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="162.86" 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>doobie.util.Read[String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (378,075 μs, 0.93%)</title><rect x="501.5" y="981" width="11.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="504.47" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (18,191 μs, 0.04%)</title><rect x="1140.4" y="357" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1143.41" 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>doobie.util.Get[String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (6,126 μs, 0.02%)</title><rect x="608.9" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="611.90" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (8,486 μs, 0.02%)</title><rect x="917.6" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="920.60" 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>doobie.util.Read[Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (160,266 μs, 0.40%)</title><rect x="428.4" y="885" width="4.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="431.41" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 29300) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (13,116 μs, 0.03%)</title><rect x="499.7" y="869" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="502.66" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (14,457 μs, 0.04%)</title><rect x="471.4" y="805" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="474.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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,822 μs, 0.02%)</title><rect x="284.9" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="287.89" 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>shapeless.Lazy[doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12695) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (85,897 μs, 0.21%)</title><rect x="665.5" y="901" width="2.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="668.45" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (10,922 μs, 0.03%)</title><rect x="427.3" y="917" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="430.29" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Int :: shapeless.HNil] (expanded macros 0) (3,582 μs, 0.01%)</title><rect x="957.0" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="959.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.models.ExecutedPaymentsRow] (expanded macros 0) (190,436 μs, 0.47%)</title><rect x="686.5" y="949" width="5.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="689.54" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (24,656 μs, 0.06%)</title><rect x="987.4" y="981" width="0.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="990.37" 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>doobie.util.Read[Int :: String :: Int :: shapeless.HNil] (expanded macros 0) (26,024 μs, 0.06%)</title><rect x="51.6" y="1013" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="54.62" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,174 μs, 0.02%)</title><rect x="269.2" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="272.17" 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>doobie.util.Put[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (29,986 μs, 0.07%)</title><rect x="1134.3" y="485" width="0.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1137.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (394,503 μs, 0.97%)</title><rect x="833.1" y="885" width="11.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="836.06" 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>doobie.util.Get[String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (6,394 μs, 0.02%)</title><rect x="443.1" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="446.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28274) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (259,154 μs, 0.64%)</title><rect x="523.5" y="805" width="7.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="526.48" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Int :: org.joda.time.DateTime :: Int :: shapeless.HNil] (expanded macros 0) (18,816 μs, 0.05%)</title><rect x="1016.9" y="1029" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1019.88" 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>doobie.util.Read[Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (38,181 μs, 0.09%)</title><rect x="354.3" y="437" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="357.31" 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>doobie.util.Put[Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (12,618 μs, 0.03%)</title><rect x="993.5" y="853" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="996.46" 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>doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (120,085 μs, 0.30%)</title><rect x="248.7" y="981" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="251.75" 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>doobie.util.param.Param[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (11,582 μs, 0.03%)</title><rect x="1002.0" y="901" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1005.05" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (31,511 μs, 0.08%)</title><rect x="602.7" y="917" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="605.72" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23844) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (326,258 μs, 0.81%)</title><rect x="915.3" y="805" width="9.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="918.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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (20,431 μs, 0.05%)</title><rect x="922.8" y="341" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="925.77" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (9,763 μs, 0.02%)</title><rect x="473.9" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="476.95" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: shapeless.HNil]] (id 8436) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (47,526 μs, 0.12%)</title><rect x="326.4" y="933" width="1.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="329.37" 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>doobie.util.Read[String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (351,036 μs, 0.87%)</title><rect x="456.2" y="981" width="10.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="459.20" 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>shapeless.Generic[(org.joda.time.DateTime, org.joda.time.DateTime)]{type Repr = L} (id 30195) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,493 μs, 0.01%)</title><rect x="188.4" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="191.45" 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>doobie.util.Write[(Int, java.util.UUID, Int, String, String)] (expanded macros 0) (49,371 μs, 0.12%)</title><rect x="931.8" y="1045" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="934.82" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (13,726 μs, 0.03%)</title><rect x="620.4" y="917" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="623.42" 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>doobie.util.param.Param[String :: shapeless.HNil] (expanded macros 0) (7,763 μs, 0.02%)</title><rect x="968.5" y="997" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="971.55" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (24,905 μs, 0.06%)</title><rect x="1149.3" y="85" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1152.32" 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>doobie.util.param.Param[String :: Option[Int] :: Option[java.util.UUID] :: shapeless.HNil] (expanded macros 0) (28,449 μs, 0.07%)</title><rect x="1023.5" y="1029" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1026.45" 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>doobie.util.Read[Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (176,639 μs, 0.44%)</title><rect x="162.8" y="693" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="165.83" 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>doobie.util.Put[List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (26,475 μs, 0.07%)</title><rect x="1155.0" y="997" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1158.02" 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>shapeless.Lazy[doobie.util.Read[Int :: Int :: Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 16447) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (492,281 μs, 1.22%)</title><rect x="355.9" y="1029" width="14.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="358.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,403 μs, 0.02%)</title><rect x="266.3" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="269.34" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 1) (46,424 μs, 0.11%)</title><rect x="1098.9" y="789" width="1.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1101.95" 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>doobie.util.Put[Option[String]] (expanded macros 0) (5,711 μs, 0.01%)</title><rect x="953.1" y="981" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="956.07" 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>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: shapeless.HNil]] (id 7668) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (44,668 μs, 0.11%)</title><rect x="320.6" y="933" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="323.64" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.Task] (expanded macros 0) (63,092 μs, 0.16%)</title><rect x="512.6" y="1029" width="1.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="515.60" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29149) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (62,717 μs, 0.15%)</title><rect x="486.4" y="581" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="489.44" 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>doobie.util.Read[String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (211,148 μs, 0.52%)</title><rect x="161.9" y="757" width="6.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="164.87" 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>doobie.util.Put[BigDecimal :: Int :: com.apolloagriculture.pikachu.models.PaymentReasonType :: shapeless.HNil] (expanded macros 0) (7,039 μs, 0.02%)</title><rect x="982.5" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="985.54" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 18326) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,796 μs, 0.03%)</title><rect x="681.7" y="933" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="684.70" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 30054) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (82,046 μs, 0.20%)</title><rect x="559.7" y="549" width="2.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="562.68" 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>doobie.util.Get[String :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,359 μs, 0.02%)</title><rect x="326.4" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="329.42" 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>doobie.util.Read[io.circe.Json :: Option[java.util.UUID] :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (180,673 μs, 0.45%)</title><rect x="747.5" y="981" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="750.46" 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>doobie.util.Get[Option[Double]] (expanded macros 0) (8,394 μs, 0.02%)</title><rect x="907.1" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="910.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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,039 μs, 0.01%)</title><rect x="559.5" y="501" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="562.50" 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>doobie.util.Put[BigDecimal :: java.util.UUID :: Option[Int] :: shapeless.HNil] (expanded macros 0) (5,498 μs, 0.01%)</title><rect x="1008.2" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1011.25" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1552) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (133,009 μs, 0.33%)</title><rect x="586.7" y="997" width="3.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="589.74" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil]] (id 17863) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (44,623 μs, 0.11%)</title><rect x="134.6" y="837" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="137.63" 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>shapeless.Lazy[doobie.util.Write[shapeless.HNil]] (id 26124) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,066 μs, 0.02%)</title><rect x="926.9" y="933" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[Int :: Int :: shapeless.HNil] (expanded macros 0) (5,973 μs, 0.01%)</title><rect x="945.7" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="948.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[String]] (expanded macros 0) (9,330 μs, 0.02%)</title><rect x="104.5" y="789" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="107.53" 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>doobie.util.Get[String :: String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (6,967 μs, 0.02%)</title><rect x="440.7" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="443.72" 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>doobie.util.Read[Option[Double]] (expanded macros 0) (11,772 μs, 0.03%)</title><rect x="546.2" y="437" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="549.17" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 1) (3,534 μs, 0.01%)</title><rect x="631.7" y="981" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="634.65" 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>doobie.util.Put[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (93,166 μs, 0.23%)</title><rect x="1061.2" y="949" width="2.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1064.18" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23312) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (183,945 μs, 0.45%)</title><rect x="887.0" y="645" width="5.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="890.01" 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>doobie.util.Get[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (9,747 μs, 0.02%)</title><rect x="856.4" y="517" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="859.41" 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>doobie.util.Read[Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (166,947 μs, 0.41%)</title><rect x="871.8" y="597" width="4.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="874.77" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (200,341 μs, 0.49%)</title><rect x="902.2" y="661" width="5.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="905.15" 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>doobie.util.Write[(java.util.UUID, Int, com.apolloagriculture.pikachu.models.LoanApplicationStatus, String, Double)] (expanded macros 0) (49,399 μs, 0.12%)</title><rect x="941.8" y="1045" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="944.82" 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>doobie.util.Read[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (410,716 μs, 1.01%)</title><rect x="783.3" y="885" width="12.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="786.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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: shapeless.HNil]] (id 28683) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (31,281 μs, 0.08%)</title><rect x="545.2" y="453" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="548.23" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 27439) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (50,675 μs, 0.13%)</title><rect x="117.2" y="421" width="1.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="120.19" 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>doobie.util.Get[String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (20,292 μs, 0.05%)</title><rect x="490.2" y="965" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="493.23" 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>doobie.util.Get[Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (24,031 μs, 0.06%)</title><rect x="361.4" y="837" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="364.42" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (4,970 μs, 0.01%)</title><rect x="1011.4" y="997" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1014.45" 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>doobie.util.Read[Boolean :: shapeless.HNil] (expanded macros 0) (21,549 μs, 0.05%)</title><rect x="226.8" y="597" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="229.80" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (9,326 μs, 0.02%)</title><rect x="488.5" y="853" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="491.47" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29624) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (133,875 μs, 0.33%)</title><rect x="507.8" y="677" width="3.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="510.82" 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>doobie.util.Get[Option[Double]] (expanded macros 0) (6,145 μs, 0.02%)</title><rect x="184.0" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="186.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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 10834) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,503 μs, 0.02%)</title><rect x="643.4" y="837" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="646.36" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (10,650 μs, 0.03%)</title><rect x="112.1" y="725" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="115.08" 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>doobie.util.param.Param[java.util.UUID :: shapeless.HNil] (expanded macros 0) (14,250 μs, 0.04%)</title><rect x="946.9" y="1013" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="949.87" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12063) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (14,698 μs, 0.04%)</title><rect x="653.0" y="709" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="656.05" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 27243) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (164,090 μs, 0.41%)</title><rect x="127.4" y="613" width="4.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="130.39" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (14,872 μs, 0.04%)</title><rect x="799.6" y="885" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="802.55" 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>doobie.util.Get[Int :: Int :: Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (15,680 μs, 0.04%)</title><rect x="687.2" y="901" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="690.19" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (9,370 μs, 0.02%)</title><rect x="844.2" y="725" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="847.18" 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>doobie.util.Get[String :: Double :: shapeless.HNil] (expanded macros 0) (6,711 μs, 0.02%)</title><rect x="733.3" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="736.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>doobie.util.param.Param[Option[io.circe.Json] :: Option[String] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (90,486 μs, 0.22%)</title><rect x="1161.4" y="885" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1164.38" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 29865) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (530,960 μs, 1.31%)</title><rect x="547.5" y="1029" width="15.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="550.46" 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>doobie.util.param.Param[String :: String :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (50,486 μs, 0.12%)</title><rect x="999.9" y="1045" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1002.93" 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>doobie.util.Read[Double :: shapeless.HNil] (expanded macros 0) (8,582 μs, 0.02%)</title><rect x="389.5" y="725" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="392.46" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (5,444 μs, 0.01%)</title><rect x="570.3" y="597" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="573.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,774 μs, 0.01%)</title><rect x="187.7" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="190.68" 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>doobie.util.Read[Option[io.circe.Json]] (expanded macros 0) (10,134 μs, 0.03%)</title><rect x="546.6" y="565" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="549.58" 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>doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (37,423 μs, 0.09%)</title><rect x="188.9" y="1013" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="191.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (4,255 μs, 0.01%)</title><rect x="652.2" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="655.23" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (11,575 μs, 0.03%)</title><rect x="898.2" y="821" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="901.23" 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>doobie.util.Read[Option[String] :: Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (79,077 μs, 0.20%)</title><rect x="133.8" y="917" width="2.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="136.83" 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>shapeless.Generic[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]{type Repr = L} (expanded macros 3) (4,427 μs, 0.01%)</title><rect x="870.4" y="661" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="873.45" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (3,774 μs, 0.01%)</title><rect x="397.6" y="693" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="400.61" 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>doobie.util.Get[Option[String]] (expanded macros 0) (4,942 μs, 0.01%)</title><rect x="636.7" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="639.75" 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>doobie.util.Write[String :: String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (146,306 μs, 0.36%)</title><rect x="935.4" y="917" width="4.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="938.40" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (5,328 μs, 0.01%)</title><rect x="285.9" y="725" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="288.90" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,597 μs, 0.01%)</title><rect x="260.1" y="693" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="263.12" 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>reflect.runtime.universe.TypeTag[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (6,469 μs, 0.02%)</title><rect x="462.0" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="464.99" 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>doobie.util.Get[Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,465 μs, 0.02%)</title><rect x="721.2" y="773" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="724.20" 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>doobie.util.Read[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (44,250 μs, 0.11%)</title><rect x="134.6" y="821" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="137.64" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (13,274 μs, 0.03%)</title><rect x="620.4" y="901" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="623.43" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil]] (id 4755) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (53,288 μs, 0.13%)</title><rect x="183.2" y="901" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="186.21" 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>doobie.util.Get[Int :: shapeless.HNil] (expanded macros 0) (3,761 μs, 0.01%)</title><rect x="647.0" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="649.98" 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>doobie.util.Get[Option[com.vividsolutions.jts.geom.Point]] (expanded macros 0) (7,974 μs, 0.02%)</title><rect x="93.4" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="96.37" 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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (8,694 μs, 0.02%)</title><rect x="843.8" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="846.76" 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>doobie.util.Read[String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (96,033 μs, 0.24%)</title><rect x="261.7" y="949" width="2.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="264.70" 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>shapeless.ops.hlist.IsHCons[String :: shapeless.HNil]{type H = H (3,698 μs, 0.01%)</title><rect x="812.8" y="853" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="815.76" 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>reflect.runtime.universe.TypeTag[(com.apolloagriculture.pikachu.queries.AgrodealerQueries.AgrodealerCheckoutInfo, com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent)] (expanded macros 1) (5,144 μs, 0.01%)</title><rect x="140.5" y="1013" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="143.54" 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>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (30,657 μs, 0.08%)</title><rect x="298.8" y="917" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="301.83" 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>shapeless.Lazy[doobie.util.Read[String :: String :: String :: shapeless.HNil]] (id 20633) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (16,656 μs, 0.04%)</title><rect x="694.1" y="933" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="697.09" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Authority]{type Repr = L} (id 14025) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,568 μs, 0.01%)</title><rect x="930.3" y="853" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="933.29" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (13,827 μs, 0.03%)</title><rect x="556.9" y="677" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="559.95" 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>doobie.util.Get[Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (19,617 μs, 0.05%)</title><rect x="363.0" y="773" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="366.04" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,534 μs, 0.01%)</title><rect x="116.2" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="119.23" 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>reflect.runtime.universe.TypeTag[String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (10,943 μs, 0.03%)</title><rect x="221.0" y="853" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="224.02" 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>doobie.util.Write[String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (52,408 μs, 0.13%)</title><rect x="938.1" y="661" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="941.07" 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>doobie.util.Read[Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (50,238 μs, 0.12%)</title><rect x="661.9" y="757" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="664.90" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,369 μs, 0.01%)</title><rect x="433.3" y="917" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="436.28" 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>reflect.runtime.universe.TypeTag[Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (3,953 μs, 0.01%)</title><rect x="792.7" y="341" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="795.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>doobie.util.Read[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (460,569 μs, 1.14%)</title><rect x="879.8" y="949" width="13.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="882.76" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (3,935 μs, 0.01%)</title><rect x="86.4" y="341" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="89.45" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (7,714 μs, 0.02%)</title><rect x="670.1" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="673.10" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil]] (id 3461) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (39,800 μs, 0.10%)</title><rect x="611.0" y="965" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="613.96" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (6,506 μs, 0.02%)</title><rect x="484.3" y="693" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="487.32" 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>shapeless.Lazy[doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: Option[io.circe.Json] :: shapeless.HNil]] (id 143) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (109,139 μs, 0.27%)</title><rect x="567.5" y="837" width="3.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="570.50" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTask] (expanded macros 0) (18,577 μs, 0.05%)</title><rect x="108.8" y="869" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="111.81" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (121,032 μs, 0.30%)</title><rect x="84.1" y="565" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="87.06" 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>reflect.runtime.universe.TypeTag[Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (3,662 μs, 0.01%)</title><rect x="609.2" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="612.18" 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>doobie.util.Get[String :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,970 μs, 0.02%)</title><rect x="320.7" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="323.69" 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>doobie.util.param.Param[Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (1,319,846 μs, 3.26%)</title><rect x="1112.7" y="725" width="38.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1115.70" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: shapeless.HNil] (expanded macros 0) (8,638 μs, 0.02%)</title><rect x="966.7" y="1045" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="969.70" 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>doobie.util.Get[String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,672 μs, 0.02%)</title><rect x="720.5" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="723.54" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (4,406 μs, 0.01%)</title><rect x="608.6" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="611.63" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Agent]{type Repr = G} (id 491) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,327 μs, 0.02%)</title><rect x="198.1" y="1029" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="201.13" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (21,787 μs, 0.05%)</title><rect x="219.2" y="933" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="222.16" 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>doobie.util.Get[(String, String)] (expanded macros 0) (18,144 μs, 0.04%)</title><rect x="58.9" y="1029" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="61.88" 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>doobie.util.param.Param[Int :: Double :: Int :: shapeless.HNil] (expanded macros 0) (16,670 μs, 0.04%)</title><rect x="954.4" y="1029" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="957.40" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (10,279 μs, 0.03%)</title><rect x="458.0" y="885" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="461.01" 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>doobie.util.Read[Option[String]] (expanded macros 0) (9,657 μs, 0.02%)</title><rect x="777.8" y="405" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="780.82" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (9,438 μs, 0.02%)</title><rect x="287.7" y="629" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="290.72" 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>doobie.util.Get[Option[java.util.UUID]] (expanded macros 0) (5,586 μs, 0.01%)</title><rect x="370.0" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="372.99" 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>doobie.util.Read[Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (56,454 μs, 0.14%)</title><rect x="152.3" y="405" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="155.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: Option[String] :: shapeless.HNil]] (id 386) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (40,274 μs, 0.10%)</title><rect x="575.9" y="709" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="578.88" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (8,063 μs, 0.02%)</title><rect x="330.9" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="333.91" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (15,170 μs, 0.04%)</title><rect x="113.7" y="645" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="116.70" 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>doobie.util.Read[Double :: shapeless.HNil] (expanded macros 0) (9,085 μs, 0.02%)</title><rect x="386.8" y="725" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="389.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1318) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (197,418 μs, 0.49%)</title><rect x="211.0" y="901" width="5.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="214.02" 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>doobie.util.Read[String :: org.joda.time.DateTime :: org.joda.time.DateTime :: java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 0) (106,315 μs, 0.26%)</title><rect x="731.2" y="981" width="3.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="734.16" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (3,597 μs, 0.01%)</title><rect x="260.0" y="661" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="262.98" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23238) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (359,638 μs, 0.89%)</title><rect x="882.3" y="869" width="10.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="885.31" 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>doobie.util.Read[Option[BigDecimal]] (expanded macros 0) (8,056 μs, 0.02%)</title><rect x="192.0" y="1045" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="195.04" 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>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29254) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (353,523 μs, 0.87%)</title><rect x="490.1" y="997" width="10.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="493.09" 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>doobie.util.Read[Double :: Double :: shapeless.HNil] (expanded macros 0) (15,877 μs, 0.04%)</title><rect x="383.8" y="757" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="386.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>doobie.util.Get[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (3,641 μs, 0.01%)</title><rect x="653.1" y="677" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="656.08" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (9,064 μs, 0.02%)</title><rect x="237.0" y="933" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="240.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>shapeless.Lazy[doobie.util.Read[Option[Double] :: String :: shapeless.HNil]] (id 21826) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (29,535 μs, 0.07%)</title><rect x="810.0" y="389" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="813.03" 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>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (19,167 μs, 0.05%)</title><rect x="259.7" y="725" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="262.69" 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>shapeless.Lazy[doobie.util.Read[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 20994) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (454,714 μs, 1.12%)</title><rect x="766.0" y="965" width="13.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="769.02" 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>doobie.util.Get[Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (6,136 μs, 0.02%)</title><rect x="368.8" y="389" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="371.83" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (211,924 μs, 0.52%)</title><rect x="556.3" y="725" width="6.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="559.27" 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>doobie.util.Read[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (114,689 μs, 0.28%)</title><rect x="284.8" y="821" width="3.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="287.77" 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>doobie.util.param.Param[Option[Int]] (expanded macros 0) (5,748 μs, 0.01%)</title><rect x="998.7" y="949" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1001.70" 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>doobie.util.Read[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (358,752 μs, 0.89%)</title><rect x="898.0" y="853" width="10.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="900.97" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: shapeless.HNil] (expanded macros 0) (26,882 μs, 0.07%)</title><rect x="67.1" y="981" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="70.12" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 16595) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (92,820 μs, 0.23%)</title><rect x="367.1" y="581" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="370.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (41,132 μs, 0.10%)</title><rect x="431.8" y="661" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="434.75" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12650) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (148,337 μs, 0.37%)</title><rect x="663.7" y="1029" width="4.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="666.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (3,926 μs, 0.01%)</title><rect x="380.9" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="383.87" 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>doobie.util.param.Param[com.apolloagriculture.pikachu.models.SubTaskType :: String :: Option[String] :: Int :: Boolean :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (26,553 μs, 0.07%)</title><rect x="1001.9" y="1029" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1004.89" 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>shapeless.Lazy[doobie.util.Write[String :: Option[String] :: Option[String] :: shapeless.HNil]] (id 14032) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (41,870 μs, 0.10%)</title><rect x="930.5" y="869" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="933.54" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 27442) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (37,247 μs, 0.09%)</title><rect x="117.6" y="389" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="120.58" 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>doobie.util.Read[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (518,056 μs, 1.28%)</title><rect x="910.2" y="981" width="15.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="913.20" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (8,378 μs, 0.02%)</title><rect x="598.8" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="601.76" 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>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (5,459 μs, 0.01%)</title><rect x="87.3" y="309" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="90.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>doobie.util.Put[Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (51,068 μs, 0.13%)</title><rect x="1121.9" y="629" width="1.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1124.92" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,901 μs, 0.01%)</title><rect x="808.2" y="501" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="811.23" 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>doobie.util.Get[Double :: Int :: shapeless.HNil] (expanded macros 0) (3,910 μs, 0.01%)</title><rect x="49.3" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="52.31" 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>doobie.util.Get[Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (5,983 μs, 0.01%)</title><rect x="642.1" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="645.09" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 28743) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (393,957 μs, 0.97%)</title><rect x="466.4" y="1029" width="11.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="469.42" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: Option[String] :: Option[String] :: Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil]] (id 9438) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (114,973 μs, 0.28%)</title><rect x="301.0" y="997" width="3.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="304.04" 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>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (10,250 μs, 0.03%)</title><rect x="248.8" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="251.81" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 3842) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (66,553 μs, 0.16%)</title><rect x="152.0" y="453" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="155.01" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,127 μs, 0.01%)</title><rect x="254.9" y="885" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="257.89" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (90,638 μs, 0.22%)</title><rect x="234.1" y="725" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="237.14" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13237) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (92,842 μs, 0.23%)</title><rect x="674.0" y="901" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="676.95" 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>doobie.util.Read[Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (94,822 μs, 0.23%)</title><rect x="285.3" y="789" width="2.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="288.31" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (294,073 μs, 0.73%)</title><rect x="554.2" y="821" width="8.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="557.21" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,698 μs, 0.01%)</title><rect x="876.8" y="693" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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>reflect.runtime.universe.TypeTag[String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,013 μs, 0.01%)</title><rect x="725.1" y="821" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="728.15" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (15,629 μs, 0.04%)</title><rect x="127.5" y="581" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="130.50" 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>doobie.util.param.Param[java.util.UUID :: String :: Int :: shapeless.HNil] (expanded macros 0) (22,712 μs, 0.06%)</title><rect x="1022.8" y="1045" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1025.78" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (12,248 μs, 0.03%)</title><rect x="499.7" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="502.68" 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>doobie.util.Get[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (6,954 μs, 0.02%)</title><rect x="545.3" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="548.28" 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>doobie.util.Get[Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (11,150 μs, 0.03%)</title><rect x="688.3" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="691.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>doobie.util.Put[String] (expanded macros 0) (12,231 μs, 0.03%)</title><rect x="1004.9" y="1013" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1007.89" 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>doobie.util.Get[Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (11,449 μs, 0.03%)</title><rect x="919.3" y="581" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="922.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>reflect.runtime.universe.TypeTag[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.Authority :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 1) (4,970 μs, 0.01%)</title><rect x="573.2" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="576.17" 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>shapeless.Lazy[doobie.util.Read[String :: String :: org.joda.time.DateTime :: shapeless.HNil]] (id 9876) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (42,154 μs, 0.10%)</title><rect x="308.2" y="933" width="1.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="311.17" 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>doobie.util.Get[Option[String] :: Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (7,334 μs, 0.02%)</title><rect x="133.9" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="136.87" 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>shapeless.Generic[Boolean :: shapeless.HNil]{type Repr = L} (expanded macros 3) (3,817 μs, 0.01%)</title><rect x="1015.9" y="981" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1018.95" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (276,369 μs, 0.68%)</title><rect x="199.8" y="981" width="8.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="202.85" 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>doobie.util.Read[com.apolloagriculture.pikachu.queries.InputPackageQueryBuilders.InputPackage] (expanded macros 0) (1,010,194 μs, 2.49%)</title><rect x="647.3" y="1045" width="29.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="650.31" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: org.joda.time.DateTime :: java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 1) (4,537 μs, 0.01%)</title><rect x="731.6" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="734.63" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 1) (53,289 μs, 0.13%)</title><rect x="1096.3" y="805" width="1.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1099.26" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (246,671 μs, 0.61%)</title><rect x="1169.2" y="1029" width="7.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1172.17" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (5,845 μs, 0.01%)</title><rect x="499.8" y="821" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="502.83" 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>reflect.runtime.universe.TypeTag[Double :: String :: String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,261 μs, 0.01%)</title><rect x="183.0" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="186.01" 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>reflect.runtime.universe.TypeTag[String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 1) (4,939 μs, 0.01%)</title><rect x="597.9" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (186,241 μs, 0.46%)</title><rect x="494.2" y="789" width="5.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="497.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil]] (id 25935) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (98,175 μs, 0.24%)</title><rect x="724.1" y="933" width="2.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="727.07" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 9345) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,510 μs, 0.03%)</title><rect x="438.1" y="837" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="441.06" 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>reflect.runtime.universe.TypeTag[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,440 μs, 0.01%)</title><rect x="497.3" y="565" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="500.27" 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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (9,474 μs, 0.02%)</title><rect x="570.0" y="581" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="573.03" 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>doobie.util.Get[Option[String] :: Boolean :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (5,667 μs, 0.01%)</title><rect x="253.9" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="256.91" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (14,469 μs, 0.04%)</title><rect x="590.1" y="853" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="593.09" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (5,854 μs, 0.01%)</title><rect x="600.4" y="789" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="603.37" 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>doobie.util.Get[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (8,831 μs, 0.02%)</title><rect x="809.0" y="453" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="812.01" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29039) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (260,392 μs, 0.64%)</title><rect x="481.2" y="901" width="7.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="484.16" 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>shapeless.Lazy[doobie.util.Read[String :: Double :: Double :: Int :: shapeless.HNil]] (id 14303) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (36,434 μs, 0.09%)</title><rect x="47.5" y="997" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="50.52" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (354,818 μs, 0.88%)</title><rect x="1140.3" y="389" width="10.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1143.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>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (17,859 μs, 0.04%)</title><rect x="675.7" y="693" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="678.69" 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>doobie.util.Get[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (8,438 μs, 0.02%)</title><rect x="416.1" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="419.09" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21412) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (205,323 μs, 0.51%)</title><rect x="788.9" y="645" width="5.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="791.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Boolean :: String :: String :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (5,227 μs, 0.01%)</title><rect x="447.1" y="869" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="450.09" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 13204) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (128,906 μs, 0.32%)</title><rect x="673.0" y="997" width="3.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="675.98" 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>doobie.util.Get[Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,640 μs, 0.01%)</title><rect x="417.3" y="677" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="420.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>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (204,630 μs, 0.51%)</title><rect x="788.9" y="629" width="5.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="791.88" 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>doobie.util.Read[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (90,056 μs, 0.22%)</title><rect x="392.6" y="1013" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="395.61" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.queries.AgentQueries.AgentMatch] (expanded macros 1) (3,898 μs, 0.01%)</title><rect x="577.6" y="1013" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="580.64" 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>shapeless.Lazy[doobie.util.Read[Option[Double]]] (id 21817) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,425 μs, 0.03%)</title><rect x="810.9" y="389" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="813.89" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29594) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (188,375 μs, 0.46%)</title><rect x="506.3" y="773" width="5.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="509.31" 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>doobie.util.Read[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (152,412 μs, 0.38%)</title><rect x="790.3" y="533" width="4.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="793.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12931) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (119,997 μs, 0.30%)</title><rect x="669.0" y="965" width="3.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="671.96" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23684) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (54,330 μs, 0.13%)</title><rect x="905.7" y="421" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="908.72" 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>doobie.util.Read[Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (41,200 μs, 0.10%)</title><rect x="657.2" y="757" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="660.16" 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>doobie.util.Read[org.joda.time.DateTime :: Int :: shapeless.HNil] (expanded macros 0) (16,782 μs, 0.04%)</title><rect x="634.2" y="917" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="637.22" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (4,523 μs, 0.01%)</title><rect x="235.2" y="629" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="238.18" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29128) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (93,318 μs, 0.23%)</title><rect x="485.6" y="645" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="488.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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,642 μs, 0.01%)</title><rect x="544.6" y="469" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="547.60" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (203,550 μs, 0.50%)</title><rect x="822.2" y="661" width="6.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="825.22" 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>shapeless.Lazy[doobie.util.Read[String :: Double :: Boolean :: shapeless.HNil]] (id 26271) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (44,668 μs, 0.11%)</title><rect x="738.1" y="805" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="741.09" 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>doobie.util.Get[Double :: String :: String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (6,596 μs, 0.02%)</title><rect x="154.8" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="157.81" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (4,749 μs, 0.01%)</title><rect x="724.9" y="821" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="727.93" 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>doobie.util.param.Param[String :: java.util.UUID :: String :: shapeless.HNil] (expanded macros 0) (13,195 μs, 0.03%)</title><rect x="1003.3" y="1045" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1006.32" 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>reflect.runtime.universe.TypeTag[Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (7,860 μs, 0.02%)</title><rect x="177.2" y="629" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[List[String]]{type Repr = L} (expanded macros 3) (4,267 μs, 0.01%)</title><rect x="123.6" y="725" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="126.65" 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>shapeless.Lazy[doobie.util.Read[String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29360) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (130,240 μs, 0.32%)</title><rect x="495.8" y="709" width="3.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="498.75" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (10,959 μs, 0.03%)</title><rect x="485.2" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="488.18" 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>doobie.util.Read[String :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (54,317 μs, 0.13%)</title><rect x="622.0" y="981" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="625.03" 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>reflect.runtime.universe.TypeTag[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,033 μs, 0.01%)</title><rect x="920.7" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="923.69" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 1) (5,743 μs, 0.01%)</title><rect x="435.7" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="438.69" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SignupCode] (expanded macros 0) (15,238 μs, 0.04%)</title><rect x="445.2" y="1029" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="448.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (61,784 μs, 0.15%)</title><rect x="116.9" y="437" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="119.88" 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>reflect.runtime.universe.TypeTag[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,236 μs, 0.01%)</title><rect x="86.2" y="373" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="89.16" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (6,823 μs, 0.02%)</title><rect x="461.1" y="725" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="464.06" 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>doobie.util.Get[Int :: String :: Int :: shapeless.HNil] (expanded macros 0) (4,642 μs, 0.01%)</title><rect x="51.6" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="54.65" 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>doobie.util.Get[String :: Int :: shapeless.HNil] (expanded macros 0) (3,692 μs, 0.01%)</title><rect x="58.4" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="61.41" 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>doobie.util.Get[Option[String]] (expanded macros 0) (5,670 μs, 0.01%)</title><rect x="267.5" y="677" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="270.46" 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>doobie.util.param.Param[Option[org.joda.time.DateTime]] (expanded macros 0) (11,327 μs, 0.03%)</title><rect x="1164.4" y="933" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" 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>doobie.util.Read[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (116,394 μs, 0.29%)</title><rect x="115.4" y="565" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="118.37" 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>reflect.runtime.universe.TypeTag[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,052 μs, 0.01%)</title><rect x="508.8" y="565" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="511.82" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (5,000 μs, 0.01%)</title><rect x="250.0" y="853" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="252.97" 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>doobie.util.Read[Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (407,239 μs, 1.01%)</title><rect x="358.3" y="949" width="11.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="361.30" 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>doobie.util.Get[Double :: Double :: shapeless.HNil] (expanded macros 0) (3,500 μs, 0.01%)</title><rect x="400.0" y="741" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="402.99" 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>doobie.util.Read[String :: String :: Int :: String :: String :: shapeless.HNil] (expanded macros 0) (68,033 μs, 0.17%)</title><rect x="624.7" y="981" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="627.66" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15807) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (30,151 μs, 0.07%)</title><rect x="394.3" y="837" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="397.26" 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>doobie.util.Read[String :: Option[String] :: shapeless.HNil] (expanded macros 0) (46,727 μs, 0.12%)</title><rect x="326.4" y="917" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="329.39" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21091) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (214,147 μs, 0.53%)</title><rect x="772.3" y="709" width="6.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="775.27" 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>doobie.util.Read[Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (530,996 μs, 1.31%)</title><rect x="893.4" y="1013" width="15.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="896.44" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (6,362 μs, 0.02%)</title><rect x="510.9" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="513.88" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: shapeless.HNil]] (id 9372) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (20,064 μs, 0.05%)</title><rect x="437.5" y="773" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="440.46" 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>reflect.runtime.universe.TypeTag[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (11,452 μs, 0.03%)</title><rect x="425.9" y="981" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="428.90" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6291) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (57,672 μs, 0.14%)</title><rect x="629.9" y="1029" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="632.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17387) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,812 μs, 0.02%)</title><rect x="372.3" y="837" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="375.27" 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>shapeless.Lazy[doobie.util.Write[Option[com.apolloagriculture.pikachu.models.LiabilitySourceTable.Value]]] (id 19840) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,782 μs, 0.02%)</title><rect x="941.5" y="901" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="944.54" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (8,138 μs, 0.02%)</title><rect x="105.1" y="869" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="108.14" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (13,068 μs, 0.03%)</title><rect x="296.3" y="805" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="299.34" 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>doobie.util.Get[Double :: org.joda.time.DateTime :: Option[String] :: Option[String] :: Option[com.apolloagriculture.pikachu.models.PhoneNumber] :: String :: String :: shapeless.HNil] (expanded macros 0) (10,238 μs, 0.03%)</title><rect x="300.6" y="997" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="303.61" 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>doobie.util.Read[Int :: shapeless.HNil] (expanded macros 0) (11,066 μs, 0.03%)</title><rect x="675.9" y="661" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="678.88" 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>doobie.util.Get[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (6,684 μs, 0.02%)</title><rect x="475.9" y="485" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="478.92" 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>doobie.util.Put[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (28,202 μs, 0.07%)</title><rect x="1154.1" y="1013" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1157.09" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,794 μs, 0.01%)</title><rect x="605.2" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="608.23" 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>doobie.util.Read[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (102,928 μs, 0.25%)</title><rect x="689.0" y="821" width="3.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="692.03" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (4,912 μs, 0.01%)</title><rect x="715.8" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="718.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>doobie.util.Get[java.util.UUID :: String :: Double :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (9,513 μs, 0.02%)</title><rect x="579.8" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="582.75" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (4,159 μs, 0.01%)</title><rect x="325.7" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="328.67" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (8,162 μs, 0.02%)</title><rect x="465.0" y="437" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="468.02" 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>doobie.util.Read[String :: Int :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (44,500 μs, 0.11%)</title><rect x="272.7" y="1013" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="275.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (17,078 μs, 0.04%)</title><rect x="671.4" y="693" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="674.41" 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>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: Option[io.circe.Json] :: shapeless.HNil] (expanded macros 0) (108,361 μs, 0.27%)</title><rect x="567.5" y="821" width="3.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="570.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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil]] (id 1667) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (209,615 μs, 0.52%)</title><rect x="590.7" y="1029" width="6.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="593.69" 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>doobie.util.Read[String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (54,889 μs, 0.14%)</title><rect x="606.9" y="981" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="609.89" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 25348) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,647 μs, 0.03%)</title><rect x="716.1" y="933" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="719.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: String :: String :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 20479) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (68,265 μs, 0.17%)</title><rect x="449.2" y="965" width="2.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="452.18" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (54,563 μs, 0.13%)</title><rect x="1178.8" y="1029" width="1.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1181.85" 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>doobie.util.Read[Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (186,066 μs, 0.46%)</title><rect x="789.4" y="597" width="5.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="792.39" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (10,805 μs, 0.03%)</title><rect x="226.0" y="645" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="229.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (9,423 μs, 0.02%)</title><rect x="82.0" y="661" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="85.01" 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>shapeless.Lazy[doobie.util.Read[String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1124) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (188,345 μs, 0.46%)</title><rect x="202.0" y="901" width="5.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="205.02" 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>reflect.runtime.universe.TypeTag[Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,724 μs, 0.01%)</title><rect x="166.5" y="341" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="169.50" 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>reflect.runtime.universe.TypeTag[Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (19,892 μs, 0.05%)</title><rect x="358.8" y="917" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="361.76" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.queries.AuditTaskResult] (expanded macros 0) (88,022 μs, 0.22%)</title><rect x="614.9" y="1045" width="2.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="617.86" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.ops.hlist.IsHCons[Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: Option[io.circe.Json] :: shapeless.HNil]{type H = H (5,602 μs, 0.01%)</title><rect x="564.1" y="1013" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="567.14" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.queries.TaskResult]{type Repr = G} (id 22548) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,895 μs, 0.02%)</title><rect x="762.5" y="1029" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="765.49" 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>doobie.util.param.Param[shapeless.HNil] (expanded macros 0) (3,584 μs, 0.01%)</title><rect x="1000.9" y="997" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1003.92" 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>shapeless.Lazy[doobie.util.Read[String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23835) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (351,423 μs, 0.87%)</title><rect x="914.6" y="837" width="10.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="917.59" 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>doobie.util.Read[Option[String] :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (30,682 μs, 0.08%)</title><rect x="437.1" y="789" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="440.15" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (18,717 μs, 0.05%)</title><rect x="432.4" y="597" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="435.39" 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>shapeless.Lazy[doobie.util.Read[String :: shapeless.HNil]] (id 7984) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,882 μs, 0.04%)</title><rect x="626.0" y="869" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="629.02" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 9804) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,646 μs, 0.02%)</title><rect x="312.1" y="869" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="315.07" 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>doobie.util.Get[Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (20,956 μs, 0.05%)</title><rect x="536.5" y="869" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="539.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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (8,490 μs, 0.02%)</title><rect x="772.5" y="661" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="775.46" 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>doobie.util.Get[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (6,033 μs, 0.01%)</title><rect x="398.8" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="401.78" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 1306) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (221,655 μs, 0.55%)</title><rect x="210.3" y="933" width="6.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="213.31" 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>doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (284,391 μs, 0.70%)</title><rect x="480.5" y="917" width="8.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="483.46" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Option[Int] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 1) (6,183 μs, 0.02%)</title><rect x="274.5" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="277.52" 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>doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (410,214 μs, 1.01%)</title><rect x="500.5" y="1013" width="12.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="503.54" 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>doobie.util.Get[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (10,139 μs, 0.03%)</title><rect x="668.6" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="671.64" 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>doobie.util.Put[Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (66,953 μs, 0.17%)</title><rect x="1108.6" y="741" width="2.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1111.60" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (11,845 μs, 0.03%)</title><rect x="682.5" y="997" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="685.46" 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>doobie.util.param.Param[Option[String]] (expanded macros 0) (6,690 μs, 0.02%)</title><rect x="995.8" y="981" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="998.75" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: com.apolloagriculture.pikachu.models.Authority :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: shapeless.HNil]] (id 337) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (117,230 μs, 0.29%)</title><rect x="573.7" y="869" width="3.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="576.71" 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>doobie.util.Get[java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (28,005 μs, 0.07%)</title><rect x="797.3" y="965" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="800.28" 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>doobie.util.param.Param[io.circe.Json :: shapeless.HNil] (expanded macros 0) (8,704 μs, 0.02%)</title><rect x="1000.8" y="1013" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1003.77" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (198,001 μs, 0.49%)</title><rect x="838.4" y="661" width="5.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="841.35" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,581 μs, 0.02%)</title><rect x="789.5" y="565" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="792.51" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (196,949 μs, 0.49%)</title><rect x="918.7" y="629" width="5.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="921.67" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (9,149 μs, 0.02%)</title><rect x="431.0" y="709" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="434.02" 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>shapeless.Lazy[doobie.util.Read[String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6470) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (30,485 μs, 0.08%)</title><rect x="632.0" y="965" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="635.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.queries.IdWithPhoneId] (expanded macros 0) (53,308 μs, 0.13%)</title><rect x="643.6" y="1045" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="646.62" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (246,613 μs, 0.61%)</title><rect x="418.4" y="949" width="7.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="421.38" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (15,615 μs, 0.04%)</title><rect x="916.9" y="709" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="919.88" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (6,175 μs, 0.02%)</title><rect x="636.2" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="639.16" 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>doobie.util.Read[String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (196,582 μs, 0.49%)</title><rect x="211.0" y="885" width="5.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="214.04" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (9,770 μs, 0.02%)</title><rect x="116.2" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="119.17" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,412 μs, 0.01%)</title><rect x="857.7" y="405" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="860.74" 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>shapeless.Lazy[doobie.util.Write[Option[Int]]] (id 19857) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,631 μs, 0.02%)</title><rect x="941.2" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="944.22" 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>doobie.util.Get[Option[String]] (expanded macros 0) (8,613 μs, 0.02%)</title><rect x="292.3" y="837" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="295.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>doobie.util.Read[Option[Int]] (expanded macros 0) (6,351 μs, 0.02%)</title><rect x="268.0" y="853" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="271.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>doobie.util.Read[String :: String :: shapeless.HNil] (expanded macros 0) (27,742 μs, 0.07%)</title><rect x="625.8" y="885" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="628.75" 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>doobie.util.Read[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (29,461 μs, 0.07%)</title><rect x="487.1" y="501" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="490.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>doobie.util.Get[Option[String]] (expanded macros 0) (10,149 μs, 0.03%)</title><rect x="794.1" y="389" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="797.10" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 5988) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (5,118 μs, 0.01%)</title><rect x="754.5" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="757.51" 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>doobie.util.Get[String :: shapeless.HNil] (expanded macros 0) (5,782 μs, 0.01%)</title><rect x="742.3" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="745.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>doobie.util.Get[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (5,645 μs, 0.01%)</title><rect x="393.5" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="396.46" 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>doobie.util.Get[Option[Int] :: Int :: String :: shapeless.HNil] (expanded macros 0) (7,125 μs, 0.02%)</title><rect x="705.6" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="708.62" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]{type Repr = G} (expanded macros 3) (4,347 μs, 0.01%)</title><rect x="224.2" y="741" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="227.22" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (381,458 μs, 0.94%)</title><rect x="1139.5" y="405" width="11.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1142.51" 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>doobie.util.Get[Double :: Boolean :: shapeless.HNil] (expanded macros 0) (6,425 μs, 0.02%)</title><rect x="738.5" y="741" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="741.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>doobie.util.Read[Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (307,816 μs, 0.76%)</title><rect x="173.2" y="885" width="8.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="176.16" 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>shapeless.Lazy[doobie.util.Read[Option[io.circe.Json]]] (id 21162) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,935 μs, 0.02%)</title><rect x="778.1" y="453" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="781.11" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.GPSOutlineQueries.SecondaryGpsOutline] (expanded macros 0) (30,829 μs, 0.08%)</title><rect x="626.8" y="1029" width="0.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="629.77" 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>doobie.util.param.Param[Int :: com.apolloagriculture.pikachu.models.ReviewStatus :: com.apolloagriculture.pikachu.models.ReviewStatus :: String :: shapeless.HNil] (expanded macros 0) (35,722 μs, 0.09%)</title><rect x="966.9" y="1045" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="969.95" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,690 μs, 0.01%)</title><rect x="547.1" y="757" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="550.14" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (4,731 μs, 0.01%)</title><rect x="614.1" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="617.14" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Int :: String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (6,293 μs, 0.02%)</title><rect x="603.8" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="606.76" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (10,465 μs, 0.03%)</title><rect x="278.5" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="281.48" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[shapeless.HNil] (expanded macros 0) (4,528 μs, 0.01%)</title><rect x="926.9" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="929.94" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,117 μs, 0.03%)</title><rect x="850.2" y="821" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="853.23" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (6,172 μs, 0.02%)</title><rect x="595.9" y="789" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="598.89" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (11,154 μs, 0.03%)</title><rect x="208.3" y="981" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="211.33" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[String :: Int :: Int :: shapeless.HNil] (expanded macros 0) (28,598 μs, 0.07%)</title><rect x="945.5" y="1029" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="948.46" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (24,470 μs, 0.06%)</title><rect x="869.9" y="677" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="872.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[shapeless.HNil] (expanded macros 0) (9,933 μs, 0.02%)</title><rect x="45.3" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="48.28" 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>doobie.util.Get[Option[String]] (expanded macros 0) (9,765 μs, 0.02%)</title><rect x="600.3" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="603.26" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Int :: String :: shapeless.HNil]] (id 25340) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (374,333 μs, 0.92%)</title><rect x="705.5" y="965" width="10.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="708.46" 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> type T = T} (expanded macros 0) (37,323 μs, 0.09%)</title><rect x="760.0" y="997" width="1.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="762.97" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 18791) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (17,808 μs, 0.04%)</title><rect x="691.4" y="677" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="694.38" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: shapeless.HNil] (expanded macros 0) (10,176 μs, 0.03%)</title><rect x="49.5" y="885" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="52.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>reflect.runtime.universe.TypeTag[Int :: String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (4,222 μs, 0.01%)</title><rect x="602.0" y="981" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="605.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>doobie.util.param.Param[String :: shapeless.HNil] (expanded macros 0) (101,267 μs, 0.25%)</title><rect x="1004.5" y="1045" width="3.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1007.55" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (7,336 μs, 0.02%)</title><rect x="1148.0" y="133" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1151.03" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.TaskPaymentQueries.PendingPaymentTask]{type Repr = L} (id 25485) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (6,754 μs, 0.02%)</title><rect x="730.2" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="733.16" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,583 μs, 0.01%)</title><rect x="266.6" y="789" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="269.64" 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>shapeless.ops.hlist.IsHCons[String :: shapeless.HNil]{type H = H (9,231 μs, 0.02%)</title><rect x="439.5" y="1013" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="442.47" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Task]{type Repr = G} (id 28174) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (8,744 μs, 0.02%)</title><rect x="514.4" y="1029" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="517.44" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Int] :: shapeless.HNil]] (id 4772) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (20,677 μs, 0.05%)</title><rect x="184.1" y="805" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="187.14" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (88,507 μs, 0.22%)</title><rect x="151.4" y="501" width="2.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="154.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>doobie.util.Read[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (161,019 μs, 0.40%)</title><rect x="242.3" y="789" width="4.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="245.30" 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>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,432 μs, 0.01%)</title><rect x="441.4" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="444.44" 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>reflect.runtime.universe.TypeTag[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (6,666 μs, 0.02%)</title><rect x="807.8" y="533" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="810.77" 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>doobie.util.Get[Option[Int] :: shapeless.HNil] (expanded macros 0) (6,021 μs, 0.01%)</title><rect x="86.9" y="293" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="89.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>doobie.util.Read[String :: String :: Boolean :: com.apolloagriculture.pikachu.models.PhoneNumber :: Option[String] :: Int :: shapeless.HNil] (expanded macros 0) (127,323 μs, 0.31%)</title><rect x="597.4" y="981" width="3.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="600.42" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 2940) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,849 μs, 0.02%)</title><rect x="264.3" y="869" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="267.27" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 1761) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,557 μs, 0.03%)</title><rect x="595.4" y="805" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="598.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>shapeless.Lazy[doobie.util.Read[Option[java.util.UUID] :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 5824) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (170,722 μs, 0.42%)</title><rect x="747.7" y="965" width="5.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="750.72" 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>shapeless.Lazy[doobie.util.Read[Double :: Double :: shapeless.HNil]] (id 15008) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (15,315 μs, 0.04%)</title><rect x="381.0" y="773" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="384.01" 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>doobie.util.Get[Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,613 μs, 0.02%)</title><rect x="275.7" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="278.70" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.MessageId :: String :: shapeless.HNil]] (id 10049) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (77,314 μs, 0.19%)</title><rect x="402.4" y="965" width="2.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="405.37" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24227) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (164,569 μs, 0.41%)</title><rect x="460.9" y="773" width="4.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="463.92" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 26656) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (107,656 μs, 0.27%)</title><rect x="97.6" y="517" width="3.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="100.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>doobie.util.Get[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (12,997 μs, 0.03%)</title><rect x="839.0" y="613" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="841.98" 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>doobie.util.Get[Boolean :: shapeless.HNil] (expanded macros 0) (3,592 μs, 0.01%)</title><rect x="614.5" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="617.51" 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>doobie.util.Read[Option[Int]] (expanded macros 0) (14,439 μs, 0.04%)</title><rect x="511.2" y="501" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="514.22" 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>shapeless.Lazy[doobie.util.Read[Double :: shapeless.HNil]] (id 18335) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (21,396 μs, 0.05%)</title><rect x="681.1" y="933" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="684.08" 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>doobie.util.Read[Option[String]] (expanded macros 0) (6,951 μs, 0.02%)</title><rect x="609.4" y="917" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="612.36" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.Task :: com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (892,323 μs, 2.20%)</title><rect x="106.4" y="949" width="25.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="109.36" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[Int] :: String :: String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (220,725 μs, 0.54%)</title><rect x="210.3" y="917" width="6.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="213.34" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (6,527 μs, 0.02%)</title><rect x="214.2" y="693" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="217.17" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 8347) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,306 μs, 0.03%)</title><rect x="324.1" y="869" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="327.15" 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>doobie.util.Get[String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (22,548 μs, 0.06%)</title><rect x="911.3" y="933" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="914.30" 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>doobie.util.Get[Option[Int]] (expanded macros 0) (5,743 μs, 0.01%)</title><rect x="639.3" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="642.34" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Agent]{type Repr = L} (id 1261) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (7,906 μs, 0.02%)</title><rect x="195.5" y="1013" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="198.51" 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>doobie.util.Get[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,277 μs, 0.01%)</title><rect x="399.6" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="402.64" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.ProductQueries.SimpleProduct] (expanded macros 0) (5,546 μs, 0.01%)</title><rect x="692.5" y="1029" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="695.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.models.PhoneNumber]{type Repr = L} (id 19102) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,471 μs, 0.01%)</title><rect x="439.1" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="442.12" 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>reflect.runtime.universe.TypeTag[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (4,907 μs, 0.01%)</title><rect x="392.7" y="981" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="395.68" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (4,254 μs, 0.01%)</title><rect x="610.5" y="981" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="613.53" 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>reflect.runtime.universe.TypeTag[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,777 μs, 0.01%)</title><rect x="809.1" y="437" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="812.06" 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>doobie.util.param.Param[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (410,135 μs, 1.01%)</title><rect x="1138.7" y="421" width="12.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1141.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (69,517 μs, 0.17%)</title><rect x="431.0" y="725" width="2.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="433.98" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (6,487 μs, 0.02%)</title><rect x="63.7" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="66.68" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 1) (12,816 μs, 0.03%)</title><rect x="346.5" y="885" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="349.54" 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>doobie.util.Read[Int :: String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (136,682 μs, 0.34%)</title><rect x="256.8" y="1013" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="259.80" 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>shapeless.Lazy[doobie.util.Read[Option[java.util.UUID] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 16468) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (407,845 μs, 1.01%)</title><rect x="358.3" y="965" width="11.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="361.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (16,381 μs, 0.04%)</title><rect x="66.5" y="885" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="69.49" 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>doobie.util.Read[String :: Option[Double] :: Option[String] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (39,619 μs, 0.10%)</title><rect x="155.2" y="853" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="158.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>doobie.util.Read[Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (29,405 μs, 0.07%)</title><rect x="432.1" y="629" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="435.08" 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>doobie.util.Get[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (21,240 μs, 0.05%)</title><rect x="913.1" y="869" width="0.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="916.09" 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>doobie.util.Get[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (5,734 μs, 0.01%)</title><rect x="399.0" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="402.03" 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>doobie.util.Get[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (10,503 μs, 0.03%)</title><rect x="654.7" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="657.67" 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>doobie.util.Read[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (313,529 μs, 0.77%)</title><rect x="503.0" y="917" width="9.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="506.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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 28701) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (8,799 μs, 0.02%)</title><rect x="545.9" y="389" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="548.89" 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>reflect.runtime.universe.TypeTag[String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (5,983 μs, 0.01%)</title><rect x="651.0" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="653.96" 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>shapeless.Lazy[doobie.util.Read[List[String]]] (id 28216) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (13,875 μs, 0.03%)</title><rect x="519.8" y="901" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="522.85" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]] (id 13619) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (296,629 μs, 0.73%)</title><rect x="347.0" y="901" width="8.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="349.96" 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>doobie.util.Read[String :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: shapeless.HNil] (expanded macros 0) (29,135 μs, 0.07%)</title><rect x="60.9" y="1013" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="63.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,365 μs, 0.02%)</title><rect x="258.0" y="901" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="261.03" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (5,646 μs, 0.01%)</title><rect x="691.4" y="645" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="694.42" 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>doobie.util.Get[Option[String] :: shapeless.HNil] (expanded macros 0) (3,680 μs, 0.01%)</title><rect x="153.6" y="197" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="156.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>shapeless.Generic[Option[Int]]{type Repr = L} (expanded macros 3) (5,199 μs, 0.01%)</title><rect x="341.0" y="693" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="343.99" 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>shapeless.Generic[Option[java.util.UUID]]{type Repr = L} (expanded macros 3) (4,014 μs, 0.01%)</title><rect x="753.8" y="885" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="756.75" 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>shapeless.Lazy[doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 28301) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (190,405 μs, 0.47%)</title><rect x="525.4" y="709" width="5.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="528.44" 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>doobie.util.Read[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (114,052 μs, 0.28%)</title><rect x="856.8" y="501" width="3.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="859.78" 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>doobie.util.Get[Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (12,784 μs, 0.03%)</title><rect x="203.7" y="773" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="206.66" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.AgrodealerCheckout] (expanded macros 0) (159,966 μs, 0.39%)</title><rect x="247.6" y="1045" width="4.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="250.59" 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>doobie.util.param.Param[Float :: String :: Long :: Long :: Boolean :: shapeless.HNil] (expanded macros 0) (52,395 μs, 0.13%)</title><rect x="948.2" y="981" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="951.25" 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>shapeless.Generic[Option[com.vividsolutions.jts.geom.Point]]{type Repr = L} (expanded macros 3) (5,027 μs, 0.01%)</title><rect x="537.3" y="821" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="540.31" 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>doobie.util.Get[Option[Int]] (expanded macros 0) (5,130 μs, 0.01%)</title><rect x="643.4" y="805" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="646.40" 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>doobie.util.Read[Boolean :: shapeless.HNil] (expanded macros 0) (27,781 μs, 0.07%)</title><rect x="206.4" y="597" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="209.42" 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>shapeless.Lazy[doobie.util.Read[String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil]] (id 942) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (200,747 μs, 0.50%)</title><rect x="241.2" y="869" width="5.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="244.20" 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> type T = T} (expanded macros 0) (3,555 μs, 0.01%)</title><rect x="300.2" y="997" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="303.18" 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>doobie.util.Get[String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (5,442 μs, 0.01%)</title><rect x="607.7" y="901" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="610.68" 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>doobie.util.param.Param[Int :: String :: shapeless.HNil] (expanded macros 0) (17,154 μs, 0.04%)</title><rect x="966.2" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="969.20" 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>doobie.util.Get[Option[String]] (expanded macros 0) (9,814 μs, 0.02%)</title><rect x="65.7" y="773" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="68.70" 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>reflect.runtime.universe.TypeTag[String :: Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (3,955 μs, 0.01%)</title><rect x="608.9" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="611.93" 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>doobie.util.Get[Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (10,220 μs, 0.03%)</title><rect x="824.4" y="517" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="827.35" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (28,309 μs, 0.07%)</title><rect x="139.4" y="757" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="142.40" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (207,814 μs, 0.51%)</title><rect x="427.1" y="949" width="6.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="430.11" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil]] (id 15974) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (23,269 μs, 0.06%)</title><rect x="397.1" y="805" width="0.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="400.10" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12721) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (57,522 μs, 0.14%)</title><rect x="666.1" y="837" width="1.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="669.07" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23667) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (77,644 μs, 0.19%)</title><rect x="905.4" y="453" width="2.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="908.35" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (35,463 μs, 0.09%)</title><rect x="1130.8" y="517" width="1.0" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1133.77" 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>doobie.util.Read[Option[com.vividsolutions.jts.geom.Point]] (expanded macros 0) (10,847 μs, 0.03%)</title><rect x="124.7" y="725" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="127.65" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 21403) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (224,210 μs, 0.55%)</title><rect x="788.3" y="677" width="6.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="791.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>doobie.util.param.Param[String :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,394 μs, 0.02%)</title><rect x="997.4" y="1045" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1000.45" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (18,597 μs, 0.05%)</title><rect x="1153.3" y="997" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1156.28" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 24180) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (260,647 μs, 0.64%)</title><rect x="458.5" y="901" width="7.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="461.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>doobie.util.Put[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (11,766 μs, 0.03%)</title><rect x="1146.3" y="213" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>doobie.util.param.Param[String :: Long :: shapeless.HNil] (expanded macros 0) (29,690 μs, 0.07%)</title><rect x="1013.6" y="949" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1016.58" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (2,907,579 μs, 7.18%)</title><rect x="1067.2" y="933" width="84.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1070.16" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doobie.ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 10878) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (15,563 μs, 0.04%)</title><rect x="642.7" y="741" width="0.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="645.72" 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>doobie.util.Read[org.joda.time.DateTime :: String :: String :: String :: Option[String] :: String :: String :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (137,779 μs, 0.34%)</title><rect x="735.5" y="981" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="738.53" 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>shapeless.Lazy[doobie.util.Read[Option[Int]]] (id 28920) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,096 μs, 0.02%)</title><rect x="476.7" y="517" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="479.73" 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>doobie.util.Read[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (29,458 μs, 0.07%)</title><rect x="858.4" y="373" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="861.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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22325) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (281,969 μs, 0.70%)</title><rect x="836.2" y="773" width="8.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="839.25" 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>doobie.util.Get[Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (16,403 μs, 0.04%)</title><rect x="491.8" y="901" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="494.77" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil]] (id 6446) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (48,986 μs, 0.12%)</title><rect x="631.5" y="1029" width="1.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="634.54" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (5,063 μs, 0.01%)</title><rect x="752.5" y="853" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="755.50" 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>doobie.util.Read[java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (352,742 μs, 0.87%)</title><rect x="90.6" y="821" width="10.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="93.60" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (9,671 μs, 0.02%)</title><rect x="161.5" y="757" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="164.51" 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>reflect.runtime.universe.TypeTag[Option[String] :: java.util.UUID :: shapeless.HNil] (expanded macros 1) (4,690 μs, 0.01%)</title><rect x="996.4" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="999.43" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[String :: String :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (63,577 μs, 0.16%)</title><rect x="443.3" y="949" width="1.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="446.27" 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>shapeless.Lazy[doobie.util.Write[shapeless.HNil]] (id 13528) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (4,421 μs, 0.01%)</title><rect x="939.4" y="453" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="942.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[com.apolloagriculture.pikachu.models.Farmer] (expanded macros 0) (12,104 μs, 0.03%)</title><rect x="71.4" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="74.40" 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>doobie.util.Read[(String, Int)] (expanded macros 0) (27,111 μs, 0.07%)</title><rect x="58.1" y="1045" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="61.06" 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>shapeless.Lazy[doobie.util.Read[Int :: Option[Int] :: java.util.UUID :: String :: Option[Double] :: String :: org.joda.time.DateTime :: Option[String] :: Option[String] :: shapeless.HNil]] (id 25735) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (162,296 μs, 0.40%)</title><rect x="717.7" y="1029" width="4.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="720.67" 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>doobie.util.Read[org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (28,718 μs, 0.07%)</title><rect x="380.7" y="821" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="383.66" 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>shapeless.Lazy[doobie.util.Read[String :: Int :: shapeless.HNil]] (id 14127) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (19,801 μs, 0.05%)</title><rect x="51.0" y="997" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="53.99" 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>reflect.runtime.universe.TypeTag[java.util.UUID :: String :: String :: String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 1) (8,466 μs, 0.02%)</title><rect x="934.7" y="949" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="937.72" 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>doobie.util.Get[String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (9,896 μs, 0.02%)</title><rect x="265.1" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="268.08" 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>shapeless.ops.hlist.IsHCons[Int :: Int :: shapeless.HNil]{type H = H (3,497 μs, 0.01%)</title><rect x="44.3" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="47.25" 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>doobie.util.Get[List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (25,113 μs, 0.06%)</title><rect x="519.0" y="901" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="522.02" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: String :: String :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,865 μs, 0.01%)</title><rect x="446.6" y="917" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="449.62" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,083 μs, 0.01%)</title><rect x="465.0" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="468.03" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (16,870 μs, 0.04%)</title><rect x="1141.1" y="341" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1144.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>doobie.util.Read[Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (44,178 μs, 0.11%)</title><rect x="670.9" y="757" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="673.89" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: shapeless.HNil]] (id 412) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (12,988 μs, 0.03%)</title><rect x="576.4" y="645" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="579.39" 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>doobie.util.Get[Option[String]] (expanded macros 0) (8,239 μs, 0.02%)</title><rect x="891.7" y="389" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="894.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.queries.InputPackageQueryBuilders.InputPackage]{type Repr = G} (id 13191) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,581 μs, 0.01%)</title><rect x="649.9" y="1029" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="652.87" 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>doobie.util.Read[Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (95,025 μs, 0.23%)</title><rect x="496.7" y="629" width="2.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="499.72" 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>doobie.util.Get[Int :: java.util.UUID :: scala.math.BigDecimal :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,703 μs, 0.01%)</title><rect x="192.8" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="195.84" 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>reflect.runtime.universe.TypeTag[String :: java.util.UUID :: shapeless.HNil] (expanded macros 1) (3,602 μs, 0.01%)</title><rect x="946.6" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="949.65" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (7,907 μs, 0.02%)</title><rect x="53.9" y="917" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="56.87" 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>shapeless.Generic[String :: io.circe.Json :: shapeless.HNil]{type Repr = L} (expanded macros 3) (11,850 μs, 0.03%)</title><rect x="1000.4" y="997" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1003.40" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (5,835 μs, 0.01%)</title><rect x="639.1" y="757" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="642.13" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (66,375 μs, 0.16%)</title><rect x="64.5" y="885" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="67.51" 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>reflect.runtime.universe.TypeTag[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,855 μs, 0.01%)</title><rect x="824.8" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="827.83" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 26555) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (422,089 μs, 1.04%)</title><rect x="88.6" y="901" width="12.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="91.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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17353) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (35,895 μs, 0.09%)</title><rect x="371.7" y="901" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="374.70" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (6,256 μs, 0.02%)</title><rect x="430.6" y="725" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="433.63" 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>reflect.runtime.universe.TypeTag[Double :: Double :: Float :: Float :: String :: Long :: Long :: Boolean :: shapeless.HNil] (expanded macros 1) (6,262 μs, 0.02%)</title><rect x="947.4" y="997" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="950.37" 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>reflect.runtime.universe.TypeTag[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (7,187 μs, 0.02%)</title><rect x="429.7" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="432.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,610 μs, 0.01%)</title><rect x="318.4" y="821" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="321.44" 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>doobie.util.Read[Double :: Double :: Int :: shapeless.HNil] (expanded macros 0) (27,964 μs, 0.07%)</title><rect x="47.7" y="949" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="50.73" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (6,888 μs, 0.02%)</title><rect x="670.4" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="673.40" 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>reflect.runtime.universe.TypeTag[String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 1) (3,723 μs, 0.01%)</title><rect x="604.1" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="607.08" 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>shapeless.Lazy[doobie.util.Read[List[String]]] (id 26569) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,100 μs, 0.03%)</title><rect x="92.2" y="773" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="95.24" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (5,904 μs, 0.01%)</title><rect x="496.4" y="629" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="499.40" 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>shapeless.Lazy[doobie.util.Read[String :: Double :: shapeless.HNil]] (id 25567) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (29,392 μs, 0.07%)</title><rect x="733.2" y="805" width="0.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="736.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>shapeless.ops.hlist.IsHCons[String :: shapeless.HNil]{type H = H (3,919 μs, 0.01%)</title><rect x="600.9" y="821" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="603.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>doobie.util.Read[Double :: Boolean :: shapeless.HNil] (expanded macros 0) (31,499 μs, 0.08%)</title><rect x="738.5" y="757" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="741.45" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 8093) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,678 μs, 0.03%)</title><rect x="292.3" y="869" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="295.26" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 3004) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (7,214 μs, 0.02%)</title><rect x="263.7" y="709" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="266.70" 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>doobie.util.Get[Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (4,658 μs, 0.01%)</title><rect x="259.5" y="741" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="262.47" 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>doobie.util.Read[Option[org.joda.time.DateTime]] (expanded macros 0) (9,029 μs, 0.02%)</title><rect x="296.8" y="949" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="299.80" 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>reflect.runtime.universe.TypeTag[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,548 μs, 0.01%)</title><rect x="873.2" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="876.24" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Int :: Double :: Option[String] :: java.util.UUID :: Option[String] :: shapeless.HNil] (expanded macros 0) (38,694 μs, 0.10%)</title><rect x="952.7" y="1045" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="955.67" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 23503) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (430,505 μs, 1.06%)</title><rect x="896.3" y="933" width="12.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="899.31" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,201 μs, 0.01%)</title><rect x="372.6" y="805" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="375.58" 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>doobie.util.Get[Option[Int]] (expanded macros 0) (5,966 μs, 0.01%)</title><rect x="184.5" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="187.54" 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>shapeless.Lazy[doobie.util.Read[Int :: String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 12907) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (153,245 μs, 0.38%)</title><rect x="668.0" y="1029" width="4.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="671.03" 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>shapeless.Lazy[doobie.util.Write[com.apolloagriculture.pikachu.models.Authority :: Option[String] :: shapeless.HNil]] (id 14011) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (64,131 μs, 0.16%)</title><rect x="929.9" y="933" width="1.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="932.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,297 μs, 0.01%)</title><rect x="296.0" y="613" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="298.97" 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>reflect.runtime.universe.TypeTag[Int :: Option[String] :: Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (12,232 μs, 0.03%)</title><rect x="144.0" y="917" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="147.04" 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>doobie.util.param.Param[Int :: String :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (20,831 μs, 0.05%)</title><rect x="958.5" y="1029" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="961.54" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (53,036 μs, 0.13%)</title><rect x="103.6" y="885" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="106.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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,892 μs, 0.01%)</title><rect x="811.3" y="373" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="814.32" 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>doobie.util.Get[Option[List[String]] :: Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (16,193 μs, 0.04%)</title><rect x="173.3" y="869" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="176.27" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.MpesaStatement]] (id 17800) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (101,693 μs, 0.25%)</title><rect x="133.2" y="997" width="2.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="136.17" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (4,954 μs, 0.01%)</title><rect x="1002.9" y="853" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1005.91" 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>doobie.util.Read[Option[String] :: Option[Long] :: Option[Int] :: Option[Int] :: Option[String] :: Option[String] :: Option[Long] :: Option[io.circe.Json] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (238,879 μs, 0.59%)</title><rect x="348.6" y="821" width="7.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="351.63" 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>shapeless.Lazy[doobie.util.Read[java.util.UUID :: java.util.UUID :: List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 29877) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (485,170 μs, 1.20%)</title><rect x="548.8" y="997" width="14.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="551.79" 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>reflect.runtime.universe.TypeTag[String :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,273 μs, 0.01%)</title><rect x="1021.7" y="949" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="1024.68" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,484 μs, 0.01%)</title><rect x="603.5" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="606.46" 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>doobie.util.Get[Int :: String :: shapeless.HNil] (expanded macros 0) (3,483 μs, 0.01%)</title><rect x="46.0" y="997" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="48.98" 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>doobie.util.Get[Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (7,855 μs, 0.02%)</title><rect x="544.9" y="453" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="547.92" 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>shapeless.Lazy[doobie.util.Read[List[String]]] (id 29906) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (11,513 μs, 0.03%)</title><rect x="551.8" y="901" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="554.81" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 10852) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (36,262 μs, 0.09%)</title><rect x="642.3" y="805" width="1.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="645.30" 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>doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (389,330 μs, 0.96%)</title><rect x="466.6" y="1013" width="11.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="469.56" 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>doobie.util.Get[shapeless.HNil] (expanded macros 0) (5,365 μs, 0.01%)</title><rect x="303.8" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="306.76" 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>doobie.util.Read[org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (165,894 μs, 0.41%)</title><rect x="494.8" y="757" width="4.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="497.79" 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>reflect.runtime.universe.TypeTag[Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,945 μs, 0.01%)</title><rect x="180.4" y="341" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="183.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 30440) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (12,637 μs, 0.03%)</title><rect x="745.6" y="901" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="748.58" 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>doobie.util.Get[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (11,566 μs, 0.03%)</title><rect x="293.2" y="805" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="296.20" 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>doobie.util.Get[org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (7,398 μs, 0.02%)</title><rect x="641.5" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="644.53" 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>doobie.util.Read[String :: Double :: Double :: Boolean :: shapeless.HNil] (expanded macros 0) (63,353 μs, 0.16%)</title><rect x="580.1" y="981" width="1.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="583.13" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.PhoneNumber]{type Repr = L} (id 1726) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,816 μs, 0.01%)</title><rect x="596.3" y="821" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="599.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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (3,656 μs, 0.01%)</title><rect x="1017.3" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1020.31" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (5,012 μs, 0.01%)</title><rect x="528.3" y="501" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="531.31" 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>doobie.util.Get[Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (4,089 μs, 0.01%)</title><rect x="447.7" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="450.68" 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>doobie.util.Put[shapeless.HNil] (expanded macros 0) (8,317 μs, 0.02%)</title><rect x="966.5" y="997" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="969.46" 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>reflect.runtime.universe.TypeTag[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (5,451 μs, 0.01%)</title><rect x="669.8" y="853" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="672.82" 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>doobie.util.Read[Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 0) (43,251 μs, 0.11%)</title><rect x="609.1" y="949" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="612.12" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Boolean :: Option[String] :: shapeless.HNil]] (id 4281) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (24,927 μs, 0.06%)</title><rect x="167.1" y="293" width="0.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="170.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>doobie.util.Get[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (12,352 μs, 0.03%)</title><rect x="241.8" y="805" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="244.81" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[Option[Double]]{type Repr = L} (expanded macros 3) (4,664 μs, 0.01%)</title><rect x="843.3" y="341" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="846.28" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (7,556 μs, 0.02%)</title><rect x="526.7" y="597" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="529.65" 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>reflect.runtime.universe.TypeTag[Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (4,247 μs, 0.01%)</title><rect x="497.7" y="533" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="500.65" 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>doobie.util.Get[org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,511 μs, 0.01%)</title><rect x="391.4" y="837" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="394.42" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 1) (3,992 μs, 0.01%)</title><rect x="205.7" y="629" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="208.74" 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>doobie.util.Get[String :: scala.math.BigDecimal :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: shapeless.HNil] (expanded macros 0) (5,872 μs, 0.01%)</title><rect x="602.3" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="605.25" 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>doobie.util.Read[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (133,183 μs, 0.33%)</title><rect x="507.8" y="661" width="3.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="510.84" 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>doobie.util.Put[Option[Int]] (expanded macros 0) (4,977 μs, 0.01%)</title><rect x="998.7" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1001.72" 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>doobie.util.Get[Option[String]] (expanded macros 0) (11,479 μs, 0.03%)</title><rect x="327.0" y="837" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="330.05" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.param.Param[Int :: shapeless.HNil] (expanded macros 0) (7,642 μs, 0.02%)</title><rect x="956.9" y="1013" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="959.94" 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>doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (223,121 μs, 0.55%)</title><rect x="94.3" y="693" width="6.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="97.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>doobie.util.Get[com.apolloagriculture.pikachu.queries.AgentQueries.AgentMatch] (expanded macros 0) (26,491 μs, 0.07%)</title><rect x="577.5" y="1029" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="580.53" 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>doobie.util.Get[Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,294 μs, 0.02%)</title><rect x="295.3" y="677" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="298.33" 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>doobie.util.Read[java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (119,998 μs, 0.30%)</title><rect x="640.1" y="981" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="643.13" 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>doobie.util.Read[String :: Double :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (41,830 μs, 0.10%)</title><rect x="728.7" y="917" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="731.66" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: Option[String] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil]] (id 10590) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (140,271 μs, 0.35%)</title><rect x="635.5" y="1029" width="4.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="638.50" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.MessageId :: String :: shapeless.HNil] (expanded macros 0) (7,217 μs, 0.02%)</title><rect x="402.4" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="405.42" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,409 μs, 0.01%)</title><rect x="647.1" y="949" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="650.14" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[String :: String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (12,307 μs, 0.03%)</title><rect x="202.6" y="837" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="205.64" 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>doobie.util.Read[org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (166,880 μs, 0.41%)</title><rect x="506.9" y="725" width="4.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="509.88" 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>reflect.runtime.universe.TypeTag[String :: Double :: Boolean :: shapeless.HNil] (expanded macros 1) (3,532 μs, 0.01%)</title><rect x="738.2" y="757" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="741.18" 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>doobie.util.Get[String :: shapeless.HNil] (expanded macros 0) (5,579 μs, 0.01%)</title><rect x="826.7" y="325" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="829.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats.Applicative[doobie.ConnectionIO] (expanded macros 0) (21,066 μs, 0.05%)</title><rect x="40.4" y="1045" width="0.6" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="43.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (100,615 μs, 0.25%)</title><rect x="508.7" y="597" width="3.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="511.73" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.ApprovedPaymentsRow]{type Repr = G} (id 18820) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,839 μs, 0.01%)</title><rect x="684.4" y="901" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="687.44" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.models.SubTask :: Option[String] :: Option[Long] :: Option[String] :: Option[String] :: scala.math.BigDecimal :: shapeless.HNil] (expanded macros 1) (5,260 μs, 0.01%)</title><rect x="75.6" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="78.59" 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>doobie.util.Read[shapeless.HNil] (expanded macros 0) (4,170 μs, 0.01%)</title><rect x="671.8" y="629" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="674.77" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: String :: String :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (8,848 μs, 0.02%)</title><rect x="353.1" y="549" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="356.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>doobie.util.Get[com.apolloagriculture.pikachu.models.PhoneNumber] (expanded macros 0) (12,116 μs, 0.03%)</title><rect x="892.8" y="869" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="895.82" 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>cats.effect.Async[cats.effect.IO] (expanded macros 0) (4,170 μs, 0.01%)</title><rect x="41.1" y="1045" width="0.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="44.11" 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>shapeless.ops.hlist.IsHCons[String :: shapeless.HNil]{type H = H (3,576 μs, 0.01%)</title><rect x="296.6" y="789" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="299.61" 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>shapeless.ops.hlist.IsHCons[Int :: Option[String] :: Int :: com.apolloagriculture.pikachu.models.MpesaStatementStatus :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil]{type H = H (3,799 μs, 0.01%)</title><rect x="433.8" y="1013" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="436.79" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (6,914 μs, 0.02%)</title><rect x="752.3" y="837" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="755.26" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Task]{type Repr = G} (id 29864) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (9,870 μs, 0.02%)</title><rect x="515.0" y="1029" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="517.97" 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>doobie.util.param.Param[Option[Int] :: shapeless.HNil] (expanded macros 0) (16,812 μs, 0.04%)</title><rect x="1010.5" y="1013" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1013.47" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (11,869 μs, 0.03%)</title><rect x="899.7" y="757" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="902.69" 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>shapeless.Lazy[doobie.util.Read[Option[Double] :: shapeless.HNil]] (id 9795) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (21,314 μs, 0.05%)</title><rect x="311.7" y="901" width="0.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="314.73" 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>doobie.util.Read[Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (31,901 μs, 0.08%)</title><rect x="922.4" y="373" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="925.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>doobie.util.Read[Int :: String :: String :: shapeless.HNil] (expanded macros 0) (42,692 μs, 0.11%)</title><rect x="625.3" y="917" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="628.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>doobie.util.Get[Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (7,076 μs, 0.02%)</title><rect x="262.4" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="265.39" 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>doobie.util.Read[Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (85,410 μs, 0.21%)</title><rect x="665.5" y="885" width="2.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="668.47" 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>reflect.runtime.universe.TypeTag[Option[String] :: String :: Option[String] :: Boolean :: shapeless.HNil] (expanded macros 1) (3,837 μs, 0.01%)</title><rect x="607.2" y="917" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="610.20" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.PhoneNumber]{type Repr = L} (id 27148) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,728 μs, 0.01%)</title><rect x="106.0" y="917" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="109.05" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (116,977 μs, 0.29%)</title><rect x="888.9" y="501" width="3.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="891.89" 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>doobie.util.Get[String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (18,830 μs, 0.05%)</title><rect x="93.8" y="709" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="96.76" 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>doobie.util.Get[com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (4,007 μs, 0.01%)</title><rect x="378.1" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="381.06" 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>doobie.util.Get[String :: Option[Int] :: Option[Boolean] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (18,763 μs, 0.05%)</title><rect x="222.4" y="805" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="225.39" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.Authority]{type Repr = L} (id 381) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,933 μs, 0.01%)</title><rect x="575.6" y="693" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="578.63" 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>doobie.util.Read[Option[java.util.UUID]] (expanded macros 0) (9,234 μs, 0.02%)</title><rect x="753.6" y="917" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="756.61" 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>shapeless.Generic[com.apolloagriculture.pikachu.models.SubTask]{type Repr = L} (id 27378) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (10,932 μs, 0.03%)</title><rect x="108.9" y="853" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="111.91" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (8,215 μs, 0.02%)</title><rect x="908.1" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="911.06" 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>doobie.util.Get[org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (13,253 μs, 0.03%)</title><rect x="541.7" y="645" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="544.75" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Double] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Int] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Double] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[...] :: ... :: ...] (expanded macros 0) (2,458,904 μs, 6.07%)</title><rect x="1079.7" y="869" width="71.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1082.72" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doobie.u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[Double]] (expanded macros 0) (5,471 μs, 0.01%)</title><rect x="169.7" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="172.65" 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>shapeless.Generic[com.apolloagriculture.pikachu.queries.PaymentQueries.FarmerMonthlyStatement]{type Repr = L} (id 18287) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,110 μs, 0.01%)</title><rect x="679.6" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="682.59" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 26621) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (179,883 μs, 0.44%)</title><rect x="95.6" y="645" width="5.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="98.55" 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>reflect.runtime.universe.TypeTag[Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (4,862 μs, 0.01%)</title><rect x="857.4" y="437" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="860.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 22652) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (10,617 μs, 0.03%)</title><rect x="860.2" y="741" width="0.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="863.24" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 18109) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (240,840 μs, 0.59%)</title><rect x="426.4" y="997" width="7.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="429.42" 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>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (7,982 μs, 0.02%)</title><rect x="924.5" y="709" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="927.51" 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>doobie.util.Put[Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (21,686 μs, 0.05%)</title><rect x="1140.3" y="373" width="0.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1143.34" 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>shapeless.Lazy[doobie.util.Read[shapeless.HNil]] (id 8786) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,641 μs, 0.02%)</title><rect x="56.2" y="933" width="0.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="59.21" 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>reflect.runtime.universe.TypeTag[String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 1) (3,697 μs, 0.01%)</title><rect x="388.2" y="885" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="391.23" 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>reflect.runtime.universe.TypeTag[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 1) (3,985 μs, 0.01%)</title><rect x="270.4" y="789" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="273.45" 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>shapeless.Lazy[doobie.util.Read[String :: String :: String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil]] (id 2737) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (123,320 μs, 0.30%)</title><rect x="257.2" y="997" width="3.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="260.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: java.util.UUID :: String :: com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (522,248 μs, 1.29%)</title><rect x="764.1" y="1013" width="15.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="767.12" 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>doobie.util.Get[Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (8,864 μs, 0.02%)</title><rect x="544.5" y="485" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="547.55" 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>doobie.util.Get[scala.math.BigDecimal :: shapeless.HNil] (expanded macros 0) (6,090 μs, 0.02%)</title><rect x="77.3" y="741" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="80.34" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (17,402 μs, 0.04%)</title><rect x="554.3" y="805" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="557.31" 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>reflect.runtime.universe.TypeTag[Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (3,516 μs, 0.01%)</title><rect x="675.5" y="693" width="0.1" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="678.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>doobie.util.Read[Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (144,116 μs, 0.36%)</title><rect x="855.9" y="565" width="4.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="858.94" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[String] :: Option[String] :: Option[Int] :: Option[Boolean] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[Boolean] :: Option[Int] :: Option[Boolean] :: shapeless.HNil]] (id 24956) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (178,350 μs, 0.44%)</title><rect x="336.0" y="869" width="5.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="339.01" 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>doobie.util.Get[Option[Int] :: Option[String] :: shapeless.HNil] (expanded macros 0) (3,859 μs, 0.01%)</title><rect x="276.7" y="773" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="279.66" 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>doobie.util.Get[Option[org.joda.time.DateTime] :: String :: java.util.UUID :: String :: Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (14,117 μs, 0.03%)</title><rect x="174.1" y="837" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="177.11" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (7,956 μs, 0.02%)</title><rect x="99.8" y="277" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="102.80" 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>doobie.util.Put[String :: String :: shapeless.HNil] (expanded macros 0) (7,178 μs, 0.02%)</title><rect x="957.9" y="981" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="960.92" 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>doobie.util.Read[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (319,286 μs, 0.79%)</title><rect x="78.4" y="853" width="9.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="81.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>shapeless.Lazy[doobie.util.Write[Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: String :: Double :: shapeless.HNil]] (id 19621) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (28,733 μs, 0.07%)</title><rect x="942.4" y="997" width="0.8" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="945.40" 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>shapeless.Lazy[doobie.util.Read[Option[String]]] (id 25834) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (9,294 μs, 0.02%)</title><rect x="722.0" y="773" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="724.97" 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>shapeless.Lazy[doobie.util.Read[String :: Option[String] :: shapeless.HNil]] (id 9671) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (44,335 μs, 0.11%)</title><rect x="298.5" y="965" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="301.49" 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>shapeless.Generic[Option[org.joda.time.DateTime]]{type Repr = L} (expanded macros 3) (4,838 μs, 0.01%)</title><rect x="924.6" y="693" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="927.60" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 26775) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (268,802 μs, 0.66%)</title><rect x="79.8" y="805" width="7.9" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="82.83" 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>shapeless.Lazy[doobie.util.Read[Int :: java.util.UUID :: Int :: shapeless.HNil]] (id 24055) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (42,955 μs, 0.11%)</title><rect x="52.9" y="1029" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="55.91" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime] :: Option[String] :: org.joda.time.DateTime :: shapeless.HNil]] (id 17889) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (23,098 μs, 0.06%)</title><rect x="135.1" y="773" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="138.07" 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>reflect.runtime.universe.TypeTag[com.apolloagriculture.pikachu.queries.AgrodealerResult] (expanded macros 1) (3,726 μs, 0.01%)</title><rect x="605.6" y="1013" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="608.65" 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>doobie.util.Get[String :: String :: Double :: Double :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: java.util.UUID :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 0) (9,823 μs, 0.02%)</title><rect x="650.5" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="653.53" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.PhoneNumber :: String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil]] (id 22904) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (448,521 μs, 1.11%)</title><rect x="864.5" y="933" width="13.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="867.45" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.AgrodealerQueries.CheckoutComponent] (expanded macros 0) (6,868 μs, 0.02%)</title><rect x="168.5" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="171.46" 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>doobie.util.Read[java.util.UUID :: String :: String :: String :: Int :: Double :: Int :: Boolean :: Boolean :: Boolean :: shapeless.HNil] (expanded macros 0) (78,822 μs, 0.19%)</title><rect x="677.2" y="1013" width="2.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="680.15" 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>doobie.util.Read[Int :: shapeless.HNil] (expanded macros 0) (8,517 μs, 0.02%)</title><rect x="653.2" y="661" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="656.22" 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>doobie.util.Get[com.apolloagriculture.pikachu.queries.AdminReviewQueries.LoanEventDetails] (expanded macros 0) (12,663 μs, 0.03%)</title><rect x="571.1" y="1029" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="574.08" 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>doobie.util.Put[Double :: Int :: shapeless.HNil] (expanded macros 0) (3,882 μs, 0.01%)</title><rect x="949.9" y="1013" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="952.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[java.util.UUID :: String :: java.util.UUID :: String :: Double :: shapeless.HNil] (expanded macros 0) (7,913 μs, 0.02%)</title><rect x="732.3" y="869" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="735.26" 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>shapeless.Lazy[doobie.util.Read[com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29369) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (112,459 μs, 0.28%)</title><rect x="496.3" y="677" width="3.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="499.27" 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>doobie.util.Read[String :: String :: shapeless.HNil] (expanded macros 0) (15,364 μs, 0.04%)</title><rect x="185.6" y="949" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="188.63" 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>doobie.util.Read[Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (21,708 μs, 0.05%)</title><rect x="354.8" y="373" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="357.77" 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>shapeless.Generic[Option[String]]{type Repr = L} (expanded macros 3) (4,787 μs, 0.01%)</title><rect x="623.1" y="853" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="626.10" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Put[(Int, com.apolloagriculture.pikachu.models.LoanApplicationStatus, com.apolloagriculture.pikachu.models.LoanApplicationStatus, com.apolloagriculture.pikachu.models.Authority, Option[String])] (expanded macros 0) (10,805 μs, 0.03%)</title><rect x="928.4" y="1029" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="931.40" 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>reflect.runtime.universe.TypeTag[List[String] :: Option[com.vividsolutions.jts.geom.Point] :: String :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: org.joda.time.DateTime :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[io.circe.Json] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (15,077 μs, 0.04%)</title><rect x="519.2" y="885" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="522.23" 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>doobie.util.Get[String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (4,945 μs, 0.01%)</title><rect x="631.9" y="965" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="634.88" 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>shapeless.Generic[Option[io.circe.Json]]{type Repr = L} (expanded macros 3) (4,718 μs, 0.01%)</title><rect x="811.6" y="405" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="814.62" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 0) (178,040 μs, 0.44%)</title><rect x="838.9" y="629" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="841.91" 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>reflect.runtime.universe.TypeTag[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (12,703 μs, 0.03%)</title><rect x="897.4" y="853" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="900.41" 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>doobie.util.Read[Double :: Double :: Int :: String :: String :: Double :: Int :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Int :: Option[org.joda.time.DateTime] :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (190,879 μs, 0.47%)</title><rect x="148.5" y="725" width="5.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="151.49" 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>shapeless.Lazy[doobie.util.Read[Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil]] (id 29636) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (117,418 μs, 0.29%)</title><rect x="508.2" y="645" width="3.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="511.24" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Generic[com.apolloagriculture.pikachu.models.FarmerPayment]{type Repr = L} (id 9419) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (5,018 μs, 0.01%)</title><rect x="300.0" y="1013" width="0.1" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="302.97" 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>doobie.util.Write[String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil] (expanded macros 0) (44,393 μs, 0.11%)</title><rect x="938.3" y="629" width="1.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="941.29" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Read[Int :: java.util.UUID :: Int :: String :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: com.apolloagriculture.pikachu.models.LoanApplicationStatus :: Double :: Double :: shapeless.HNil] (expanded macros 0) (94,994 μs, 0.23%)</title><rect x="381.7" y="1013" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="384.67" 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>doobie.util.Read[Int :: String :: String :: String :: java.util.UUID :: io.circe.Json :: shapeless.HNil] (expanded macros 0) (54,798 μs, 0.14%)</title><rect x="629.9" y="1013" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="632.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doobie.util.Get[Option[org.joda.time.DateTime]] (expanded macros 0) (5,573 μs, 0.01%)</title><rect x="672.2" y="805" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="675.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>doobie.util.Read[Boolean :: shapeless.HNil] (expanded macros 0) (10,801 μs, 0.03%)</title><rect x="611.8" y="853" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="614.78" 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>doobie.util.Get[String :: Double :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (6,601 μs, 0.02%)</title><rect x="728.7" y="901" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="731.69" 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>reflect.runtime.universe.TypeTag[Int :: String :: Option[String] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: org.joda.time.DateTime :: org.joda.time.DateTime :: String :: com.apolloagriculture.pikachu.models.SubTaskType :: Boolean :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Boolean :: Option[Int] :: Option[Int] :: Option[Int] :: shapeless.HNil] (expanded macros 1) (11,974 μs, 0.03%)</title><rect x="489.5" y="981" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="492.53" 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>shapeless.ops.hlist.IsHCons[String :: shapeless.HNil]{type H = H (3,905 μs, 0.01%)</title><rect x="590.4" y="821" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="593.39" 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>shapeless.Lazy[doobie.util.Read[Option[org.joda.time.DateTime]]] (id 14637) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (6,322 μs, 0.02%)</title><rect x="140.0" y="741" width="0.2" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="143.04" 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>shapeless.Lazy[doobie.util.Read[Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: List[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 5188) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (91,859 μs, 0.23%)</title><rect x="249.5" y="933" width="2.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="252.52" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Write[Int :: java.util.UUID :: String :: String :: String :: Int :: Int :: Int :: Option[String] :: String :: Int :: String :: String :: String :: Int :: Option[String] :: String :: Option[String] :: shapeless.HNil]] (id 13349) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (197,068 μs, 0.49%)</title><rect x="934.0" y="1029" width="5.7" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="936.98" 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>shapeless.Lazy[doobie.util.Read[String :: Int :: org.joda.time.DateTime :: shapeless.HNil]] (id 10284) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (46,193 μs, 0.11%)</title><rect x="272.7" y="1029" width="1.3" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="275.66" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (18,874 μs, 0.05%)</title><rect x="842.6" y="341" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="845.57" 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>reflect.runtime.universe.TypeTag[org.joda.time.DateTime :: org.joda.time.DateTime :: Option[Int] :: Option[Int] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[org.joda.time.DateTime] :: Int :: shapeless.HNil] (expanded macros 1) (6,495 μs, 0.02%)</title><rect x="637.0" y="885" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="640.04" 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>reflect.runtime.universe.TypeTag[String :: java.util.UUID :: String :: org.joda.time.DateTime :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Int :: Int :: Int :: Int :: Option[io.circe.Json] :: Option[String] :: Option[Double] :: Option[Double] :: String :: shapeless.HNil] (expanded macros 1) (17,099 μs, 0.04%)</title><rect x="800.6" y="853" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="803.55" 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>doobie.util.param.Param[String :: String :: Int :: Boolean :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[com.apolloagriculture.pikachu.models.ReviewStatus] :: Option[Int] :: shapeless.HNil] (expanded macros 0) (19,285 μs, 0.05%)</title><rect x="1002.7" y="1013" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1005.72" 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>doobie.util.Read[String :: shapeless.HNil] (expanded macros 0) (17,877 μs, 0.04%)</title><rect x="715.5" y="885" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="718.53" 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>doobie.util.Get[Option[io.circe.Json]] (expanded macros 0) (7,986 μs, 0.02%)</title><rect x="827.8" y="421" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="830.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shapeless.Lazy[doobie.util.Read[String :: Double :: shapeless.HNil]] (id 9212) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (32,269 μs, 0.08%)</title><rect x="57.1" y="1029" width="1.0" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="60.12" 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>doobie.util.Read[Option[String] :: shapeless.HNil] (expanded macros 0) (27,830 μs, 0.07%)</title><rect x="104.2" y="821" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="107.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>doobie.util.Get[com.apolloagriculture.pikachu.models.Agent] (expanded macros 0) (103,678 μs, 0.26%)</title><rect x="194.6" y="1029" width="3.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="197.58" 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>shapeless.Lazy[doobie.util.Read[Option[String] :: Option[String] :: Option[Int] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[scala.math.BigDecimal] :: Option[scala.math.BigDecimal] :: Option[String] :: Option[org.joda.time.DateTime] :: shapeless.HNil]] (id 17155) (expanded macros 3) (tree from `shapeless.LazyMacrosRef.mkLazyImpl`) (119,624 μs, 0.30%)</title><rect x="414.8" y="933" width="3.5" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" />
<text text-anchor="" x="417.78" 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>doobie.util.Read[Double :: Option[String] :: Boolean :: org.joda.time.DateTime :: shapeless.HNil] (expanded macros 0) (40,671 μs, 0.10%)</title><rect x="253.6" y="917" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="256.58" 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>doobie.util.Read[String :: Option[Int] :: Int :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Boolean :: Option[String] :: shapeless.HNil] (expanded macros 0) (85,107 μs, 0.21%)</title><rect x="265.7" y="917" width="2.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="268.72" 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>doobie.util.param.Param[Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[org.joda.time.DateTime] :: Option[org.joda.time.DateTime] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] (expanded macros 0) (344,952 μs, 0.85%)</title><rect x="986.3" y="1029" width
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment