function drawBaziserLine(start, end) {
const x1 = start.x + start.width
const y1 = start.y + start.height / 2
const x2 = end.x
const y2 = end.y + end.height / 2
const diffX = Math.abs(x2 - x1) / 3
return `<path d="M${x1} ${y1} C ${x1 + diffX} ${y1}, ${x2 - diffX} ${y2}, ${x2} ${y2}" stroke="#C0CAD2" fill="transparent"/>`
}