]> ToastFreeware Gitweb - chrisu/seepark.git/commitdiff
update c3 and d3
authorgregor herrmann <gregor@toastfreeware.priv.at>
Fri, 23 Nov 2018 00:05:57 +0000 (01:05 +0100)
committergregor herrmann <gregor@toastfreeware.priv.at>
Fri, 23 Nov 2018 00:05:57 +0000 (01:05 +0100)
c3: 0.6.9
d3: 5.7.0

web/static/c3.js
web/static/c3.min.js
web/static/d3.js
web/static/d3.min.js

index 04eb151a3d4925a1c00ab3238337973699741675..4144c44d839bd2a00f8bf5218a2e3990bf04cc80 100644 (file)
-/* @license C3.js v0.6.7 | (c) C3 Team and other contributors | http://c3js.org/ */
+/* @license C3.js v0.6.9 | (c) C3 Team and other contributors | http://c3js.org/ */
 (function (global, factory) {
 (function (global, factory) {
-    typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
-    typeof define === 'function' && define.amd ? define(factory) :
-    (global.c3 = factory());
+  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
+  typeof define === 'function' && define.amd ? define(factory) :
+  (global.c3 = factory());
 }(this, (function () { 'use strict';
 
 }(this, (function () { 'use strict';
 
-    function ChartInternal(api) {
-        var $$ = this;
-        $$.d3 = window.d3 ? window.d3 : typeof require !== 'undefined' ? require("d3") : undefined;
-        $$.api = api;
-        $$.config = $$.getDefaultConfig();
-        $$.data = {};
-        $$.cache = {};
-        $$.axes = {};
-    }
-
-    function Chart(config) {
-        var $$ = this.internal = new ChartInternal(this);
-        $$.loadConfig(config);
-
-        $$.beforeInit(config);
-        $$.init();
-        $$.afterInit(config);
-
-        // bind "this" to nested API
-        (function bindThis(fn, target, argThis) {
-            Object.keys(fn).forEach(function (key) {
-                target[key] = fn[key].bind(argThis);
-                if (Object.keys(fn[key]).length > 0) {
-                    bindThis(fn[key], target[key], argThis);
-                }
-            });
-        })(Chart.prototype, this, this);
-    }
-
-    function AxisInternal(component, params) {
-        var internal = this;
-        internal.component = component;
-        internal.params = params || {};
-
-        internal.d3 = component.d3;
-        internal.scale = internal.d3.scaleLinear();
-        internal.range;
-        internal.orient = "bottom";
-        internal.innerTickSize = 6;
-        internal.outerTickSize = this.params.withOuterTick ? 6 : 0;
-        internal.tickPadding = 3;
-        internal.tickValues = null;
-        internal.tickFormat;
-        internal.tickArguments;
-
-        internal.tickOffset = 0;
-        internal.tickCulling = true;
-        internal.tickCentered;
-        internal.tickTextCharSize;
-        internal.tickTextRotate = internal.params.tickTextRotate;
-        internal.tickLength;
-
-        internal.axis = internal.generateAxis();
-    }
-
-    AxisInternal.prototype.axisX = function (selection, x, tickOffset) {
-        selection.attr("transform", function (d) {
-            return "translate(" + Math.ceil(x(d) + tickOffset) + ", 0)";
-        });
-    };
-    AxisInternal.prototype.axisY = function (selection, y) {
-        selection.attr("transform", function (d) {
-            return "translate(0," + Math.ceil(y(d)) + ")";
-        });
-    };
-    AxisInternal.prototype.scaleExtent = function (domain) {
-        var start = domain[0],
-            stop = domain[domain.length - 1];
-        return start < stop ? [start, stop] : [stop, start];
-    };
-    AxisInternal.prototype.generateTicks = function (scale) {
-        var internal = this;
-        var i,
-            domain,
-            ticks = [];
-        if (scale.ticks) {
-            return scale.ticks.apply(scale, internal.tickArguments);
-        }
-        domain = scale.domain();
-        for (i = Math.ceil(domain[0]); i < domain[1]; i++) {
-            ticks.push(i);
-        }
-        if (ticks.length > 0 && ticks[0] > 0) {
-            ticks.unshift(ticks[0] - (ticks[1] - ticks[0]));
-        }
-        return ticks;
-    };
-    AxisInternal.prototype.copyScale = function () {
-        var internal = this;
-        var newScale = internal.scale.copy(),
-            domain;
-        if (internal.params.isCategory) {
-            domain = internal.scale.domain();
-            newScale.domain([domain[0], domain[1] - 1]);
-        }
-        return newScale;
-    };
-    AxisInternal.prototype.textFormatted = function (v) {
-        var internal = this,
-            formatted = internal.tickFormat ? internal.tickFormat(v) : v;
-        return typeof formatted !== 'undefined' ? formatted : '';
-    };
-    AxisInternal.prototype.updateRange = function () {
-        var internal = this;
-        internal.range = internal.scale.rangeExtent ? internal.scale.rangeExtent() : internal.scaleExtent(internal.scale.range());
-        return internal.range;
-    };
-    AxisInternal.prototype.updateTickTextCharSize = function (tick) {
-        var internal = this;
-        if (internal.tickTextCharSize) {
-            return internal.tickTextCharSize;
-        }
-        var size = {
-            h: 11.5,
-            w: 5.5
-        };
-        tick.select('text').text(function (d) {
-            return internal.textFormatted(d);
-        }).each(function (d) {
-            var box = this.getBoundingClientRect(),
-                text = internal.textFormatted(d),
-                h = box.height,
-                w = text ? box.width / text.length : undefined;
-            if (h && w) {
-                size.h = h;
-                size.w = w;
-            }
-        }).text('');
-        internal.tickTextCharSize = size;
-        return size;
-    };
-    AxisInternal.prototype.isVertical = function () {
-        return this.orient === 'left' || this.orient === 'right';
-    };
-    AxisInternal.prototype.tspanData = function (d, i, scale) {
-        var internal = this;
-        var splitted = internal.params.tickMultiline ? internal.splitTickText(d, scale) : [].concat(internal.textFormatted(d));
+  function _typeof(obj) {
+    if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
+      _typeof = function (obj) {
+        return typeof obj;
+      };
+    } else {
+      _typeof = function (obj) {
+        return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
+      };
+    }
 
 
-        if (internal.params.tickMultiline && internal.params.tickMultilineMax > 0) {
-            splitted = internal.ellipsify(splitted, internal.params.tickMultilineMax);
-        }
+    return _typeof(obj);
+  }
 
 
-        return splitted.map(function (s) {
-            return { index: i, splitted: s, length: splitted.length };
-        });
-    };
-    AxisInternal.prototype.splitTickText = function (d, scale) {
-        var internal = this,
-            tickText = internal.textFormatted(d),
-            maxWidth = internal.params.tickWidth,
-            subtext,
-            spaceIndex,
-            textWidth,
-            splitted = [];
-
-        if (Object.prototype.toString.call(tickText) === "[object Array]") {
-            return tickText;
-        }
+  function _classCallCheck(instance, Constructor) {
+    if (!(instance instanceof Constructor)) {
+      throw new TypeError("Cannot call a class as a function");
+    }
+  }
+
+  function _defineProperty(obj, key, value) {
+    if (key in obj) {
+      Object.defineProperty(obj, key, {
+        value: value,
+        enumerable: true,
+        configurable: true,
+        writable: true
+      });
+    } else {
+      obj[key] = value;
+    }
 
 
-        if (!maxWidth || maxWidth <= 0) {
-            maxWidth = internal.isVertical() ? 95 : internal.params.isCategory ? Math.ceil(scale(1) - scale(0)) - 12 : 110;
-        }
+    return obj;
+  }
+
+  function ChartInternal(api) {
+    var $$ = this;
+    $$.d3 = window.d3 ? window.d3 : typeof require !== 'undefined' ? require("d3") : undefined;
+    $$.api = api;
+    $$.config = $$.getDefaultConfig();
+    $$.data = {};
+    $$.cache = {};
+    $$.axes = {};
+  }
+
+  function Chart(config) {
+    var $$ = this.internal = new ChartInternal(this);
+    $$.loadConfig(config);
+    $$.beforeInit(config);
+    $$.init();
+    $$.afterInit(config); // bind "this" to nested API
+
+    (function bindThis(fn, target, argThis) {
+      Object.keys(fn).forEach(function (key) {
+        target[key] = fn[key].bind(argThis);
+
+        if (Object.keys(fn[key]).length > 0) {
+          bindThis(fn[key], target[key], argThis);
+        }
+      });
+    })(Chart.prototype, this, this);
+  }
+
+  function AxisInternal(component, params) {
+    var internal = this;
+    internal.component = component;
+    internal.params = params || {};
+    internal.d3 = component.d3;
+    internal.scale = internal.d3.scaleLinear();
+    internal.range;
+    internal.orient = "bottom";
+    internal.innerTickSize = 6;
+    internal.outerTickSize = this.params.withOuterTick ? 6 : 0;
+    internal.tickPadding = 3;
+    internal.tickValues = null;
+    internal.tickFormat;
+    internal.tickArguments;
+    internal.tickOffset = 0;
+    internal.tickCulling = true;
+    internal.tickCentered;
+    internal.tickTextCharSize;
+    internal.tickTextRotate = internal.params.tickTextRotate;
+    internal.tickLength;
+    internal.axis = internal.generateAxis();
+  }
+
+  AxisInternal.prototype.axisX = function (selection, x, tickOffset) {
+    selection.attr("transform", function (d) {
+      return "translate(" + Math.ceil(x(d) + tickOffset) + ", 0)";
+    });
+  };
+
+  AxisInternal.prototype.axisY = function (selection, y) {
+    selection.attr("transform", function (d) {
+      return "translate(0," + Math.ceil(y(d)) + ")";
+    });
+  };
+
+  AxisInternal.prototype.scaleExtent = function (domain) {
+    var start = domain[0],
+        stop = domain[domain.length - 1];
+    return start < stop ? [start, stop] : [stop, start];
+  };
+
+  AxisInternal.prototype.generateTicks = function (scale) {
+    var internal = this;
+    var i,
+        domain,
+        ticks = [];
+
+    if (scale.ticks) {
+      return scale.ticks.apply(scale, internal.tickArguments);
+    }
 
 
-        function split(splitted, text) {
-            spaceIndex = undefined;
-            for (var i = 1; i < text.length; i++) {
-                if (text.charAt(i) === ' ') {
-                    spaceIndex = i;
-                }
-                subtext = text.substr(0, i + 1);
-                textWidth = internal.tickTextCharSize.w * subtext.length;
-                // if text width gets over tick width, split by space index or crrent index
-                if (maxWidth < textWidth) {
-                    return split(splitted.concat(text.substr(0, spaceIndex ? spaceIndex : i)), text.slice(spaceIndex ? spaceIndex + 1 : i));
-                }
-            }
-            return splitted.concat(text);
-        }
+    domain = scale.domain();
 
 
-        return split(splitted, tickText + "");
-    };
-    AxisInternal.prototype.ellipsify = function (splitted, max) {
-        if (splitted.length <= max) {
-            return splitted;
-        }
+    for (i = Math.ceil(domain[0]); i < domain[1]; i++) {
+      ticks.push(i);
+    }
 
 
-        var ellipsified = splitted.slice(0, max);
-        var remaining = 3;
-        for (var i = max - 1; i >= 0; i--) {
-            var available = ellipsified[i].length;
+    if (ticks.length > 0 && ticks[0] > 0) {
+      ticks.unshift(ticks[0] - (ticks[1] - ticks[0]));
+    }
 
 
-            ellipsified[i] = ellipsified[i].substr(0, available - remaining).padEnd(available, '.');
+    return ticks;
+  };
 
 
-            remaining -= available;
+  AxisInternal.prototype.copyScale = function () {
+    var internal = this;
+    var newScale = internal.scale.copy(),
+        domain;
 
 
-            if (remaining <= 0) {
-                break;
-            }
-        }
+    if (internal.params.isCategory) {
+      domain = internal.scale.domain();
+      newScale.domain([domain[0], domain[1] - 1]);
+    }
 
 
-        return ellipsified;
-    };
-    AxisInternal.prototype.updateTickLength = function () {
-        var internal = this;
-        internal.tickLength = Math.max(internal.innerTickSize, 0) + internal.tickPadding;
-    };
-    AxisInternal.prototype.lineY2 = function (d) {
-        var internal = this,
-            tickPosition = internal.scale(d) + (internal.tickCentered ? 0 : internal.tickOffset);
-        return internal.range[0] < tickPosition && tickPosition < internal.range[1] ? internal.innerTickSize : 0;
-    };
-    AxisInternal.prototype.textY = function () {
-        var internal = this,
-            rotate = internal.tickTextRotate;
-        return rotate ? 11.5 - 2.5 * (rotate / 15) * (rotate > 0 ? 1 : -1) : internal.tickLength;
-    };
-    AxisInternal.prototype.textTransform = function () {
-        var internal = this,
-            rotate = internal.tickTextRotate;
-        return rotate ? "rotate(" + rotate + ")" : "";
-    };
-    AxisInternal.prototype.textTextAnchor = function () {
-        var internal = this,
-            rotate = internal.tickTextRotate;
-        return rotate ? rotate > 0 ? "start" : "end" : "middle";
-    };
-    AxisInternal.prototype.tspanDx = function () {
-        var internal = this,
-            rotate = internal.tickTextRotate;
-        return rotate ? 8 * Math.sin(Math.PI * (rotate / 180)) : 0;
-    };
-    AxisInternal.prototype.tspanDy = function (d, i) {
-        var internal = this,
-            dy = internal.tickTextCharSize.h;
-        if (i === 0) {
-            if (internal.isVertical()) {
-                dy = -((d.length - 1) * (internal.tickTextCharSize.h / 2) - 3);
-            } else {
-                dy = ".71em";
-            }
-        }
-        return dy;
-    };
+    return newScale;
+  };
 
 
-    AxisInternal.prototype.generateAxis = function () {
-        var internal = this,
-            d3 = internal.d3,
-            params = internal.params;
-        function axis(g, transition) {
-            var self;
-            g.each(function () {
-                var g = axis.g = d3.select(this);
-
-                var scale0 = this.__chart__ || internal.scale,
-                    scale1 = this.__chart__ = internal.copyScale();
-
-                var ticksValues = internal.tickValues ? internal.tickValues : internal.generateTicks(scale1),
-                    ticks = g.selectAll(".tick").data(ticksValues, scale1),
-                    tickEnter = ticks.enter().insert("g", ".domain").attr("class", "tick").style("opacity", 1e-6),
-
-                // MEMO: No exit transition. The reason is this transition affects max tick width calculation because old tick will be included in the ticks.
-                tickExit = ticks.exit().remove(),
-                    tickUpdate = ticks.merge(tickEnter),
-                    tickTransform,
-                    tickX,
-                    tickY;
-
-                if (params.isCategory) {
-                    internal.tickOffset = Math.ceil((scale1(1) - scale1(0)) / 2);
-                    tickX = internal.tickCentered ? 0 : internal.tickOffset;
-                    tickY = internal.tickCentered ? internal.tickOffset : 0;
-                } else {
-                    internal.tickOffset = tickX = 0;
-                }
-
-                internal.updateRange();
-                internal.updateTickLength();
-                internal.updateTickTextCharSize(g.select('.tick'));
-
-                var lineUpdate = tickUpdate.select("line").merge(tickEnter.append("line")),
-                    textUpdate = tickUpdate.select("text").merge(tickEnter.append("text"));
-
-                var tspans = tickUpdate.selectAll('text').selectAll('tspan').data(function (d, i) {
-                    return internal.tspanData(d, i, scale1);
-                }),
-                    tspanEnter = tspans.enter().append('tspan'),
-                    tspanUpdate = tspanEnter.merge(tspans).text(function (d) {
-                    return d.splitted;
-                });
-                tspans.exit().remove();
-
-                var path = g.selectAll(".domain").data([0]),
-                    pathUpdate = path.enter().append("path").merge(path).attr("class", "domain");
-
-                // TODO: each attr should be one function and change its behavior by internal.orient, probably
-                switch (internal.orient) {
-                    case "bottom":
-                        {
-                            tickTransform = internal.axisX;
-                            lineUpdate.attr("x1", tickX).attr("x2", tickX).attr("y2", function (d, i) {
-                                return internal.lineY2(d, i);
-                            });
-                            textUpdate.attr("x", 0).attr("y", function (d, i) {
-                                return internal.textY(d, i);
-                            }).attr("transform", function (d, i) {
-                                return internal.textTransform(d, i);
-                            }).style("text-anchor", function (d, i) {
-                                return internal.textTextAnchor(d, i);
-                            });
-                            tspanUpdate.attr('x', 0).attr("dy", function (d, i) {
-                                return internal.tspanDy(d, i);
-                            }).attr('dx', function (d, i) {
-                                return internal.tspanDx(d, i);
-                            });
-                            pathUpdate.attr("d", "M" + internal.range[0] + "," + internal.outerTickSize + "V0H" + internal.range[1] + "V" + internal.outerTickSize);
-                            break;
-                        }
-                    case "top":
-                        {
-                            // TODO: rotated tick text
-                            tickTransform = internal.axisX;
-                            lineUpdate.attr("x1", tickX).attr("x2", tickX).attr("y2", function (d, i) {
-                                return -1 * internal.lineY2(d, i);
-                            });
-                            textUpdate.attr("x", 0).attr("y", function (d, i) {
-                                return -1 * internal.textY(d, i) - (params.isCategory ? 2 : internal.tickLength - 2);
-                            }).attr("transform", function (d, i) {
-                                return internal.textTransform(d, i);
-                            }).style("text-anchor", function (d, i) {
-                                return internal.textTextAnchor(d, i);
-                            });
-                            tspanUpdate.attr('x', 0).attr("dy", function (d, i) {
-                                return internal.tspanDy(d, i);
-                            }).attr('dx', function (d, i) {
-                                return internal.tspanDx(d, i);
-                            });
-                            pathUpdate.attr("d", "M" + internal.range[0] + "," + -internal.outerTickSize + "V0H" + internal.range[1] + "V" + -internal.outerTickSize);
-                            break;
-                        }
-                    case "left":
-                        {
-                            tickTransform = internal.axisY;
-                            lineUpdate.attr("x2", -internal.innerTickSize).attr("y1", tickY).attr("y2", tickY);
-                            textUpdate.attr("x", -internal.tickLength).attr("y", internal.tickOffset).style("text-anchor", "end");
-                            tspanUpdate.attr('x', -internal.tickLength).attr("dy", function (d, i) {
-                                return internal.tspanDy(d, i);
-                            });
-                            pathUpdate.attr("d", "M" + -internal.outerTickSize + "," + internal.range[0] + "H0V" + internal.range[1] + "H" + -internal.outerTickSize);
-                            break;
-                        }
-                    case "right":
-                        {
-                            tickTransform = internal.axisY;
-                            lineUpdate.attr("x2", internal.innerTickSize).attr("y1", tickY).attr("y2", tickY);
-                            textUpdate.attr("x", internal.tickLength).attr("y", internal.tickOffset).style("text-anchor", "start");
-                            tspanUpdate.attr('x', internal.tickLength).attr("dy", function (d, i) {
-                                return internal.tspanDy(d, i);
-                            });
-                            pathUpdate.attr("d", "M" + internal.outerTickSize + "," + internal.range[0] + "H0V" + internal.range[1] + "H" + internal.outerTickSize);
-                            break;
-                        }
-                }
-                if (scale1.rangeBand) {
-                    var x = scale1,
-                        dx = x.rangeBand() / 2;
-                    scale0 = scale1 = function scale1(d) {
-                        return x(d) + dx;
-                    };
-                } else if (scale0.rangeBand) {
-                    scale0 = scale1;
-                } else {
-                    tickExit.call(tickTransform, scale1, internal.tickOffset);
-                }
-                tickEnter.call(tickTransform, scale0, internal.tickOffset);
-                self = (transition ? tickUpdate.transition(transition) : tickUpdate).style('opacity', 1).call(tickTransform, scale1, internal.tickOffset);
-            });
-            return self;
-        }
-        axis.scale = function (x) {
-            if (!arguments.length) {
-                return internal.scale;
-            }
-            internal.scale = x;
-            return axis;
-        };
-        axis.orient = function (x) {
-            if (!arguments.length) {
-                return internal.orient;
-            }
-            internal.orient = x in { top: 1, right: 1, bottom: 1, left: 1 } ? x + "" : "bottom";
-            return axis;
-        };
-        axis.tickFormat = function (format) {
-            if (!arguments.length) {
-                return internal.tickFormat;
-            }
-            internal.tickFormat = format;
-            return axis;
-        };
-        axis.tickCentered = function (isCentered) {
-            if (!arguments.length) {
-                return internal.tickCentered;
-            }
-            internal.tickCentered = isCentered;
-            return axis;
-        };
-        axis.tickOffset = function () {
-            return internal.tickOffset;
-        };
-        axis.tickInterval = function () {
-            var interval, length;
-            if (params.isCategory) {
-                interval = internal.tickOffset * 2;
-            } else {
-                length = axis.g.select('path.domain').node().getTotalLength() - internal.outerTickSize * 2;
-                interval = length / axis.g.selectAll('line').size();
-            }
-            return interval === Infinity ? 0 : interval;
-        };
-        axis.ticks = function () {
-            if (!arguments.length) {
-                return internal.tickArguments;
-            }
-            internal.tickArguments = arguments;
-            return axis;
-        };
-        axis.tickCulling = function (culling) {
-            if (!arguments.length) {
-                return internal.tickCulling;
-            }
-            internal.tickCulling = culling;
-            return axis;
-        };
-        axis.tickValues = function (x) {
-            if (typeof x === 'function') {
-                internal.tickValues = function () {
-                    return x(internal.scale.domain());
-                };
-            } else {
-                if (!arguments.length) {
-                    return internal.tickValues;
-                }
-                internal.tickValues = x;
-            }
-            return axis;
-        };
-        return axis;
-    };
+  AxisInternal.prototype.textFormatted = function (v) {
+    var internal = this,
+        formatted = internal.tickFormat ? internal.tickFormat(v) : v;
+    return typeof formatted !== 'undefined' ? formatted : '';
+  };
 
 
-    var CLASS = {
-        target: 'c3-target',
-        chart: 'c3-chart',
-        chartLine: 'c3-chart-line',
-        chartLines: 'c3-chart-lines',
-        chartBar: 'c3-chart-bar',
-        chartBars: 'c3-chart-bars',
-        chartText: 'c3-chart-text',
-        chartTexts: 'c3-chart-texts',
-        chartArc: 'c3-chart-arc',
-        chartArcs: 'c3-chart-arcs',
-        chartArcsTitle: 'c3-chart-arcs-title',
-        chartArcsBackground: 'c3-chart-arcs-background',
-        chartArcsGaugeUnit: 'c3-chart-arcs-gauge-unit',
-        chartArcsGaugeMax: 'c3-chart-arcs-gauge-max',
-        chartArcsGaugeMin: 'c3-chart-arcs-gauge-min',
-        selectedCircle: 'c3-selected-circle',
-        selectedCircles: 'c3-selected-circles',
-        eventRect: 'c3-event-rect',
-        eventRects: 'c3-event-rects',
-        eventRectsSingle: 'c3-event-rects-single',
-        eventRectsMultiple: 'c3-event-rects-multiple',
-        zoomRect: 'c3-zoom-rect',
-        brush: 'c3-brush',
-        dragZoom: 'c3-drag-zoom',
-        focused: 'c3-focused',
-        defocused: 'c3-defocused',
-        region: 'c3-region',
-        regions: 'c3-regions',
-        title: 'c3-title',
-        tooltipContainer: 'c3-tooltip-container',
-        tooltip: 'c3-tooltip',
-        tooltipName: 'c3-tooltip-name',
-        shape: 'c3-shape',
-        shapes: 'c3-shapes',
-        line: 'c3-line',
-        lines: 'c3-lines',
-        bar: 'c3-bar',
-        bars: 'c3-bars',
-        circle: 'c3-circle',
-        circles: 'c3-circles',
-        arc: 'c3-arc',
-        arcLabelLine: 'c3-arc-label-line',
-        arcs: 'c3-arcs',
-        area: 'c3-area',
-        areas: 'c3-areas',
-        empty: 'c3-empty',
-        text: 'c3-text',
-        texts: 'c3-texts',
-        gaugeValue: 'c3-gauge-value',
-        grid: 'c3-grid',
-        gridLines: 'c3-grid-lines',
-        xgrid: 'c3-xgrid',
-        xgrids: 'c3-xgrids',
-        xgridLine: 'c3-xgrid-line',
-        xgridLines: 'c3-xgrid-lines',
-        xgridFocus: 'c3-xgrid-focus',
-        ygrid: 'c3-ygrid',
-        ygrids: 'c3-ygrids',
-        ygridLine: 'c3-ygrid-line',
-        ygridLines: 'c3-ygrid-lines',
-        axis: 'c3-axis',
-        axisX: 'c3-axis-x',
-        axisXLabel: 'c3-axis-x-label',
-        axisY: 'c3-axis-y',
-        axisYLabel: 'c3-axis-y-label',
-        axisY2: 'c3-axis-y2',
-        axisY2Label: 'c3-axis-y2-label',
-        legendBackground: 'c3-legend-background',
-        legendItem: 'c3-legend-item',
-        legendItemEvent: 'c3-legend-item-event',
-        legendItemTile: 'c3-legend-item-tile',
-        legendItemHidden: 'c3-legend-item-hidden',
-        legendItemFocused: 'c3-legend-item-focused',
-        dragarea: 'c3-dragarea',
-        EXPANDED: '_expanded_',
-        SELECTED: '_selected_',
-        INCLUDED: '_included_'
-    };
+  AxisInternal.prototype.updateRange = function () {
+    var internal = this;
+    internal.range = internal.scale.rangeExtent ? internal.scale.rangeExtent() : internal.scaleExtent(internal.scale.range());
+    return internal.range;
+  };
 
 
-    var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
-      return typeof obj;
-    } : function (obj) {
-      return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
-    };
+  AxisInternal.prototype.updateTickTextCharSize = function (tick) {
+    var internal = this;
 
 
-    var classCallCheck = function (instance, Constructor) {
-      if (!(instance instanceof Constructor)) {
-        throw new TypeError("Cannot call a class as a function");
-      }
-    };
+    if (internal.tickTextCharSize) {
+      return internal.tickTextCharSize;
+    }
 
 
-    var defineProperty = function (obj, key, value) {
-      if (key in obj) {
-        Object.defineProperty(obj, key, {
-          value: value,
-          enumerable: true,
-          configurable: true,
-          writable: true
-        });
-      } else {
-        obj[key] = value;
+    var size = {
+      h: 11.5,
+      w: 5.5
+    };
+    tick.select('text').text(function (d) {
+      return internal.textFormatted(d);
+    }).each(function (d) {
+      var box = this.getBoundingClientRect(),
+          text = internal.textFormatted(d),
+          h = box.height,
+          w = text ? box.width / text.length : undefined;
+
+      if (h && w) {
+        size.h = h;
+        size.w = w;
       }
       }
+    }).text('');
+    internal.tickTextCharSize = size;
+    return size;
+  };
 
 
-      return obj;
-    };
-
-    var asHalfPixel = function asHalfPixel(n) {
-        return Math.ceil(n) + 0.5;
-    };
-    var ceil10 = function ceil10(v) {
-        return Math.ceil(v / 10) * 10;
-    };
-    var diffDomain = function diffDomain(d) {
-        return d[1] - d[0];
-    };
-    var getOption = function getOption(options, key, defaultValue) {
-        return isDefined(options[key]) ? options[key] : defaultValue;
-    };
-    var getPathBox = function getPathBox(path) {
-        var box = path.getBoundingClientRect(),
-            items = [path.pathSegList.getItem(0), path.pathSegList.getItem(1)],
-            minX = items[0].x,
-            minY = Math.min(items[0].y, items[1].y);
-        return { x: minX, y: minY, width: box.width, height: box.height };
-    };
-    var hasValue = function hasValue(dict, value) {
-        var found = false;
-        Object.keys(dict).forEach(function (key) {
-            if (dict[key] === value) {
-                found = true;
-            }
-        });
-        return found;
-    };
-    var isArray = function isArray(o) {
-        return Array.isArray(o);
-    };
-    var isDefined = function isDefined(v) {
-        return typeof v !== 'undefined';
-    };
-    var isEmpty = function isEmpty(o) {
-        return typeof o === 'undefined' || o === null || isString(o) && o.length === 0 || (typeof o === 'undefined' ? 'undefined' : _typeof(o)) === 'object' && Object.keys(o).length === 0;
-    };
-    var isFunction = function isFunction(o) {
-        return typeof o === 'function';
-    };
-    var isString = function isString(o) {
-        return typeof o === 'string';
-    };
-    var isUndefined = function isUndefined(v) {
-        return typeof v === 'undefined';
-    };
-    var isValue = function isValue(v) {
-        return v || v === 0;
-    };
-    var notEmpty = function notEmpty(o) {
-        return !isEmpty(o);
-    };
-    var sanitise = function sanitise(str) {
-        return typeof str === 'string' ? str.replace(/</g, '&lt;').replace(/>/g, '&gt;') : str;
-    };
+  AxisInternal.prototype.isVertical = function () {
+    return this.orient === 'left' || this.orient === 'right';
+  };
 
 
-    var Axis = function Axis(owner) {
-        classCallCheck(this, Axis);
+  AxisInternal.prototype.tspanData = function (d, i, scale) {
+    var internal = this;
+    var splitted = internal.params.tickMultiline ? internal.splitTickText(d, scale) : [].concat(internal.textFormatted(d));
 
 
-        this.owner = owner;
-        this.d3 = owner.d3;
-        this.internal = AxisInternal;
-    };
+    if (internal.params.tickMultiline && internal.params.tickMultilineMax > 0) {
+      splitted = internal.ellipsify(splitted, internal.params.tickMultilineMax);
+    }
 
 
-    Axis.prototype.init = function init() {
-        var $$ = this.owner,
-            config = $$.config,
-            main = $$.main;
-        $$.axes.x = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisX).attr("clip-path", config.axis_x_inner ? "" : $$.clipPathForXAxis).attr("transform", $$.getTranslate('x')).style("visibility", config.axis_x_show ? 'visible' : 'hidden');
-        $$.axes.x.append("text").attr("class", CLASS.axisXLabel).attr("transform", config.axis_rotated ? "rotate(-90)" : "").style("text-anchor", this.textAnchorForXAxisLabel.bind(this));
-        $$.axes.y = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisY).attr("clip-path", config.axis_y_inner ? "" : $$.clipPathForYAxis).attr("transform", $$.getTranslate('y')).style("visibility", config.axis_y_show ? 'visible' : 'hidden');
-        $$.axes.y.append("text").attr("class", CLASS.axisYLabel).attr("transform", config.axis_rotated ? "" : "rotate(-90)").style("text-anchor", this.textAnchorForYAxisLabel.bind(this));
-
-        $$.axes.y2 = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisY2)
-        // clip-path?
-        .attr("transform", $$.getTranslate('y2')).style("visibility", config.axis_y2_show ? 'visible' : 'hidden');
-        $$.axes.y2.append("text").attr("class", CLASS.axisY2Label).attr("transform", config.axis_rotated ? "" : "rotate(-90)").style("text-anchor", this.textAnchorForY2AxisLabel.bind(this));
-    };
-    Axis.prototype.getXAxis = function getXAxis(scale, orient, tickFormat, tickValues, withOuterTick, withoutTransition, withoutRotateTickText) {
-        var $$ = this.owner,
-            config = $$.config,
-            axisParams = {
-            isCategory: $$.isCategorized(),
-            withOuterTick: withOuterTick,
-            tickMultiline: config.axis_x_tick_multiline,
-            tickMultilineMax: config.axis_x_tick_multiline ? Number(config.axis_x_tick_multilineMax) : 0,
-            tickWidth: config.axis_x_tick_width,
-            tickTextRotate: withoutRotateTickText ? 0 : config.axis_x_tick_rotate,
-            withoutTransition: withoutTransition
-        },
-            axis = new this.internal(this, axisParams).axis.scale(scale).orient(orient);
+    return splitted.map(function (s) {
+      return {
+        index: i,
+        splitted: s,
+        length: splitted.length
+      };
+    });
+  };
+
+  AxisInternal.prototype.splitTickText = function (d, scale) {
+    var internal = this,
+        tickText = internal.textFormatted(d),
+        maxWidth = internal.params.tickWidth,
+        subtext,
+        spaceIndex,
+        textWidth,
+        splitted = [];
+
+    if (Object.prototype.toString.call(tickText) === "[object Array]") {
+      return tickText;
+    }
 
 
-        if ($$.isTimeSeries() && tickValues && typeof tickValues !== "function") {
-            tickValues = tickValues.map(function (v) {
-                return $$.parseDate(v);
-            });
-        }
+    if (!maxWidth || maxWidth <= 0) {
+      maxWidth = internal.isVertical() ? 95 : internal.params.isCategory ? Math.ceil(scale(1) - scale(0)) - 12 : 110;
+    }
 
 
-        // Set tick
-        axis.tickFormat(tickFormat).tickValues(tickValues);
-        if ($$.isCategorized()) {
-            axis.tickCentered(config.axis_x_tick_centered);
-            if (isEmpty(config.axis_x_tick_culling)) {
-                config.axis_x_tick_culling = false;
-            }
-        }
+    function split(splitted, text) {
+      spaceIndex = undefined;
 
 
-        return axis;
-    };
-    Axis.prototype.updateXAxisTickValues = function updateXAxisTickValues(targets, axis) {
-        var $$ = this.owner,
-            config = $$.config,
-            tickValues;
-        if (config.axis_x_tick_fit || config.axis_x_tick_count) {
-            tickValues = this.generateTickValues($$.mapTargetsToUniqueXs(targets), config.axis_x_tick_count, $$.isTimeSeries());
-        }
-        if (axis) {
-            axis.tickValues(tickValues);
-        } else {
-            $$.xAxis.tickValues(tickValues);
-            $$.subXAxis.tickValues(tickValues);
-        }
-        return tickValues;
-    };
-    Axis.prototype.getYAxis = function getYAxis(scale, orient, tickFormat, tickValues, withOuterTick, withoutTransition, withoutRotateTickText) {
-        var $$ = this.owner,
-            config = $$.config,
-            axisParams = {
-            withOuterTick: withOuterTick,
-            withoutTransition: withoutTransition,
-            tickTextRotate: withoutRotateTickText ? 0 : config.axis_y_tick_rotate
-        },
-            axis = new this.internal(this, axisParams).axis.scale(scale).orient(orient).tickFormat(tickFormat);
-        if ($$.isTimeSeriesY()) {
-            axis.ticks(config.axis_y_tick_time_type, config.axis_y_tick_time_interval);
-        } else {
-            axis.tickValues(tickValues);
+      for (var i = 1; i < text.length; i++) {
+        if (text.charAt(i) === ' ') {
+          spaceIndex = i;
         }
         }
-        return axis;
-    };
-    Axis.prototype.getId = function getId(id) {
-        var config = this.owner.config;
-        return id in config.data_axes ? config.data_axes[id] : 'y';
-    };
-    Axis.prototype.getXAxisTickFormat = function getXAxisTickFormat() {
-        // #2251 previously set any negative values to a whole number,
-        // however both should be truncated according to the users format specification
-        var $$ = this.owner,
-            config = $$.config;
-        var format = $$.isTimeSeries() ? $$.defaultAxisTimeFormat : $$.isCategorized() ? $$.categoryName : function (v) {
-            return v;
-        };
 
 
-        if (config.axis_x_tick_format) {
-            if (isFunction(config.axis_x_tick_format)) {
-                format = config.axis_x_tick_format;
-            } else if ($$.isTimeSeries()) {
-                format = function format(date) {
-                    return date ? $$.axisTimeFormat(config.axis_x_tick_format)(date) : "";
-                };
-            }
-        }
-        return isFunction(format) ? function (v) {
-            return format.call($$, v);
-        } : format;
-    };
-    Axis.prototype.getTickValues = function getTickValues(tickValues, axis) {
-        return tickValues ? tickValues : axis ? axis.tickValues() : undefined;
-    };
-    Axis.prototype.getXAxisTickValues = function getXAxisTickValues() {
-        return this.getTickValues(this.owner.config.axis_x_tick_values, this.owner.xAxis);
-    };
-    Axis.prototype.getYAxisTickValues = function getYAxisTickValues() {
-        return this.getTickValues(this.owner.config.axis_y_tick_values, this.owner.yAxis);
-    };
-    Axis.prototype.getY2AxisTickValues = function getY2AxisTickValues() {
-        return this.getTickValues(this.owner.config.axis_y2_tick_values, this.owner.y2Axis);
-    };
-    Axis.prototype.getLabelOptionByAxisId = function getLabelOptionByAxisId(axisId) {
-        var $$ = this.owner,
-            config = $$.config,
-            option;
-        if (axisId === 'y') {
-            option = config.axis_y_label;
-        } else if (axisId === 'y2') {
-            option = config.axis_y2_label;
-        } else if (axisId === 'x') {
-            option = config.axis_x_label;
-        }
-        return option;
-    };
-    Axis.prototype.getLabelText = function getLabelText(axisId) {
-        var option = this.getLabelOptionByAxisId(axisId);
-        return isString(option) ? option : option ? option.text : null;
-    };
-    Axis.prototype.setLabelText = function setLabelText(axisId, text) {
-        var $$ = this.owner,
-            config = $$.config,
-            option = this.getLabelOptionByAxisId(axisId);
-        if (isString(option)) {
-            if (axisId === 'y') {
-                config.axis_y_label = text;
-            } else if (axisId === 'y2') {
-                config.axis_y2_label = text;
-            } else if (axisId === 'x') {
-                config.axis_x_label = text;
-            }
-        } else if (option) {
-            option.text = text;
-        }
-    };
-    Axis.prototype.getLabelPosition = function getLabelPosition(axisId, defaultPosition) {
-        var option = this.getLabelOptionByAxisId(axisId),
-            position = option && (typeof option === 'undefined' ? 'undefined' : _typeof(option)) === 'object' && option.position ? option.position : defaultPosition;
-        return {
-            isInner: position.indexOf('inner') >= 0,
-            isOuter: position.indexOf('outer') >= 0,
-            isLeft: position.indexOf('left') >= 0,
-            isCenter: position.indexOf('center') >= 0,
-            isRight: position.indexOf('right') >= 0,
-            isTop: position.indexOf('top') >= 0,
-            isMiddle: position.indexOf('middle') >= 0,
-            isBottom: position.indexOf('bottom') >= 0
-        };
-    };
-    Axis.prototype.getXAxisLabelPosition = function getXAxisLabelPosition() {
-        return this.getLabelPosition('x', this.owner.config.axis_rotated ? 'inner-top' : 'inner-right');
-    };
-    Axis.prototype.getYAxisLabelPosition = function getYAxisLabelPosition() {
-        return this.getLabelPosition('y', this.owner.config.axis_rotated ? 'inner-right' : 'inner-top');
-    };
-    Axis.prototype.getY2AxisLabelPosition = function getY2AxisLabelPosition() {
-        return this.getLabelPosition('y2', this.owner.config.axis_rotated ? 'inner-right' : 'inner-top');
-    };
-    Axis.prototype.getLabelPositionById = function getLabelPositionById(id) {
-        return id === 'y2' ? this.getY2AxisLabelPosition() : id === 'y' ? this.getYAxisLabelPosition() : this.getXAxisLabelPosition();
-    };
-    Axis.prototype.textForXAxisLabel = function textForXAxisLabel() {
-        return this.getLabelText('x');
-    };
-    Axis.prototype.textForYAxisLabel = function textForYAxisLabel() {
-        return this.getLabelText('y');
-    };
-    Axis.prototype.textForY2AxisLabel = function textForY2AxisLabel() {
-        return this.getLabelText('y2');
-    };
-    Axis.prototype.xForAxisLabel = function xForAxisLabel(forHorizontal, position) {
-        var $$ = this.owner;
-        if (forHorizontal) {
-            return position.isLeft ? 0 : position.isCenter ? $$.width / 2 : $$.width;
-        } else {
-            return position.isBottom ? -$$.height : position.isMiddle ? -$$.height / 2 : 0;
-        }
-    };
-    Axis.prototype.dxForAxisLabel = function dxForAxisLabel(forHorizontal, position) {
-        if (forHorizontal) {
-            return position.isLeft ? "0.5em" : position.isRight ? "-0.5em" : "0";
-        } else {
-            return position.isTop ? "-0.5em" : position.isBottom ? "0.5em" : "0";
-        }
-    };
-    Axis.prototype.textAnchorForAxisLabel = function textAnchorForAxisLabel(forHorizontal, position) {
-        if (forHorizontal) {
-            return position.isLeft ? 'start' : position.isCenter ? 'middle' : 'end';
-        } else {
-            return position.isBottom ? 'start' : position.isMiddle ? 'middle' : 'end';
-        }
-    };
-    Axis.prototype.xForXAxisLabel = function xForXAxisLabel() {
-        return this.xForAxisLabel(!this.owner.config.axis_rotated, this.getXAxisLabelPosition());
-    };
-    Axis.prototype.xForYAxisLabel = function xForYAxisLabel() {
-        return this.xForAxisLabel(this.owner.config.axis_rotated, this.getYAxisLabelPosition());
-    };
-    Axis.prototype.xForY2AxisLabel = function xForY2AxisLabel() {
-        return this.xForAxisLabel(this.owner.config.axis_rotated, this.getY2AxisLabelPosition());
-    };
-    Axis.prototype.dxForXAxisLabel = function dxForXAxisLabel() {
-        return this.dxForAxisLabel(!this.owner.config.axis_rotated, this.getXAxisLabelPosition());
-    };
-    Axis.prototype.dxForYAxisLabel = function dxForYAxisLabel() {
-        return this.dxForAxisLabel(this.owner.config.axis_rotated, this.getYAxisLabelPosition());
-    };
-    Axis.prototype.dxForY2AxisLabel = function dxForY2AxisLabel() {
-        return this.dxForAxisLabel(this.owner.config.axis_rotated, this.getY2AxisLabelPosition());
-    };
-    Axis.prototype.dyForXAxisLabel = function dyForXAxisLabel() {
-        var $$ = this.owner,
-            config = $$.config,
-            position = this.getXAxisLabelPosition();
-        if (config.axis_rotated) {
-            return position.isInner ? "1.2em" : -25 - ($$.config.axis_x_inner ? 0 : this.getMaxTickWidth('x'));
-        } else {
-            return position.isInner ? "-0.5em" : config.axis_x_height ? config.axis_x_height - 10 : "3em";
-        }
-    };
-    Axis.prototype.dyForYAxisLabel = function dyForYAxisLabel() {
-        var $$ = this.owner,
-            position = this.getYAxisLabelPosition();
-        if ($$.config.axis_rotated) {
-            return position.isInner ? "-0.5em" : "3em";
-        } else {
-            return position.isInner ? "1.2em" : -10 - ($$.config.axis_y_inner ? 0 : this.getMaxTickWidth('y') + 10);
-        }
-    };
-    Axis.prototype.dyForY2AxisLabel = function dyForY2AxisLabel() {
-        var $$ = this.owner,
-            position = this.getY2AxisLabelPosition();
-        if ($$.config.axis_rotated) {
-            return position.isInner ? "1.2em" : "-2.2em";
-        } else {
-            return position.isInner ? "-0.5em" : 15 + ($$.config.axis_y2_inner ? 0 : this.getMaxTickWidth('y2') + 15);
-        }
-    };
-    Axis.prototype.textAnchorForXAxisLabel = function textAnchorForXAxisLabel() {
-        var $$ = this.owner;
-        return this.textAnchorForAxisLabel(!$$.config.axis_rotated, this.getXAxisLabelPosition());
-    };
-    Axis.prototype.textAnchorForYAxisLabel = function textAnchorForYAxisLabel() {
-        var $$ = this.owner;
-        return this.textAnchorForAxisLabel($$.config.axis_rotated, this.getYAxisLabelPosition());
-    };
-    Axis.prototype.textAnchorForY2AxisLabel = function textAnchorForY2AxisLabel() {
-        var $$ = this.owner;
-        return this.textAnchorForAxisLabel($$.config.axis_rotated, this.getY2AxisLabelPosition());
-    };
-    Axis.prototype.getMaxTickWidth = function getMaxTickWidth(id, withoutRecompute) {
-        var $$ = this.owner,
-            config = $$.config,
-            maxWidth = 0,
-            targetsToShow,
-            scale,
-            axis,
-            dummy,
-            svg;
-        if (withoutRecompute && $$.currentMaxTickWidths[id]) {
-            return $$.currentMaxTickWidths[id];
-        }
-        if ($$.svg) {
-            targetsToShow = $$.filterTargetsToShow($$.data.targets);
-            if (id === 'y') {
-                scale = $$.y.copy().domain($$.getYDomain(targetsToShow, 'y'));
-                axis = this.getYAxis(scale, $$.yOrient, config.axis_y_tick_format, $$.yAxisTickValues, false, true, true);
-            } else if (id === 'y2') {
-                scale = $$.y2.copy().domain($$.getYDomain(targetsToShow, 'y2'));
-                axis = this.getYAxis(scale, $$.y2Orient, config.axis_y2_tick_format, $$.y2AxisTickValues, false, true, true);
-            } else {
-                scale = $$.x.copy().domain($$.getXDomain(targetsToShow));
-                axis = this.getXAxis(scale, $$.xOrient, $$.xAxisTickFormat, $$.xAxisTickValues, false, true, true);
-                this.updateXAxisTickValues(targetsToShow, axis);
-            }
-            dummy = $$.d3.select('body').append('div').classed('c3', true);
-            svg = dummy.append("svg").style('visibility', 'hidden').style('position', 'fixed').style('top', 0).style('left', 0), svg.append('g').call(axis).each(function () {
-                $$.d3.select(this).selectAll('text').each(function () {
-                    var box = this.getBoundingClientRect();
-                    if (maxWidth < box.width) {
-                        maxWidth = box.width;
-                    }
-                });
-                dummy.remove();
-            });
-        }
-        $$.currentMaxTickWidths[id] = maxWidth <= 0 ? $$.currentMaxTickWidths[id] : maxWidth;
-        return $$.currentMaxTickWidths[id];
-    };
+        subtext = text.substr(0, i + 1);
+        textWidth = internal.tickTextCharSize.w * subtext.length; // if text width gets over tick width, split by space index or crrent index
 
 
-    Axis.prototype.updateLabels = function updateLabels(withTransition) {
-        var $$ = this.owner;
-        var axisXLabel = $$.main.select('.' + CLASS.axisX + ' .' + CLASS.axisXLabel),
-            axisYLabel = $$.main.select('.' + CLASS.axisY + ' .' + CLASS.axisYLabel),
-            axisY2Label = $$.main.select('.' + CLASS.axisY2 + ' .' + CLASS.axisY2Label);
-        (withTransition ? axisXLabel.transition() : axisXLabel).attr("x", this.xForXAxisLabel.bind(this)).attr("dx", this.dxForXAxisLabel.bind(this)).attr("dy", this.dyForXAxisLabel.bind(this)).text(this.textForXAxisLabel.bind(this));
-        (withTransition ? axisYLabel.transition() : axisYLabel).attr("x", this.xForYAxisLabel.bind(this)).attr("dx", this.dxForYAxisLabel.bind(this)).attr("dy", this.dyForYAxisLabel.bind(this)).text(this.textForYAxisLabel.bind(this));
-        (withTransition ? axisY2Label.transition() : axisY2Label).attr("x", this.xForY2AxisLabel.bind(this)).attr("dx", this.dxForY2AxisLabel.bind(this)).attr("dy", this.dyForY2AxisLabel.bind(this)).text(this.textForY2AxisLabel.bind(this));
-    };
-    Axis.prototype.getPadding = function getPadding(padding, key, defaultValue, domainLength) {
-        var p = typeof padding === 'number' ? padding : padding[key];
-        if (!isValue(p)) {
-            return defaultValue;
-        }
-        if (padding.unit === 'ratio') {
-            return padding[key] * domainLength;
-        }
-        // assume padding is pixels if unit is not specified
-        return this.convertPixelsToAxisPadding(p, domainLength);
-    };
-    Axis.prototype.convertPixelsToAxisPadding = function convertPixelsToAxisPadding(pixels, domainLength) {
-        var $$ = this.owner,
-            length = $$.config.axis_rotated ? $$.width : $$.height;
-        return domainLength * (pixels / length);
-    };
-    Axis.prototype.generateTickValues = function generateTickValues(values, tickCount, forTimeSeries) {
-        var tickValues = values,
-            targetCount,
-            start,
-            end,
-            count,
-            interval,
-            i,
-            tickValue;
-        if (tickCount) {
-            targetCount = isFunction(tickCount) ? tickCount() : tickCount;
-            // compute ticks according to tickCount
-            if (targetCount === 1) {
-                tickValues = [values[0]];
-            } else if (targetCount === 2) {
-                tickValues = [values[0], values[values.length - 1]];
-            } else if (targetCount > 2) {
-                count = targetCount - 2;
-                start = values[0];
-                end = values[values.length - 1];
-                interval = (end - start) / (count + 1);
-                // re-construct unique values
-                tickValues = [start];
-                for (i = 0; i < count; i++) {
-                    tickValue = +start + interval * (i + 1);
-                    tickValues.push(forTimeSeries ? new Date(tickValue) : tickValue);
-                }
-                tickValues.push(end);
-            }
+        if (maxWidth < textWidth) {
+          return split(splitted.concat(text.substr(0, spaceIndex ? spaceIndex : i)), text.slice(spaceIndex ? spaceIndex + 1 : i));
         }
         }
-        if (!forTimeSeries) {
-            tickValues = tickValues.sort(function (a, b) {
-                return a - b;
-            });
-        }
-        return tickValues;
-    };
-    Axis.prototype.generateTransitions = function generateTransitions(duration) {
-        var $$ = this.owner,
-            axes = $$.axes;
-        return {
-            axisX: duration ? axes.x.transition().duration(duration) : axes.x,
-            axisY: duration ? axes.y.transition().duration(duration) : axes.y,
-            axisY2: duration ? axes.y2.transition().duration(duration) : axes.y2,
-            axisSubX: duration ? axes.subx.transition().duration(duration) : axes.subx
-        };
-    };
-    Axis.prototype.redraw = function redraw(duration, isHidden) {
-        var $$ = this.owner,
-            transition = duration ? $$.d3.transition().duration(duration) : null;
-        $$.axes.x.style("opacity", isHidden ? 0 : 1).call($$.xAxis, transition);
-        $$.axes.y.style("opacity", isHidden ? 0 : 1).call($$.yAxis, transition);
-        $$.axes.y2.style("opacity", isHidden ? 0 : 1).call($$.y2Axis, transition);
-        $$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition);
-    };
+      }
 
 
-    var c3 = {
-        version: "0.6.7",
-        chart: {
-            fn: Chart.prototype,
-            internal: {
-                fn: ChartInternal.prototype,
-                axis: {
-                    fn: Axis.prototype,
-                    internal: {
-                        fn: AxisInternal.prototype
-                    }
-                }
-            }
-        },
-        generate: function generate(config) {
-            return new Chart(config);
-        }
-    };
+      return splitted.concat(text);
+    }
 
 
-    ChartInternal.prototype.beforeInit = function () {
-        // can do something
-    };
-    ChartInternal.prototype.afterInit = function () {
-        // can do something
-    };
-    ChartInternal.prototype.init = function () {
-        var $$ = this,
-            config = $$.config;
-
-        $$.initParams();
-
-        if (config.data_url) {
-            $$.convertUrlToData(config.data_url, config.data_mimeType, config.data_headers, config.data_keys, $$.initWithData);
-        } else if (config.data_json) {
-            $$.initWithData($$.convertJsonToData(config.data_json, config.data_keys));
-        } else if (config.data_rows) {
-            $$.initWithData($$.convertRowsToData(config.data_rows));
-        } else if (config.data_columns) {
-            $$.initWithData($$.convertColumnsToData(config.data_columns));
-        } else {
-            throw Error('url or json or rows or columns is required.');
-        }
-    };
+    return split(splitted, tickText + "");
+  };
 
 
-    ChartInternal.prototype.initParams = function () {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config;
-
-        // MEMO: clipId needs to be unique because it conflicts when multiple charts exist
-        $$.clipId = "c3-" + +new Date() + '-clip';
-        $$.clipIdForXAxis = $$.clipId + '-xaxis';
-        $$.clipIdForYAxis = $$.clipId + '-yaxis';
-        $$.clipIdForGrid = $$.clipId + '-grid';
-        $$.clipIdForSubchart = $$.clipId + '-subchart';
-        $$.clipPath = $$.getClipPath($$.clipId);
-        $$.clipPathForXAxis = $$.getClipPath($$.clipIdForXAxis);
-        $$.clipPathForYAxis = $$.getClipPath($$.clipIdForYAxis);
-        $$.clipPathForGrid = $$.getClipPath($$.clipIdForGrid);
-        $$.clipPathForSubchart = $$.getClipPath($$.clipIdForSubchart);
-
-        $$.dragStart = null;
-        $$.dragging = false;
-        $$.flowing = false;
-        $$.cancelClick = false;
-        $$.mouseover = false;
-        $$.transiting = false;
-
-        $$.color = $$.generateColor();
-        $$.levelColor = $$.generateLevelColor();
-
-        $$.dataTimeParse = (config.data_xLocaltime ? d3.timeParse : d3.utcParse)($$.config.data_xFormat);
-        $$.axisTimeFormat = config.axis_x_localtime ? d3.timeFormat : d3.utcFormat;
-        $$.defaultAxisTimeFormat = function (date) {
-            if (date.getMilliseconds()) {
-                return d3.timeFormat(".%L")(date);
-            }
-            if (date.getSeconds()) {
-                return d3.timeFormat(":%S")(date);
-            }
-            if (date.getMinutes()) {
-                return d3.timeFormat("%I:%M")(date);
-            }
-            if (date.getHours()) {
-                return d3.timeFormat("%I %p")(date);
-            }
-            if (date.getDay() && date.getDate() !== 1) {
-                return d3.timeFormat("%-m/%-d")(date);
-            }
-            if (date.getDate() !== 1) {
-                return d3.timeFormat("%-m/%-d")(date);
-            }
-            if (date.getMonth()) {
-                return d3.timeFormat("%-m/%-d")(date);
-            }
-            return d3.timeFormat("%Y/%-m/%-d")(date);
-        };
-        $$.hiddenTargetIds = [];
-        $$.hiddenLegendIds = [];
-        $$.focusedTargetIds = [];
-        $$.defocusedTargetIds = [];
-
-        $$.xOrient = config.axis_rotated ? config.axis_x_inner ? "right" : "left" : config.axis_x_inner ? "top" : "bottom";
-        $$.yOrient = config.axis_rotated ? config.axis_y_inner ? "top" : "bottom" : config.axis_y_inner ? "right" : "left";
-        $$.y2Orient = config.axis_rotated ? config.axis_y2_inner ? "bottom" : "top" : config.axis_y2_inner ? "left" : "right";
-        $$.subXOrient = config.axis_rotated ? "left" : "bottom";
-
-        $$.isLegendRight = config.legend_position === 'right';
-        $$.isLegendInset = config.legend_position === 'inset';
-        $$.isLegendTop = config.legend_inset_anchor === 'top-left' || config.legend_inset_anchor === 'top-right';
-        $$.isLegendLeft = config.legend_inset_anchor === 'top-left' || config.legend_inset_anchor === 'bottom-left';
-        $$.legendStep = 0;
-        $$.legendItemWidth = 0;
-        $$.legendItemHeight = 0;
-
-        $$.currentMaxTickWidths = {
-            x: 0,
-            y: 0,
-            y2: 0
-        };
+  AxisInternal.prototype.ellipsify = function (splitted, max) {
+    if (splitted.length <= max) {
+      return splitted;
+    }
 
 
-        $$.rotated_padding_left = 30;
-        $$.rotated_padding_right = config.axis_rotated && !config.axis_x_show ? 0 : 30;
-        $$.rotated_padding_top = 5;
+    var ellipsified = splitted.slice(0, max);
+    var remaining = 3;
 
 
-        $$.withoutFadeIn = {};
+    for (var i = max - 1; i >= 0; i--) {
+      var available = ellipsified[i].length;
+      ellipsified[i] = ellipsified[i].substr(0, available - remaining).padEnd(available, '.');
+      remaining -= available;
 
 
-        $$.intervalForObserveInserted = undefined;
+      if (remaining <= 0) {
+        break;
+      }
+    }
 
 
-        $$.axes.subx = d3.selectAll([]); // needs when excluding subchart.js
-    };
+    return ellipsified;
+  };
+
+  AxisInternal.prototype.updateTickLength = function () {
+    var internal = this;
+    internal.tickLength = Math.max(internal.innerTickSize, 0) + internal.tickPadding;
+  };
+
+  AxisInternal.prototype.lineY2 = function (d) {
+    var internal = this,
+        tickPosition = internal.scale(d) + (internal.tickCentered ? 0 : internal.tickOffset);
+    return internal.range[0] < tickPosition && tickPosition < internal.range[1] ? internal.innerTickSize : 0;
+  };
+
+  AxisInternal.prototype.textY = function () {
+    var internal = this,
+        rotate = internal.tickTextRotate;
+    return rotate ? 11.5 - 2.5 * (rotate / 15) * (rotate > 0 ? 1 : -1) : internal.tickLength;
+  };
+
+  AxisInternal.prototype.textTransform = function () {
+    var internal = this,
+        rotate = internal.tickTextRotate;
+    return rotate ? "rotate(" + rotate + ")" : "";
+  };
+
+  AxisInternal.prototype.textTextAnchor = function () {
+    var internal = this,
+        rotate = internal.tickTextRotate;
+    return rotate ? rotate > 0 ? "start" : "end" : "middle";
+  };
+
+  AxisInternal.prototype.tspanDx = function () {
+    var internal = this,
+        rotate = internal.tickTextRotate;
+    return rotate ? 8 * Math.sin(Math.PI * (rotate / 180)) : 0;
+  };
+
+  AxisInternal.prototype.tspanDy = function (d, i) {
+    var internal = this,
+        dy = internal.tickTextCharSize.h;
+
+    if (i === 0) {
+      if (internal.isVertical()) {
+        dy = -((d.length - 1) * (internal.tickTextCharSize.h / 2) - 3);
+      } else {
+        dy = ".71em";
+      }
+    }
 
 
-    ChartInternal.prototype.initChartElements = function () {
-        if (this.initBar) {
-            this.initBar();
-        }
-        if (this.initLine) {
-            this.initLine();
-        }
-        if (this.initArc) {
-            this.initArc();
-        }
-        if (this.initGauge) {
-            this.initGauge();
-        }
-        if (this.initText) {
-            this.initText();
+    return dy;
+  };
+
+  AxisInternal.prototype.generateAxis = function () {
+    var internal = this,
+        d3 = internal.d3,
+        params = internal.params;
+
+    function axis(g, transition) {
+      var self;
+      g.each(function () {
+        var g = axis.g = d3.select(this);
+        var scale0 = this.__chart__ || internal.scale,
+            scale1 = this.__chart__ = internal.copyScale();
+        var ticksValues = internal.tickValues ? internal.tickValues : internal.generateTicks(scale1),
+            ticks = g.selectAll(".tick").data(ticksValues, scale1),
+            tickEnter = ticks.enter().insert("g", ".domain").attr("class", "tick").style("opacity", 1e-6),
+            // MEMO: No exit transition. The reason is this transition affects max tick width calculation because old tick will be included in the ticks.
+        tickExit = ticks.exit().remove(),
+            tickUpdate = ticks.merge(tickEnter),
+            tickTransform,
+            tickX,
+            tickY;
+
+        if (params.isCategory) {
+          internal.tickOffset = Math.ceil((scale1(1) - scale1(0)) / 2);
+          tickX = internal.tickCentered ? 0 : internal.tickOffset;
+          tickY = internal.tickCentered ? internal.tickOffset : 0;
+        } else {
+          internal.tickOffset = tickX = 0;
         }
         }
-    };
-
-    ChartInternal.prototype.initWithData = function (data) {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config;
-        var defs,
-            main,
-            binding = true;
 
 
-        $$.axis = new Axis($$);
-
-        if (!config.bindto) {
-            $$.selectChart = d3.selectAll([]);
-        } else if (typeof config.bindto.node === 'function') {
-            $$.selectChart = config.bindto;
+        internal.updateRange();
+        internal.updateTickLength();
+        internal.updateTickTextCharSize(g.select('.tick'));
+        var lineUpdate = tickUpdate.select("line").merge(tickEnter.append("line")),
+            textUpdate = tickUpdate.select("text").merge(tickEnter.append("text"));
+        var tspans = tickUpdate.selectAll('text').selectAll('tspan').data(function (d, i) {
+          return internal.tspanData(d, i, scale1);
+        }),
+            tspanEnter = tspans.enter().append('tspan'),
+            tspanUpdate = tspanEnter.merge(tspans).text(function (d) {
+          return d.splitted;
+        });
+        tspans.exit().remove();
+        var path = g.selectAll(".domain").data([0]),
+            pathUpdate = path.enter().append("path").merge(path).attr("class", "domain"); // TODO: each attr should be one function and change its behavior by internal.orient, probably
+
+        switch (internal.orient) {
+          case "bottom":
+            {
+              tickTransform = internal.axisX;
+              lineUpdate.attr("x1", tickX).attr("x2", tickX).attr("y2", function (d, i) {
+                return internal.lineY2(d, i);
+              });
+              textUpdate.attr("x", 0).attr("y", function (d, i) {
+                return internal.textY(d, i);
+              }).attr("transform", function (d, i) {
+                return internal.textTransform(d, i);
+              }).style("text-anchor", function (d, i) {
+                return internal.textTextAnchor(d, i);
+              });
+              tspanUpdate.attr('x', 0).attr("dy", function (d, i) {
+                return internal.tspanDy(d, i);
+              }).attr('dx', function (d, i) {
+                return internal.tspanDx(d, i);
+              });
+              pathUpdate.attr("d", "M" + internal.range[0] + "," + internal.outerTickSize + "V0H" + internal.range[1] + "V" + internal.outerTickSize);
+              break;
+            }
+
+          case "top":
+            {
+              // TODO: rotated tick text
+              tickTransform = internal.axisX;
+              lineUpdate.attr("x1", tickX).attr("x2", tickX).attr("y2", function (d, i) {
+                return -1 * internal.lineY2(d, i);
+              });
+              textUpdate.attr("x", 0).attr("y", function (d, i) {
+                return -1 * internal.textY(d, i) - (params.isCategory ? 2 : internal.tickLength - 2);
+              }).attr("transform", function (d, i) {
+                return internal.textTransform(d, i);
+              }).style("text-anchor", function (d, i) {
+                return internal.textTextAnchor(d, i);
+              });
+              tspanUpdate.attr('x', 0).attr("dy", function (d, i) {
+                return internal.tspanDy(d, i);
+              }).attr('dx', function (d, i) {
+                return internal.tspanDx(d, i);
+              });
+              pathUpdate.attr("d", "M" + internal.range[0] + "," + -internal.outerTickSize + "V0H" + internal.range[1] + "V" + -internal.outerTickSize);
+              break;
+            }
+
+          case "left":
+            {
+              tickTransform = internal.axisY;
+              lineUpdate.attr("x2", -internal.innerTickSize).attr("y1", tickY).attr("y2", tickY);
+              textUpdate.attr("x", -internal.tickLength).attr("y", internal.tickOffset).style("text-anchor", "end");
+              tspanUpdate.attr('x', -internal.tickLength).attr("dy", function (d, i) {
+                return internal.tspanDy(d, i);
+              });
+              pathUpdate.attr("d", "M" + -internal.outerTickSize + "," + internal.range[0] + "H0V" + internal.range[1] + "H" + -internal.outerTickSize);
+              break;
+            }
+
+          case "right":
+            {
+              tickTransform = internal.axisY;
+              lineUpdate.attr("x2", internal.innerTickSize).attr("y1", tickY).attr("y2", tickY);
+              textUpdate.attr("x", internal.tickLength).attr("y", internal.tickOffset).style("text-anchor", "start");
+              tspanUpdate.attr('x', internal.tickLength).attr("dy", function (d, i) {
+                return internal.tspanDy(d, i);
+              });
+              pathUpdate.attr("d", "M" + internal.outerTickSize + "," + internal.range[0] + "H0V" + internal.range[1] + "H" + internal.outerTickSize);
+              break;
+            }
+        }
+
+        if (scale1.rangeBand) {
+          var x = scale1,
+              dx = x.rangeBand() / 2;
+
+          scale0 = scale1 = function scale1(d) {
+            return x(d) + dx;
+          };
+        } else if (scale0.rangeBand) {
+          scale0 = scale1;
         } else {
         } else {
-            $$.selectChart = d3.select(config.bindto);
-        }
-        if ($$.selectChart.empty()) {
-            $$.selectChart = d3.select(document.createElement('div')).style('opacity', 0);
-            $$.observeInserted($$.selectChart);
-            binding = false;
+          tickExit.call(tickTransform, scale1, internal.tickOffset);
         }
         }
-        $$.selectChart.html("").classed("c3", true);
 
 
-        // Init data as targets
-        $$.data.xs = {};
-        $$.data.targets = $$.convertDataToTargets(data);
-
-        if (config.data_filter) {
-            $$.data.targets = $$.data.targets.filter(config.data_filter);
-        }
+        tickEnter.call(tickTransform, scale0, internal.tickOffset);
+        self = (transition ? tickUpdate.transition(transition) : tickUpdate).style('opacity', 1).call(tickTransform, scale1, internal.tickOffset);
+      });
+      return self;
+    }
 
 
-        // Set targets to hide if needed
-        if (config.data_hide) {
-            $$.addHiddenTargetIds(config.data_hide === true ? $$.mapToIds($$.data.targets) : config.data_hide);
-        }
-        if (config.legend_hide) {
-            $$.addHiddenLegendIds(config.legend_hide === true ? $$.mapToIds($$.data.targets) : config.legend_hide);
-        }
+    axis.scale = function (x) {
+      if (!arguments.length) {
+        return internal.scale;
+      }
 
 
-        // Init sizes and scales
-        $$.updateSizes();
-        $$.updateScales();
+      internal.scale = x;
+      return axis;
+    };
 
 
-        // Set domains for each scale
-        $$.x.domain(d3.extent($$.getXDomain($$.data.targets)));
-        $$.y.domain($$.getYDomain($$.data.targets, 'y'));
-        $$.y2.domain($$.getYDomain($$.data.targets, 'y2'));
-        $$.subX.domain($$.x.domain());
-        $$.subY.domain($$.y.domain());
-        $$.subY2.domain($$.y2.domain());
+    axis.orient = function (x) {
+      if (!arguments.length) {
+        return internal.orient;
+      }
 
 
-        // Save original x domain for zoom update
-        $$.orgXDomain = $$.x.domain();
+      internal.orient = x in {
+        top: 1,
+        right: 1,
+        bottom: 1,
+        left: 1
+      } ? x + "" : "bottom";
+      return axis;
+    };
 
 
-        /*-- Basic Elements --*/
+    axis.tickFormat = function (format) {
+      if (!arguments.length) {
+        return internal.tickFormat;
+      }
 
 
-        // Define svgs
-        $$.svg = $$.selectChart.append("svg").style("overflow", "hidden").on('mouseenter', function () {
-            return config.onmouseover.call($$);
-        }).on('mouseleave', function () {
-            return config.onmouseout.call($$);
-        });
+      internal.tickFormat = format;
+      return axis;
+    };
 
 
-        if ($$.config.svg_classname) {
-            $$.svg.attr('class', $$.config.svg_classname);
-        }
+    axis.tickCentered = function (isCentered) {
+      if (!arguments.length) {
+        return internal.tickCentered;
+      }
 
 
-        // Define defs
-        defs = $$.svg.append("defs");
-        $$.clipChart = $$.appendClip(defs, $$.clipId);
-        $$.clipXAxis = $$.appendClip(defs, $$.clipIdForXAxis);
-        $$.clipYAxis = $$.appendClip(defs, $$.clipIdForYAxis);
-        $$.clipGrid = $$.appendClip(defs, $$.clipIdForGrid);
-        $$.clipSubchart = $$.appendClip(defs, $$.clipIdForSubchart);
-        $$.updateSvgSize();
+      internal.tickCentered = isCentered;
+      return axis;
+    };
 
 
-        // Define regions
-        main = $$.main = $$.svg.append("g").attr("transform", $$.getTranslate('main'));
+    axis.tickOffset = function () {
+      return internal.tickOffset;
+    };
 
 
-        if ($$.initPie) {
-            $$.initPie();
-        }
-        if ($$.initDragZoom) {
-            $$.initDragZoom();
-        }
-        if ($$.initSubchart) {
-            $$.initSubchart();
-        }
-        if ($$.initTooltip) {
-            $$.initTooltip();
-        }
-        if ($$.initLegend) {
-            $$.initLegend();
-        }
-        if ($$.initTitle) {
-            $$.initTitle();
-        }
-        if ($$.initZoom) {
-            $$.initZoom();
-        }
+    axis.tickInterval = function () {
+      var interval, length;
 
 
-        // Update selection based on size and scale
-        // TODO: currently this must be called after initLegend because of update of sizes, but it should be done in initSubchart.
-        if ($$.initSubchartBrush) {
-            $$.initSubchartBrush();
-        }
+      if (params.isCategory) {
+        interval = internal.tickOffset * 2;
+      } else {
+        length = axis.g.select('path.domain').node().getTotalLength() - internal.outerTickSize * 2;
+        interval = length / axis.g.selectAll('line').size();
+      }
 
 
-        /*-- Main Region --*/
+      return interval === Infinity ? 0 : interval;
+    };
 
 
-        // text when empty
-        main.append("text").attr("class", CLASS.text + ' ' + CLASS.empty).attr("text-anchor", "middle") // horizontal centering of text at x position in all browsers.
-        .attr("dominant-baseline", "middle"); // vertical centering of text at y position in all browsers, except IE.
+    axis.ticks = function () {
+      if (!arguments.length) {
+        return internal.tickArguments;
+      }
 
 
-        // Regions
-        $$.initRegion();
+      internal.tickArguments = arguments;
+      return axis;
+    };
 
 
-        // Grids
-        $$.initGrid();
+    axis.tickCulling = function (culling) {
+      if (!arguments.length) {
+        return internal.tickCulling;
+      }
 
 
-        // Define g for chart area
-        main.append('g').attr("clip-path", $$.clipPath).attr('class', CLASS.chart);
+      internal.tickCulling = culling;
+      return axis;
+    };
 
 
-        // Grid lines
-        if (config.grid_lines_front) {
-            $$.initGridLines();
+    axis.tickValues = function (x) {
+      if (typeof x === 'function') {
+        internal.tickValues = function () {
+          return x(internal.scale.domain());
+        };
+      } else {
+        if (!arguments.length) {
+          return internal.tickValues;
         }
 
         }
 
-        // Cover whole with rects for events
-        $$.initEventRect();
+        internal.tickValues = x;
+      }
 
 
-        // Define g for chart
-        $$.initChartElements();
+      return axis;
+    };
+
+    return axis;
+  };
+
+  var CLASS = {
+    target: 'c3-target',
+    chart: 'c3-chart',
+    chartLine: 'c3-chart-line',
+    chartLines: 'c3-chart-lines',
+    chartBar: 'c3-chart-bar',
+    chartBars: 'c3-chart-bars',
+    chartText: 'c3-chart-text',
+    chartTexts: 'c3-chart-texts',
+    chartArc: 'c3-chart-arc',
+    chartArcs: 'c3-chart-arcs',
+    chartArcsTitle: 'c3-chart-arcs-title',
+    chartArcsBackground: 'c3-chart-arcs-background',
+    chartArcsGaugeUnit: 'c3-chart-arcs-gauge-unit',
+    chartArcsGaugeMax: 'c3-chart-arcs-gauge-max',
+    chartArcsGaugeMin: 'c3-chart-arcs-gauge-min',
+    selectedCircle: 'c3-selected-circle',
+    selectedCircles: 'c3-selected-circles',
+    eventRect: 'c3-event-rect',
+    eventRects: 'c3-event-rects',
+    eventRectsSingle: 'c3-event-rects-single',
+    eventRectsMultiple: 'c3-event-rects-multiple',
+    zoomRect: 'c3-zoom-rect',
+    brush: 'c3-brush',
+    dragZoom: 'c3-drag-zoom',
+    focused: 'c3-focused',
+    defocused: 'c3-defocused',
+    region: 'c3-region',
+    regions: 'c3-regions',
+    title: 'c3-title',
+    tooltipContainer: 'c3-tooltip-container',
+    tooltip: 'c3-tooltip',
+    tooltipName: 'c3-tooltip-name',
+    shape: 'c3-shape',
+    shapes: 'c3-shapes',
+    line: 'c3-line',
+    lines: 'c3-lines',
+    bar: 'c3-bar',
+    bars: 'c3-bars',
+    circle: 'c3-circle',
+    circles: 'c3-circles',
+    arc: 'c3-arc',
+    arcLabelLine: 'c3-arc-label-line',
+    arcs: 'c3-arcs',
+    area: 'c3-area',
+    areas: 'c3-areas',
+    empty: 'c3-empty',
+    text: 'c3-text',
+    texts: 'c3-texts',
+    gaugeValue: 'c3-gauge-value',
+    grid: 'c3-grid',
+    gridLines: 'c3-grid-lines',
+    xgrid: 'c3-xgrid',
+    xgrids: 'c3-xgrids',
+    xgridLine: 'c3-xgrid-line',
+    xgridLines: 'c3-xgrid-lines',
+    xgridFocus: 'c3-xgrid-focus',
+    ygrid: 'c3-ygrid',
+    ygrids: 'c3-ygrids',
+    ygridLine: 'c3-ygrid-line',
+    ygridLines: 'c3-ygrid-lines',
+    axis: 'c3-axis',
+    axisX: 'c3-axis-x',
+    axisXLabel: 'c3-axis-x-label',
+    axisY: 'c3-axis-y',
+    axisYLabel: 'c3-axis-y-label',
+    axisY2: 'c3-axis-y2',
+    axisY2Label: 'c3-axis-y2-label',
+    legendBackground: 'c3-legend-background',
+    legendItem: 'c3-legend-item',
+    legendItemEvent: 'c3-legend-item-event',
+    legendItemTile: 'c3-legend-item-tile',
+    legendItemHidden: 'c3-legend-item-hidden',
+    legendItemFocused: 'c3-legend-item-focused',
+    dragarea: 'c3-dragarea',
+    EXPANDED: '_expanded_',
+    SELECTED: '_selected_',
+    INCLUDED: '_included_'
+  };
+
+  var asHalfPixel = function asHalfPixel(n) {
+    return Math.ceil(n) + 0.5;
+  };
+  var ceil10 = function ceil10(v) {
+    return Math.ceil(v / 10) * 10;
+  };
+  var diffDomain = function diffDomain(d) {
+    return d[1] - d[0];
+  };
+  var getOption = function getOption(options, key, defaultValue) {
+    return isDefined(options[key]) ? options[key] : defaultValue;
+  };
+  var getPathBox = function getPathBox(path) {
+    var box = path.getBoundingClientRect(),
+        items = [path.pathSegList.getItem(0), path.pathSegList.getItem(1)],
+        minX = items[0].x,
+        minY = Math.min(items[0].y, items[1].y);
+    return {
+      x: minX,
+      y: minY,
+      width: box.width,
+      height: box.height
+    };
+  };
+  var hasValue = function hasValue(dict, value) {
+    var found = false;
+    Object.keys(dict).forEach(function (key) {
+      if (dict[key] === value) {
+        found = true;
+      }
+    });
+    return found;
+  };
+  var isArray = function isArray(o) {
+    return Array.isArray(o);
+  };
+  var isDefined = function isDefined(v) {
+    return typeof v !== 'undefined';
+  };
+  var isEmpty = function isEmpty(o) {
+    return typeof o === 'undefined' || o === null || isString(o) && o.length === 0 || _typeof(o) === 'object' && Object.keys(o).length === 0;
+  };
+  var isFunction = function isFunction(o) {
+    return typeof o === 'function';
+  };
+  var isString = function isString(o) {
+    return typeof o === 'string';
+  };
+  var isUndefined = function isUndefined(v) {
+    return typeof v === 'undefined';
+  };
+  var isValue = function isValue(v) {
+    return v || v === 0;
+  };
+  var notEmpty = function notEmpty(o) {
+    return !isEmpty(o);
+  };
+  var sanitise = function sanitise(str) {
+    return typeof str === 'string' ? str.replace(/</g, '&lt;').replace(/>/g, '&gt;') : str;
+  };
+
+  var Axis = function Axis(owner) {
+    _classCallCheck(this, Axis);
+
+    this.owner = owner;
+    this.d3 = owner.d3;
+    this.internal = AxisInternal;
+  };
+
+  Axis.prototype.init = function init() {
+    var $$ = this.owner,
+        config = $$.config,
+        main = $$.main;
+    $$.axes.x = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisX).attr("clip-path", config.axis_x_inner ? "" : $$.clipPathForXAxis).attr("transform", $$.getTranslate('x')).style("visibility", config.axis_x_show ? 'visible' : 'hidden');
+    $$.axes.x.append("text").attr("class", CLASS.axisXLabel).attr("transform", config.axis_rotated ? "rotate(-90)" : "").style("text-anchor", this.textAnchorForXAxisLabel.bind(this));
+    $$.axes.y = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisY).attr("clip-path", config.axis_y_inner ? "" : $$.clipPathForYAxis).attr("transform", $$.getTranslate('y')).style("visibility", config.axis_y_show ? 'visible' : 'hidden');
+    $$.axes.y.append("text").attr("class", CLASS.axisYLabel).attr("transform", config.axis_rotated ? "" : "rotate(-90)").style("text-anchor", this.textAnchorForYAxisLabel.bind(this));
+    $$.axes.y2 = main.append("g").attr("class", CLASS.axis + ' ' + CLASS.axisY2) // clip-path?
+    .attr("transform", $$.getTranslate('y2')).style("visibility", config.axis_y2_show ? 'visible' : 'hidden');
+    $$.axes.y2.append("text").attr("class", CLASS.axisY2Label).attr("transform", config.axis_rotated ? "" : "rotate(-90)").style("text-anchor", this.textAnchorForY2AxisLabel.bind(this));
+  };
+
+  Axis.prototype.getXAxis = function getXAxis(scale, orient, tickFormat, tickValues, withOuterTick, withoutTransition, withoutRotateTickText) {
+    var $$ = this.owner,
+        config = $$.config,
+        axisParams = {
+      isCategory: $$.isCategorized(),
+      withOuterTick: withOuterTick,
+      tickMultiline: config.axis_x_tick_multiline,
+      tickMultilineMax: config.axis_x_tick_multiline ? Number(config.axis_x_tick_multilineMax) : 0,
+      tickWidth: config.axis_x_tick_width,
+      tickTextRotate: withoutRotateTickText ? 0 : config.axis_x_tick_rotate,
+      withoutTransition: withoutTransition
+    },
+        axis = new this.internal(this, axisParams).axis.scale(scale).orient(orient);
+
+    if ($$.isTimeSeries() && tickValues && typeof tickValues !== "function") {
+      tickValues = tickValues.map(function (v) {
+        return $$.parseDate(v);
+      });
+    } // Set tick
+
+
+    axis.tickFormat(tickFormat).tickValues(tickValues);
+
+    if ($$.isCategorized()) {
+      axis.tickCentered(config.axis_x_tick_centered);
+
+      if (isEmpty(config.axis_x_tick_culling)) {
+        config.axis_x_tick_culling = false;
+      }
+    }
 
 
-        // Add Axis
-        $$.axis.init();
+    return axis;
+  };
 
 
-        // Set targets
-        $$.updateTargets($$.data.targets);
+  Axis.prototype.updateXAxisTickValues = function updateXAxisTickValues(targets, axis) {
+    var $$ = this.owner,
+        config = $$.config,
+        tickValues;
 
 
-        // Set default extent if defined
-        if (config.axis_x_selection) {
-            $$.brush.selectionAsValue($$.getDefaultSelection());
-        }
+    if (config.axis_x_tick_fit || config.axis_x_tick_count) {
+      tickValues = this.generateTickValues($$.mapTargetsToUniqueXs(targets), config.axis_x_tick_count, $$.isTimeSeries());
+    }
 
 
-        // Draw with targets
-        if (binding) {
-            $$.updateDimension();
-            $$.config.oninit.call($$);
-            $$.redraw({
-                withTransition: false,
-                withTransform: true,
-                withUpdateXDomain: true,
-                withUpdateOrgXDomain: true,
-                withTransitionForAxis: false
-            });
-        }
+    if (axis) {
+      axis.tickValues(tickValues);
+    } else {
+      $$.xAxis.tickValues(tickValues);
+      $$.subXAxis.tickValues(tickValues);
+    }
 
 
-        // Bind resize event
-        $$.bindResize();
+    return tickValues;
+  };
+
+  Axis.prototype.getYAxis = function getYAxis(scale, orient, tickFormat, tickValues, withOuterTick, withoutTransition, withoutRotateTickText) {
+    var $$ = this.owner,
+        config = $$.config,
+        axisParams = {
+      withOuterTick: withOuterTick,
+      withoutTransition: withoutTransition,
+      tickTextRotate: withoutRotateTickText ? 0 : config.axis_y_tick_rotate
+    },
+        axis = new this.internal(this, axisParams).axis.scale(scale).orient(orient).tickFormat(tickFormat);
+
+    if ($$.isTimeSeriesY()) {
+      axis.ticks(config.axis_y_tick_time_type, config.axis_y_tick_time_interval);
+    } else {
+      axis.tickValues(tickValues);
+    }
 
 
-        // export element of the chart
-        $$.api.element = $$.selectChart.node();
-    };
+    return axis;
+  };
+
+  Axis.prototype.getId = function getId(id) {
+    var config = this.owner.config;
+    return id in config.data_axes ? config.data_axes[id] : 'y';
+  };
+
+  Axis.prototype.getXAxisTickFormat = function getXAxisTickFormat() {
+    // #2251 previously set any negative values to a whole number,
+    // however both should be truncated according to the users format specification
+    var $$ = this.owner,
+        config = $$.config;
+    var format = $$.isTimeSeries() ? $$.defaultAxisTimeFormat : $$.isCategorized() ? $$.categoryName : function (v) {
+      return v;
+    };
+
+    if (config.axis_x_tick_format) {
+      if (isFunction(config.axis_x_tick_format)) {
+        format = config.axis_x_tick_format;
+      } else if ($$.isTimeSeries()) {
+        format = function format(date) {
+          return date ? $$.axisTimeFormat(config.axis_x_tick_format)(date) : "";
+        };
+      }
+    }
 
 
-    ChartInternal.prototype.smoothLines = function (el, type) {
-        var $$ = this;
-        if (type === 'grid') {
-            el.each(function () {
-                var g = $$.d3.select(this),
-                    x1 = g.attr('x1'),
-                    x2 = g.attr('x2'),
-                    y1 = g.attr('y1'),
-                    y2 = g.attr('y2');
-                g.attr({
-                    'x1': Math.ceil(x1),
-                    'x2': Math.ceil(x2),
-                    'y1': Math.ceil(y1),
-                    'y2': Math.ceil(y2)
-                });
-            });
-        }
-    };
+    return isFunction(format) ? function (v) {
+      return format.call($$, v);
+    } : format;
+  };
+
+  Axis.prototype.getTickValues = function getTickValues(tickValues, axis) {
+    return tickValues ? tickValues : axis ? axis.tickValues() : undefined;
+  };
+
+  Axis.prototype.getXAxisTickValues = function getXAxisTickValues() {
+    return this.getTickValues(this.owner.config.axis_x_tick_values, this.owner.xAxis);
+  };
+
+  Axis.prototype.getYAxisTickValues = function getYAxisTickValues() {
+    return this.getTickValues(this.owner.config.axis_y_tick_values, this.owner.yAxis);
+  };
+
+  Axis.prototype.getY2AxisTickValues = function getY2AxisTickValues() {
+    return this.getTickValues(this.owner.config.axis_y2_tick_values, this.owner.y2Axis);
+  };
+
+  Axis.prototype.getLabelOptionByAxisId = function getLabelOptionByAxisId(axisId) {
+    var $$ = this.owner,
+        config = $$.config,
+        option;
+
+    if (axisId === 'y') {
+      option = config.axis_y_label;
+    } else if (axisId === 'y2') {
+      option = config.axis_y2_label;
+    } else if (axisId === 'x') {
+      option = config.axis_x_label;
+    }
 
 
-    ChartInternal.prototype.updateSizes = function () {
-        var $$ = this,
-            config = $$.config;
-        var legendHeight = $$.legend ? $$.getLegendHeight() : 0,
-            legendWidth = $$.legend ? $$.getLegendWidth() : 0,
-            legendHeightForBottom = $$.isLegendRight || $$.isLegendInset ? 0 : legendHeight,
-            hasArc = $$.hasArcType(),
-            xAxisHeight = config.axis_rotated || hasArc ? 0 : $$.getHorizontalAxisHeight('x'),
-            subchartHeight = config.subchart_show && !hasArc ? config.subchart_size_height + xAxisHeight : 0;
-
-        $$.currentWidth = $$.getCurrentWidth();
-        $$.currentHeight = $$.getCurrentHeight();
-
-        // for main
-        $$.margin = config.axis_rotated ? {
-            top: $$.getHorizontalAxisHeight('y2') + $$.getCurrentPaddingTop(),
-            right: hasArc ? 0 : $$.getCurrentPaddingRight(),
-            bottom: $$.getHorizontalAxisHeight('y') + legendHeightForBottom + $$.getCurrentPaddingBottom(),
-            left: subchartHeight + (hasArc ? 0 : $$.getCurrentPaddingLeft())
-        } : {
-            top: 4 + $$.getCurrentPaddingTop(), // for top tick text
-            right: hasArc ? 0 : $$.getCurrentPaddingRight(),
-            bottom: xAxisHeight + subchartHeight + legendHeightForBottom + $$.getCurrentPaddingBottom(),
-            left: hasArc ? 0 : $$.getCurrentPaddingLeft()
-        };
+    return option;
+  };
+
+  Axis.prototype.getLabelText = function getLabelText(axisId) {
+    var option = this.getLabelOptionByAxisId(axisId);
+    return isString(option) ? option : option ? option.text : null;
+  };
+
+  Axis.prototype.setLabelText = function setLabelText(axisId, text) {
+    var $$ = this.owner,
+        config = $$.config,
+        option = this.getLabelOptionByAxisId(axisId);
+
+    if (isString(option)) {
+      if (axisId === 'y') {
+        config.axis_y_label = text;
+      } else if (axisId === 'y2') {
+        config.axis_y2_label = text;
+      } else if (axisId === 'x') {
+        config.axis_x_label = text;
+      }
+    } else if (option) {
+      option.text = text;
+    }
+  };
+
+  Axis.prototype.getLabelPosition = function getLabelPosition(axisId, defaultPosition) {
+    var option = this.getLabelOptionByAxisId(axisId),
+        position = option && _typeof(option) === 'object' && option.position ? option.position : defaultPosition;
+    return {
+      isInner: position.indexOf('inner') >= 0,
+      isOuter: position.indexOf('outer') >= 0,
+      isLeft: position.indexOf('left') >= 0,
+      isCenter: position.indexOf('center') >= 0,
+      isRight: position.indexOf('right') >= 0,
+      isTop: position.indexOf('top') >= 0,
+      isMiddle: position.indexOf('middle') >= 0,
+      isBottom: position.indexOf('bottom') >= 0
+    };
+  };
+
+  Axis.prototype.getXAxisLabelPosition = function getXAxisLabelPosition() {
+    return this.getLabelPosition('x', this.owner.config.axis_rotated ? 'inner-top' : 'inner-right');
+  };
+
+  Axis.prototype.getYAxisLabelPosition = function getYAxisLabelPosition() {
+    return this.getLabelPosition('y', this.owner.config.axis_rotated ? 'inner-right' : 'inner-top');
+  };
+
+  Axis.prototype.getY2AxisLabelPosition = function getY2AxisLabelPosition() {
+    return this.getLabelPosition('y2', this.owner.config.axis_rotated ? 'inner-right' : 'inner-top');
+  };
+
+  Axis.prototype.getLabelPositionById = function getLabelPositionById(id) {
+    return id === 'y2' ? this.getY2AxisLabelPosition() : id === 'y' ? this.getYAxisLabelPosition() : this.getXAxisLabelPosition();
+  };
+
+  Axis.prototype.textForXAxisLabel = function textForXAxisLabel() {
+    return this.getLabelText('x');
+  };
+
+  Axis.prototype.textForYAxisLabel = function textForYAxisLabel() {
+    return this.getLabelText('y');
+  };
+
+  Axis.prototype.textForY2AxisLabel = function textForY2AxisLabel() {
+    return this.getLabelText('y2');
+  };
+
+  Axis.prototype.xForAxisLabel = function xForAxisLabel(forHorizontal, position) {
+    var $$ = this.owner;
+
+    if (forHorizontal) {
+      return position.isLeft ? 0 : position.isCenter ? $$.width / 2 : $$.width;
+    } else {
+      return position.isBottom ? -$$.height : position.isMiddle ? -$$.height / 2 : 0;
+    }
+  };
 
 
-        // for subchart
-        $$.margin2 = config.axis_rotated ? {
-            top: $$.margin.top,
-            right: NaN,
-            bottom: 20 + legendHeightForBottom,
-            left: $$.rotated_padding_left
-        } : {
-            top: $$.currentHeight - subchartHeight - legendHeightForBottom,
-            right: NaN,
-            bottom: xAxisHeight + legendHeightForBottom,
-            left: $$.margin.left
-        };
+  Axis.prototype.dxForAxisLabel = function dxForAxisLabel(forHorizontal, position) {
+    if (forHorizontal) {
+      return position.isLeft ? "0.5em" : position.isRight ? "-0.5em" : "0";
+    } else {
+      return position.isTop ? "-0.5em" : position.isBottom ? "0.5em" : "0";
+    }
+  };
 
 
-        // for legend
-        $$.margin3 = {
-            top: 0,
-            right: NaN,
-            bottom: 0,
-            left: 0
-        };
-        if ($$.updateSizeForLegend) {
-            $$.updateSizeForLegend(legendHeight, legendWidth);
-        }
+  Axis.prototype.textAnchorForAxisLabel = function textAnchorForAxisLabel(forHorizontal, position) {
+    if (forHorizontal) {
+      return position.isLeft ? 'start' : position.isCenter ? 'middle' : 'end';
+    } else {
+      return position.isBottom ? 'start' : position.isMiddle ? 'middle' : 'end';
+    }
+  };
 
 
-        $$.width = $$.currentWidth - $$.margin.left - $$.margin.right;
-        $$.height = $$.currentHeight - $$.margin.top - $$.margin.bottom;
-        if ($$.width < 0) {
-            $$.width = 0;
-        }
-        if ($$.height < 0) {
-            $$.height = 0;
-        }
+  Axis.prototype.xForXAxisLabel = function xForXAxisLabel() {
+    return this.xForAxisLabel(!this.owner.config.axis_rotated, this.getXAxisLabelPosition());
+  };
 
 
-        $$.width2 = config.axis_rotated ? $$.margin.left - $$.rotated_padding_left - $$.rotated_padding_right : $$.width;
-        $$.height2 = config.axis_rotated ? $$.height : $$.currentHeight - $$.margin2.top - $$.margin2.bottom;
-        if ($$.width2 < 0) {
-            $$.width2 = 0;
-        }
-        if ($$.height2 < 0) {
-            $$.height2 = 0;
-        }
+  Axis.prototype.xForYAxisLabel = function xForYAxisLabel() {
+    return this.xForAxisLabel(this.owner.config.axis_rotated, this.getYAxisLabelPosition());
+  };
 
 
-        // for arc
-        $$.arcWidth = $$.width - ($$.isLegendRight ? legendWidth + 10 : 0);
-        $$.arcHeight = $$.height - ($$.isLegendRight ? 0 : 10);
-        if ($$.hasType('gauge') && !config.gauge_fullCircle) {
-            $$.arcHeight += $$.height - $$.getGaugeLabelHeight();
-        }
-        if ($$.updateRadius) {
-            $$.updateRadius();
-        }
+  Axis.prototype.xForY2AxisLabel = function xForY2AxisLabel() {
+    return this.xForAxisLabel(this.owner.config.axis_rotated, this.getY2AxisLabelPosition());
+  };
 
 
-        if ($$.isLegendRight && hasArc) {
-            $$.margin3.left = $$.arcWidth / 2 + $$.radiusExpanded * 1.1;
-        }
-    };
+  Axis.prototype.dxForXAxisLabel = function dxForXAxisLabel() {
+    return this.dxForAxisLabel(!this.owner.config.axis_rotated, this.getXAxisLabelPosition());
+  };
 
 
-    ChartInternal.prototype.updateTargets = function (targets) {
-        var $$ = this;
+  Axis.prototype.dxForYAxisLabel = function dxForYAxisLabel() {
+    return this.dxForAxisLabel(this.owner.config.axis_rotated, this.getYAxisLabelPosition());
+  };
 
 
-        /*-- Main --*/
+  Axis.prototype.dxForY2AxisLabel = function dxForY2AxisLabel() {
+    return this.dxForAxisLabel(this.owner.config.axis_rotated, this.getY2AxisLabelPosition());
+  };
 
 
-        //-- Text --//
-        $$.updateTargetsForText(targets);
+  Axis.prototype.dyForXAxisLabel = function dyForXAxisLabel() {
+    var $$ = this.owner,
+        config = $$.config,
+        position = this.getXAxisLabelPosition();
 
 
-        //-- Bar --//
-        $$.updateTargetsForBar(targets);
+    if (config.axis_rotated) {
+      return position.isInner ? "1.2em" : -25 - ($$.config.axis_x_inner ? 0 : this.getMaxTickWidth('x'));
+    } else {
+      return position.isInner ? "-0.5em" : config.axis_x_height ? config.axis_x_height - 10 : "3em";
+    }
+  };
 
 
-        //-- Line --//
-        $$.updateTargetsForLine(targets);
+  Axis.prototype.dyForYAxisLabel = function dyForYAxisLabel() {
+    var $$ = this.owner,
+        position = this.getYAxisLabelPosition();
 
 
-        //-- Arc --//
-        if ($$.hasArcType() && $$.updateTargetsForArc) {
-            $$.updateTargetsForArc(targets);
-        }
+    if ($$.config.axis_rotated) {
+      return position.isInner ? "-0.5em" : "3em";
+    } else {
+      return position.isInner ? "1.2em" : -10 - ($$.config.axis_y_inner ? 0 : this.getMaxTickWidth('y') + 10);
+    }
+  };
 
 
-        /*-- Sub --*/
+  Axis.prototype.dyForY2AxisLabel = function dyForY2AxisLabel() {
+    var $$ = this.owner,
+        position = this.getY2AxisLabelPosition();
 
 
-        if ($$.updateTargetsForSubchart) {
-            $$.updateTargetsForSubchart(targets);
-        }
+    if ($$.config.axis_rotated) {
+      return position.isInner ? "1.2em" : "-2.2em";
+    } else {
+      return position.isInner ? "-0.5em" : 15 + ($$.config.axis_y2_inner ? 0 : this.getMaxTickWidth('y2') + 15);
+    }
+  };
+
+  Axis.prototype.textAnchorForXAxisLabel = function textAnchorForXAxisLabel() {
+    var $$ = this.owner;
+    return this.textAnchorForAxisLabel(!$$.config.axis_rotated, this.getXAxisLabelPosition());
+  };
+
+  Axis.prototype.textAnchorForYAxisLabel = function textAnchorForYAxisLabel() {
+    var $$ = this.owner;
+    return this.textAnchorForAxisLabel($$.config.axis_rotated, this.getYAxisLabelPosition());
+  };
+
+  Axis.prototype.textAnchorForY2AxisLabel = function textAnchorForY2AxisLabel() {
+    var $$ = this.owner;
+    return this.textAnchorForAxisLabel($$.config.axis_rotated, this.getY2AxisLabelPosition());
+  };
+
+  Axis.prototype.getMaxTickWidth = function getMaxTickWidth(id, withoutRecompute) {
+    var $$ = this.owner,
+        config = $$.config,
+        maxWidth = 0,
+        targetsToShow,
+        scale,
+        axis,
+        dummy,
+        svg;
+
+    if (withoutRecompute && $$.currentMaxTickWidths[id]) {
+      return $$.currentMaxTickWidths[id];
+    }
 
 
-        // Fade-in each chart
-        $$.showTargets();
-    };
-    ChartInternal.prototype.showTargets = function () {
-        var $$ = this;
-        $$.svg.selectAll('.' + CLASS.target).filter(function (d) {
-            return $$.isTargetToShow(d.id);
-        }).transition().duration($$.config.transition_duration).style("opacity", 1);
-    };
+    if ($$.svg) {
+      targetsToShow = $$.filterTargetsToShow($$.data.targets);
 
 
-    ChartInternal.prototype.redraw = function (options, transitions) {
-        var $$ = this,
-            main = $$.main,
-            d3 = $$.d3,
-            config = $$.config;
-        var areaIndices = $$.getShapeIndices($$.isAreaType),
-            barIndices = $$.getShapeIndices($$.isBarType),
-            lineIndices = $$.getShapeIndices($$.isLineType);
-        var withY, withSubchart, withTransition, withTransitionForExit, withTransitionForAxis, withTransform, withUpdateXDomain, withUpdateOrgXDomain, withTrimXDomain, withLegend, withEventRect, withDimension, withUpdateXAxis;
-        var hideAxis = $$.hasArcType();
-        var drawArea, drawBar, drawLine, xForText, yForText;
-        var duration, durationForExit, durationForAxis;
-        var transitionsToWait, waitForDraw, flow, transition;
-        var targetsToShow = $$.filterTargetsToShow($$.data.targets),
-            tickValues,
-            i,
-            intervalForCulling,
-            xDomainForZoom;
-        var xv = $$.xv.bind($$),
-            cx,
-            cy;
-
-        options = options || {};
-        withY = getOption(options, "withY", true);
-        withSubchart = getOption(options, "withSubchart", true);
-        withTransition = getOption(options, "withTransition", true);
-        withTransform = getOption(options, "withTransform", false);
-        withUpdateXDomain = getOption(options, "withUpdateXDomain", false);
-        withUpdateOrgXDomain = getOption(options, "withUpdateOrgXDomain", false);
-        withTrimXDomain = getOption(options, "withTrimXDomain", true);
-        withUpdateXAxis = getOption(options, "withUpdateXAxis", withUpdateXDomain);
-        withLegend = getOption(options, "withLegend", false);
-        withEventRect = getOption(options, "withEventRect", true);
-        withDimension = getOption(options, "withDimension", true);
-        withTransitionForExit = getOption(options, "withTransitionForExit", withTransition);
-        withTransitionForAxis = getOption(options, "withTransitionForAxis", withTransition);
-
-        duration = withTransition ? config.transition_duration : 0;
-        durationForExit = withTransitionForExit ? duration : 0;
-        durationForAxis = withTransitionForAxis ? duration : 0;
-
-        transitions = transitions || $$.axis.generateTransitions(durationForAxis);
-
-        // update legend and transform each g
-        if (withLegend && config.legend_show) {
-            $$.updateLegend($$.mapToIds($$.data.targets), options, transitions);
-        } else if (withDimension) {
-            // need to update dimension (e.g. axis.y.tick.values) because y tick values should change
-            // no need to update axis in it because they will be updated in redraw()
-            $$.updateDimension(true);
-        }
+      if (id === 'y') {
+        scale = $$.y.copy().domain($$.getYDomain(targetsToShow, 'y'));
+        axis = this.getYAxis(scale, $$.yOrient, config.axis_y_tick_format, $$.yAxisTickValues, false, true, true);
+      } else if (id === 'y2') {
+        scale = $$.y2.copy().domain($$.getYDomain(targetsToShow, 'y2'));
+        axis = this.getYAxis(scale, $$.y2Orient, config.axis_y2_tick_format, $$.y2AxisTickValues, false, true, true);
+      } else {
+        scale = $$.x.copy().domain($$.getXDomain(targetsToShow));
+        axis = this.getXAxis(scale, $$.xOrient, $$.xAxisTickFormat, $$.xAxisTickValues, false, true, true);
+        this.updateXAxisTickValues(targetsToShow, axis);
+      }
 
 
-        // MEMO: needed for grids calculation
-        if ($$.isCategorized() && targetsToShow.length === 0) {
-            $$.x.domain([0, $$.axes.x.selectAll('.tick').size()]);
-        }
+      dummy = $$.d3.select('body').append('div').classed('c3', true);
+      svg = dummy.append("svg").style('visibility', 'hidden').style('position', 'fixed').style('top', 0).style('left', 0), svg.append('g').call(axis).each(function () {
+        $$.d3.select(this).selectAll('text').each(function () {
+          var box = this.getBoundingClientRect();
 
 
-        if (targetsToShow.length) {
-            $$.updateXDomain(targetsToShow, withUpdateXDomain, withUpdateOrgXDomain, withTrimXDomain);
-            if (!config.axis_x_tick_values) {
-                tickValues = $$.axis.updateXAxisTickValues(targetsToShow);
-            }
-        } else {
-            $$.xAxis.tickValues([]);
-            $$.subXAxis.tickValues([]);
-        }
+          if (maxWidth < box.width) {
+            maxWidth = box.width;
+          }
+        });
+        dummy.remove();
+      });
+    }
 
 
-        if (config.zoom_rescale && !options.flow) {
-            xDomainForZoom = $$.x.orgDomain();
-        }
+    $$.currentMaxTickWidths[id] = maxWidth <= 0 ? $$.currentMaxTickWidths[id] : maxWidth;
+    return $$.currentMaxTickWidths[id];
+  };
+
+  Axis.prototype.updateLabels = function updateLabels(withTransition) {
+    var $$ = this.owner;
+    var axisXLabel = $$.main.select('.' + CLASS.axisX + ' .' + CLASS.axisXLabel),
+        axisYLabel = $$.main.select('.' + CLASS.axisY + ' .' + CLASS.axisYLabel),
+        axisY2Label = $$.main.select('.' + CLASS.axisY2 + ' .' + CLASS.axisY2Label);
+    (withTransition ? axisXLabel.transition() : axisXLabel).attr("x", this.xForXAxisLabel.bind(this)).attr("dx", this.dxForXAxisLabel.bind(this)).attr("dy", this.dyForXAxisLabel.bind(this)).text(this.textForXAxisLabel.bind(this));
+    (withTransition ? axisYLabel.transition() : axisYLabel).attr("x", this.xForYAxisLabel.bind(this)).attr("dx", this.dxForYAxisLabel.bind(this)).attr("dy", this.dyForYAxisLabel.bind(this)).text(this.textForYAxisLabel.bind(this));
+    (withTransition ? axisY2Label.transition() : axisY2Label).attr("x", this.xForY2AxisLabel.bind(this)).attr("dx", this.dxForY2AxisLabel.bind(this)).attr("dy", this.dyForY2AxisLabel.bind(this)).text(this.textForY2AxisLabel.bind(this));
+  };
+
+  Axis.prototype.getPadding = function getPadding(padding, key, defaultValue, domainLength) {
+    var p = typeof padding === 'number' ? padding : padding[key];
+
+    if (!isValue(p)) {
+      return defaultValue;
+    }
 
 
-        $$.y.domain($$.getYDomain(targetsToShow, 'y', xDomainForZoom));
-        $$.y2.domain($$.getYDomain(targetsToShow, 'y2', xDomainForZoom));
+    if (padding.unit === 'ratio') {
+      return padding[key] * domainLength;
+    } // assume padding is pixels if unit is not specified
 
 
-        if (!config.axis_y_tick_values && config.axis_y_tick_count) {
-            $$.yAxis.tickValues($$.axis.generateTickValues($$.y.domain(), config.axis_y_tick_count));
-        }
-        if (!config.axis_y2_tick_values && config.axis_y2_tick_count) {
-            $$.y2Axis.tickValues($$.axis.generateTickValues($$.y2.domain(), config.axis_y2_tick_count));
-        }
 
 
-        // axes
-        $$.axis.redraw(durationForAxis, hideAxis);
-
-        // Update axis label
-        $$.axis.updateLabels(withTransition);
-
-        // show/hide if manual culling needed
-        if ((withUpdateXDomain || withUpdateXAxis) && targetsToShow.length) {
-            if (config.axis_x_tick_culling && tickValues) {
-                for (i = 1; i < tickValues.length; i++) {
-                    if (tickValues.length / i < config.axis_x_tick_culling_max) {
-                        intervalForCulling = i;
-                        break;
-                    }
-                }
-                $$.svg.selectAll('.' + CLASS.axisX + ' .tick text').each(function (e) {
-                    var index = tickValues.indexOf(e);
-                    if (index >= 0) {
-                        d3.select(this).style('display', index % intervalForCulling ? 'none' : 'block');
-                    }
-                });
-            } else {
-                $$.svg.selectAll('.' + CLASS.axisX + ' .tick text').style('display', 'block');
-            }
-        }
+    return this.convertPixelsToAxisPadding(p, domainLength);
+  };
 
 
-        // setup drawer - MEMO: these must be called after axis updated
-        drawArea = $$.generateDrawArea ? $$.generateDrawArea(areaIndices, false) : undefined;
-        drawBar = $$.generateDrawBar ? $$.generateDrawBar(barIndices) : undefined;
-        drawLine = $$.generateDrawLine ? $$.generateDrawLine(lineIndices, false) : undefined;
-        xForText = $$.generateXYForText(areaIndices, barIndices, lineIndices, true);
-        yForText = $$.generateXYForText(areaIndices, barIndices, lineIndices, false);
-
-        // update circleY based on updated parameters
-        $$.updateCircleY();
-        // generate circle x/y functions depending on updated params
-        cx = ($$.config.axis_rotated ? $$.circleY : $$.circleX).bind($$);
-        cy = ($$.config.axis_rotated ? $$.circleX : $$.circleY).bind($$);
-
-        // Update sub domain
-        if (withY) {
-            $$.subY.domain($$.getYDomain(targetsToShow, 'y'));
-            $$.subY2.domain($$.getYDomain(targetsToShow, 'y2'));
-        }
+  Axis.prototype.convertPixelsToAxisPadding = function convertPixelsToAxisPadding(pixels, domainLength) {
+    var $$ = this.owner,
+        length = $$.config.axis_rotated ? $$.width : $$.height;
+    return domainLength * (pixels / length);
+  };
 
 
-        // xgrid focus
-        $$.updateXgridFocus();
+  Axis.prototype.generateTickValues = function generateTickValues(values, tickCount, forTimeSeries) {
+    var tickValues = values,
+        targetCount,
+        start,
+        end,
+        count,
+        interval,
+        i,
+        tickValue;
 
 
-        // Data empty label positioning and text.
-        main.select("text." + CLASS.text + '.' + CLASS.empty).attr("x", $$.width / 2).attr("y", $$.height / 2).text(config.data_empty_label_text).transition().style('opacity', targetsToShow.length ? 0 : 1);
+    if (tickCount) {
+      targetCount = isFunction(tickCount) ? tickCount() : tickCount; // compute ticks according to tickCount
 
 
-        // event rect
-        if (withEventRect) {
-            $$.redrawEventRect();
-        }
+      if (targetCount === 1) {
+        tickValues = [values[0]];
+      } else if (targetCount === 2) {
+        tickValues = [values[0], values[values.length - 1]];
+      } else if (targetCount > 2) {
+        count = targetCount - 2;
+        start = values[0];
+        end = values[values.length - 1];
+        interval = (end - start) / (count + 1); // re-construct unique values
 
 
-        // grid
-        $$.updateGrid(duration);
+        tickValues = [start];
 
 
-        // rect for regions
-        $$.updateRegion(duration);
+        for (i = 0; i < count; i++) {
+          tickValue = +start + interval * (i + 1);
+          tickValues.push(forTimeSeries ? new Date(tickValue) : tickValue);
+        }
 
 
-        // bars
-        $$.updateBar(durationForExit);
+        tickValues.push(end);
+      }
+    }
 
 
-        // lines, areas and cricles
-        $$.updateLine(durationForExit);
-        $$.updateArea(durationForExit);
-        $$.updateCircle(cx, cy);
+    if (!forTimeSeries) {
+      tickValues = tickValues.sort(function (a, b) {
+        return a - b;
+      });
+    }
 
 
-        // text
-        if ($$.hasDataLabel()) {
-            $$.updateText(xForText, yForText, durationForExit);
+    return tickValues;
+  };
+
+  Axis.prototype.generateTransitions = function generateTransitions(duration) {
+    var $$ = this.owner,
+        axes = $$.axes;
+    return {
+      axisX: duration ? axes.x.transition().duration(duration) : axes.x,
+      axisY: duration ? axes.y.transition().duration(duration) : axes.y,
+      axisY2: duration ? axes.y2.transition().duration(duration) : axes.y2,
+      axisSubX: duration ? axes.subx.transition().duration(duration) : axes.subx
+    };
+  };
+
+  Axis.prototype.redraw = function redraw(duration, isHidden) {
+    var $$ = this.owner,
+        transition = duration ? $$.d3.transition().duration(duration) : null;
+    $$.axes.x.style("opacity", isHidden ? 0 : 1).call($$.xAxis, transition);
+    $$.axes.y.style("opacity", isHidden ? 0 : 1).call($$.yAxis, transition);
+    $$.axes.y2.style("opacity", isHidden ? 0 : 1).call($$.y2Axis, transition);
+    $$.axes.subx.style("opacity", isHidden ? 0 : 1).call($$.subXAxis, transition);
+  };
+
+  var c3 = {
+    version: "0.6.9",
+    chart: {
+      fn: Chart.prototype,
+      internal: {
+        fn: ChartInternal.prototype,
+        axis: {
+          fn: Axis.prototype,
+          internal: {
+            fn: AxisInternal.prototype
+          }
         }
         }
+      }
+    },
+    generate: function generate(config) {
+      return new Chart(config);
+    }
+  };
+
+  ChartInternal.prototype.beforeInit = function () {// can do something
+  };
+
+  ChartInternal.prototype.afterInit = function () {// can do something
+  };
+
+  ChartInternal.prototype.init = function () {
+    var $$ = this,
+        config = $$.config;
+    $$.initParams();
+
+    if (config.data_url) {
+      $$.convertUrlToData(config.data_url, config.data_mimeType, config.data_headers, config.data_keys, $$.initWithData);
+    } else if (config.data_json) {
+      $$.initWithData($$.convertJsonToData(config.data_json, config.data_keys));
+    } else if (config.data_rows) {
+      $$.initWithData($$.convertRowsToData(config.data_rows));
+    } else if (config.data_columns) {
+      $$.initWithData($$.convertColumnsToData(config.data_columns));
+    } else {
+      throw Error('url or json or rows or columns is required.');
+    }
+  };
+
+  ChartInternal.prototype.initParams = function () {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config; // MEMO: clipId needs to be unique because it conflicts when multiple charts exist
+
+    $$.clipId = "c3-" + +new Date() + '-clip';
+    $$.clipIdForXAxis = $$.clipId + '-xaxis';
+    $$.clipIdForYAxis = $$.clipId + '-yaxis';
+    $$.clipIdForGrid = $$.clipId + '-grid';
+    $$.clipIdForSubchart = $$.clipId + '-subchart';
+    $$.clipPath = $$.getClipPath($$.clipId);
+    $$.clipPathForXAxis = $$.getClipPath($$.clipIdForXAxis);
+    $$.clipPathForYAxis = $$.getClipPath($$.clipIdForYAxis);
+    $$.clipPathForGrid = $$.getClipPath($$.clipIdForGrid);
+    $$.clipPathForSubchart = $$.getClipPath($$.clipIdForSubchart);
+    $$.dragStart = null;
+    $$.dragging = false;
+    $$.flowing = false;
+    $$.cancelClick = false;
+    $$.mouseover = false;
+    $$.transiting = false;
+    $$.color = $$.generateColor();
+    $$.levelColor = $$.generateLevelColor();
+    $$.dataTimeParse = (config.data_xLocaltime ? d3.timeParse : d3.utcParse)($$.config.data_xFormat);
+    $$.axisTimeFormat = config.axis_x_localtime ? d3.timeFormat : d3.utcFormat;
+
+    $$.defaultAxisTimeFormat = function (date) {
+      if (date.getMilliseconds()) {
+        return d3.timeFormat(".%L")(date);
+      }
 
 
-        // title
-        if ($$.redrawTitle) {
-            $$.redrawTitle();
-        }
+      if (date.getSeconds()) {
+        return d3.timeFormat(":%S")(date);
+      }
 
 
-        // arc
-        if ($$.redrawArc) {
-            $$.redrawArc(duration, durationForExit, withTransform);
-        }
+      if (date.getMinutes()) {
+        return d3.timeFormat("%I:%M")(date);
+      }
 
 
-        // subchart
-        if ($$.redrawSubchart) {
-            $$.redrawSubchart(withSubchart, transitions, duration, durationForExit, areaIndices, barIndices, lineIndices);
-        }
+      if (date.getHours()) {
+        return d3.timeFormat("%I %p")(date);
+      }
 
 
-        // circles for select
-        main.selectAll('.' + CLASS.selectedCircles).filter($$.isBarType.bind($$)).selectAll('circle').remove();
-
-        if (options.flow) {
-            flow = $$.generateFlow({
-                targets: targetsToShow,
-                flow: options.flow,
-                duration: options.flow.duration,
-                drawBar: drawBar,
-                drawLine: drawLine,
-                drawArea: drawArea,
-                cx: cx,
-                cy: cy,
-                xv: xv,
-                xForText: xForText,
-                yForText: yForText
-            });
-        }
+      if (date.getDay() && date.getDate() !== 1) {
+        return d3.timeFormat("%-m/%-d")(date);
+      }
 
 
-        if ($$.isTabVisible()) {
-            // Only use transition if tab visible. See #938.
-            if (duration) {
-                // transition should be derived from one transition
-                transition = d3.transition().duration(duration);
-                transitionsToWait = [];
-                [$$.redrawBar(drawBar, true, transition), $$.redrawLine(drawLine, true, transition), $$.redrawArea(drawArea, true, transition), $$.redrawCircle(cx, cy, true, transition), $$.redrawText(xForText, yForText, options.flow, true, transition), $$.redrawRegion(true, transition), $$.redrawGrid(true, transition)].forEach(function (transitions) {
-                    transitions.forEach(function (transition) {
-                        transitionsToWait.push(transition);
-                    });
-                });
-                // Wait for end of transitions to call flow and onrendered callback
-                waitForDraw = $$.generateWait();
-                transitionsToWait.forEach(function (t) {
-                    waitForDraw.add(t);
-                });
-                waitForDraw(function () {
-                    if (flow) {
-                        flow();
-                    }
-                    if (config.onrendered) {
-                        config.onrendered.call($$);
-                    }
-                });
-            } else {
-                $$.redrawBar(drawBar);
-                $$.redrawLine(drawLine);
-                $$.redrawArea(drawArea);
-                $$.redrawCircle(cx, cy);
-                $$.redrawText(xForText, yForText, options.flow);
-                $$.redrawRegion();
-                $$.redrawGrid();
-                if (flow) {
-                    flow();
-                }
-                if (config.onrendered) {
-                    config.onrendered.call($$);
-                }
-            }
-        }
+      if (date.getDate() !== 1) {
+        return d3.timeFormat("%-m/%-d")(date);
+      }
 
 
-        // update fadein condition
-        $$.mapToIds($$.data.targets).forEach(function (id) {
-            $$.withoutFadeIn[id] = true;
-        });
-    };
+      if (date.getMonth()) {
+        return d3.timeFormat("%-m/%-d")(date);
+      }
 
 
-    ChartInternal.prototype.updateAndRedraw = function (options) {
-        var $$ = this,
-            config = $$.config,
-            transitions;
-        options = options || {};
-        // same with redraw
-        options.withTransition = getOption(options, "withTransition", true);
-        options.withTransform = getOption(options, "withTransform", false);
-        options.withLegend = getOption(options, "withLegend", false);
-        // NOT same with redraw
-        options.withUpdateXDomain = getOption(options, "withUpdateXDomain", true);
-        options.withUpdateOrgXDomain = getOption(options, "withUpdateOrgXDomain", true);
-        options.withTransitionForExit = false;
-        options.withTransitionForTransform = getOption(options, "withTransitionForTransform", options.withTransition);
-        // MEMO: this needs to be called before updateLegend and it means this ALWAYS needs to be called)
-        $$.updateSizes();
-        // MEMO: called in updateLegend in redraw if withLegend
-        if (!(options.withLegend && config.legend_show)) {
-            transitions = $$.axis.generateTransitions(options.withTransitionForAxis ? config.transition_duration : 0);
-            // Update scales
-            $$.updateScales();
-            $$.updateSvgSize();
-            // Update g positions
-            $$.transformAll(options.withTransitionForTransform, transitions);
-        }
-        // Draw with new sizes & scales
-        $$.redraw(options, transitions);
-    };
-    ChartInternal.prototype.redrawWithoutRescale = function () {
-        this.redraw({
-            withY: false,
-            withSubchart: false,
-            withEventRect: false,
-            withTransitionForAxis: false
-        });
-    };
+      return d3.timeFormat("%Y/%-m/%-d")(date);
+    };
+
+    $$.hiddenTargetIds = [];
+    $$.hiddenLegendIds = [];
+    $$.focusedTargetIds = [];
+    $$.defocusedTargetIds = [];
+    $$.xOrient = config.axis_rotated ? config.axis_x_inner ? "right" : "left" : config.axis_x_inner ? "top" : "bottom";
+    $$.yOrient = config.axis_rotated ? config.axis_y_inner ? "top" : "bottom" : config.axis_y_inner ? "right" : "left";
+    $$.y2Orient = config.axis_rotated ? config.axis_y2_inner ? "bottom" : "top" : config.axis_y2_inner ? "left" : "right";
+    $$.subXOrient = config.axis_rotated ? "left" : "bottom";
+    $$.isLegendRight = config.legend_position === 'right';
+    $$.isLegendInset = config.legend_position === 'inset';
+    $$.isLegendTop = config.legend_inset_anchor === 'top-left' || config.legend_inset_anchor === 'top-right';
+    $$.isLegendLeft = config.legend_inset_anchor === 'top-left' || config.legend_inset_anchor === 'bottom-left';
+    $$.legendStep = 0;
+    $$.legendItemWidth = 0;
+    $$.legendItemHeight = 0;
+    $$.currentMaxTickWidths = {
+      x: 0,
+      y: 0,
+      y2: 0
+    };
+    $$.rotated_padding_left = 30;
+    $$.rotated_padding_right = config.axis_rotated && !config.axis_x_show ? 0 : 30;
+    $$.rotated_padding_top = 5;
+    $$.withoutFadeIn = {};
+    $$.intervalForObserveInserted = undefined;
+    $$.axes.subx = d3.selectAll([]); // needs when excluding subchart.js
+  };
+
+  ChartInternal.prototype.initChartElements = function () {
+    if (this.initBar) {
+      this.initBar();
+    }
 
 
-    ChartInternal.prototype.isTimeSeries = function () {
-        return this.config.axis_x_type === 'timeseries';
-    };
-    ChartInternal.prototype.isCategorized = function () {
-        return this.config.axis_x_type.indexOf('categor') >= 0;
-    };
-    ChartInternal.prototype.isCustomX = function () {
-        var $$ = this,
-            config = $$.config;
-        return !$$.isTimeSeries() && (config.data_x || notEmpty(config.data_xs));
-    };
+    if (this.initLine) {
+      this.initLine();
+    }
 
 
-    ChartInternal.prototype.isTimeSeriesY = function () {
-        return this.config.axis_y_type === 'timeseries';
-    };
+    if (this.initArc) {
+      this.initArc();
+    }
 
 
-    ChartInternal.prototype.getTranslate = function (target) {
-        var $$ = this,
-            config = $$.config,
-            x,
-            y;
-        if (target === 'main') {
-            x = asHalfPixel($$.margin.left);
-            y = asHalfPixel($$.margin.top);
-        } else if (target === 'context') {
-            x = asHalfPixel($$.margin2.left);
-            y = asHalfPixel($$.margin2.top);
-        } else if (target === 'legend') {
-            x = $$.margin3.left;
-            y = $$.margin3.top;
-        } else if (target === 'x') {
-            x = 0;
-            y = config.axis_rotated ? 0 : $$.height;
-        } else if (target === 'y') {
-            x = 0;
-            y = config.axis_rotated ? $$.height : 0;
-        } else if (target === 'y2') {
-            x = config.axis_rotated ? 0 : $$.width;
-            y = config.axis_rotated ? 1 : 0;
-        } else if (target === 'subx') {
-            x = 0;
-            y = config.axis_rotated ? 0 : $$.height2;
-        } else if (target === 'arc') {
-            x = $$.arcWidth / 2;
-            y = $$.arcHeight / 2 - ($$.hasType('gauge') ? 6 : 0); // to prevent wrong display of min and max label
-        }
-        return "translate(" + x + "," + y + ")";
-    };
-    ChartInternal.prototype.initialOpacity = function (d) {
-        return d.value !== null && this.withoutFadeIn[d.id] ? 1 : 0;
-    };
-    ChartInternal.prototype.initialOpacityForCircle = function (d) {
-        return d.value !== null && this.withoutFadeIn[d.id] ? this.opacityForCircle(d) : 0;
-    };
-    ChartInternal.prototype.opacityForCircle = function (d) {
-        var isPointShouldBeShown = isFunction(this.config.point_show) ? this.config.point_show(d) : this.config.point_show;
-        var opacity = isPointShouldBeShown ? 1 : 0;
-        return isValue(d.value) ? this.isScatterType(d) ? 0.5 : opacity : 0;
-    };
-    ChartInternal.prototype.opacityForText = function () {
-        return this.hasDataLabel() ? 1 : 0;
-    };
-    ChartInternal.prototype.xx = function (d) {
-        return d ? this.x(d.x) : null;
-    };
-    ChartInternal.prototype.xv = function (d) {
-        var $$ = this,
-            value = d.value;
-        if ($$.isTimeSeries()) {
-            value = $$.parseDate(d.value);
-        } else if ($$.isCategorized() && typeof d.value === 'string') {
-            value = $$.config.axis_x_categories.indexOf(d.value);
-        }
-        return Math.ceil($$.x(value));
-    };
-    ChartInternal.prototype.yv = function (d) {
-        var $$ = this,
-            yScale = d.axis && d.axis === 'y2' ? $$.y2 : $$.y;
-        return Math.ceil(yScale(d.value));
-    };
-    ChartInternal.prototype.subxx = function (d) {
-        return d ? this.subX(d.x) : null;
-    };
+    if (this.initGauge) {
+      this.initGauge();
+    }
 
 
-    ChartInternal.prototype.transformMain = function (withTransition, transitions) {
-        var $$ = this,
-            xAxis,
-            yAxis,
-            y2Axis;
-        if (transitions && transitions.axisX) {
-            xAxis = transitions.axisX;
-        } else {
-            xAxis = $$.main.select('.' + CLASS.axisX);
-            if (withTransition) {
-                xAxis = xAxis.transition();
-            }
-        }
-        if (transitions && transitions.axisY) {
-            yAxis = transitions.axisY;
-        } else {
-            yAxis = $$.main.select('.' + CLASS.axisY);
-            if (withTransition) {
-                yAxis = yAxis.transition();
-            }
-        }
-        if (transitions && transitions.axisY2) {
-            y2Axis = transitions.axisY2;
-        } else {
-            y2Axis = $$.main.select('.' + CLASS.axisY2);
-            if (withTransition) {
-                y2Axis = y2Axis.transition();
-            }
-        }
-        (withTransition ? $$.main.transition() : $$.main).attr("transform", $$.getTranslate('main'));
-        xAxis.attr("transform", $$.getTranslate('x'));
-        yAxis.attr("transform", $$.getTranslate('y'));
-        y2Axis.attr("transform", $$.getTranslate('y2'));
-        $$.main.select('.' + CLASS.chartArcs).attr("transform", $$.getTranslate('arc'));
-    };
-    ChartInternal.prototype.transformAll = function (withTransition, transitions) {
-        var $$ = this;
-        $$.transformMain(withTransition, transitions);
-        if ($$.config.subchart_show) {
-            $$.transformContext(withTransition, transitions);
-        }
-        if ($$.legend) {
-            $$.transformLegend(withTransition);
-        }
-    };
+    if (this.initText) {
+      this.initText();
+    }
+  };
+
+  ChartInternal.prototype.initWithData = function (data) {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config;
+    var defs,
+        main,
+        binding = true;
+    $$.axis = new Axis($$);
+
+    if (!config.bindto) {
+      $$.selectChart = d3.selectAll([]);
+    } else if (typeof config.bindto.node === 'function') {
+      $$.selectChart = config.bindto;
+    } else {
+      $$.selectChart = d3.select(config.bindto);
+    }
 
 
-    ChartInternal.prototype.updateSvgSize = function () {
-        var $$ = this,
-            brush = $$.svg.select(".c3-brush .overlay");
-        $$.svg.attr('width', $$.currentWidth).attr('height', $$.currentHeight);
-        $$.svg.selectAll(['#' + $$.clipId, '#' + $$.clipIdForGrid]).select('rect').attr('width', $$.width).attr('height', $$.height);
-        $$.svg.select('#' + $$.clipIdForXAxis).select('rect').attr('x', $$.getXAxisClipX.bind($$)).attr('y', $$.getXAxisClipY.bind($$)).attr('width', $$.getXAxisClipWidth.bind($$)).attr('height', $$.getXAxisClipHeight.bind($$));
-        $$.svg.select('#' + $$.clipIdForYAxis).select('rect').attr('x', $$.getYAxisClipX.bind($$)).attr('y', $$.getYAxisClipY.bind($$)).attr('width', $$.getYAxisClipWidth.bind($$)).attr('height', $$.getYAxisClipHeight.bind($$));
-        $$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0);
-        // MEMO: parent div's height will be bigger than svg when <!DOCTYPE html>
-        $$.selectChart.style('max-height', $$.currentHeight + "px");
-    };
+    if ($$.selectChart.empty()) {
+      $$.selectChart = d3.select(document.createElement('div')).style('opacity', 0);
+      $$.observeInserted($$.selectChart);
+      binding = false;
+    }
 
 
-    ChartInternal.prototype.updateDimension = function (withoutAxis) {
-        var $$ = this;
-        if (!withoutAxis) {
-            if ($$.config.axis_rotated) {
-                $$.axes.x.call($$.xAxis);
-                $$.axes.subx.call($$.subXAxis);
-            } else {
-                $$.axes.y.call($$.yAxis);
-                $$.axes.y2.call($$.y2Axis);
-            }
-        }
-        $$.updateSizes();
-        $$.updateScales();
-        $$.updateSvgSize();
-        $$.transformAll(false);
-    };
+    $$.selectChart.html("").classed("c3", true); // Init data as targets
 
 
-    ChartInternal.prototype.observeInserted = function (selection) {
-        var $$ = this,
-            observer;
-        if (typeof MutationObserver === 'undefined') {
-            window.console.error("MutationObserver not defined.");
-            return;
-        }
-        observer = new MutationObserver(function (mutations) {
-            mutations.forEach(function (mutation) {
-                if (mutation.type === 'childList' && mutation.previousSibling) {
-                    observer.disconnect();
-                    // need to wait for completion of load because size calculation requires the actual sizes determined after that completion
-                    $$.intervalForObserveInserted = window.setInterval(function () {
-                        // parentNode will NOT be null when completed
-                        if (selection.node().parentNode) {
-                            window.clearInterval($$.intervalForObserveInserted);
-                            $$.updateDimension();
-                            if ($$.brush) {
-                                $$.brush.update();
-                            }
-                            $$.config.oninit.call($$);
-                            $$.redraw({
-                                withTransform: true,
-                                withUpdateXDomain: true,
-                                withUpdateOrgXDomain: true,
-                                withTransition: false,
-                                withTransitionForTransform: false,
-                                withLegend: true
-                            });
-                            selection.transition().style('opacity', 1);
-                        }
-                    }, 10);
-                }
-            });
-        });
-        observer.observe(selection.node(), {
-            attributes: true,
-            childList: true,
-            characterData: true
-        });
-    };
+    $$.data.xs = {};
+    $$.data.targets = $$.convertDataToTargets(data);
 
 
-    ChartInternal.prototype.bindResize = function () {
-        var $$ = this,
-            config = $$.config;
+    if (config.data_filter) {
+      $$.data.targets = $$.data.targets.filter(config.data_filter);
+    } // Set targets to hide if needed
 
 
-        $$.resizeFunction = $$.generateResize(); // need to call .remove
 
 
-        $$.resizeFunction.add(function () {
-            config.onresize.call($$);
-        });
-        if (config.resize_auto) {
-            $$.resizeFunction.add(function () {
-                if ($$.resizeTimeout !== undefined) {
-                    window.clearTimeout($$.resizeTimeout);
-                }
-                $$.resizeTimeout = window.setTimeout(function () {
-                    delete $$.resizeTimeout;
-                    $$.updateAndRedraw({
-                        withUpdateXDomain: false,
-                        withUpdateOrgXDomain: false,
-                        withTransition: false,
-                        withTransitionForTransform: false,
-                        withLegend: true
-                    });
-                    if ($$.brush) {
-                        $$.brush.update();
-                    }
-                }, 100);
-            });
-        }
-        $$.resizeFunction.add(function () {
-            config.onresized.call($$);
-        });
+    if (config.data_hide) {
+      $$.addHiddenTargetIds(config.data_hide === true ? $$.mapToIds($$.data.targets) : config.data_hide);
+    }
 
 
-        $$.resizeIfElementDisplayed = function () {
-            // if element not displayed skip it
-            if ($$.api == null || !$$.api.element.offsetParent) {
-                return;
-            }
+    if (config.legend_hide) {
+      $$.addHiddenLegendIds(config.legend_hide === true ? $$.mapToIds($$.data.targets) : config.legend_hide);
+    } // Init sizes and scales
 
 
-            $$.resizeFunction();
-        };
 
 
-        if (window.attachEvent) {
-            window.attachEvent('onresize', $$.resizeIfElementDisplayed);
-        } else if (window.addEventListener) {
-            window.addEventListener('resize', $$.resizeIfElementDisplayed, false);
-        } else {
-            // fallback to this, if this is a very old browser
-            var wrapper = window.onresize;
-            if (!wrapper) {
-                // create a wrapper that will call all charts
-                wrapper = $$.generateResize();
-            } else if (!wrapper.add || !wrapper.remove) {
-                // there is already a handler registered, make sure we call it too
-                wrapper = $$.generateResize();
-                wrapper.add(window.onresize);
-            }
-            // add this graph to the wrapper, we will be removed if the user calls destroy
-            wrapper.add($$.resizeFunction);
-            window.onresize = function () {
-                // if element not displayed skip it
-                if (!$$.api.element.offsetParent) {
-                    return;
-                }
-
-                wrapper();
-            };
-        }
-    };
+    $$.updateSizes();
+    $$.updateScales(); // Set domains for each scale
 
 
-    ChartInternal.prototype.generateResize = function () {
-        var resizeFunctions = [];
+    $$.x.domain(d3.extent($$.getXDomain($$.data.targets)));
+    $$.y.domain($$.getYDomain($$.data.targets, 'y'));
+    $$.y2.domain($$.getYDomain($$.data.targets, 'y2'));
+    $$.subX.domain($$.x.domain());
+    $$.subY.domain($$.y.domain());
+    $$.subY2.domain($$.y2.domain()); // Save original x domain for zoom update
 
 
-        function callResizeFunctions() {
-            resizeFunctions.forEach(function (f) {
-                f();
-            });
-        }
-        callResizeFunctions.add = function (f) {
-            resizeFunctions.push(f);
-        };
-        callResizeFunctions.remove = function (f) {
-            for (var i = 0; i < resizeFunctions.length; i++) {
-                if (resizeFunctions[i] === f) {
-                    resizeFunctions.splice(i, 1);
-                    break;
-                }
-            }
-        };
-        return callResizeFunctions;
-    };
+    $$.orgXDomain = $$.x.domain();
+    /*-- Basic Elements --*/
+    // Define svgs
 
 
-    ChartInternal.prototype.endall = function (transition, callback) {
-        var n = 0;
-        transition.each(function () {
-            ++n;
-        }).on("end", function () {
-            if (! --n) {
-                callback.apply(this, arguments);
-            }
-        });
-    };
-    ChartInternal.prototype.generateWait = function () {
-        var transitionsToWait = [],
-            f = function f(callback) {
-            var timer = setInterval(function () {
-                var done = 0;
-                transitionsToWait.forEach(function (t) {
-                    if (t.empty()) {
-                        done += 1;
-                        return;
-                    }
-                    try {
-                        t.transition();
-                    } catch (e) {
-                        done += 1;
-                    }
-                });
-                if (done === transitionsToWait.length) {
-                    clearInterval(timer);
-                    if (callback) {
-                        callback();
-                    }
-                }
-            }, 50);
-        };
-        f.add = function (transition) {
-            transitionsToWait.push(transition);
-        };
-        return f;
-    };
+    $$.svg = $$.selectChart.append("svg").style("overflow", "hidden").on('mouseenter', function () {
+      return config.onmouseover.call($$);
+    }).on('mouseleave', function () {
+      return config.onmouseout.call($$);
+    });
 
 
-    ChartInternal.prototype.parseDate = function (date) {
-        var $$ = this,
-            parsedDate;
-        if (date instanceof Date) {
-            parsedDate = date;
-        } else if (typeof date === 'string') {
-            parsedDate = $$.dataTimeParse(date);
-        } else if ((typeof date === 'undefined' ? 'undefined' : _typeof(date)) === 'object') {
-            parsedDate = new Date(+date);
-        } else if (typeof date === 'number' && !isNaN(date)) {
-            parsedDate = new Date(+date);
-        }
-        if (!parsedDate || isNaN(+parsedDate)) {
-            window.console.error("Failed to parse x '" + date + "' to Date object");
-        }
-        return parsedDate;
-    };
+    if ($$.config.svg_classname) {
+      $$.svg.attr('class', $$.config.svg_classname);
+    } // Define defs
 
 
-    ChartInternal.prototype.isTabVisible = function () {
-        var hidden;
-        if (typeof document.hidden !== "undefined") {
-            // Opera 12.10 and Firefox 18 and later support
-            hidden = "hidden";
-        } else if (typeof document.mozHidden !== "undefined") {
-            hidden = "mozHidden";
-        } else if (typeof document.msHidden !== "undefined") {
-            hidden = "msHidden";
-        } else if (typeof document.webkitHidden !== "undefined") {
-            hidden = "webkitHidden";
-        }
 
 
-        return document[hidden] ? false : true;
-    };
+    defs = $$.svg.append("defs");
+    $$.clipChart = $$.appendClip(defs, $$.clipId);
+    $$.clipXAxis = $$.appendClip(defs, $$.clipIdForXAxis);
+    $$.clipYAxis = $$.appendClip(defs, $$.clipIdForYAxis);
+    $$.clipGrid = $$.appendClip(defs, $$.clipIdForGrid);
+    $$.clipSubchart = $$.appendClip(defs, $$.clipIdForSubchart);
+    $$.updateSvgSize(); // Define regions
 
 
-    ChartInternal.prototype.getPathBox = getPathBox;
-    ChartInternal.prototype.CLASS = CLASS;
+    main = $$.main = $$.svg.append("g").attr("transform", $$.getTranslate('main'));
 
 
-    /* jshint ignore:start */
+    if ($$.initPie) {
+      $$.initPie();
+    }
 
 
-    // PhantomJS doesn't have support for Function.prototype.bind, which has caused confusion. Use
-    // this polyfill to avoid the confusion.
-    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind#Polyfill
+    if ($$.initDragZoom) {
+      $$.initDragZoom();
+    }
 
 
-    if (!Function.prototype.bind) {
-        Function.prototype.bind = function (oThis) {
-            if (typeof this !== 'function') {
-                // closest thing possible to the ECMAScript 5
-                // internal IsCallable function
-                throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
-            }
+    if ($$.initSubchart) {
+      $$.initSubchart();
+    }
 
 
-            var aArgs = Array.prototype.slice.call(arguments, 1),
-                fToBind = this,
-                fNOP = function fNOP() {},
-                fBound = function fBound() {
-                return fToBind.apply(this instanceof fNOP ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments)));
-            };
+    if ($$.initTooltip) {
+      $$.initTooltip();
+    }
 
 
-            fNOP.prototype = this.prototype;
-            fBound.prototype = new fNOP();
+    if ($$.initLegend) {
+      $$.initLegend();
+    }
 
 
-            return fBound;
-        };
+    if ($$.initTitle) {
+      $$.initTitle();
     }
 
     }
 
-    // SVGPathSeg API polyfill
-    // https://github.com/progers/pathseg
-    //
-    // This is a drop-in replacement for the SVGPathSeg and SVGPathSegList APIs that were removed from
-    // SVG2 (https://lists.w3.org/Archives/Public/www-svg/2015Jun/0044.html), including the latest spec
-    // changes which were implemented in Firefox 43 and Chrome 46.
-
-    (function () {
-
-        if (!("SVGPathSeg" in window)) {
-            // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGPathSeg
-            window.SVGPathSeg = function (type, typeAsLetter, owningPathSegList) {
-                this.pathSegType = type;
-                this.pathSegTypeAsLetter = typeAsLetter;
-                this._owningPathSegList = owningPathSegList;
-            };
-
-            window.SVGPathSeg.prototype.classname = "SVGPathSeg";
-
-            window.SVGPathSeg.PATHSEG_UNKNOWN = 0;
-            window.SVGPathSeg.PATHSEG_CLOSEPATH = 1;
-            window.SVGPathSeg.PATHSEG_MOVETO_ABS = 2;
-            window.SVGPathSeg.PATHSEG_MOVETO_REL = 3;
-            window.SVGPathSeg.PATHSEG_LINETO_ABS = 4;
-            window.SVGPathSeg.PATHSEG_LINETO_REL = 5;
-            window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS = 6;
-            window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL = 7;
-            window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS = 8;
-            window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL = 9;
-            window.SVGPathSeg.PATHSEG_ARC_ABS = 10;
-            window.SVGPathSeg.PATHSEG_ARC_REL = 11;
-            window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS = 12;
-            window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL = 13;
-            window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS = 14;
-            window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL = 15;
-            window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
-            window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
-            window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
-            window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
-
-            // Notify owning PathSegList on any changes so they can be synchronized back to the path element.
-            window.SVGPathSeg.prototype._segmentChanged = function () {
-                if (this._owningPathSegList) this._owningPathSegList.segmentChanged(this);
-            };
-
-            window.SVGPathSegClosePath = function (owningPathSegList) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CLOSEPATH, "z", owningPathSegList);
-            };
-            window.SVGPathSegClosePath.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegClosePath.prototype.toString = function () {
-                return "[object SVGPathSegClosePath]";
-            };
-            window.SVGPathSegClosePath.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter;
-            };
-            window.SVGPathSegClosePath.prototype.clone = function () {
-                return new window.SVGPathSegClosePath(undefined);
-            };
-
-            window.SVGPathSegMovetoAbs = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_ABS, "M", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegMovetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegMovetoAbs.prototype.toString = function () {
-                return "[object SVGPathSegMovetoAbs]";
-            };
-            window.SVGPathSegMovetoAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegMovetoAbs.prototype.clone = function () {
-                return new window.SVGPathSegMovetoAbs(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    if ($$.initZoom) {
+      $$.initZoom();
+    } // Update selection based on size and scale
+    // TODO: currently this must be called after initLegend because of update of sizes, but it should be done in initSubchart.
 
 
-            window.SVGPathSegMovetoRel = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_REL, "m", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegMovetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegMovetoRel.prototype.toString = function () {
-                return "[object SVGPathSegMovetoRel]";
-            };
-            window.SVGPathSegMovetoRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegMovetoRel.prototype.clone = function () {
-                return new window.SVGPathSegMovetoRel(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
 
 
-            window.SVGPathSegLinetoAbs = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_ABS, "L", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegLinetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoAbs.prototype.toString = function () {
-                return "[object SVGPathSegLinetoAbs]";
-            };
-            window.SVGPathSegLinetoAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegLinetoAbs.prototype.clone = function () {
-                return new window.SVGPathSegLinetoAbs(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    if ($$.initSubchartBrush) {
+      $$.initSubchartBrush();
+    }
+    /*-- Main Region --*/
+    // text when empty
 
 
-            window.SVGPathSegLinetoRel = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_REL, "l", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegLinetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoRel.prototype.toString = function () {
-                return "[object SVGPathSegLinetoRel]";
-            };
-            window.SVGPathSegLinetoRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegLinetoRel.prototype.clone = function () {
-                return new window.SVGPathSegLinetoRel(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
 
 
-            window.SVGPathSegCurvetoCubicAbs = function (owningPathSegList, x, y, x1, y1, x2, y2) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS, "C", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x1 = x1;
-                this._y1 = y1;
-                this._x2 = x2;
-                this._y2 = y2;
-            };
-            window.SVGPathSegCurvetoCubicAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoCubicAbs.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoCubicAbs]";
-            };
-            window.SVGPathSegCurvetoCubicAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoCubicAbs.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoCubicAbs(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x1", {
-                get: function get() {
-                    return this._x1;
-                },
-                set: function set(x1) {
-                    this._x1 = x1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y1", {
-                get: function get() {
-                    return this._y1;
-                },
-                set: function set(y1) {
-                    this._y1 = y1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x2", {
-                get: function get() {
-                    return this._x2;
-                },
-                set: function set(x2) {
-                    this._x2 = x2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y2", {
-                get: function get() {
-                    return this._y2;
-                },
-                set: function set(y2) {
-                    this._y2 = y2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    main.append("text").attr("class", CLASS.text + ' ' + CLASS.empty).attr("text-anchor", "middle") // horizontal centering of text at x position in all browsers.
+    .attr("dominant-baseline", "middle"); // vertical centering of text at y position in all browsers, except IE.
+    // Regions
 
 
-            window.SVGPathSegCurvetoCubicRel = function (owningPathSegList, x, y, x1, y1, x2, y2) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL, "c", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x1 = x1;
-                this._y1 = y1;
-                this._x2 = x2;
-                this._y2 = y2;
-            };
-            window.SVGPathSegCurvetoCubicRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoCubicRel.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoCubicRel]";
-            };
-            window.SVGPathSegCurvetoCubicRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoCubicRel.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoCubicRel(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x1", {
-                get: function get() {
-                    return this._x1;
-                },
-                set: function set(x1) {
-                    this._x1 = x1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y1", {
-                get: function get() {
-                    return this._y1;
-                },
-                set: function set(y1) {
-                    this._y1 = y1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x2", {
-                get: function get() {
-                    return this._x2;
-                },
-                set: function set(x2) {
-                    this._x2 = x2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y2", {
-                get: function get() {
-                    return this._y2;
-                },
-                set: function set(y2) {
-                    this._y2 = y2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.initRegion(); // Grids
 
 
-            window.SVGPathSegCurvetoQuadraticAbs = function (owningPathSegList, x, y, x1, y1) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS, "Q", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x1 = x1;
-                this._y1 = y1;
-            };
-            window.SVGPathSegCurvetoQuadraticAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoQuadraticAbs.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoQuadraticAbs]";
-            };
-            window.SVGPathSegCurvetoQuadraticAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoQuadraticAbs.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoQuadraticAbs(undefined, this._x, this._y, this._x1, this._y1);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x1", {
-                get: function get() {
-                    return this._x1;
-                },
-                set: function set(x1) {
-                    this._x1 = x1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y1", {
-                get: function get() {
-                    return this._y1;
-                },
-                set: function set(y1) {
-                    this._y1 = y1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.initGrid(); // Define g for chart area
 
 
-            window.SVGPathSegCurvetoQuadraticRel = function (owningPathSegList, x, y, x1, y1) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL, "q", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x1 = x1;
-                this._y1 = y1;
-            };
-            window.SVGPathSegCurvetoQuadraticRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoQuadraticRel.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoQuadraticRel]";
-            };
-            window.SVGPathSegCurvetoQuadraticRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoQuadraticRel.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoQuadraticRel(undefined, this._x, this._y, this._x1, this._y1);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x1", {
-                get: function get() {
-                    return this._x1;
-                },
-                set: function set(x1) {
-                    this._x1 = x1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y1", {
-                get: function get() {
-                    return this._y1;
-                },
-                set: function set(y1) {
-                    this._y1 = y1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    main.append('g').attr("clip-path", $$.clipPath).attr('class', CLASS.chart); // Grid lines
 
 
-            window.SVGPathSegArcAbs = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_ABS, "A", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._r1 = r1;
-                this._r2 = r2;
-                this._angle = angle;
-                this._largeArcFlag = largeArcFlag;
-                this._sweepFlag = sweepFlag;
-            };
-            window.SVGPathSegArcAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegArcAbs.prototype.toString = function () {
-                return "[object SVGPathSegArcAbs]";
-            };
-            window.SVGPathSegArcAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegArcAbs.prototype.clone = function () {
-                return new window.SVGPathSegArcAbs(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
-            };
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r1", {
-                get: function get() {
-                    return this._r1;
-                },
-                set: function set(r1) {
-                    this._r1 = r1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r2", {
-                get: function get() {
-                    return this._r2;
-                },
-                set: function set(r2) {
-                    this._r2 = r2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "angle", {
-                get: function get() {
-                    return this._angle;
-                },
-                set: function set(angle) {
-                    this._angle = angle;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "largeArcFlag", {
-                get: function get() {
-                    return this._largeArcFlag;
-                },
-                set: function set(largeArcFlag) {
-                    this._largeArcFlag = largeArcFlag;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcAbs.prototype, "sweepFlag", {
-                get: function get() {
-                    return this._sweepFlag;
-                },
-                set: function set(sweepFlag) {
-                    this._sweepFlag = sweepFlag;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    if (config.grid_lines_front) {
+      $$.initGridLines();
+    } // Cover whole with rects for events
 
 
-            window.SVGPathSegArcRel = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_REL, "a", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._r1 = r1;
-                this._r2 = r2;
-                this._angle = angle;
-                this._largeArcFlag = largeArcFlag;
-                this._sweepFlag = sweepFlag;
-            };
-            window.SVGPathSegArcRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegArcRel.prototype.toString = function () {
-                return "[object SVGPathSegArcRel]";
-            };
-            window.SVGPathSegArcRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegArcRel.prototype.clone = function () {
-                return new window.SVGPathSegArcRel(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
-            };
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "r1", {
-                get: function get() {
-                    return this._r1;
-                },
-                set: function set(r1) {
-                    this._r1 = r1;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "r2", {
-                get: function get() {
-                    return this._r2;
-                },
-                set: function set(r2) {
-                    this._r2 = r2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "angle", {
-                get: function get() {
-                    return this._angle;
-                },
-                set: function set(angle) {
-                    this._angle = angle;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "largeArcFlag", {
-                get: function get() {
-                    return this._largeArcFlag;
-                },
-                set: function set(largeArcFlag) {
-                    this._largeArcFlag = largeArcFlag;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegArcRel.prototype, "sweepFlag", {
-                get: function get() {
-                    return this._sweepFlag;
-                },
-                set: function set(sweepFlag) {
-                    this._sweepFlag = sweepFlag;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
 
 
-            window.SVGPathSegLinetoHorizontalAbs = function (owningPathSegList, x) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS, "H", owningPathSegList);
-                this._x = x;
-            };
-            window.SVGPathSegLinetoHorizontalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoHorizontalAbs.prototype.toString = function () {
-                return "[object SVGPathSegLinetoHorizontalAbs]";
-            };
-            window.SVGPathSegLinetoHorizontalAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x;
-            };
-            window.SVGPathSegLinetoHorizontalAbs.prototype.clone = function () {
-                return new window.SVGPathSegLinetoHorizontalAbs(undefined, this._x);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoHorizontalAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.initEventRect(); // Define g for chart
 
 
-            window.SVGPathSegLinetoHorizontalRel = function (owningPathSegList, x) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL, "h", owningPathSegList);
-                this._x = x;
-            };
-            window.SVGPathSegLinetoHorizontalRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoHorizontalRel.prototype.toString = function () {
-                return "[object SVGPathSegLinetoHorizontalRel]";
-            };
-            window.SVGPathSegLinetoHorizontalRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x;
-            };
-            window.SVGPathSegLinetoHorizontalRel.prototype.clone = function () {
-                return new window.SVGPathSegLinetoHorizontalRel(undefined, this._x);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoHorizontalRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.initChartElements(); // Add Axis
 
 
-            window.SVGPathSegLinetoVerticalAbs = function (owningPathSegList, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS, "V", owningPathSegList);
-                this._y = y;
-            };
-            window.SVGPathSegLinetoVerticalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoVerticalAbs.prototype.toString = function () {
-                return "[object SVGPathSegLinetoVerticalAbs]";
-            };
-            window.SVGPathSegLinetoVerticalAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._y;
-            };
-            window.SVGPathSegLinetoVerticalAbs.prototype.clone = function () {
-                return new window.SVGPathSegLinetoVerticalAbs(undefined, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoVerticalAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.axis.init(); // Set targets
 
 
-            window.SVGPathSegLinetoVerticalRel = function (owningPathSegList, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL, "v", owningPathSegList);
-                this._y = y;
-            };
-            window.SVGPathSegLinetoVerticalRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegLinetoVerticalRel.prototype.toString = function () {
-                return "[object SVGPathSegLinetoVerticalRel]";
-            };
-            window.SVGPathSegLinetoVerticalRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._y;
-            };
-            window.SVGPathSegLinetoVerticalRel.prototype.clone = function () {
-                return new window.SVGPathSegLinetoVerticalRel(undefined, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegLinetoVerticalRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    $$.updateTargets($$.data.targets); // Set default extent if defined
 
 
-            window.SVGPathSegCurvetoCubicSmoothAbs = function (owningPathSegList, x, y, x2, y2) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, "S", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x2 = x2;
-                this._y2 = y2;
-            };
-            window.SVGPathSegCurvetoCubicSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoCubicSmoothAbs.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoCubicSmoothAbs]";
-            };
-            window.SVGPathSegCurvetoCubicSmoothAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoCubicSmoothAbs.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, this._x, this._y, this._x2, this._y2);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x2", {
-                get: function get() {
-                    return this._x2;
-                },
-                set: function set(x2) {
-                    this._x2 = x2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y2", {
-                get: function get() {
-                    return this._y2;
-                },
-                set: function set(y2) {
-                    this._y2 = y2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    if (config.axis_x_selection) {
+      $$.brush.selectionAsValue($$.getDefaultSelection());
+    } // Draw with targets
 
 
-            window.SVGPathSegCurvetoCubicSmoothRel = function (owningPathSegList, x, y, x2, y2) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL, "s", owningPathSegList);
-                this._x = x;
-                this._y = y;
-                this._x2 = x2;
-                this._y2 = y2;
-            };
-            window.SVGPathSegCurvetoCubicSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoCubicSmoothRel.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoCubicSmoothRel]";
-            };
-            window.SVGPathSegCurvetoCubicSmoothRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoCubicSmoothRel.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, this._x, this._y, this._x2, this._y2);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x2", {
-                get: function get() {
-                    return this._x2;
-                },
-                set: function set(x2) {
-                    this._x2 = x2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y2", {
-                get: function get() {
-                    return this._y2;
-                },
-                set: function set(y2) {
-                    this._y2 = y2;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
 
 
-            window.SVGPathSegCurvetoQuadraticSmoothAbs = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, "T", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoQuadraticSmoothAbs]";
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
+    if (binding) {
+      $$.updateDimension();
+      $$.config.oninit.call($$);
+      $$.redraw({
+        withTransition: false,
+        withTransform: true,
+        withUpdateXDomain: true,
+        withUpdateOrgXDomain: true,
+        withTransitionForAxis: false
+      });
+    } // Bind to resize event
 
 
-            window.SVGPathSegCurvetoQuadraticSmoothRel = function (owningPathSegList, x, y) {
-                window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, "t", owningPathSegList);
-                this._x = x;
-                this._y = y;
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
-            window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.toString = function () {
-                return "[object SVGPathSegCurvetoQuadraticSmoothRel]";
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothRel.prototype._asPathString = function () {
-                return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
-            };
-            window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.clone = function () {
-                return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, this._x, this._y);
-            };
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "x", {
-                get: function get() {
-                    return this._x;
-                },
-                set: function set(x) {
-                    this._x = x;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "y", {
-                get: function get() {
-                    return this._y;
-                },
-                set: function set(y) {
-                    this._y = y;
-                    this._segmentChanged();
-                },
-                enumerable: true
-            });
 
 
-            // Add createSVGPathSeg* functions to window.SVGPathElement.
-            // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-Interfacewindow.SVGPathElement.
-            window.SVGPathElement.prototype.createSVGPathSegClosePath = function () {
-                return new window.SVGPathSegClosePath(undefined);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegMovetoAbs = function (x, y) {
-                return new window.SVGPathSegMovetoAbs(undefined, x, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegMovetoRel = function (x, y) {
-                return new window.SVGPathSegMovetoRel(undefined, x, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoAbs = function (x, y) {
-                return new window.SVGPathSegLinetoAbs(undefined, x, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoRel = function (x, y) {
-                return new window.SVGPathSegLinetoRel(undefined, x, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicAbs = function (x, y, x1, y1, x2, y2) {
-                return new window.SVGPathSegCurvetoCubicAbs(undefined, x, y, x1, y1, x2, y2);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicRel = function (x, y, x1, y1, x2, y2) {
-                return new window.SVGPathSegCurvetoCubicRel(undefined, x, y, x1, y1, x2, y2);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticAbs = function (x, y, x1, y1) {
-                return new window.SVGPathSegCurvetoQuadraticAbs(undefined, x, y, x1, y1);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticRel = function (x, y, x1, y1) {
-                return new window.SVGPathSegCurvetoQuadraticRel(undefined, x, y, x1, y1);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegArcAbs = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
-                return new window.SVGPathSegArcAbs(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegArcRel = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
-                return new window.SVGPathSegArcRel(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalAbs = function (x) {
-                return new window.SVGPathSegLinetoHorizontalAbs(undefined, x);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalRel = function (x) {
-                return new window.SVGPathSegLinetoHorizontalRel(undefined, x);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalAbs = function (y) {
-                return new window.SVGPathSegLinetoVerticalAbs(undefined, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalRel = function (y) {
-                return new window.SVGPathSegLinetoVerticalRel(undefined, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothAbs = function (x, y, x2, y2) {
-                return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, x, y, x2, y2);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothRel = function (x, y, x2, y2) {
-                return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, x, y, x2, y2);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothAbs = function (x, y) {
-                return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, x, y);
-            };
-            window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothRel = function (x, y) {
-                return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, x, y);
-            };
-
-            if (!("getPathSegAtLength" in window.SVGPathElement.prototype)) {
-                // Add getPathSegAtLength to SVGPathElement.
-                // Spec: https://www.w3.org/TR/SVG11/single-page.html#paths-__svg__SVGPathElement__getPathSegAtLength
-                // This polyfill requires SVGPathElement.getTotalLength to implement the distance-along-a-path algorithm.
-                window.SVGPathElement.prototype.getPathSegAtLength = function (distance) {
-                    if (distance === undefined || !isFinite(distance)) throw "Invalid arguments.";
-
-                    var measurementElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
-                    measurementElement.setAttribute("d", this.getAttribute("d"));
-                    var lastPathSegment = measurementElement.pathSegList.numberOfItems - 1;
-
-                    // If the path is empty, return 0.
-                    if (lastPathSegment <= 0) return 0;
-
-                    do {
-                        measurementElement.pathSegList.removeItem(lastPathSegment);
-                        if (distance > measurementElement.getTotalLength()) break;
-                        lastPathSegment--;
-                    } while (lastPathSegment > 0);
-                    return lastPathSegment;
-                };
-            }
-        }
+    $$.bindResize(); // Bind to window focus event
 
 
-        if (!("SVGPathSegList" in window)) {
-            // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGPathSegList
-            window.SVGPathSegList = function (pathElement) {
-                this._pathElement = pathElement;
-                this._list = this._parsePath(this._pathElement.getAttribute("d"));
-
-                // Use a MutationObserver to catch changes to the path's "d" attribute.
-                this._mutationObserverConfig = {
-                    "attributes": true,
-                    "attributeFilter": ["d"]
-                };
-                this._pathElementMutationObserver = new MutationObserver(this._updateListFromPathMutations.bind(this));
-                this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
-            };
-
-            window.SVGPathSegList.prototype.classname = "SVGPathSegList";
-
-            Object.defineProperty(window.SVGPathSegList.prototype, "numberOfItems", {
-                get: function get() {
-                    this._checkPathSynchronizedToList();
-                    return this._list.length;
-                },
-                enumerable: true
-            });
+    $$.bindWindowFocus(); // export element of the chart
 
 
-            // Add the pathSegList accessors to window.SVGPathElement.
-            // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGAnimatedPathData
-            Object.defineProperty(window.SVGPathElement.prototype, "pathSegList", {
-                get: function get() {
-                    if (!this._pathSegList) this._pathSegList = new window.SVGPathSegList(this);
-                    return this._pathSegList;
-                },
-                enumerable: true
-            });
-            // FIXME: The following are not implemented and simply return window.SVGPathElement.pathSegList.
-            Object.defineProperty(window.SVGPathElement.prototype, "normalizedPathSegList", {
-                get: function get() {
-                    return this.pathSegList;
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathElement.prototype, "animatedPathSegList", {
-                get: function get() {
-                    return this.pathSegList;
-                },
-                enumerable: true
-            });
-            Object.defineProperty(window.SVGPathElement.prototype, "animatedNormalizedPathSegList", {
-                get: function get() {
-                    return this.pathSegList;
-                },
-                enumerable: true
-            });
+    $$.api.element = $$.selectChart.node();
+  };
 
 
-            // Process any pending mutations to the path element and update the list as needed.
-            // This should be the first call of all public functions and is needed because
-            // MutationObservers are not synchronous so we can have pending asynchronous mutations.
-            window.SVGPathSegList.prototype._checkPathSynchronizedToList = function () {
-                this._updateListFromPathMutations(this._pathElementMutationObserver.takeRecords());
-            };
-
-            window.SVGPathSegList.prototype._updateListFromPathMutations = function (mutationRecords) {
-                if (!this._pathElement) return;
-                var hasPathMutations = false;
-                mutationRecords.forEach(function (record) {
-                    if (record.attributeName == "d") hasPathMutations = true;
-                });
-                if (hasPathMutations) this._list = this._parsePath(this._pathElement.getAttribute("d"));
-            };
-
-            // Serialize the list and update the path's 'd' attribute.
-            window.SVGPathSegList.prototype._writeListToPath = function () {
-                this._pathElementMutationObserver.disconnect();
-                this._pathElement.setAttribute("d", window.SVGPathSegList._pathSegArrayAsString(this._list));
-                this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
-            };
-
-            // When a path segment changes the list needs to be synchronized back to the path element.
-            window.SVGPathSegList.prototype.segmentChanged = function (pathSeg) {
-                this._writeListToPath();
-            };
-
-            window.SVGPathSegList.prototype.clear = function () {
-                this._checkPathSynchronizedToList();
-
-                this._list.forEach(function (pathSeg) {
-                    pathSeg._owningPathSegList = null;
-                });
-                this._list = [];
-                this._writeListToPath();
-            };
-
-            window.SVGPathSegList.prototype.initialize = function (newItem) {
-                this._checkPathSynchronizedToList();
-
-                this._list = [newItem];
-                newItem._owningPathSegList = this;
-                this._writeListToPath();
-                return newItem;
-            };
-
-            window.SVGPathSegList.prototype._checkValidIndex = function (index) {
-                if (isNaN(index) || index < 0 || index >= this.numberOfItems) throw "INDEX_SIZE_ERR";
-            };
-
-            window.SVGPathSegList.prototype.getItem = function (index) {
-                this._checkPathSynchronizedToList();
-
-                this._checkValidIndex(index);
-                return this._list[index];
-            };
-
-            window.SVGPathSegList.prototype.insertItemBefore = function (newItem, index) {
-                this._checkPathSynchronizedToList();
-
-                // Spec: If the index is greater than or equal to numberOfItems, then the new item is appended to the end of the list.
-                if (index > this.numberOfItems) index = this.numberOfItems;
-                if (newItem._owningPathSegList) {
-                    // SVG2 spec says to make a copy.
-                    newItem = newItem.clone();
-                }
-                this._list.splice(index, 0, newItem);
-                newItem._owningPathSegList = this;
-                this._writeListToPath();
-                return newItem;
-            };
-
-            window.SVGPathSegList.prototype.replaceItem = function (newItem, index) {
-                this._checkPathSynchronizedToList();
-
-                if (newItem._owningPathSegList) {
-                    // SVG2 spec says to make a copy.
-                    newItem = newItem.clone();
-                }
-                this._checkValidIndex(index);
-                this._list[index] = newItem;
-                newItem._owningPathSegList = this;
-                this._writeListToPath();
-                return newItem;
-            };
-
-            window.SVGPathSegList.prototype.removeItem = function (index) {
-                this._checkPathSynchronizedToList();
-
-                this._checkValidIndex(index);
-                var item = this._list[index];
-                this._list.splice(index, 1);
-                this._writeListToPath();
-                return item;
-            };
-
-            window.SVGPathSegList.prototype.appendItem = function (newItem) {
-                this._checkPathSynchronizedToList();
-
-                if (newItem._owningPathSegList) {
-                    // SVG2 spec says to make a copy.
-                    newItem = newItem.clone();
-                }
-                this._list.push(newItem);
-                newItem._owningPathSegList = this;
-                // TODO: Optimize this to just append to the existing attribute.
-                this._writeListToPath();
-                return newItem;
-            };
-
-            window.SVGPathSegList._pathSegArrayAsString = function (pathSegArray) {
-                var string = "";
-                var first = true;
-                pathSegArray.forEach(function (pathSeg) {
-                    if (first) {
-                        first = false;
-                        string += pathSeg._asPathString();
-                    } else {
-                        string += " " + pathSeg._asPathString();
-                    }
-                });
-                return string;
-            };
-
-            // This closely follows SVGPathParser::parsePath from Source/core/svg/SVGPathParser.cpp.
-            window.SVGPathSegList.prototype._parsePath = function (string) {
-                if (!string || string.length == 0) return [];
-
-                var owningPathSegList = this;
-
-                var Builder = function Builder() {
-                    this.pathSegList = [];
-                };
-
-                Builder.prototype.appendSegment = function (pathSeg) {
-                    this.pathSegList.push(pathSeg);
-                };
-
-                var Source = function Source(string) {
-                    this._string = string;
-                    this._currentIndex = 0;
-                    this._endIndex = this._string.length;
-                    this._previousCommand = window.SVGPathSeg.PATHSEG_UNKNOWN;
-
-                    this._skipOptionalSpaces();
-                };
-
-                Source.prototype._isCurrentSpace = function () {
-                    var character = this._string[this._currentIndex];
-                    return character <= " " && (character == " " || character == "\n" || character == "\t" || character == "\r" || character == "\f");
-                };
-
-                Source.prototype._skipOptionalSpaces = function () {
-                    while (this._currentIndex < this._endIndex && this._isCurrentSpace()) {
-                        this._currentIndex++;
-                    }return this._currentIndex < this._endIndex;
-                };
-
-                Source.prototype._skipOptionalSpacesOrDelimiter = function () {
-                    if (this._currentIndex < this._endIndex && !this._isCurrentSpace() && this._string.charAt(this._currentIndex) != ",") return false;
-                    if (this._skipOptionalSpaces()) {
-                        if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ",") {
-                            this._currentIndex++;
-                            this._skipOptionalSpaces();
-                        }
-                    }
-                    return this._currentIndex < this._endIndex;
-                };
-
-                Source.prototype.hasMoreData = function () {
-                    return this._currentIndex < this._endIndex;
-                };
-
-                Source.prototype.peekSegmentType = function () {
-                    var lookahead = this._string[this._currentIndex];
-                    return this._pathSegTypeFromChar(lookahead);
-                };
-
-                Source.prototype._pathSegTypeFromChar = function (lookahead) {
-                    switch (lookahead) {
-                        case "Z":
-                        case "z":
-                            return window.SVGPathSeg.PATHSEG_CLOSEPATH;
-                        case "M":
-                            return window.SVGPathSeg.PATHSEG_MOVETO_ABS;
-                        case "m":
-                            return window.SVGPathSeg.PATHSEG_MOVETO_REL;
-                        case "L":
-                            return window.SVGPathSeg.PATHSEG_LINETO_ABS;
-                        case "l":
-                            return window.SVGPathSeg.PATHSEG_LINETO_REL;
-                        case "C":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS;
-                        case "c":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL;
-                        case "Q":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS;
-                        case "q":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL;
-                        case "A":
-                            return window.SVGPathSeg.PATHSEG_ARC_ABS;
-                        case "a":
-                            return window.SVGPathSeg.PATHSEG_ARC_REL;
-                        case "H":
-                            return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;
-                        case "h":
-                            return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL;
-                        case "V":
-                            return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS;
-                        case "v":
-                            return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL;
-                        case "S":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS;
-                        case "s":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL;
-                        case "T":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS;
-                        case "t":
-                            return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL;
-                        default:
-                            return window.SVGPathSeg.PATHSEG_UNKNOWN;
-                    }
-                };
-
-                Source.prototype._nextCommandHelper = function (lookahead, previousCommand) {
-                    // Check for remaining coordinates in the current command.
-                    if ((lookahead == "+" || lookahead == "-" || lookahead == "." || lookahead >= "0" && lookahead <= "9") && previousCommand != window.SVGPathSeg.PATHSEG_CLOSEPATH) {
-                        if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_ABS) return window.SVGPathSeg.PATHSEG_LINETO_ABS;
-                        if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_REL) return window.SVGPathSeg.PATHSEG_LINETO_REL;
-                        return previousCommand;
-                    }
-                    return window.SVGPathSeg.PATHSEG_UNKNOWN;
-                };
-
-                Source.prototype.initialCommandIsMoveTo = function () {
-                    // If the path is empty it is still valid, so return true.
-                    if (!this.hasMoreData()) return true;
-                    var command = this.peekSegmentType();
-                    // Path must start with moveTo.
-                    return command == window.SVGPathSeg.PATHSEG_MOVETO_ABS || command == window.SVGPathSeg.PATHSEG_MOVETO_REL;
-                };
-
-                // Parse a number from an SVG path. This very closely follows genericParseNumber(...) from Source/core/svg/SVGParserUtilities.cpp.
-                // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-PathDataBNF
-                Source.prototype._parseNumber = function () {
-                    var exponent = 0;
-                    var integer = 0;
-                    var frac = 1;
-                    var decimal = 0;
-                    var sign = 1;
-                    var expsign = 1;
-
-                    var startIndex = this._currentIndex;
-
-                    this._skipOptionalSpaces();
-
-                    // Read the sign.
-                    if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "+") this._currentIndex++;else if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "-") {
-                        this._currentIndex++;
-                        sign = -1;
-                    }
-
-                    if (this._currentIndex == this._endIndex || (this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") && this._string.charAt(this._currentIndex) != ".")
-                        // The first character of a number must be one of [0-9+-.].
-                        return undefined;
-
-                    // Read the integer part, build right-to-left.
-                    var startIntPartIndex = this._currentIndex;
-                    while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
-                        this._currentIndex++;
-                    } // Advance to first non-digit.
-
-                    if (this._currentIndex != startIntPartIndex) {
-                        var scanIntPartIndex = this._currentIndex - 1;
-                        var multiplier = 1;
-                        while (scanIntPartIndex >= startIntPartIndex) {
-                            integer += multiplier * (this._string.charAt(scanIntPartIndex--) - "0");
-                            multiplier *= 10;
-                        }
-                    }
-
-                    // Read the decimals.
-                    if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ".") {
-                        this._currentIndex++;
-
-                        // There must be a least one digit following the .
-                        if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
-                        while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
-                            frac *= 10;
-                            decimal += (this._string.charAt(this._currentIndex) - "0") / frac;
-                            this._currentIndex += 1;
-                        }
-                    }
-
-                    // Read the exponent part.
-                    if (this._currentIndex != startIndex && this._currentIndex + 1 < this._endIndex && (this._string.charAt(this._currentIndex) == "e" || this._string.charAt(this._currentIndex) == "E") && this._string.charAt(this._currentIndex + 1) != "x" && this._string.charAt(this._currentIndex + 1) != "m") {
-                        this._currentIndex++;
-
-                        // Read the sign of the exponent.
-                        if (this._string.charAt(this._currentIndex) == "+") {
-                            this._currentIndex++;
-                        } else if (this._string.charAt(this._currentIndex) == "-") {
-                            this._currentIndex++;
-                            expsign = -1;
-                        }
-
-                        // There must be an exponent.
-                        if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
-
-                        while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
-                            exponent *= 10;
-                            exponent += this._string.charAt(this._currentIndex) - "0";
-                            this._currentIndex++;
-                        }
-                    }
-
-                    var number = integer + decimal;
-                    number *= sign;
-
-                    if (exponent) number *= Math.pow(10, expsign * exponent);
-
-                    if (startIndex == this._currentIndex) return undefined;
-
-                    this._skipOptionalSpacesOrDelimiter();
-
-                    return number;
-                };
-
-                Source.prototype._parseArcFlag = function () {
-                    if (this._currentIndex >= this._endIndex) return undefined;
-                    var flag = false;
-                    var flagChar = this._string.charAt(this._currentIndex++);
-                    if (flagChar == "0") flag = false;else if (flagChar == "1") flag = true;else return undefined;
-
-                    this._skipOptionalSpacesOrDelimiter();
-                    return flag;
-                };
-
-                Source.prototype.parseSegment = function () {
-                    var lookahead = this._string[this._currentIndex];
-                    var command = this._pathSegTypeFromChar(lookahead);
-                    if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) {
-                        // Possibly an implicit command. Not allowed if this is the first command.
-                        if (this._previousCommand == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
-                        command = this._nextCommandHelper(lookahead, this._previousCommand);
-                        if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
-                    } else {
-                        this._currentIndex++;
-                    }
-
-                    this._previousCommand = command;
-
-                    switch (command) {
-                        case window.SVGPathSeg.PATHSEG_MOVETO_REL:
-                            return new window.SVGPathSegMovetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_MOVETO_ABS:
-                            return new window.SVGPathSegMovetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_REL:
-                            return new window.SVGPathSegLinetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_ABS:
-                            return new window.SVGPathSegLinetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:
-                            return new window.SVGPathSegLinetoHorizontalRel(owningPathSegList, this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:
-                            return new window.SVGPathSegLinetoHorizontalAbs(owningPathSegList, this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
-                            return new window.SVGPathSegLinetoVerticalRel(owningPathSegList, this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
-                            return new window.SVGPathSegLinetoVerticalAbs(owningPathSegList, this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_CLOSEPATH:
-                            this._skipOptionalSpaces();
-                            return new window.SVGPathSegClosePath(owningPathSegList);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                x2: this._parseNumber(),
-                                y2: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoCubicRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                x2: this._parseNumber(),
-                                y2: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoCubicAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:
-                            var points = {
-                                x2: this._parseNumber(),
-                                y2: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoCubicSmoothRel(owningPathSegList, points.x, points.y, points.x2, points.y2);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:
-                            var points = {
-                                x2: this._parseNumber(),
-                                y2: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoCubicSmoothAbs(owningPathSegList, points.x, points.y, points.x2, points.y2);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoQuadraticRel(owningPathSegList, points.x, points.y, points.x1, points.y1);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegCurvetoQuadraticAbs(owningPathSegList, points.x, points.y, points.x1, points.y1);
-                        case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL:
-                            return new window.SVGPathSegCurvetoQuadraticSmoothRel(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS:
-                            return new window.SVGPathSegCurvetoQuadraticSmoothAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
-                        case window.SVGPathSeg.PATHSEG_ARC_REL:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                arcAngle: this._parseNumber(),
-                                arcLarge: this._parseArcFlag(),
-                                arcSweep: this._parseArcFlag(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegArcRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
-                        case window.SVGPathSeg.PATHSEG_ARC_ABS:
-                            var points = {
-                                x1: this._parseNumber(),
-                                y1: this._parseNumber(),
-                                arcAngle: this._parseNumber(),
-                                arcLarge: this._parseArcFlag(),
-                                arcSweep: this._parseArcFlag(),
-                                x: this._parseNumber(),
-                                y: this._parseNumber()
-                            };
-                            return new window.SVGPathSegArcAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
-                        default:
-                            throw "Unknown path seg type.";
-                    }
-                };
-
-                var builder = new Builder();
-                var source = new Source(string);
-
-                if (!source.initialCommandIsMoveTo()) return [];
-                while (source.hasMoreData()) {
-                    var pathSeg = source.parseSegment();
-                    if (!pathSeg) return [];
-                    builder.appendSegment(pathSeg);
-                }
-
-                return builder.pathSegList;
-            };
-        }
-    })();
-
-    // String.padEnd polyfill for IE11
-    //
-    // https://github.com/uxitten/polyfill/blob/master/string.polyfill.js
-    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd
-    if (!String.prototype.padEnd) {
-        String.prototype.padEnd = function padEnd(targetLength, padString) {
-            targetLength = targetLength >> 0; //floor if number or convert non-number to 0;
-            padString = String(typeof padString !== 'undefined' ? padString : ' ');
-            if (this.length > targetLength) {
-                return String(this);
-            } else {
-                targetLength = targetLength - this.length;
-                if (targetLength > padString.length) {
-                    padString += padString.repeat(targetLength / padString.length); //append to original to ensure we are longer than needed
-                }
-                return String(this) + padString.slice(0, targetLength);
-            }
-        };
+  ChartInternal.prototype.smoothLines = function (el, type) {
+    var $$ = this;
+
+    if (type === 'grid') {
+      el.each(function () {
+        var g = $$.d3.select(this),
+            x1 = g.attr('x1'),
+            x2 = g.attr('x2'),
+            y1 = g.attr('y1'),
+            y2 = g.attr('y2');
+        g.attr({
+          'x1': Math.ceil(x1),
+          'x2': Math.ceil(x2),
+          'y1': Math.ceil(y1),
+          'y2': Math.ceil(y2)
+        });
+      });
+    }
+  };
+
+  ChartInternal.prototype.updateSizes = function () {
+    var $$ = this,
+        config = $$.config;
+    var legendHeight = $$.legend ? $$.getLegendHeight() : 0,
+        legendWidth = $$.legend ? $$.getLegendWidth() : 0,
+        legendHeightForBottom = $$.isLegendRight || $$.isLegendInset ? 0 : legendHeight,
+        hasArc = $$.hasArcType(),
+        xAxisHeight = config.axis_rotated || hasArc ? 0 : $$.getHorizontalAxisHeight('x'),
+        subchartHeight = config.subchart_show && !hasArc ? config.subchart_size_height + xAxisHeight : 0;
+    $$.currentWidth = $$.getCurrentWidth();
+    $$.currentHeight = $$.getCurrentHeight(); // for main
+
+    $$.margin = config.axis_rotated ? {
+      top: $$.getHorizontalAxisHeight('y2') + $$.getCurrentPaddingTop(),
+      right: hasArc ? 0 : $$.getCurrentPaddingRight(),
+      bottom: $$.getHorizontalAxisHeight('y') + legendHeightForBottom + $$.getCurrentPaddingBottom(),
+      left: subchartHeight + (hasArc ? 0 : $$.getCurrentPaddingLeft())
+    } : {
+      top: 4 + $$.getCurrentPaddingTop(),
+      // for top tick text
+      right: hasArc ? 0 : $$.getCurrentPaddingRight(),
+      bottom: xAxisHeight + subchartHeight + legendHeightForBottom + $$.getCurrentPaddingBottom(),
+      left: hasArc ? 0 : $$.getCurrentPaddingLeft()
+    }; // for subchart
+
+    $$.margin2 = config.axis_rotated ? {
+      top: $$.margin.top,
+      right: NaN,
+      bottom: 20 + legendHeightForBottom,
+      left: $$.rotated_padding_left
+    } : {
+      top: $$.currentHeight - subchartHeight - legendHeightForBottom,
+      right: NaN,
+      bottom: xAxisHeight + legendHeightForBottom,
+      left: $$.margin.left
+    }; // for legend
+
+    $$.margin3 = {
+      top: 0,
+      right: NaN,
+      bottom: 0,
+      left: 0
+    };
+
+    if ($$.updateSizeForLegend) {
+      $$.updateSizeForLegend(legendHeight, legendWidth);
     }
 
     }
 
-    /* jshint ignore:end */
+    $$.width = $$.currentWidth - $$.margin.left - $$.margin.right;
+    $$.height = $$.currentHeight - $$.margin.top - $$.margin.bottom;
 
 
-    Chart.prototype.axis = function () {};
-    Chart.prototype.axis.labels = function (labels) {
-        var $$ = this.internal;
-        if (arguments.length) {
-            Object.keys(labels).forEach(function (axisId) {
-                $$.axis.setLabelText(axisId, labels[axisId]);
-            });
-            $$.axis.updateLabels();
-        }
-        // TODO: return some values?
-    };
-    Chart.prototype.axis.max = function (max) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (arguments.length) {
-            if ((typeof max === 'undefined' ? 'undefined' : _typeof(max)) === 'object') {
-                if (isValue(max.x)) {
-                    config.axis_x_max = max.x;
-                }
-                if (isValue(max.y)) {
-                    config.axis_y_max = max.y;
-                }
-                if (isValue(max.y2)) {
-                    config.axis_y2_max = max.y2;
-                }
-            } else {
-                config.axis_y_max = config.axis_y2_max = max;
-            }
-            $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true });
-        } else {
-            return {
-                x: config.axis_x_max,
-                y: config.axis_y_max,
-                y2: config.axis_y2_max
-            };
-        }
-    };
-    Chart.prototype.axis.min = function (min) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (arguments.length) {
-            if ((typeof min === 'undefined' ? 'undefined' : _typeof(min)) === 'object') {
-                if (isValue(min.x)) {
-                    config.axis_x_min = min.x;
-                }
-                if (isValue(min.y)) {
-                    config.axis_y_min = min.y;
-                }
-                if (isValue(min.y2)) {
-                    config.axis_y2_min = min.y2;
-                }
-            } else {
-                config.axis_y_min = config.axis_y2_min = min;
-            }
-            $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true });
-        } else {
-            return {
-                x: config.axis_x_min,
-                y: config.axis_y_min,
-                y2: config.axis_y2_min
-            };
-        }
-    };
-    Chart.prototype.axis.range = function (range) {
-        if (arguments.length) {
-            if (isDefined(range.max)) {
-                this.axis.max(range.max);
-            }
-            if (isDefined(range.min)) {
-                this.axis.min(range.min);
-            }
-        } else {
-            return {
-                max: this.axis.max(),
-                min: this.axis.min()
-            };
-        }
-    };
-
-    Chart.prototype.category = function (i, category) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (arguments.length > 1) {
-            config.axis_x_categories[i] = category;
-            $$.redraw();
-        }
-        return config.axis_x_categories[i];
-    };
-    Chart.prototype.categories = function (categories) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (!arguments.length) {
-            return config.axis_x_categories;
-        }
-        config.axis_x_categories = categories;
-        $$.redraw();
-        return config.axis_x_categories;
-    };
+    if ($$.width < 0) {
+      $$.width = 0;
+    }
 
 
-    Chart.prototype.resize = function (size) {
-        var $$ = this.internal,
-            config = $$.config;
-        config.size_width = size ? size.width : null;
-        config.size_height = size ? size.height : null;
-        this.flush();
-    };
+    if ($$.height < 0) {
+      $$.height = 0;
+    }
 
 
-    Chart.prototype.flush = function () {
-        var $$ = this.internal;
-        $$.updateAndRedraw({ withLegend: true, withTransition: false, withTransitionForTransform: false });
-    };
+    $$.width2 = config.axis_rotated ? $$.margin.left - $$.rotated_padding_left - $$.rotated_padding_right : $$.width;
+    $$.height2 = config.axis_rotated ? $$.height : $$.currentHeight - $$.margin2.top - $$.margin2.bottom;
 
 
-    Chart.prototype.destroy = function () {
-        var $$ = this.internal;
+    if ($$.width2 < 0) {
+      $$.width2 = 0;
+    }
 
 
-        window.clearInterval($$.intervalForObserveInserted);
+    if ($$.height2 < 0) {
+      $$.height2 = 0;
+    } // for arc
 
 
-        if ($$.resizeTimeout !== undefined) {
-            window.clearTimeout($$.resizeTimeout);
-        }
 
 
-        if (window.detachEvent) {
-            window.detachEvent('onresize', $$.resizeIfElementDisplayed);
-        } else if (window.removeEventListener) {
-            window.removeEventListener('resize', $$.resizeIfElementDisplayed);
-        } else {
-            var wrapper = window.onresize;
-            // check if no one else removed our wrapper and remove our resizeFunction from it
-            if (wrapper && wrapper.add && wrapper.remove) {
-                wrapper.remove($$.resizeFunction);
-            }
-        }
+    $$.arcWidth = $$.width - ($$.isLegendRight ? legendWidth + 10 : 0);
+    $$.arcHeight = $$.height - ($$.isLegendRight ? 0 : 10);
 
 
-        // remove the inner resize functions
-        $$.resizeFunction.remove();
+    if ($$.hasType('gauge') && !config.gauge_fullCircle) {
+      $$.arcHeight += $$.height - $$.getGaugeLabelHeight();
+    }
 
 
-        $$.selectChart.classed('c3', false).html("");
+    if ($$.updateRadius) {
+      $$.updateRadius();
+    }
 
 
-        // MEMO: this is needed because the reference of some elements will not be released, then memory leak will happen.
-        Object.keys($$).forEach(function (key) {
-            $$[key] = null;
-        });
+    if ($$.isLegendRight && hasArc) {
+      $$.margin3.left = $$.arcWidth / 2 + $$.radiusExpanded * 1.1;
+    }
+  };
 
 
-        return null;
-    };
+  ChartInternal.prototype.updateTargets = function (targets) {
+    var $$ = this;
+    /*-- Main --*/
+    //-- Text --//
 
 
-    // TODO: fix
-    Chart.prototype.color = function (id) {
-        var $$ = this.internal;
-        return $$.color(id); // more patterns
-    };
+    $$.updateTargetsForText(targets); //-- Bar --//
 
 
-    Chart.prototype.data = function (targetIds) {
-        var targets = this.internal.data.targets;
-        return typeof targetIds === 'undefined' ? targets : targets.filter(function (t) {
-            return [].concat(targetIds).indexOf(t.id) >= 0;
-        });
-    };
-    Chart.prototype.data.shown = function (targetIds) {
-        return this.internal.filterTargetsToShow(this.data(targetIds));
-    };
-    Chart.prototype.data.values = function (targetId) {
-        var targets,
-            values = null;
-        if (targetId) {
-            targets = this.data(targetId);
-            values = targets[0] ? targets[0].values.map(function (d) {
-                return d.value;
-            }) : null;
-        }
-        return values;
-    };
-    Chart.prototype.data.names = function (names) {
-        this.internal.clearLegendItemTextBoxCache();
-        return this.internal.updateDataAttributes('names', names);
-    };
-    Chart.prototype.data.colors = function (colors) {
-        return this.internal.updateDataAttributes('colors', colors);
-    };
-    Chart.prototype.data.axes = function (axes) {
-        return this.internal.updateDataAttributes('axes', axes);
-    };
+    $$.updateTargetsForBar(targets); //-- Line --//
 
 
-    Chart.prototype.flow = function (args) {
-        var $$ = this.internal,
-            targets,
-            data,
-            notfoundIds = [],
-            orgDataCount = $$.getMaxDataCount(),
-            dataCount,
-            domain,
-            baseTarget,
-            baseValue,
-            length = 0,
-            tail = 0,
-            diff,
-            to;
-
-        if (args.json) {
-            data = $$.convertJsonToData(args.json, args.keys);
-        } else if (args.rows) {
-            data = $$.convertRowsToData(args.rows);
-        } else if (args.columns) {
-            data = $$.convertColumnsToData(args.columns);
-        } else {
-            return;
-        }
-        targets = $$.convertDataToTargets(data, true);
-
-        // Update/Add data
-        $$.data.targets.forEach(function (t) {
-            var found = false,
-                i,
-                j;
-            for (i = 0; i < targets.length; i++) {
-                if (t.id === targets[i].id) {
-                    found = true;
-
-                    if (t.values[t.values.length - 1]) {
-                        tail = t.values[t.values.length - 1].index + 1;
-                    }
-                    length = targets[i].values.length;
-
-                    for (j = 0; j < length; j++) {
-                        targets[i].values[j].index = tail + j;
-                        if (!$$.isTimeSeries()) {
-                            targets[i].values[j].x = tail + j;
-                        }
-                    }
-                    t.values = t.values.concat(targets[i].values);
-
-                    targets.splice(i, 1);
-                    break;
-                }
-            }
-            if (!found) {
-                notfoundIds.push(t.id);
-            }
-        });
+    $$.updateTargetsForLine(targets); //-- Arc --//
 
 
-        // Append null for not found targets
-        $$.data.targets.forEach(function (t) {
-            var i, j;
-            for (i = 0; i < notfoundIds.length; i++) {
-                if (t.id === notfoundIds[i]) {
-                    tail = t.values[t.values.length - 1].index + 1;
-                    for (j = 0; j < length; j++) {
-                        t.values.push({
-                            id: t.id,
-                            index: tail + j,
-                            x: $$.isTimeSeries() ? $$.getOtherTargetX(tail + j) : tail + j,
-                            value: null
-                        });
-                    }
-                }
-            }
-        });
+    if ($$.hasArcType() && $$.updateTargetsForArc) {
+      $$.updateTargetsForArc(targets);
+    }
+    /*-- Sub --*/
+
+
+    if ($$.updateTargetsForSubchart) {
+      $$.updateTargetsForSubchart(targets);
+    } // Fade-in each chart
+
+
+    $$.showTargets();
+  };
+
+  ChartInternal.prototype.showTargets = function () {
+    var $$ = this;
+    $$.svg.selectAll('.' + CLASS.target).filter(function (d) {
+      return $$.isTargetToShow(d.id);
+    }).transition().duration($$.config.transition_duration).style("opacity", 1);
+  };
+
+  ChartInternal.prototype.redraw = function (options, transitions) {
+    var $$ = this,
+        main = $$.main,
+        d3 = $$.d3,
+        config = $$.config;
+    var areaIndices = $$.getShapeIndices($$.isAreaType),
+        barIndices = $$.getShapeIndices($$.isBarType),
+        lineIndices = $$.getShapeIndices($$.isLineType);
+    var withY, withSubchart, withTransition, withTransitionForExit, withTransitionForAxis, withTransform, withUpdateXDomain, withUpdateOrgXDomain, withTrimXDomain, withLegend, withEventRect, withDimension, withUpdateXAxis;
+    var hideAxis = $$.hasArcType();
+    var drawArea, drawBar, drawLine, xForText, yForText;
+    var duration, durationForExit, durationForAxis;
+    var transitionsToWait, waitForDraw, flow, transition;
+    var targetsToShow = $$.filterTargetsToShow($$.data.targets),
+        tickValues,
+        i,
+        intervalForCulling,
+        xDomainForZoom;
+    var xv = $$.xv.bind($$),
+        cx,
+        cy;
+    options = options || {};
+    withY = getOption(options, "withY", true);
+    withSubchart = getOption(options, "withSubchart", true);
+    withTransition = getOption(options, "withTransition", true);
+    withTransform = getOption(options, "withTransform", false);
+    withUpdateXDomain = getOption(options, "withUpdateXDomain", false);
+    withUpdateOrgXDomain = getOption(options, "withUpdateOrgXDomain", false);
+    withTrimXDomain = getOption(options, "withTrimXDomain", true);
+    withUpdateXAxis = getOption(options, "withUpdateXAxis", withUpdateXDomain);
+    withLegend = getOption(options, "withLegend", false);
+    withEventRect = getOption(options, "withEventRect", true);
+    withDimension = getOption(options, "withDimension", true);
+    withTransitionForExit = getOption(options, "withTransitionForExit", withTransition);
+    withTransitionForAxis = getOption(options, "withTransitionForAxis", withTransition);
+    duration = withTransition ? config.transition_duration : 0;
+    durationForExit = withTransitionForExit ? duration : 0;
+    durationForAxis = withTransitionForAxis ? duration : 0;
+    transitions = transitions || $$.axis.generateTransitions(durationForAxis); // update legend and transform each g
+
+    if (withLegend && config.legend_show) {
+      $$.updateLegend($$.mapToIds($$.data.targets), options, transitions);
+    } else if (withDimension) {
+      // need to update dimension (e.g. axis.y.tick.values) because y tick values should change
+      // no need to update axis in it because they will be updated in redraw()
+      $$.updateDimension(true);
+    } // MEMO: needed for grids calculation
+
+
+    if ($$.isCategorized() && targetsToShow.length === 0) {
+      $$.x.domain([0, $$.axes.x.selectAll('.tick').size()]);
+    }
 
 
-        // Generate null values for new target
-        if ($$.data.targets.length) {
-            targets.forEach(function (t) {
-                var i,
-                    missing = [];
-                for (i = $$.data.targets[0].values[0].index; i < tail; i++) {
-                    missing.push({
-                        id: t.id,
-                        index: i,
-                        x: $$.isTimeSeries() ? $$.getOtherTargetX(i) : i,
-                        value: null
-                    });
-                }
-                t.values.forEach(function (v) {
-                    v.index += tail;
-                    if (!$$.isTimeSeries()) {
-                        v.x += tail;
-                    }
-                });
-                t.values = missing.concat(t.values);
-            });
-        }
-        $$.data.targets = $$.data.targets.concat(targets); // add remained
-
-        // check data count because behavior needs to change when it's only one
-        dataCount = $$.getMaxDataCount();
-        baseTarget = $$.data.targets[0];
-        baseValue = baseTarget.values[0];
-
-        // Update length to flow if needed
-        if (isDefined(args.to)) {
-            length = 0;
-            to = $$.isTimeSeries() ? $$.parseDate(args.to) : args.to;
-            baseTarget.values.forEach(function (v) {
-                if (v.x < to) {
-                    length++;
-                }
-            });
-        } else if (isDefined(args.length)) {
-            length = args.length;
-        }
+    if (targetsToShow.length) {
+      $$.updateXDomain(targetsToShow, withUpdateXDomain, withUpdateOrgXDomain, withTrimXDomain);
 
 
-        // If only one data, update the domain to flow from left edge of the chart
-        if (!orgDataCount) {
-            if ($$.isTimeSeries()) {
-                if (baseTarget.values.length > 1) {
-                    diff = baseTarget.values[baseTarget.values.length - 1].x - baseValue.x;
-                } else {
-                    diff = baseValue.x - $$.getXDomain($$.data.targets)[0];
-                }
-            } else {
-                diff = 1;
-            }
-            domain = [baseValue.x - diff, baseValue.x];
-            $$.updateXDomain(null, true, true, false, domain);
-        } else if (orgDataCount === 1) {
-            if ($$.isTimeSeries()) {
-                diff = (baseTarget.values[baseTarget.values.length - 1].x - baseValue.x) / 2;
-                domain = [new Date(+baseValue.x - diff), new Date(+baseValue.x + diff)];
-                $$.updateXDomain(null, true, true, false, domain);
-            }
-        }
+      if (!config.axis_x_tick_values) {
+        tickValues = $$.axis.updateXAxisTickValues(targetsToShow);
+      }
+    } else {
+      $$.xAxis.tickValues([]);
+      $$.subXAxis.tickValues([]);
+    }
 
 
-        // Set targets
-        $$.updateTargets($$.data.targets);
+    if (config.zoom_rescale && !options.flow) {
+      xDomainForZoom = $$.x.orgDomain();
+    }
 
 
-        // Redraw with new targets
-        $$.redraw({
-            flow: {
-                index: baseValue.index,
-                length: length,
-                duration: isValue(args.duration) ? args.duration : $$.config.transition_duration,
-                done: args.done,
-                orgDataCount: orgDataCount
-            },
-            withLegend: true,
-            withTransition: orgDataCount > 1,
-            withTrimXDomain: false,
-            withUpdateXAxis: true
-        });
-    };
+    $$.y.domain($$.getYDomain(targetsToShow, 'y', xDomainForZoom));
+    $$.y2.domain($$.getYDomain(targetsToShow, 'y2', xDomainForZoom));
 
 
-    ChartInternal.prototype.generateFlow = function (args) {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3;
+    if (!config.axis_y_tick_values && config.axis_y_tick_count) {
+      $$.yAxis.tickValues($$.axis.generateTickValues($$.y.domain(), config.axis_y_tick_count));
+    }
 
 
-        return function () {
-            var targets = args.targets,
-                flow = args.flow,
-                drawBar = args.drawBar,
-                drawLine = args.drawLine,
-                drawArea = args.drawArea,
-                cx = args.cx,
-                cy = args.cy,
-                xv = args.xv,
-                xForText = args.xForText,
-                yForText = args.yForText,
-                duration = args.duration;
-
-            var translateX,
-                scaleX = 1,
-                transform,
-                flowIndex = flow.index,
-                flowLength = flow.length,
-                flowStart = $$.getValueOnIndex($$.data.targets[0].values, flowIndex),
-                flowEnd = $$.getValueOnIndex($$.data.targets[0].values, flowIndex + flowLength),
-                orgDomain = $$.x.domain(),
-                domain,
-                durationForFlow = flow.duration || duration,
-                done = flow.done || function () {},
-                wait = $$.generateWait();
-
-            var xgrid, xgridLines, mainRegion, mainText, mainBar, mainLine, mainArea, mainCircle;
-
-            // set flag
-            $$.flowing = true;
-
-            // remove head data after rendered
-            $$.data.targets.forEach(function (d) {
-                d.values.splice(0, flowLength);
-            });
+    if (!config.axis_y2_tick_values && config.axis_y2_tick_count) {
+      $$.y2Axis.tickValues($$.axis.generateTickValues($$.y2.domain(), config.axis_y2_tick_count));
+    } // axes
 
 
-            // update x domain to generate axis elements for flow
-            domain = $$.updateXDomain(targets, true, true);
-            // update elements related to x scale
-            if ($$.updateXGrid) {
-                $$.updateXGrid(true);
-            }
 
 
-            xgrid = $$.xgrid || d3.selectAll([]); // xgrid needs to be obtained after updateXGrid
-            xgridLines = $$.xgridLines || d3.selectAll([]);
-            mainRegion = $$.mainRegion || d3.selectAll([]);
-            mainText = $$.mainText || d3.selectAll([]);
-            mainBar = $$.mainBar || d3.selectAll([]);
-            mainLine = $$.mainLine || d3.selectAll([]);
-            mainArea = $$.mainArea || d3.selectAll([]);
-            mainCircle = $$.mainCircle || d3.selectAll([]);
-
-            // generate transform to flow
-            if (!flow.orgDataCount) {
-                // if empty
-                if ($$.data.targets[0].values.length !== 1) {
-                    translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
-                } else {
-                    if ($$.isTimeSeries()) {
-                        flowStart = $$.getValueOnIndex($$.data.targets[0].values, 0);
-                        flowEnd = $$.getValueOnIndex($$.data.targets[0].values, $$.data.targets[0].values.length - 1);
-                        translateX = $$.x(flowStart.x) - $$.x(flowEnd.x);
-                    } else {
-                        translateX = diffDomain(domain) / 2;
-                    }
-                }
-            } else if (flow.orgDataCount === 1 || (flowStart && flowStart.x) === (flowEnd && flowEnd.x)) {
-                translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
-            } else {
-                if ($$.isTimeSeries()) {
-                    translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
-                } else {
-                    translateX = $$.x(flowStart.x) - $$.x(flowEnd.x);
-                }
-            }
-            scaleX = diffDomain(orgDomain) / diffDomain(domain);
-            transform = 'translate(' + translateX + ',0) scale(' + scaleX + ',1)';
-
-            $$.hideXGridFocus();
-
-            var flowTransition = d3.transition().ease(d3.easeLinear).duration(durationForFlow);
-            wait.add($$.xAxis($$.axes.x, flowTransition));
-            wait.add(mainBar.transition(flowTransition).attr('transform', transform));
-            wait.add(mainLine.transition(flowTransition).attr('transform', transform));
-            wait.add(mainArea.transition(flowTransition).attr('transform', transform));
-            wait.add(mainCircle.transition(flowTransition).attr('transform', transform));
-            wait.add(mainText.transition(flowTransition).attr('transform', transform));
-            wait.add(mainRegion.filter($$.isRegionOnX).transition(flowTransition).attr('transform', transform));
-            wait.add(xgrid.transition(flowTransition).attr('transform', transform));
-            wait.add(xgridLines.transition(flowTransition).attr('transform', transform));
-            wait(function () {
-                var i,
-                    shapes = [],
-                    texts = [];
-
-                // remove flowed elements
-                if (flowLength) {
-                    for (i = 0; i < flowLength; i++) {
-                        shapes.push('.' + CLASS.shape + '-' + (flowIndex + i));
-                        texts.push('.' + CLASS.text + '-' + (flowIndex + i));
-                    }
-                    $$.svg.selectAll('.' + CLASS.shapes).selectAll(shapes).remove();
-                    $$.svg.selectAll('.' + CLASS.texts).selectAll(texts).remove();
-                    $$.svg.select('.' + CLASS.xgrid).remove();
-                }
-
-                // draw again for removing flowed elements and reverting attr
-                xgrid.attr('transform', null).attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", $$.xgridAttr.opacity);
-                xgridLines.attr('transform', null);
-                xgridLines.select('line').attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv);
-                xgridLines.select('text').attr("x", config.axis_rotated ? $$.width : 0).attr("y", xv);
-                mainBar.attr('transform', null).attr("d", drawBar);
-                mainLine.attr('transform', null).attr("d", drawLine);
-                mainArea.attr('transform', null).attr("d", drawArea);
-                mainCircle.attr('transform', null).attr("cx", cx).attr("cy", cy);
-                mainText.attr('transform', null).attr('x', xForText).attr('y', yForText).style('fill-opacity', $$.opacityForText.bind($$));
-                mainRegion.attr('transform', null);
-                mainRegion.filter($$.isRegionOnX).attr("x", $$.regionX.bind($$)).attr("width", $$.regionWidth.bind($$));
-
-                // callback for end of flow
-                done();
-
-                $$.flowing = false;
-            });
-        };
-    };
+    $$.axis.redraw(durationForAxis, hideAxis); // Update axis label
 
 
-    Chart.prototype.focus = function (targetIds) {
-        var $$ = this.internal,
-            candidates;
+    $$.axis.updateLabels(withTransition); // show/hide if manual culling needed
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
-        candidates = $$.svg.selectAll($$.selectorTargets(targetIds.filter($$.isTargetToShow, $$))), this.revert();
-        this.defocus();
-        candidates.classed(CLASS.focused, true).classed(CLASS.defocused, false);
-        if ($$.hasArcType()) {
-            $$.expandArc(targetIds);
+    if ((withUpdateXDomain || withUpdateXAxis) && targetsToShow.length) {
+      if (config.axis_x_tick_culling && tickValues) {
+        for (i = 1; i < tickValues.length; i++) {
+          if (tickValues.length / i < config.axis_x_tick_culling_max) {
+            intervalForCulling = i;
+            break;
+          }
         }
         }
-        $$.toggleFocusLegend(targetIds, true);
 
 
-        $$.focusedTargetIds = targetIds;
-        $$.defocusedTargetIds = $$.defocusedTargetIds.filter(function (id) {
-            return targetIds.indexOf(id) < 0;
+        $$.svg.selectAll('.' + CLASS.axisX + ' .tick text').each(function (e) {
+          var index = tickValues.indexOf(e);
+
+          if (index >= 0) {
+            d3.select(this).style('display', index % intervalForCulling ? 'none' : 'block');
+          }
         });
         });
-    };
+      } else {
+        $$.svg.selectAll('.' + CLASS.axisX + ' .tick text').style('display', 'block');
+      }
+    } // setup drawer - MEMO: these must be called after axis updated
 
 
-    Chart.prototype.defocus = function (targetIds) {
-        var $$ = this.internal,
-            candidates;
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
-        candidates = $$.svg.selectAll($$.selectorTargets(targetIds.filter($$.isTargetToShow, $$))), candidates.classed(CLASS.focused, false).classed(CLASS.defocused, true);
-        if ($$.hasArcType()) {
-            $$.unexpandArc(targetIds);
-        }
-        $$.toggleFocusLegend(targetIds, false);
+    drawArea = $$.generateDrawArea ? $$.generateDrawArea(areaIndices, false) : undefined;
+    drawBar = $$.generateDrawBar ? $$.generateDrawBar(barIndices) : undefined;
+    drawLine = $$.generateDrawLine ? $$.generateDrawLine(lineIndices, false) : undefined;
+    xForText = $$.generateXYForText(areaIndices, barIndices, lineIndices, true);
+    yForText = $$.generateXYForText(areaIndices, barIndices, lineIndices, false); // update circleY based on updated parameters
 
 
-        $$.focusedTargetIds = $$.focusedTargetIds.filter(function (id) {
-            return targetIds.indexOf(id) < 0;
-        });
-        $$.defocusedTargetIds = targetIds;
-    };
+    $$.updateCircleY(); // generate circle x/y functions depending on updated params
 
 
-    Chart.prototype.revert = function (targetIds) {
-        var $$ = this.internal,
-            candidates;
+    cx = ($$.config.axis_rotated ? $$.circleY : $$.circleX).bind($$);
+    cy = ($$.config.axis_rotated ? $$.circleX : $$.circleY).bind($$); // Update sub domain
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
-        candidates = $$.svg.selectAll($$.selectorTargets(targetIds)); // should be for all targets
+    if (withY) {
+      $$.subY.domain($$.getYDomain(targetsToShow, 'y'));
+      $$.subY2.domain($$.getYDomain(targetsToShow, 'y2'));
+    } // xgrid focus
 
 
-        candidates.classed(CLASS.focused, false).classed(CLASS.defocused, false);
-        if ($$.hasArcType()) {
-            $$.unexpandArc(targetIds);
-        }
-        if ($$.config.legend_show) {
-            $$.showLegend(targetIds.filter($$.isLegendToShow.bind($$)));
-            $$.legend.selectAll($$.selectorLegends(targetIds)).filter(function () {
-                return $$.d3.select(this).classed(CLASS.legendItemFocused);
-            }).classed(CLASS.legendItemFocused, false);
-        }
 
 
-        $$.focusedTargetIds = [];
-        $$.defocusedTargetIds = [];
-    };
+    $$.updateXgridFocus(); // Data empty label positioning and text.
 
 
-    Chart.prototype.xgrids = function (grids) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (!grids) {
-            return config.grid_x_lines;
-        }
-        config.grid_x_lines = grids;
-        $$.redrawWithoutRescale();
-        return config.grid_x_lines;
-    };
-    Chart.prototype.xgrids.add = function (grids) {
-        var $$ = this.internal;
-        return this.xgrids($$.config.grid_x_lines.concat(grids ? grids : []));
-    };
-    Chart.prototype.xgrids.remove = function (params) {
-        // TODO: multiple
-        var $$ = this.internal;
-        $$.removeGridLines(params, true);
-    };
+    main.select("text." + CLASS.text + '.' + CLASS.empty).attr("x", $$.width / 2).attr("y", $$.height / 2).text(config.data_empty_label_text).transition().style('opacity', targetsToShow.length ? 0 : 1); // event rect
 
 
-    Chart.prototype.ygrids = function (grids) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (!grids) {
-            return config.grid_y_lines;
-        }
-        config.grid_y_lines = grids;
-        $$.redrawWithoutRescale();
-        return config.grid_y_lines;
-    };
-    Chart.prototype.ygrids.add = function (grids) {
-        var $$ = this.internal;
-        return this.ygrids($$.config.grid_y_lines.concat(grids ? grids : []));
-    };
-    Chart.prototype.ygrids.remove = function (params) {
-        // TODO: multiple
-        var $$ = this.internal;
-        $$.removeGridLines(params, false);
-    };
+    if (withEventRect) {
+      $$.redrawEventRect();
+    } // grid
 
 
-    Chart.prototype.groups = function (groups) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (isUndefined(groups)) {
-            return config.data_groups;
-        }
-        config.data_groups = groups;
-        $$.redraw();
-        return config.data_groups;
-    };
 
 
-    Chart.prototype.legend = function () {};
-    Chart.prototype.legend.show = function (targetIds) {
-        var $$ = this.internal;
-        $$.showLegend($$.mapToTargetIds(targetIds));
-        $$.updateAndRedraw({ withLegend: true });
-    };
-    Chart.prototype.legend.hide = function (targetIds) {
-        var $$ = this.internal;
-        $$.hideLegend($$.mapToTargetIds(targetIds));
-        $$.updateAndRedraw({ withLegend: false });
-    };
+    $$.updateGrid(duration); // rect for regions
 
 
-    Chart.prototype.load = function (args) {
-        var $$ = this.internal,
-            config = $$.config;
-        // update xs if specified
-        if (args.xs) {
-            $$.addXs(args.xs);
-        }
-        // update names if exists
-        if ('names' in args) {
-            Chart.prototype.data.names.bind(this)(args.names);
-        }
-        // update classes if exists
-        if ('classes' in args) {
-            Object.keys(args.classes).forEach(function (id) {
-                config.data_classes[id] = args.classes[id];
-            });
-        }
-        // update categories if exists
-        if ('categories' in args && $$.isCategorized()) {
-            config.axis_x_categories = args.categories;
-        }
-        // update axes if exists
-        if ('axes' in args) {
-            Object.keys(args.axes).forEach(function (id) {
-                config.data_axes[id] = args.axes[id];
-            });
-        }
-        // update colors if exists
-        if ('colors' in args) {
-            Object.keys(args.colors).forEach(function (id) {
-                config.data_colors[id] = args.colors[id];
-            });
-        }
-        // use cache if exists
-        if ('cacheIds' in args && $$.hasCaches(args.cacheIds)) {
-            $$.load($$.getCaches(args.cacheIds), args.done);
-            return;
-        }
-        // unload if needed
-        if ('unload' in args) {
-            // TODO: do not unload if target will load (included in url/rows/columns)
-            $$.unload($$.mapToTargetIds(typeof args.unload === 'boolean' && args.unload ? null : args.unload), function () {
-                $$.loadFromArgs(args);
-            });
-        } else {
-            $$.loadFromArgs(args);
-        }
-    };
+    $$.updateRegion(duration); // bars
 
 
-    Chart.prototype.unload = function (args) {
-        var $$ = this.internal;
-        args = args || {};
-        if (args instanceof Array) {
-            args = { ids: args };
-        } else if (typeof args === 'string') {
-            args = { ids: [args] };
-        }
-        $$.unload($$.mapToTargetIds(args.ids), function () {
-            $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true });
-            if (args.done) {
-                args.done();
-            }
-        });
-    };
+    $$.updateBar(durationForExit); // lines, areas and cricles
 
 
-    Chart.prototype.regions = function (regions) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (!regions) {
-            return config.regions;
-        }
-        config.regions = regions;
-        $$.redrawWithoutRescale();
-        return config.regions;
-    };
-    Chart.prototype.regions.add = function (regions) {
-        var $$ = this.internal,
-            config = $$.config;
-        if (!regions) {
-            return config.regions;
-        }
-        config.regions = config.regions.concat(regions);
-        $$.redrawWithoutRescale();
-        return config.regions;
-    };
-    Chart.prototype.regions.remove = function (options) {
-        var $$ = this.internal,
-            config = $$.config,
-            duration,
-            classes,
-            regions;
-
-        options = options || {};
-        duration = $$.getOption(options, "duration", config.transition_duration);
-        classes = $$.getOption(options, "classes", [CLASS.region]);
-
-        regions = $$.main.select('.' + CLASS.regions).selectAll(classes.map(function (c) {
-            return '.' + c;
-        }));
-        (duration ? regions.transition().duration(duration) : regions).style('opacity', 0).remove();
-
-        config.regions = config.regions.filter(function (region) {
-            var found = false;
-            if (!region['class']) {
-                return true;
-            }
-            region['class'].split(' ').forEach(function (c) {
-                if (classes.indexOf(c) >= 0) {
-                    found = true;
-                }
-            });
-            return !found;
-        });
+    $$.updateLine(durationForExit);
+    $$.updateArea(durationForExit);
+    $$.updateCircle(cx, cy); // text
 
 
-        return config.regions;
-    };
+    if ($$.hasDataLabel()) {
+      $$.updateText(xForText, yForText, durationForExit);
+    } // title
 
 
-    Chart.prototype.selected = function (targetId) {
-        var $$ = this.internal,
-            d3 = $$.d3;
-        return d3.merge($$.main.selectAll('.' + CLASS.shapes + $$.getTargetSelectorSuffix(targetId)).selectAll('.' + CLASS.shape).filter(function () {
-            return d3.select(this).classed(CLASS.SELECTED);
-        }).map(function (d) {
-            return d.map(function (d) {
-                var data = d.__data__;return data.data ? data.data : data;
-            });
-        }));
-    };
-    Chart.prototype.select = function (ids, indices, resetOther) {
-        var $$ = this.internal,
-            d3 = $$.d3,
-            config = $$.config;
-        if (!config.data_selection_enabled) {
-            return;
-        }
-        $$.main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
-            var shape = d3.select(this),
-                id = d.data ? d.data.id : d.id,
-                toggle = $$.getToggle(this, d).bind($$),
-                isTargetId = config.data_selection_grouped || !ids || ids.indexOf(id) >= 0,
-                isTargetIndex = !indices || indices.indexOf(i) >= 0,
-                isSelected = shape.classed(CLASS.SELECTED);
-            // line/area selection not supported yet
-            if (shape.classed(CLASS.line) || shape.classed(CLASS.area)) {
-                return;
-            }
-            if (isTargetId && isTargetIndex) {
-                if (config.data_selection_isselectable(d) && !isSelected) {
-                    toggle(true, shape.classed(CLASS.SELECTED, true), d, i);
-                }
-            } else if (isDefined(resetOther) && resetOther) {
-                if (isSelected) {
-                    toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
-                }
-            }
-        });
-    };
-    Chart.prototype.unselect = function (ids, indices) {
-        var $$ = this.internal,
-            d3 = $$.d3,
-            config = $$.config;
-        if (!config.data_selection_enabled) {
-            return;
-        }
-        $$.main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
-            var shape = d3.select(this),
-                id = d.data ? d.data.id : d.id,
-                toggle = $$.getToggle(this, d).bind($$),
-                isTargetId = config.data_selection_grouped || !ids || ids.indexOf(id) >= 0,
-                isTargetIndex = !indices || indices.indexOf(i) >= 0,
-                isSelected = shape.classed(CLASS.SELECTED);
-            // line/area selection not supported yet
-            if (shape.classed(CLASS.line) || shape.classed(CLASS.area)) {
-                return;
-            }
-            if (isTargetId && isTargetIndex) {
-                if (config.data_selection_isselectable(d)) {
-                    if (isSelected) {
-                        toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
-                    }
-                }
-            }
-        });
-    };
 
 
-    Chart.prototype.show = function (targetIds, options) {
-        var $$ = this.internal,
-            targets;
+    if ($$.redrawTitle) {
+      $$.redrawTitle();
+    } // arc
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
-        options = options || {};
 
 
-        $$.removeHiddenTargetIds(targetIds);
-        targets = $$.svg.selectAll($$.selectorTargets(targetIds));
+    if ($$.redrawArc) {
+      $$.redrawArc(duration, durationForExit, withTransform);
+    } // subchart
 
 
-        targets.transition().style('display', 'initial', 'important').style('opacity', 1, 'important').call($$.endall, function () {
-            targets.style('opacity', null).style('opacity', 1);
-        });
 
 
-        if (options.withLegend) {
-            $$.showLegend(targetIds);
-        }
+    if ($$.redrawSubchart) {
+      $$.redrawSubchart(withSubchart, transitions, duration, durationForExit, areaIndices, barIndices, lineIndices);
+    } // circles for select
 
 
-        $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true });
-    };
 
 
-    Chart.prototype.hide = function (targetIds, options) {
-        var $$ = this.internal,
-            targets;
+    main.selectAll('.' + CLASS.selectedCircles).filter($$.isBarType.bind($$)).selectAll('circle').remove();
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
-        options = options || {};
+    if (options.flow) {
+      flow = $$.generateFlow({
+        targets: targetsToShow,
+        flow: options.flow,
+        duration: options.flow.duration,
+        drawBar: drawBar,
+        drawLine: drawLine,
+        drawArea: drawArea,
+        cx: cx,
+        cy: cy,
+        xv: xv,
+        xForText: xForText,
+        yForText: yForText
+      });
+    }
 
 
-        $$.addHiddenTargetIds(targetIds);
-        targets = $$.svg.selectAll($$.selectorTargets(targetIds));
+    if ($$.isTabVisible()) {
+      // Only use transition if tab visible. See #938.
+      if (duration) {
+        // transition should be derived from one transition
+        transition = d3.transition().duration(duration);
+        transitionsToWait = [];
+        [$$.redrawBar(drawBar, true, transition), $$.redrawLine(drawLine, true, transition), $$.redrawArea(drawArea, true, transition), $$.redrawCircle(cx, cy, true, transition), $$.redrawText(xForText, yForText, options.flow, true, transition), $$.redrawRegion(true, transition), $$.redrawGrid(true, transition)].forEach(function (transitions) {
+          transitions.forEach(function (transition) {
+            transitionsToWait.push(transition);
+          });
+        }); // Wait for end of transitions to call flow and onrendered callback
 
 
-        targets.transition().style('opacity', 0, 'important').call($$.endall, function () {
-            targets.style('opacity', null).style('opacity', 0);
-            targets.style('display', 'none');
+        waitForDraw = $$.generateWait();
+        transitionsToWait.forEach(function (t) {
+          waitForDraw.add(t);
         });
         });
+        waitForDraw(function () {
+          if (flow) {
+            flow();
+          }
+
+          if (config.onrendered) {
+            config.onrendered.call($$);
+          }
+        });
+      } else {
+        $$.redrawBar(drawBar);
+        $$.redrawLine(drawLine);
+        $$.redrawArea(drawArea);
+        $$.redrawCircle(cx, cy);
+        $$.redrawText(xForText, yForText, options.flow);
+        $$.redrawRegion();
+        $$.redrawGrid();
 
 
-        if (options.withLegend) {
-            $$.hideLegend(targetIds);
+        if (flow) {
+          flow();
         }
 
         }
 
-        $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true });
-    };
+        if (config.onrendered) {
+          config.onrendered.call($$);
+        }
+      }
+    } // update fadein condition
+
+
+    $$.mapToIds($$.data.targets).forEach(function (id) {
+      $$.withoutFadeIn[id] = true;
+    });
+  };
+
+  ChartInternal.prototype.updateAndRedraw = function (options) {
+    var $$ = this,
+        config = $$.config,
+        transitions;
+    options = options || {}; // same with redraw
+
+    options.withTransition = getOption(options, "withTransition", true);
+    options.withTransform = getOption(options, "withTransform", false);
+    options.withLegend = getOption(options, "withLegend", false); // NOT same with redraw
+
+    options.withUpdateXDomain = getOption(options, "withUpdateXDomain", true);
+    options.withUpdateOrgXDomain = getOption(options, "withUpdateOrgXDomain", true);
+    options.withTransitionForExit = false;
+    options.withTransitionForTransform = getOption(options, "withTransitionForTransform", options.withTransition); // MEMO: this needs to be called before updateLegend and it means this ALWAYS needs to be called)
+
+    $$.updateSizes(); // MEMO: called in updateLegend in redraw if withLegend
+
+    if (!(options.withLegend && config.legend_show)) {
+      transitions = $$.axis.generateTransitions(options.withTransitionForAxis ? config.transition_duration : 0); // Update scales
+
+      $$.updateScales();
+      $$.updateSvgSize(); // Update g positions
+
+      $$.transformAll(options.withTransitionForTransform, transitions);
+    } // Draw with new sizes & scales
+
+
+    $$.redraw(options, transitions);
+  };
+
+  ChartInternal.prototype.redrawWithoutRescale = function () {
+    this.redraw({
+      withY: false,
+      withSubchart: false,
+      withEventRect: false,
+      withTransitionForAxis: false
+    });
+  };
+
+  ChartInternal.prototype.isTimeSeries = function () {
+    return this.config.axis_x_type === 'timeseries';
+  };
+
+  ChartInternal.prototype.isCategorized = function () {
+    return this.config.axis_x_type.indexOf('categor') >= 0;
+  };
+
+  ChartInternal.prototype.isCustomX = function () {
+    var $$ = this,
+        config = $$.config;
+    return !$$.isTimeSeries() && (config.data_x || notEmpty(config.data_xs));
+  };
+
+  ChartInternal.prototype.isTimeSeriesY = function () {
+    return this.config.axis_y_type === 'timeseries';
+  };
+
+  ChartInternal.prototype.getTranslate = function (target) {
+    var $$ = this,
+        config = $$.config,
+        x,
+        y;
+
+    if (target === 'main') {
+      x = asHalfPixel($$.margin.left);
+      y = asHalfPixel($$.margin.top);
+    } else if (target === 'context') {
+      x = asHalfPixel($$.margin2.left);
+      y = asHalfPixel($$.margin2.top);
+    } else if (target === 'legend') {
+      x = $$.margin3.left;
+      y = $$.margin3.top;
+    } else if (target === 'x') {
+      x = 0;
+      y = config.axis_rotated ? 0 : $$.height;
+    } else if (target === 'y') {
+      x = 0;
+      y = config.axis_rotated ? $$.height : 0;
+    } else if (target === 'y2') {
+      x = config.axis_rotated ? 0 : $$.width;
+      y = config.axis_rotated ? 1 : 0;
+    } else if (target === 'subx') {
+      x = 0;
+      y = config.axis_rotated ? 0 : $$.height2;
+    } else if (target === 'arc') {
+      x = $$.arcWidth / 2;
+      y = $$.arcHeight / 2 - ($$.hasType('gauge') ? 6 : 0); // to prevent wrong display of min and max label
+    }
 
 
-    Chart.prototype.toggle = function (targetIds, options) {
-        var that = this,
-            $$ = this.internal;
-        $$.mapToTargetIds(targetIds).forEach(function (targetId) {
-            $$.isTargetToShow(targetId) ? that.hide(targetId, options) : that.show(targetId, options);
-        });
-    };
+    return "translate(" + x + "," + y + ")";
+  };
 
 
-    Chart.prototype.tooltip = function () {};
-    Chart.prototype.tooltip.show = function (args) {
-        var $$ = this.internal,
-            targets,
-            data,
-            mouse = {};
+  ChartInternal.prototype.initialOpacity = function (d) {
+    return d.value !== null && this.withoutFadeIn[d.id] ? 1 : 0;
+  };
 
 
-        // determine mouse position on the chart
-        if (args.mouse) {
-            mouse = args.mouse;
-        } else {
-            // determine focus data
-            if (args.data) {
-                data = args.data;
-            } else if (typeof args.x !== 'undefined') {
-                if (args.id) {
-                    targets = $$.data.targets.filter(function (t) {
-                        return t.id === args.id;
-                    });
-                } else {
-                    targets = $$.data.targets;
-                }
-                data = $$.filterByX(targets, args.x).slice(0, 1)[0];
-            }
-            mouse = data ? $$.getMousePosition(data) : null;
-        }
+  ChartInternal.prototype.initialOpacityForCircle = function (d) {
+    return d.value !== null && this.withoutFadeIn[d.id] ? this.opacityForCircle(d) : 0;
+  };
 
 
-        // emulate mouse events to show
-        $$.dispatchEvent('mousemove', mouse);
+  ChartInternal.prototype.opacityForCircle = function (d) {
+    var isPointShouldBeShown = isFunction(this.config.point_show) ? this.config.point_show(d) : this.config.point_show;
+    var opacity = isPointShouldBeShown ? 1 : 0;
+    return isValue(d.value) ? this.isScatterType(d) ? 0.5 : opacity : 0;
+  };
 
 
-        $$.config.tooltip_onshow.call($$, data);
-    };
-    Chart.prototype.tooltip.hide = function () {
-        // TODO: get target data by checking the state of focus
-        this.internal.dispatchEvent('mouseout', 0);
+  ChartInternal.prototype.opacityForText = function () {
+    return this.hasDataLabel() ? 1 : 0;
+  };
 
 
-        this.internal.config.tooltip_onhide.call(this);
-    };
+  ChartInternal.prototype.xx = function (d) {
+    return d ? this.x(d.x) : null;
+  };
 
 
-    Chart.prototype.transform = function (type, targetIds) {
-        var $$ = this.internal,
-            options = ['pie', 'donut'].indexOf(type) >= 0 ? { withTransform: true } : null;
-        $$.transformTo(targetIds, type, options);
-    };
+  ChartInternal.prototype.xv = function (d) {
+    var $$ = this,
+        value = d.value;
 
 
-    ChartInternal.prototype.transformTo = function (targetIds, type, optionsForRedraw) {
-        var $$ = this,
-            withTransitionForAxis = !$$.hasArcType(),
-            options = optionsForRedraw || { withTransitionForAxis: withTransitionForAxis };
-        options.withTransitionForTransform = false;
-        $$.transiting = false;
-        $$.setTargetType(targetIds, type);
-        $$.updateTargets($$.data.targets); // this is needed when transforming to arc
-        $$.updateAndRedraw(options);
-    };
+    if ($$.isTimeSeries()) {
+      value = $$.parseDate(d.value);
+    } else if ($$.isCategorized() && typeof d.value === 'string') {
+      value = $$.config.axis_x_categories.indexOf(d.value);
+    }
 
 
-    Chart.prototype.x = function (x) {
-        var $$ = this.internal;
-        if (arguments.length) {
-            $$.updateTargetX($$.data.targets, x);
-            $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true });
-        }
-        return $$.data.xs;
-    };
-    Chart.prototype.xs = function (xs) {
-        var $$ = this.internal;
-        if (arguments.length) {
-            $$.updateTargetXs($$.data.targets, xs);
-            $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true });
-        }
-        return $$.data.xs;
-    };
+    return Math.ceil($$.x(value));
+  };
 
 
-    Chart.prototype.zoom = function (domain) {
-        var $$ = this.internal;
-        if (domain) {
-            if ($$.isTimeSeries()) {
-                domain = domain.map(function (x) {
-                    return $$.parseDate(x);
-                });
-            }
-            if ($$.config.subchart_show) {
-                $$.brush.selectionAsValue(domain, true);
-            } else {
-                $$.updateXDomain(null, true, false, false, domain);
-                $$.redraw({ withY: $$.config.zoom_rescale, withSubchart: false });
-            }
-            $$.config.zoom_onzoom.call(this, $$.x.orgDomain());
-            return domain;
-        } else {
-            return $$.x.domain();
-        }
-    };
-    Chart.prototype.zoom.enable = function (enabled) {
-        var $$ = this.internal;
-        $$.config.zoom_enabled = enabled;
-        $$.updateAndRedraw();
-    };
-    Chart.prototype.unzoom = function () {
-        var $$ = this.internal;
-        if ($$.config.subchart_show) {
-            $$.brush.clear();
-        } else {
-            $$.updateXDomain(null, true, false, false, $$.subX.domain());
-            $$.redraw({ withY: $$.config.zoom_rescale, withSubchart: false });
-        }
-    };
+  ChartInternal.prototype.yv = function (d) {
+    var $$ = this,
+        yScale = d.axis && d.axis === 'y2' ? $$.y2 : $$.y;
+    return Math.ceil(yScale(d.value));
+  };
 
 
-    Chart.prototype.zoom.max = function (max) {
-        var $$ = this.internal,
-            config = $$.config,
-            d3 = $$.d3;
-        if (max === 0 || max) {
-            config.zoom_x_max = d3.max([$$.orgXDomain[1], max]);
-        } else {
-            return config.zoom_x_max;
-        }
-    };
+  ChartInternal.prototype.subxx = function (d) {
+    return d ? this.subX(d.x) : null;
+  };
 
 
-    Chart.prototype.zoom.min = function (min) {
-        var $$ = this.internal,
-            config = $$.config,
-            d3 = $$.d3;
-        if (min === 0 || min) {
-            config.zoom_x_min = d3.min([$$.orgXDomain[0], min]);
-        } else {
-            return config.zoom_x_min;
-        }
-    };
+  ChartInternal.prototype.transformMain = function (withTransition, transitions) {
+    var $$ = this,
+        xAxis,
+        yAxis,
+        y2Axis;
 
 
-    Chart.prototype.zoom.range = function (range) {
-        if (arguments.length) {
-            if (isDefined(range.max)) {
-                this.domain.max(range.max);
-            }
-            if (isDefined(range.min)) {
-                this.domain.min(range.min);
-            }
-        } else {
-            return {
-                max: this.domain.max(),
-                min: this.domain.min()
-            };
-        }
-    };
+    if (transitions && transitions.axisX) {
+      xAxis = transitions.axisX;
+    } else {
+      xAxis = $$.main.select('.' + CLASS.axisX);
 
 
-    ChartInternal.prototype.initPie = function () {
-        var $$ = this,
-            d3 = $$.d3;
-        $$.pie = d3.pie().value(function (d) {
-            return d.values.reduce(function (a, b) {
-                return a + b.value;
-            }, 0);
-        });
+      if (withTransition) {
+        xAxis = xAxis.transition();
+      }
+    }
 
 
-        var orderFct = $$.getOrderFunction();
+    if (transitions && transitions.axisY) {
+      yAxis = transitions.axisY;
+    } else {
+      yAxis = $$.main.select('.' + CLASS.axisY);
 
 
-        // we need to reverse the returned order if asc or desc to have the slice in expected order.
-        if (orderFct && ($$.isOrderAsc() || $$.isOrderDesc())) {
-            var defaultSort = orderFct;
-            orderFct = function orderFct(t1, t2) {
-                return defaultSort(t1, t2) * -1;
-            };
-        }
+      if (withTransition) {
+        yAxis = yAxis.transition();
+      }
+    }
 
 
-        $$.pie.sort(orderFct || null);
-    };
+    if (transitions && transitions.axisY2) {
+      y2Axis = transitions.axisY2;
+    } else {
+      y2Axis = $$.main.select('.' + CLASS.axisY2);
 
 
-    ChartInternal.prototype.updateRadius = function () {
-        var $$ = this,
-            config = $$.config,
-            w = config.gauge_width || config.donut_width,
-            gaugeArcWidth = $$.filterTargetsToShow($$.data.targets).length * $$.config.gauge_arcs_minWidth;
-        $$.radiusExpanded = Math.min($$.arcWidth, $$.arcHeight) / 2 * ($$.hasType('gauge') ? 0.85 : 1);
-        $$.radius = $$.radiusExpanded * 0.95;
-        $$.innerRadiusRatio = w ? ($$.radius - w) / $$.radius : 0.6;
-        $$.innerRadius = $$.hasType('donut') || $$.hasType('gauge') ? $$.radius * $$.innerRadiusRatio : 0;
-        $$.gaugeArcWidth = w ? w : gaugeArcWidth <= $$.radius - $$.innerRadius ? $$.radius - $$.innerRadius : gaugeArcWidth <= $$.radius ? gaugeArcWidth : $$.radius;
-    };
+      if (withTransition) {
+        y2Axis = y2Axis.transition();
+      }
+    }
 
 
-    ChartInternal.prototype.updateArc = function () {
-        var $$ = this;
-        $$.svgArc = $$.getSvgArc();
-        $$.svgArcExpanded = $$.getSvgArcExpanded();
-        $$.svgArcExpandedSub = $$.getSvgArcExpanded(0.98);
-    };
+    (withTransition ? $$.main.transition() : $$.main).attr("transform", $$.getTranslate('main'));
+    xAxis.attr("transform", $$.getTranslate('x'));
+    yAxis.attr("transform", $$.getTranslate('y'));
+    y2Axis.attr("transform", $$.getTranslate('y2'));
+    $$.main.select('.' + CLASS.chartArcs).attr("transform", $$.getTranslate('arc'));
+  };
 
 
-    ChartInternal.prototype.updateAngle = function (d) {
-        var $$ = this,
-            config = $$.config,
-            found = false,
-            index = 0,
-            gMin,
-            gMax,
-            gTic,
-            gValue;
-
-        if (!config) {
-            return null;
-        }
+  ChartInternal.prototype.transformAll = function (withTransition, transitions) {
+    var $$ = this;
+    $$.transformMain(withTransition, transitions);
 
 
-        $$.pie($$.filterTargetsToShow($$.data.targets)).forEach(function (t) {
-            if (!found && t.data.id === d.data.id) {
-                found = true;
-                d = t;
-                d.index = index;
-            }
-            index++;
-        });
-        if (isNaN(d.startAngle)) {
-            d.startAngle = 0;
-        }
-        if (isNaN(d.endAngle)) {
-            d.endAngle = d.startAngle;
-        }
-        if ($$.isGaugeType(d.data)) {
-            gMin = config.gauge_min;
-            gMax = config.gauge_max;
-            gTic = Math.PI * (config.gauge_fullCircle ? 2 : 1) / (gMax - gMin);
-            gValue = d.value < gMin ? 0 : d.value < gMax ? d.value - gMin : gMax - gMin;
-            d.startAngle = config.gauge_startingAngle;
-            d.endAngle = d.startAngle + gTic * gValue;
-        }
-        return found ? d : null;
-    };
+    if ($$.config.subchart_show) {
+      $$.transformContext(withTransition, transitions);
+    }
 
 
-    ChartInternal.prototype.getSvgArc = function () {
-        var $$ = this,
-            hasGaugeType = $$.hasType('gauge'),
-            singleArcWidth = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length,
-            arc = $$.d3.arc().outerRadius(function (d) {
-            return hasGaugeType ? $$.radius - singleArcWidth * d.index : $$.radius;
-        }).innerRadius(function (d) {
-            return hasGaugeType ? $$.radius - singleArcWidth * (d.index + 1) : $$.innerRadius;
-        }),
-            newArc = function newArc(d, withoutUpdate) {
-            var updated;
-            if (withoutUpdate) {
-                return arc(d);
-            } // for interpolate
-            updated = $$.updateAngle(d);
-            return updated ? arc(updated) : "M 0 0";
-        };
-        // TODO: extends all function
-        newArc.centroid = arc.centroid;
-        return newArc;
-    };
+    if ($$.legend) {
+      $$.transformLegend(withTransition);
+    }
+  };
+
+  ChartInternal.prototype.updateSvgSize = function () {
+    var $$ = this,
+        brush = $$.svg.select(".c3-brush .overlay");
+    $$.svg.attr('width', $$.currentWidth).attr('height', $$.currentHeight);
+    $$.svg.selectAll(['#' + $$.clipId, '#' + $$.clipIdForGrid]).select('rect').attr('width', $$.width).attr('height', $$.height);
+    $$.svg.select('#' + $$.clipIdForXAxis).select('rect').attr('x', $$.getXAxisClipX.bind($$)).attr('y', $$.getXAxisClipY.bind($$)).attr('width', $$.getXAxisClipWidth.bind($$)).attr('height', $$.getXAxisClipHeight.bind($$));
+    $$.svg.select('#' + $$.clipIdForYAxis).select('rect').attr('x', $$.getYAxisClipX.bind($$)).attr('y', $$.getYAxisClipY.bind($$)).attr('width', $$.getYAxisClipWidth.bind($$)).attr('height', $$.getYAxisClipHeight.bind($$));
+    $$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0); // MEMO: parent div's height will be bigger than svg when <!DOCTYPE html>
+
+    $$.selectChart.style('max-height', $$.currentHeight + "px");
+  };
+
+  ChartInternal.prototype.updateDimension = function (withoutAxis) {
+    var $$ = this;
+
+    if (!withoutAxis) {
+      if ($$.config.axis_rotated) {
+        $$.axes.x.call($$.xAxis);
+        $$.axes.subx.call($$.subXAxis);
+      } else {
+        $$.axes.y.call($$.yAxis);
+        $$.axes.y2.call($$.y2Axis);
+      }
+    }
 
 
-    ChartInternal.prototype.getSvgArcExpanded = function (rate) {
-        rate = rate || 1;
-        var $$ = this,
-            hasGaugeType = $$.hasType('gauge'),
-            singleArcWidth = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length,
-            expandWidth = Math.min($$.radiusExpanded * rate - $$.radius, singleArcWidth * 0.8 - (1 - rate) * 100),
-            arc = $$.d3.arc().outerRadius(function (d) {
-            return hasGaugeType ? $$.radius - singleArcWidth * d.index + expandWidth : $$.radiusExpanded * rate;
-        }).innerRadius(function (d) {
-            return hasGaugeType ? $$.radius - singleArcWidth * (d.index + 1) : $$.innerRadius;
-        });
-        return function (d) {
-            var updated = $$.updateAngle(d);
-            return updated ? arc(updated) : "M 0 0";
-        };
-    };
+    $$.updateSizes();
+    $$.updateScales();
+    $$.updateSvgSize();
+    $$.transformAll(false);
+  };
 
 
-    ChartInternal.prototype.getArc = function (d, withoutUpdate, force) {
-        return force || this.isArcType(d.data) ? this.svgArc(d, withoutUpdate) : "M 0 0";
-    };
+  ChartInternal.prototype.observeInserted = function (selection) {
+    var $$ = this,
+        observer;
 
 
-    ChartInternal.prototype.transformForArcLabel = function (d) {
-        var $$ = this,
-            config = $$.config,
-            updated = $$.updateAngle(d),
-            c,
-            x,
-            y,
-            h,
-            ratio,
-            translate = "",
-            hasGauge = $$.hasType('gauge');
-        if (updated && !hasGauge) {
-            c = this.svgArc.centroid(updated);
-            x = isNaN(c[0]) ? 0 : c[0];
-            y = isNaN(c[1]) ? 0 : c[1];
-            h = Math.sqrt(x * x + y * y);
-            if ($$.hasType('donut') && config.donut_label_ratio) {
-                ratio = isFunction(config.donut_label_ratio) ? config.donut_label_ratio(d, $$.radius, h) : config.donut_label_ratio;
-            } else if ($$.hasType('pie') && config.pie_label_ratio) {
-                ratio = isFunction(config.pie_label_ratio) ? config.pie_label_ratio(d, $$.radius, h) : config.pie_label_ratio;
-            } else {
-                ratio = $$.radius && h ? (36 / $$.radius > 0.375 ? 1.175 - 36 / $$.radius : 0.8) * $$.radius / h : 0;
-            }
-            translate = "translate(" + x * ratio + ',' + y * ratio + ")";
-        } else if (updated && hasGauge && $$.filterTargetsToShow($$.data.targets).length > 1) {
-            var y1 = Math.sin(updated.endAngle - Math.PI / 2);
-            x = Math.cos(updated.endAngle - Math.PI / 2) * ($$.radiusExpanded + 25);
-            y = y1 * ($$.radiusExpanded + 15 - Math.abs(y1 * 10)) + 3;
-            translate = "translate(" + x + ',' + y + ")";
-        }
-        return translate;
-    };
+    if (typeof MutationObserver === 'undefined') {
+      window.console.error("MutationObserver not defined.");
+      return;
+    }
 
 
-    ChartInternal.prototype.getArcRatio = function (d) {
-        var $$ = this,
-            config = $$.config,
-            whole = Math.PI * ($$.hasType('gauge') && !config.gauge_fullCircle ? 1 : 2);
-        return d ? (d.endAngle - d.startAngle) / whole : null;
-    };
+    observer = new MutationObserver(function (mutations) {
+      mutations.forEach(function (mutation) {
+        if (mutation.type === 'childList' && mutation.previousSibling) {
+          observer.disconnect(); // need to wait for completion of load because size calculation requires the actual sizes determined after that completion
 
 
-    ChartInternal.prototype.convertToArcData = function (d) {
-        return this.addName({
-            id: d.data.id,
-            value: d.value,
-            ratio: this.getArcRatio(d),
-            index: d.index
-        });
-    };
+          $$.intervalForObserveInserted = window.setInterval(function () {
+            // parentNode will NOT be null when completed
+            if (selection.node().parentNode) {
+              window.clearInterval($$.intervalForObserveInserted);
+              $$.updateDimension();
 
 
-    ChartInternal.prototype.textForArcLabel = function (d) {
-        var $$ = this,
-            updated,
-            value,
-            ratio,
-            id,
-            format;
-        if (!$$.shouldShowArcLabel()) {
-            return "";
-        }
-        updated = $$.updateAngle(d);
-        value = updated ? updated.value : null;
-        ratio = $$.getArcRatio(updated);
-        id = d.data.id;
-        if (!$$.hasType('gauge') && !$$.meetsArcLabelThreshold(ratio)) {
-            return "";
+              if ($$.brush) {
+                $$.brush.update();
+              }
+
+              $$.config.oninit.call($$);
+              $$.redraw({
+                withTransform: true,
+                withUpdateXDomain: true,
+                withUpdateOrgXDomain: true,
+                withTransition: false,
+                withTransitionForTransform: false,
+                withLegend: true
+              });
+              selection.transition().style('opacity', 1);
+            }
+          }, 10);
+        }
+      });
+    });
+    observer.observe(selection.node(), {
+      attributes: true,
+      childList: true,
+      characterData: true
+    });
+  };
+  /**
+   * Binds handlers to the window resize event.
+   */
+
+
+  ChartInternal.prototype.bindResize = function () {
+    var $$ = this,
+        config = $$.config;
+    $$.resizeFunction = $$.generateResize(); // need to call .remove
+
+    $$.resizeFunction.add(function () {
+      config.onresize.call($$);
+    });
+
+    if (config.resize_auto) {
+      $$.resizeFunction.add(function () {
+        if ($$.resizeTimeout !== undefined) {
+          window.clearTimeout($$.resizeTimeout);
         }
         }
-        format = $$.getArcLabelFormat();
-        return format ? format(value, ratio, id) : $$.defaultArcValueFormat(value, ratio);
-    };
 
 
-    ChartInternal.prototype.textForGaugeMinMax = function (value, isMax) {
-        var $$ = this,
-            format = $$.getGaugeLabelExtents();
+        $$.resizeTimeout = window.setTimeout(function () {
+          delete $$.resizeTimeout;
+          $$.updateAndRedraw({
+            withUpdateXDomain: false,
+            withUpdateOrgXDomain: false,
+            withTransition: false,
+            withTransitionForTransform: false,
+            withLegend: true
+          });
 
 
-        return format ? format(value, isMax) : value;
-    };
+          if ($$.brush) {
+            $$.brush.update();
+          }
+        }, 100);
+      });
+    }
 
 
-    ChartInternal.prototype.expandArc = function (targetIds) {
-        var $$ = this,
-            interval;
-
-        // MEMO: avoid to cancel transition
-        if ($$.transiting) {
-            interval = window.setInterval(function () {
-                if (!$$.transiting) {
-                    window.clearInterval(interval);
-                    if ($$.legend.selectAll('.c3-legend-item-focused').size() > 0) {
-                        $$.expandArc(targetIds);
-                    }
-                }
-            }, 10);
-            return;
-        }
+    $$.resizeFunction.add(function () {
+      config.onresized.call($$);
+    });
 
 
-        targetIds = $$.mapToTargetIds(targetIds);
+    $$.resizeIfElementDisplayed = function () {
+      // if element not displayed skip it
+      if ($$.api == null || !$$.api.element.offsetParent) {
+        return;
+      }
 
 
-        $$.svg.selectAll($$.selectorTargets(targetIds, '.' + CLASS.chartArc)).each(function (d) {
-            if (!$$.shouldExpand(d.data.id)) {
-                return;
-            }
-            $$.d3.select(this).selectAll('path').transition().duration($$.expandDuration(d.data.id)).attr("d", $$.svgArcExpanded).transition().duration($$.expandDuration(d.data.id) * 2).attr("d", $$.svgArcExpandedSub).each(function (d) {
-                if ($$.isDonutType(d.data)) ;
-            });
-        });
+      $$.resizeFunction();
     };
 
     };
 
-    ChartInternal.prototype.unexpandArc = function (targetIds) {
-        var $$ = this;
+    if (window.attachEvent) {
+      window.attachEvent('onresize', $$.resizeIfElementDisplayed);
+    } else if (window.addEventListener) {
+      window.addEventListener('resize', $$.resizeIfElementDisplayed, false);
+    } else {
+      // fallback to this, if this is a very old browser
+      var wrapper = window.onresize;
 
 
-        if ($$.transiting) {
-            return;
+      if (!wrapper) {
+        // create a wrapper that will call all charts
+        wrapper = $$.generateResize();
+      } else if (!wrapper.add || !wrapper.remove) {
+        // there is already a handler registered, make sure we call it too
+        wrapper = $$.generateResize();
+        wrapper.add(window.onresize);
+      } // add this graph to the wrapper, we will be removed if the user calls destroy
+
+
+      wrapper.add($$.resizeFunction);
+
+      window.onresize = function () {
+        // if element not displayed skip it
+        if (!$$.api.element.offsetParent) {
+          return;
         }
 
         }
 
-        targetIds = $$.mapToTargetIds(targetIds);
+        wrapper();
+      };
+    }
+  };
+  /**
+   * Binds handlers to the window focus event.
+   */
 
 
-        $$.svg.selectAll($$.selectorTargets(targetIds, '.' + CLASS.chartArc)).selectAll('path').transition().duration(function (d) {
-            return $$.expandDuration(d.data.id);
-        }).attr("d", $$.svgArc);
-        $$.svg.selectAll('.' + CLASS.arc);
-    };
 
 
-    ChartInternal.prototype.expandDuration = function (id) {
-        var $$ = this,
-            config = $$.config;
+  ChartInternal.prototype.bindWindowFocus = function () {
+    var _this = this;
 
 
-        if ($$.isDonutType(id)) {
-            return config.donut_expand_duration;
-        } else if ($$.isGaugeType(id)) {
-            return config.gauge_expand_duration;
-        } else if ($$.isPieType(id)) {
-            return config.pie_expand_duration;
-        } else {
-            return 50;
-        }
-    };
+    if (this.windowFocusHandler) {
+      // The handler is already set
+      return;
+    }
 
 
-    ChartInternal.prototype.shouldExpand = function (id) {
-        var $$ = this,
-            config = $$.config;
-        return $$.isDonutType(id) && config.donut_expand || $$.isGaugeType(id) && config.gauge_expand || $$.isPieType(id) && config.pie_expand;
+    this.windowFocusHandler = function () {
+      _this.redraw();
     };
 
     };
 
-    ChartInternal.prototype.shouldShowArcLabel = function () {
-        var $$ = this,
-            config = $$.config,
-            shouldShow = true;
-        if ($$.hasType('donut')) {
-            shouldShow = config.donut_label_show;
-        } else if ($$.hasType('pie')) {
-            shouldShow = config.pie_label_show;
-        }
-        // when gauge, always true
-        return shouldShow;
-    };
+    window.addEventListener('focus', this.windowFocusHandler);
+  };
+  /**
+   * Unbinds from the window focus event.
+   */
+
+
+  ChartInternal.prototype.unbindWindowFocus = function () {
+    window.removeEventListener('focus', this.windowFocusHandler);
+    delete this.windowFocusHandler;
+  };
+
+  ChartInternal.prototype.generateResize = function () {
+    var resizeFunctions = [];
+
+    function callResizeFunctions() {
+      resizeFunctions.forEach(function (f) {
+        f();
+      });
+    }
 
 
-    ChartInternal.prototype.meetsArcLabelThreshold = function (ratio) {
-        var $$ = this,
-            config = $$.config,
-            threshold = $$.hasType('donut') ? config.donut_label_threshold : config.pie_label_threshold;
-        return ratio >= threshold;
+    callResizeFunctions.add = function (f) {
+      resizeFunctions.push(f);
     };
 
     };
 
-    ChartInternal.prototype.getArcLabelFormat = function () {
-        var $$ = this,
-            config = $$.config,
-            format = config.pie_label_format;
-        if ($$.hasType('gauge')) {
-            format = config.gauge_label_format;
-        } else if ($$.hasType('donut')) {
-            format = config.donut_label_format;
+    callResizeFunctions.remove = function (f) {
+      for (var i = 0; i < resizeFunctions.length; i++) {
+        if (resizeFunctions[i] === f) {
+          resizeFunctions.splice(i, 1);
+          break;
         }
         }
-        return format;
+      }
     };
 
     };
 
-    ChartInternal.prototype.getGaugeLabelExtents = function () {
-        var $$ = this,
-            config = $$.config;
-        return config.gauge_label_extents;
-    };
+    return callResizeFunctions;
+  };
 
 
-    ChartInternal.prototype.getArcTitle = function () {
-        var $$ = this;
-        return $$.hasType('donut') ? $$.config.donut_title : "";
-    };
+  ChartInternal.prototype.endall = function (transition, callback) {
+    var n = 0;
+    transition.each(function () {
+      ++n;
+    }).on("end", function () {
+      if (! --n) {
+        callback.apply(this, arguments);
+      }
+    });
+  };
+
+  ChartInternal.prototype.generateWait = function () {
+    var transitionsToWait = [],
+        f = function f(callback) {
+      var timer = setInterval(function () {
+        var done = 0;
+        transitionsToWait.forEach(function (t) {
+          if (t.empty()) {
+            done += 1;
+            return;
+          }
 
 
-    ChartInternal.prototype.updateTargetsForArc = function (targets) {
-        var $$ = this,
-            main = $$.main,
-            mainPies,
-            mainPieEnter,
-            classChartArc = $$.classChartArc.bind($$),
-            classArcs = $$.classArcs.bind($$),
-            classFocus = $$.classFocus.bind($$);
-        mainPies = main.select('.' + CLASS.chartArcs).selectAll('.' + CLASS.chartArc).data($$.pie(targets)).attr("class", function (d) {
-            return classChartArc(d) + classFocus(d.data);
+          try {
+            t.transition();
+          } catch (e) {
+            done += 1;
+          }
         });
         });
-        mainPieEnter = mainPies.enter().append("g").attr("class", classChartArc);
-        mainPieEnter.append('g').attr('class', classArcs);
-        mainPieEnter.append("text").attr("dy", $$.hasType('gauge') ? "-.1em" : ".35em").style("opacity", 0).style("text-anchor", "middle").style("pointer-events", "none");
-        // MEMO: can not keep same color..., but not bad to update color in redraw
-        //mainPieUpdate.exit().remove();
+
+        if (done === transitionsToWait.length) {
+          clearInterval(timer);
+
+          if (callback) {
+            callback();
+          }
+        }
+      }, 50);
     };
 
     };
 
-    ChartInternal.prototype.initArc = function () {
-        var $$ = this;
-        $$.arcs = $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartArcs).attr("transform", $$.getTranslate('arc'));
-        $$.arcs.append('text').attr('class', CLASS.chartArcsTitle).style("text-anchor", "middle").text($$.getArcTitle());
+    f.add = function (transition) {
+      transitionsToWait.push(transition);
     };
 
     };
 
-    ChartInternal.prototype.redrawArc = function (duration, durationForExit, withTransform) {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            main = $$.main,
-            arcs,
-            mainArc,
-            arcLabelLines,
-            mainArcLabelLine,
-            hasGaugeType = $$.hasType('gauge');
-        arcs = main.selectAll('.' + CLASS.arcs).selectAll('.' + CLASS.arc).data($$.arcData.bind($$));
-        mainArc = arcs.enter().append('path').attr("class", $$.classArc.bind($$)).style("fill", function (d) {
-            return $$.color(d.data);
-        }).style("cursor", function (d) {
-            return config.interaction_enabled && config.data_selection_isselectable(d) ? "pointer" : null;
-        }).each(function (d) {
-            if ($$.isGaugeType(d.data)) {
-                d.startAngle = d.endAngle = config.gauge_startingAngle;
+    return f;
+  };
+
+  ChartInternal.prototype.parseDate = function (date) {
+    var $$ = this,
+        parsedDate;
+
+    if (date instanceof Date) {
+      parsedDate = date;
+    } else if (typeof date === 'string') {
+      parsedDate = $$.dataTimeParse(date);
+    } else if (_typeof(date) === 'object') {
+      parsedDate = new Date(+date);
+    } else if (typeof date === 'number' && !isNaN(date)) {
+      parsedDate = new Date(+date);
+    }
+
+    if (!parsedDate || isNaN(+parsedDate)) {
+      window.console.error("Failed to parse x '" + date + "' to Date object");
+    }
+
+    return parsedDate;
+  };
+
+  ChartInternal.prototype.isTabVisible = function () {
+    return !document.hidden;
+  };
+
+  ChartInternal.prototype.getPathBox = getPathBox;
+  ChartInternal.prototype.CLASS = CLASS;
+
+  /* jshint ignore:start */
+  // SVGPathSeg API polyfill
+  // https://github.com/progers/pathseg
+  //
+  // This is a drop-in replacement for the SVGPathSeg and SVGPathSegList APIs that were removed from
+  // SVG2 (https://lists.w3.org/Archives/Public/www-svg/2015Jun/0044.html), including the latest spec
+  // changes which were implemented in Firefox 43 and Chrome 46.
+  (function () {
+
+    if (!("SVGPathSeg" in window)) {
+      // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGPathSeg
+      window.SVGPathSeg = function (type, typeAsLetter, owningPathSegList) {
+        this.pathSegType = type;
+        this.pathSegTypeAsLetter = typeAsLetter;
+        this._owningPathSegList = owningPathSegList;
+      };
+
+      window.SVGPathSeg.prototype.classname = "SVGPathSeg";
+      window.SVGPathSeg.PATHSEG_UNKNOWN = 0;
+      window.SVGPathSeg.PATHSEG_CLOSEPATH = 1;
+      window.SVGPathSeg.PATHSEG_MOVETO_ABS = 2;
+      window.SVGPathSeg.PATHSEG_MOVETO_REL = 3;
+      window.SVGPathSeg.PATHSEG_LINETO_ABS = 4;
+      window.SVGPathSeg.PATHSEG_LINETO_REL = 5;
+      window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS = 6;
+      window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL = 7;
+      window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS = 8;
+      window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL = 9;
+      window.SVGPathSeg.PATHSEG_ARC_ABS = 10;
+      window.SVGPathSeg.PATHSEG_ARC_REL = 11;
+      window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS = 12;
+      window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL = 13;
+      window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS = 14;
+      window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL = 15;
+      window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
+      window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
+      window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
+      window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; // Notify owning PathSegList on any changes so they can be synchronized back to the path element.
+
+      window.SVGPathSeg.prototype._segmentChanged = function () {
+        if (this._owningPathSegList) this._owningPathSegList.segmentChanged(this);
+      };
+
+      window.SVGPathSegClosePath = function (owningPathSegList) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CLOSEPATH, "z", owningPathSegList);
+      };
+
+      window.SVGPathSegClosePath.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegClosePath.prototype.toString = function () {
+        return "[object SVGPathSegClosePath]";
+      };
+
+      window.SVGPathSegClosePath.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter;
+      };
+
+      window.SVGPathSegClosePath.prototype.clone = function () {
+        return new window.SVGPathSegClosePath(undefined);
+      };
+
+      window.SVGPathSegMovetoAbs = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_ABS, "M", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegMovetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegMovetoAbs.prototype.toString = function () {
+        return "[object SVGPathSegMovetoAbs]";
+      };
+
+      window.SVGPathSegMovetoAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegMovetoAbs.prototype.clone = function () {
+        return new window.SVGPathSegMovetoAbs(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegMovetoRel = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_REL, "m", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegMovetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegMovetoRel.prototype.toString = function () {
+        return "[object SVGPathSegMovetoRel]";
+      };
+
+      window.SVGPathSegMovetoRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegMovetoRel.prototype.clone = function () {
+        return new window.SVGPathSegMovetoRel(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoAbs = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_ABS, "L", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegLinetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoAbs.prototype.toString = function () {
+        return "[object SVGPathSegLinetoAbs]";
+      };
+
+      window.SVGPathSegLinetoAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegLinetoAbs.prototype.clone = function () {
+        return new window.SVGPathSegLinetoAbs(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoRel = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_REL, "l", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegLinetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoRel.prototype.toString = function () {
+        return "[object SVGPathSegLinetoRel]";
+      };
+
+      window.SVGPathSegLinetoRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegLinetoRel.prototype.clone = function () {
+        return new window.SVGPathSegLinetoRel(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoCubicAbs = function (owningPathSegList, x, y, x1, y1, x2, y2) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS, "C", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x1 = x1;
+        this._y1 = y1;
+        this._x2 = x2;
+        this._y2 = y2;
+      };
+
+      window.SVGPathSegCurvetoCubicAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoCubicAbs.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoCubicAbs]";
+      };
+
+      window.SVGPathSegCurvetoCubicAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoCubicAbs.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoCubicAbs(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x1", {
+        get: function get() {
+          return this._x1;
+        },
+        set: function set(x1) {
+          this._x1 = x1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y1", {
+        get: function get() {
+          return this._y1;
+        },
+        set: function set(y1) {
+          this._y1 = y1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x2", {
+        get: function get() {
+          return this._x2;
+        },
+        set: function set(x2) {
+          this._x2 = x2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y2", {
+        get: function get() {
+          return this._y2;
+        },
+        set: function set(y2) {
+          this._y2 = y2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoCubicRel = function (owningPathSegList, x, y, x1, y1, x2, y2) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL, "c", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x1 = x1;
+        this._y1 = y1;
+        this._x2 = x2;
+        this._y2 = y2;
+      };
+
+      window.SVGPathSegCurvetoCubicRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoCubicRel.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoCubicRel]";
+      };
+
+      window.SVGPathSegCurvetoCubicRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoCubicRel.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoCubicRel(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x1", {
+        get: function get() {
+          return this._x1;
+        },
+        set: function set(x1) {
+          this._x1 = x1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y1", {
+        get: function get() {
+          return this._y1;
+        },
+        set: function set(y1) {
+          this._y1 = y1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x2", {
+        get: function get() {
+          return this._x2;
+        },
+        set: function set(x2) {
+          this._x2 = x2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y2", {
+        get: function get() {
+          return this._y2;
+        },
+        set: function set(y2) {
+          this._y2 = y2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoQuadraticAbs = function (owningPathSegList, x, y, x1, y1) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS, "Q", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x1 = x1;
+        this._y1 = y1;
+      };
+
+      window.SVGPathSegCurvetoQuadraticAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoQuadraticAbs.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoQuadraticAbs]";
+      };
+
+      window.SVGPathSegCurvetoQuadraticAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticAbs.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoQuadraticAbs(undefined, this._x, this._y, this._x1, this._y1);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x1", {
+        get: function get() {
+          return this._x1;
+        },
+        set: function set(x1) {
+          this._x1 = x1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y1", {
+        get: function get() {
+          return this._y1;
+        },
+        set: function set(y1) {
+          this._y1 = y1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoQuadraticRel = function (owningPathSegList, x, y, x1, y1) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL, "q", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x1 = x1;
+        this._y1 = y1;
+      };
+
+      window.SVGPathSegCurvetoQuadraticRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoQuadraticRel.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoQuadraticRel]";
+      };
+
+      window.SVGPathSegCurvetoQuadraticRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticRel.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoQuadraticRel(undefined, this._x, this._y, this._x1, this._y1);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x1", {
+        get: function get() {
+          return this._x1;
+        },
+        set: function set(x1) {
+          this._x1 = x1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y1", {
+        get: function get() {
+          return this._y1;
+        },
+        set: function set(y1) {
+          this._y1 = y1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegArcAbs = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_ABS, "A", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._r1 = r1;
+        this._r2 = r2;
+        this._angle = angle;
+        this._largeArcFlag = largeArcFlag;
+        this._sweepFlag = sweepFlag;
+      };
+
+      window.SVGPathSegArcAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegArcAbs.prototype.toString = function () {
+        return "[object SVGPathSegArcAbs]";
+      };
+
+      window.SVGPathSegArcAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegArcAbs.prototype.clone = function () {
+        return new window.SVGPathSegArcAbs(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
+      };
+
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r1", {
+        get: function get() {
+          return this._r1;
+        },
+        set: function set(r1) {
+          this._r1 = r1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r2", {
+        get: function get() {
+          return this._r2;
+        },
+        set: function set(r2) {
+          this._r2 = r2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "angle", {
+        get: function get() {
+          return this._angle;
+        },
+        set: function set(angle) {
+          this._angle = angle;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "largeArcFlag", {
+        get: function get() {
+          return this._largeArcFlag;
+        },
+        set: function set(largeArcFlag) {
+          this._largeArcFlag = largeArcFlag;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcAbs.prototype, "sweepFlag", {
+        get: function get() {
+          return this._sweepFlag;
+        },
+        set: function set(sweepFlag) {
+          this._sweepFlag = sweepFlag;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegArcRel = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_REL, "a", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._r1 = r1;
+        this._r2 = r2;
+        this._angle = angle;
+        this._largeArcFlag = largeArcFlag;
+        this._sweepFlag = sweepFlag;
+      };
+
+      window.SVGPathSegArcRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegArcRel.prototype.toString = function () {
+        return "[object SVGPathSegArcRel]";
+      };
+
+      window.SVGPathSegArcRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegArcRel.prototype.clone = function () {
+        return new window.SVGPathSegArcRel(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
+      };
+
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "r1", {
+        get: function get() {
+          return this._r1;
+        },
+        set: function set(r1) {
+          this._r1 = r1;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "r2", {
+        get: function get() {
+          return this._r2;
+        },
+        set: function set(r2) {
+          this._r2 = r2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "angle", {
+        get: function get() {
+          return this._angle;
+        },
+        set: function set(angle) {
+          this._angle = angle;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "largeArcFlag", {
+        get: function get() {
+          return this._largeArcFlag;
+        },
+        set: function set(largeArcFlag) {
+          this._largeArcFlag = largeArcFlag;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegArcRel.prototype, "sweepFlag", {
+        get: function get() {
+          return this._sweepFlag;
+        },
+        set: function set(sweepFlag) {
+          this._sweepFlag = sweepFlag;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoHorizontalAbs = function (owningPathSegList, x) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS, "H", owningPathSegList);
+        this._x = x;
+      };
+
+      window.SVGPathSegLinetoHorizontalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoHorizontalAbs.prototype.toString = function () {
+        return "[object SVGPathSegLinetoHorizontalAbs]";
+      };
+
+      window.SVGPathSegLinetoHorizontalAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x;
+      };
+
+      window.SVGPathSegLinetoHorizontalAbs.prototype.clone = function () {
+        return new window.SVGPathSegLinetoHorizontalAbs(undefined, this._x);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoHorizontalAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoHorizontalRel = function (owningPathSegList, x) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL, "h", owningPathSegList);
+        this._x = x;
+      };
+
+      window.SVGPathSegLinetoHorizontalRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoHorizontalRel.prototype.toString = function () {
+        return "[object SVGPathSegLinetoHorizontalRel]";
+      };
+
+      window.SVGPathSegLinetoHorizontalRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x;
+      };
+
+      window.SVGPathSegLinetoHorizontalRel.prototype.clone = function () {
+        return new window.SVGPathSegLinetoHorizontalRel(undefined, this._x);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoHorizontalRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoVerticalAbs = function (owningPathSegList, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS, "V", owningPathSegList);
+        this._y = y;
+      };
+
+      window.SVGPathSegLinetoVerticalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoVerticalAbs.prototype.toString = function () {
+        return "[object SVGPathSegLinetoVerticalAbs]";
+      };
+
+      window.SVGPathSegLinetoVerticalAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._y;
+      };
+
+      window.SVGPathSegLinetoVerticalAbs.prototype.clone = function () {
+        return new window.SVGPathSegLinetoVerticalAbs(undefined, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoVerticalAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegLinetoVerticalRel = function (owningPathSegList, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL, "v", owningPathSegList);
+        this._y = y;
+      };
+
+      window.SVGPathSegLinetoVerticalRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegLinetoVerticalRel.prototype.toString = function () {
+        return "[object SVGPathSegLinetoVerticalRel]";
+      };
+
+      window.SVGPathSegLinetoVerticalRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._y;
+      };
+
+      window.SVGPathSegLinetoVerticalRel.prototype.clone = function () {
+        return new window.SVGPathSegLinetoVerticalRel(undefined, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegLinetoVerticalRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoCubicSmoothAbs = function (owningPathSegList, x, y, x2, y2) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, "S", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x2 = x2;
+        this._y2 = y2;
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoCubicSmoothAbs.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoCubicSmoothAbs]";
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothAbs.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, this._x, this._y, this._x2, this._y2);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x2", {
+        get: function get() {
+          return this._x2;
+        },
+        set: function set(x2) {
+          this._x2 = x2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y2", {
+        get: function get() {
+          return this._y2;
+        },
+        set: function set(y2) {
+          this._y2 = y2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoCubicSmoothRel = function (owningPathSegList, x, y, x2, y2) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL, "s", owningPathSegList);
+        this._x = x;
+        this._y = y;
+        this._x2 = x2;
+        this._y2 = y2;
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoCubicSmoothRel.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoCubicSmoothRel]";
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoCubicSmoothRel.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, this._x, this._y, this._x2, this._y2);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x2", {
+        get: function get() {
+          return this._x2;
+        },
+        set: function set(x2) {
+          this._x2 = x2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y2", {
+        get: function get() {
+          return this._y2;
+        },
+        set: function set(y2) {
+          this._y2 = y2;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoQuadraticSmoothAbs = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, "T", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoQuadraticSmoothAbs]";
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+
+      window.SVGPathSegCurvetoQuadraticSmoothRel = function (owningPathSegList, x, y) {
+        window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, "t", owningPathSegList);
+        this._x = x;
+        this._y = y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
+
+      window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.toString = function () {
+        return "[object SVGPathSegCurvetoQuadraticSmoothRel]";
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothRel.prototype._asPathString = function () {
+        return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
+      };
+
+      window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.clone = function () {
+        return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, this._x, this._y);
+      };
+
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "x", {
+        get: function get() {
+          return this._x;
+        },
+        set: function set(x) {
+          this._x = x;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "y", {
+        get: function get() {
+          return this._y;
+        },
+        set: function set(y) {
+          this._y = y;
+
+          this._segmentChanged();
+        },
+        enumerable: true
+      }); // Add createSVGPathSeg* functions to window.SVGPathElement.
+      // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-Interfacewindow.SVGPathElement.
+
+      window.SVGPathElement.prototype.createSVGPathSegClosePath = function () {
+        return new window.SVGPathSegClosePath(undefined);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegMovetoAbs = function (x, y) {
+        return new window.SVGPathSegMovetoAbs(undefined, x, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegMovetoRel = function (x, y) {
+        return new window.SVGPathSegMovetoRel(undefined, x, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoAbs = function (x, y) {
+        return new window.SVGPathSegLinetoAbs(undefined, x, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoRel = function (x, y) {
+        return new window.SVGPathSegLinetoRel(undefined, x, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicAbs = function (x, y, x1, y1, x2, y2) {
+        return new window.SVGPathSegCurvetoCubicAbs(undefined, x, y, x1, y1, x2, y2);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicRel = function (x, y, x1, y1, x2, y2) {
+        return new window.SVGPathSegCurvetoCubicRel(undefined, x, y, x1, y1, x2, y2);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticAbs = function (x, y, x1, y1) {
+        return new window.SVGPathSegCurvetoQuadraticAbs(undefined, x, y, x1, y1);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticRel = function (x, y, x1, y1) {
+        return new window.SVGPathSegCurvetoQuadraticRel(undefined, x, y, x1, y1);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegArcAbs = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
+        return new window.SVGPathSegArcAbs(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegArcRel = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
+        return new window.SVGPathSegArcRel(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalAbs = function (x) {
+        return new window.SVGPathSegLinetoHorizontalAbs(undefined, x);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalRel = function (x) {
+        return new window.SVGPathSegLinetoHorizontalRel(undefined, x);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalAbs = function (y) {
+        return new window.SVGPathSegLinetoVerticalAbs(undefined, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalRel = function (y) {
+        return new window.SVGPathSegLinetoVerticalRel(undefined, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothAbs = function (x, y, x2, y2) {
+        return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, x, y, x2, y2);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothRel = function (x, y, x2, y2) {
+        return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, x, y, x2, y2);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothAbs = function (x, y) {
+        return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, x, y);
+      };
+
+      window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothRel = function (x, y) {
+        return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, x, y);
+      };
+
+      if (!("getPathSegAtLength" in window.SVGPathElement.prototype)) {
+        // Add getPathSegAtLength to SVGPathElement.
+        // Spec: https://www.w3.org/TR/SVG11/single-page.html#paths-__svg__SVGPathElement__getPathSegAtLength
+        // This polyfill requires SVGPathElement.getTotalLength to implement the distance-along-a-path algorithm.
+        window.SVGPathElement.prototype.getPathSegAtLength = function (distance) {
+          if (distance === undefined || !isFinite(distance)) throw "Invalid arguments.";
+          var measurementElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
+          measurementElement.setAttribute("d", this.getAttribute("d"));
+          var lastPathSegment = measurementElement.pathSegList.numberOfItems - 1; // If the path is empty, return 0.
+
+          if (lastPathSegment <= 0) return 0;
+
+          do {
+            measurementElement.pathSegList.removeItem(lastPathSegment);
+            if (distance > measurementElement.getTotalLength()) break;
+            lastPathSegment--;
+          } while (lastPathSegment > 0);
+
+          return lastPathSegment;
+        };
+      }
+    }
+
+    if (!("SVGPathSegList" in window)) {
+      // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGPathSegList
+      window.SVGPathSegList = function (pathElement) {
+        this._pathElement = pathElement;
+        this._list = this._parsePath(this._pathElement.getAttribute("d")); // Use a MutationObserver to catch changes to the path's "d" attribute.
+
+        this._mutationObserverConfig = {
+          "attributes": true,
+          "attributeFilter": ["d"]
+        };
+        this._pathElementMutationObserver = new MutationObserver(this._updateListFromPathMutations.bind(this));
+
+        this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
+      };
+
+      window.SVGPathSegList.prototype.classname = "SVGPathSegList";
+      Object.defineProperty(window.SVGPathSegList.prototype, "numberOfItems", {
+        get: function get() {
+          this._checkPathSynchronizedToList();
+
+          return this._list.length;
+        },
+        enumerable: true
+      }); // Add the pathSegList accessors to window.SVGPathElement.
+      // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-InterfaceSVGAnimatedPathData
+
+      Object.defineProperty(window.SVGPathElement.prototype, "pathSegList", {
+        get: function get() {
+          if (!this._pathSegList) this._pathSegList = new window.SVGPathSegList(this);
+          return this._pathSegList;
+        },
+        enumerable: true
+      }); // FIXME: The following are not implemented and simply return window.SVGPathElement.pathSegList.
+
+      Object.defineProperty(window.SVGPathElement.prototype, "normalizedPathSegList", {
+        get: function get() {
+          return this.pathSegList;
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathElement.prototype, "animatedPathSegList", {
+        get: function get() {
+          return this.pathSegList;
+        },
+        enumerable: true
+      });
+      Object.defineProperty(window.SVGPathElement.prototype, "animatedNormalizedPathSegList", {
+        get: function get() {
+          return this.pathSegList;
+        },
+        enumerable: true
+      }); // Process any pending mutations to the path element and update the list as needed.
+      // This should be the first call of all public functions and is needed because
+      // MutationObservers are not synchronous so we can have pending asynchronous mutations.
+
+      window.SVGPathSegList.prototype._checkPathSynchronizedToList = function () {
+        this._updateListFromPathMutations(this._pathElementMutationObserver.takeRecords());
+      };
+
+      window.SVGPathSegList.prototype._updateListFromPathMutations = function (mutationRecords) {
+        if (!this._pathElement) return;
+        var hasPathMutations = false;
+        mutationRecords.forEach(function (record) {
+          if (record.attributeName == "d") hasPathMutations = true;
+        });
+        if (hasPathMutations) this._list = this._parsePath(this._pathElement.getAttribute("d"));
+      }; // Serialize the list and update the path's 'd' attribute.
+
+
+      window.SVGPathSegList.prototype._writeListToPath = function () {
+        this._pathElementMutationObserver.disconnect();
+
+        this._pathElement.setAttribute("d", window.SVGPathSegList._pathSegArrayAsString(this._list));
+
+        this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
+      }; // When a path segment changes the list needs to be synchronized back to the path element.
+
+
+      window.SVGPathSegList.prototype.segmentChanged = function (pathSeg) {
+        this._writeListToPath();
+      };
+
+      window.SVGPathSegList.prototype.clear = function () {
+        this._checkPathSynchronizedToList();
+
+        this._list.forEach(function (pathSeg) {
+          pathSeg._owningPathSegList = null;
+        });
+
+        this._list = [];
+
+        this._writeListToPath();
+      };
+
+      window.SVGPathSegList.prototype.initialize = function (newItem) {
+        this._checkPathSynchronizedToList();
+
+        this._list = [newItem];
+        newItem._owningPathSegList = this;
+
+        this._writeListToPath();
+
+        return newItem;
+      };
+
+      window.SVGPathSegList.prototype._checkValidIndex = function (index) {
+        if (isNaN(index) || index < 0 || index >= this.numberOfItems) throw "INDEX_SIZE_ERR";
+      };
+
+      window.SVGPathSegList.prototype.getItem = function (index) {
+        this._checkPathSynchronizedToList();
+
+        this._checkValidIndex(index);
+
+        return this._list[index];
+      };
+
+      window.SVGPathSegList.prototype.insertItemBefore = function (newItem, index) {
+        this._checkPathSynchronizedToList(); // Spec: If the index is greater than or equal to numberOfItems, then the new item is appended to the end of the list.
+
+
+        if (index > this.numberOfItems) index = this.numberOfItems;
+
+        if (newItem._owningPathSegList) {
+          // SVG2 spec says to make a copy.
+          newItem = newItem.clone();
+        }
+
+        this._list.splice(index, 0, newItem);
+
+        newItem._owningPathSegList = this;
+
+        this._writeListToPath();
+
+        return newItem;
+      };
+
+      window.SVGPathSegList.prototype.replaceItem = function (newItem, index) {
+        this._checkPathSynchronizedToList();
+
+        if (newItem._owningPathSegList) {
+          // SVG2 spec says to make a copy.
+          newItem = newItem.clone();
+        }
+
+        this._checkValidIndex(index);
+
+        this._list[index] = newItem;
+        newItem._owningPathSegList = this;
+
+        this._writeListToPath();
+
+        return newItem;
+      };
+
+      window.SVGPathSegList.prototype.removeItem = function (index) {
+        this._checkPathSynchronizedToList();
+
+        this._checkValidIndex(index);
+
+        var item = this._list[index];
+
+        this._list.splice(index, 1);
+
+        this._writeListToPath();
+
+        return item;
+      };
+
+      window.SVGPathSegList.prototype.appendItem = function (newItem) {
+        this._checkPathSynchronizedToList();
+
+        if (newItem._owningPathSegList) {
+          // SVG2 spec says to make a copy.
+          newItem = newItem.clone();
+        }
+
+        this._list.push(newItem);
+
+        newItem._owningPathSegList = this; // TODO: Optimize this to just append to the existing attribute.
+
+        this._writeListToPath();
+
+        return newItem;
+      };
+
+      window.SVGPathSegList._pathSegArrayAsString = function (pathSegArray) {
+        var string = "";
+        var first = true;
+        pathSegArray.forEach(function (pathSeg) {
+          if (first) {
+            first = false;
+            string += pathSeg._asPathString();
+          } else {
+            string += " " + pathSeg._asPathString();
+          }
+        });
+        return string;
+      }; // This closely follows SVGPathParser::parsePath from Source/core/svg/SVGPathParser.cpp.
+
+
+      window.SVGPathSegList.prototype._parsePath = function (string) {
+        if (!string || string.length == 0) return [];
+        var owningPathSegList = this;
+
+        var Builder = function Builder() {
+          this.pathSegList = [];
+        };
+
+        Builder.prototype.appendSegment = function (pathSeg) {
+          this.pathSegList.push(pathSeg);
+        };
+
+        var Source = function Source(string) {
+          this._string = string;
+          this._currentIndex = 0;
+          this._endIndex = this._string.length;
+          this._previousCommand = window.SVGPathSeg.PATHSEG_UNKNOWN;
+
+          this._skipOptionalSpaces();
+        };
+
+        Source.prototype._isCurrentSpace = function () {
+          var character = this._string[this._currentIndex];
+          return character <= " " && (character == " " || character == "\n" || character == "\t" || character == "\r" || character == "\f");
+        };
+
+        Source.prototype._skipOptionalSpaces = function () {
+          while (this._currentIndex < this._endIndex && this._isCurrentSpace()) {
+            this._currentIndex++;
+          }
+
+          return this._currentIndex < this._endIndex;
+        };
+
+        Source.prototype._skipOptionalSpacesOrDelimiter = function () {
+          if (this._currentIndex < this._endIndex && !this._isCurrentSpace() && this._string.charAt(this._currentIndex) != ",") return false;
+
+          if (this._skipOptionalSpaces()) {
+            if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ",") {
+              this._currentIndex++;
+
+              this._skipOptionalSpaces();
+            }
+          }
+
+          return this._currentIndex < this._endIndex;
+        };
+
+        Source.prototype.hasMoreData = function () {
+          return this._currentIndex < this._endIndex;
+        };
+
+        Source.prototype.peekSegmentType = function () {
+          var lookahead = this._string[this._currentIndex];
+          return this._pathSegTypeFromChar(lookahead);
+        };
+
+        Source.prototype._pathSegTypeFromChar = function (lookahead) {
+          switch (lookahead) {
+            case "Z":
+            case "z":
+              return window.SVGPathSeg.PATHSEG_CLOSEPATH;
+
+            case "M":
+              return window.SVGPathSeg.PATHSEG_MOVETO_ABS;
+
+            case "m":
+              return window.SVGPathSeg.PATHSEG_MOVETO_REL;
+
+            case "L":
+              return window.SVGPathSeg.PATHSEG_LINETO_ABS;
+
+            case "l":
+              return window.SVGPathSeg.PATHSEG_LINETO_REL;
+
+            case "C":
+              return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS;
+
+            case "c":
+              return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL;
+
+            case "Q":
+              return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS;
+
+            case "q":
+              return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL;
+
+            case "A":
+              return window.SVGPathSeg.PATHSEG_ARC_ABS;
+
+            case "a":
+              return window.SVGPathSeg.PATHSEG_ARC_REL;
+
+            case "H":
+              return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;
+
+            case "h":
+              return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL;
+
+            case "V":
+              return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS;
+
+            case "v":
+              return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL;
+
+            case "S":
+              return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS;
+
+            case "s":
+              return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL;
+
+            case "T":
+              return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS;
+
+            case "t":
+              return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL;
+
+            default:
+              return window.SVGPathSeg.PATHSEG_UNKNOWN;
+          }
+        };
+
+        Source.prototype._nextCommandHelper = function (lookahead, previousCommand) {
+          // Check for remaining coordinates in the current command.
+          if ((lookahead == "+" || lookahead == "-" || lookahead == "." || lookahead >= "0" && lookahead <= "9") && previousCommand != window.SVGPathSeg.PATHSEG_CLOSEPATH) {
+            if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_ABS) return window.SVGPathSeg.PATHSEG_LINETO_ABS;
+            if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_REL) return window.SVGPathSeg.PATHSEG_LINETO_REL;
+            return previousCommand;
+          }
+
+          return window.SVGPathSeg.PATHSEG_UNKNOWN;
+        };
+
+        Source.prototype.initialCommandIsMoveTo = function () {
+          // If the path is empty it is still valid, so return true.
+          if (!this.hasMoreData()) return true;
+          var command = this.peekSegmentType(); // Path must start with moveTo.
+
+          return command == window.SVGPathSeg.PATHSEG_MOVETO_ABS || command == window.SVGPathSeg.PATHSEG_MOVETO_REL;
+        }; // Parse a number from an SVG path. This very closely follows genericParseNumber(...) from Source/core/svg/SVGParserUtilities.cpp.
+        // Spec: http://www.w3.org/TR/SVG11/single-page.html#paths-PathDataBNF
+
+
+        Source.prototype._parseNumber = function () {
+          var exponent = 0;
+          var integer = 0;
+          var frac = 1;
+          var decimal = 0;
+          var sign = 1;
+          var expsign = 1;
+          var startIndex = this._currentIndex;
+
+          this._skipOptionalSpaces(); // Read the sign.
+
+
+          if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "+") this._currentIndex++;else if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "-") {
+            this._currentIndex++;
+            sign = -1;
+          }
+          if (this._currentIndex == this._endIndex || (this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") && this._string.charAt(this._currentIndex) != ".") // The first character of a number must be one of [0-9+-.].
+            return undefined; // Read the integer part, build right-to-left.
+
+          var startIntPartIndex = this._currentIndex;
+
+          while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
+            this._currentIndex++;
+          } // Advance to first non-digit.
+
+
+          if (this._currentIndex != startIntPartIndex) {
+            var scanIntPartIndex = this._currentIndex - 1;
+            var multiplier = 1;
+
+            while (scanIntPartIndex >= startIntPartIndex) {
+              integer += multiplier * (this._string.charAt(scanIntPartIndex--) - "0");
+              multiplier *= 10;
+            }
+          } // Read the decimals.
+
+
+          if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ".") {
+            this._currentIndex++; // There must be a least one digit following the .
+
+            if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
+
+            while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
+              frac *= 10;
+              decimal += (this._string.charAt(this._currentIndex) - "0") / frac;
+              this._currentIndex += 1;
+            }
+          } // Read the exponent part.
+
+
+          if (this._currentIndex != startIndex && this._currentIndex + 1 < this._endIndex && (this._string.charAt(this._currentIndex) == "e" || this._string.charAt(this._currentIndex) == "E") && this._string.charAt(this._currentIndex + 1) != "x" && this._string.charAt(this._currentIndex + 1) != "m") {
+            this._currentIndex++; // Read the sign of the exponent.
+
+            if (this._string.charAt(this._currentIndex) == "+") {
+              this._currentIndex++;
+            } else if (this._string.charAt(this._currentIndex) == "-") {
+              this._currentIndex++;
+              expsign = -1;
+            } // There must be an exponent.
+
+
+            if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
+
+            while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
+              exponent *= 10;
+              exponent += this._string.charAt(this._currentIndex) - "0";
+              this._currentIndex++;
             }
             }
-            this._current = d;
-        }).merge(arcs);
-        if (hasGaugeType) {
-            arcLabelLines = main.selectAll('.' + CLASS.arcs).selectAll('.' + CLASS.arcLabelLine).data($$.arcData.bind($$));
-            mainArcLabelLine = arcLabelLines.enter().append('rect').attr("class", function (d) {
-                return CLASS.arcLabelLine + ' ' + CLASS.target + ' ' + CLASS.target + '-' + d.data.id;
-            }).merge(arcLabelLines);
-
-            if ($$.filterTargetsToShow($$.data.targets).length === 1) {
-                mainArcLabelLine.style("display", "none");
-            } else {
-                mainArcLabelLine.style("fill", function (d) {
-                    return config.color_pattern.length > 0 ? $$.levelColor(d.data.values[0].value) : $$.color(d.data);
-                }).style("display", config.gauge_labelLine_show ? "" : "none").each(function (d) {
-                    var lineLength = 0,
-                        lineThickness = 2,
-                        x = 0,
-                        y = 0,
-                        transform = "";
-                    if ($$.hiddenTargetIds.indexOf(d.data.id) < 0) {
-                        var updated = $$.updateAngle(d),
-                            innerLineLength = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length * (updated.index + 1),
-                            lineAngle = updated.endAngle - Math.PI / 2,
-                            arcInnerRadius = $$.radius - innerLineLength,
-                            linePositioningAngle = lineAngle - (arcInnerRadius === 0 ? 0 : 1 / arcInnerRadius);
-                        lineLength = $$.radiusExpanded - $$.radius + innerLineLength;
-                        x = Math.cos(linePositioningAngle) * arcInnerRadius;
-                        y = Math.sin(linePositioningAngle) * arcInnerRadius;
-                        transform = "rotate(" + lineAngle * 180 / Math.PI + ", " + x + ", " + y + ")";
-                    }
-                    d3.select(this).attr('x', x).attr('y', y).attr('width', lineLength).attr('height', lineThickness).attr('transform', transform).style("stroke-dasharray", "0, " + (lineLength + lineThickness) + ", 0");
-                });
+          }
+
+          var number = integer + decimal;
+          number *= sign;
+          if (exponent) number *= Math.pow(10, expsign * exponent);
+          if (startIndex == this._currentIndex) return undefined;
+
+          this._skipOptionalSpacesOrDelimiter();
+
+          return number;
+        };
+
+        Source.prototype._parseArcFlag = function () {
+          if (this._currentIndex >= this._endIndex) return undefined;
+          var flag = false;
+
+          var flagChar = this._string.charAt(this._currentIndex++);
+
+          if (flagChar == "0") flag = false;else if (flagChar == "1") flag = true;else return undefined;
+
+          this._skipOptionalSpacesOrDelimiter();
+
+          return flag;
+        };
+
+        Source.prototype.parseSegment = function () {
+          var lookahead = this._string[this._currentIndex];
+
+          var command = this._pathSegTypeFromChar(lookahead);
+
+          if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) {
+            // Possibly an implicit command. Not allowed if this is the first command.
+            if (this._previousCommand == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
+            command = this._nextCommandHelper(lookahead, this._previousCommand);
+            if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
+          } else {
+            this._currentIndex++;
+          }
+
+          this._previousCommand = command;
+
+          switch (command) {
+            case window.SVGPathSeg.PATHSEG_MOVETO_REL:
+              return new window.SVGPathSegMovetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_MOVETO_ABS:
+              return new window.SVGPathSegMovetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_REL:
+              return new window.SVGPathSegLinetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_ABS:
+              return new window.SVGPathSegLinetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:
+              return new window.SVGPathSegLinetoHorizontalRel(owningPathSegList, this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:
+              return new window.SVGPathSegLinetoHorizontalAbs(owningPathSegList, this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
+              return new window.SVGPathSegLinetoVerticalRel(owningPathSegList, this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
+              return new window.SVGPathSegLinetoVerticalAbs(owningPathSegList, this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_CLOSEPATH:
+              this._skipOptionalSpaces();
+
+              return new window.SVGPathSegClosePath(owningPathSegList);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                x2: this._parseNumber(),
+                y2: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoCubicRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                x2: this._parseNumber(),
+                y2: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoCubicAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:
+              var points = {
+                x2: this._parseNumber(),
+                y2: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoCubicSmoothRel(owningPathSegList, points.x, points.y, points.x2, points.y2);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:
+              var points = {
+                x2: this._parseNumber(),
+                y2: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoCubicSmoothAbs(owningPathSegList, points.x, points.y, points.x2, points.y2);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoQuadraticRel(owningPathSegList, points.x, points.y, points.x1, points.y1);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegCurvetoQuadraticAbs(owningPathSegList, points.x, points.y, points.x1, points.y1);
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL:
+              return new window.SVGPathSegCurvetoQuadraticSmoothRel(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS:
+              return new window.SVGPathSegCurvetoQuadraticSmoothAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
+
+            case window.SVGPathSeg.PATHSEG_ARC_REL:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                arcAngle: this._parseNumber(),
+                arcLarge: this._parseArcFlag(),
+                arcSweep: this._parseArcFlag(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegArcRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
+
+            case window.SVGPathSeg.PATHSEG_ARC_ABS:
+              var points = {
+                x1: this._parseNumber(),
+                y1: this._parseNumber(),
+                arcAngle: this._parseNumber(),
+                arcLarge: this._parseArcFlag(),
+                arcSweep: this._parseArcFlag(),
+                x: this._parseNumber(),
+                y: this._parseNumber()
+              };
+              return new window.SVGPathSegArcAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
+
+            default:
+              throw "Unknown path seg type.";
+          }
+        };
+
+        var builder = new Builder();
+        var source = new Source(string);
+        if (!source.initialCommandIsMoveTo()) return [];
+
+        while (source.hasMoreData()) {
+          var pathSeg = source.parseSegment();
+          if (!pathSeg) return [];
+          builder.appendSegment(pathSeg);
+        }
+
+        return builder.pathSegList;
+      };
+    }
+  })(); // String.padEnd polyfill for IE11
+  //
+  // https://github.com/uxitten/polyfill/blob/master/string.polyfill.js
+  // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd
+
+
+  if (!String.prototype.padEnd) {
+    String.prototype.padEnd = function padEnd(targetLength, padString) {
+      targetLength = targetLength >> 0; //floor if number or convert non-number to 0;
+
+      padString = String(typeof padString !== 'undefined' ? padString : ' ');
+
+      if (this.length > targetLength) {
+        return String(this);
+      } else {
+        targetLength = targetLength - this.length;
+
+        if (targetLength > padString.length) {
+          padString += padString.repeat(targetLength / padString.length); //append to original to ensure we are longer than needed
+        }
+
+        return String(this) + padString.slice(0, targetLength);
+      }
+    };
+  }
+  /* jshint ignore:end */
+
+  Chart.prototype.axis = function () {};
+
+  Chart.prototype.axis.labels = function (labels) {
+    var $$ = this.internal;
+
+    if (arguments.length) {
+      Object.keys(labels).forEach(function (axisId) {
+        $$.axis.setLabelText(axisId, labels[axisId]);
+      });
+      $$.axis.updateLabels();
+    } // TODO: return some values?
+
+  };
+
+  Chart.prototype.axis.max = function (max) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (arguments.length) {
+      if (_typeof(max) === 'object') {
+        if (isValue(max.x)) {
+          config.axis_x_max = max.x;
+        }
+
+        if (isValue(max.y)) {
+          config.axis_y_max = max.y;
+        }
+
+        if (isValue(max.y2)) {
+          config.axis_y2_max = max.y2;
+        }
+      } else {
+        config.axis_y_max = config.axis_y2_max = max;
+      }
+
+      $$.redraw({
+        withUpdateOrgXDomain: true,
+        withUpdateXDomain: true
+      });
+    } else {
+      return {
+        x: config.axis_x_max,
+        y: config.axis_y_max,
+        y2: config.axis_y2_max
+      };
+    }
+  };
+
+  Chart.prototype.axis.min = function (min) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (arguments.length) {
+      if (_typeof(min) === 'object') {
+        if (isValue(min.x)) {
+          config.axis_x_min = min.x;
+        }
+
+        if (isValue(min.y)) {
+          config.axis_y_min = min.y;
+        }
+
+        if (isValue(min.y2)) {
+          config.axis_y2_min = min.y2;
+        }
+      } else {
+        config.axis_y_min = config.axis_y2_min = min;
+      }
+
+      $$.redraw({
+        withUpdateOrgXDomain: true,
+        withUpdateXDomain: true
+      });
+    } else {
+      return {
+        x: config.axis_x_min,
+        y: config.axis_y_min,
+        y2: config.axis_y2_min
+      };
+    }
+  };
+
+  Chart.prototype.axis.range = function (range) {
+    if (arguments.length) {
+      if (isDefined(range.max)) {
+        this.axis.max(range.max);
+      }
+
+      if (isDefined(range.min)) {
+        this.axis.min(range.min);
+      }
+    } else {
+      return {
+        max: this.axis.max(),
+        min: this.axis.min()
+      };
+    }
+  };
+
+  Chart.prototype.category = function (i, category) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (arguments.length > 1) {
+      config.axis_x_categories[i] = category;
+      $$.redraw();
+    }
+
+    return config.axis_x_categories[i];
+  };
+
+  Chart.prototype.categories = function (categories) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (!arguments.length) {
+      return config.axis_x_categories;
+    }
+
+    config.axis_x_categories = categories;
+    $$.redraw();
+    return config.axis_x_categories;
+  };
+
+  Chart.prototype.resize = function (size) {
+    var $$ = this.internal,
+        config = $$.config;
+    config.size_width = size ? size.width : null;
+    config.size_height = size ? size.height : null;
+    this.flush();
+  };
+
+  Chart.prototype.flush = function () {
+    var $$ = this.internal;
+    $$.updateAndRedraw({
+      withLegend: true,
+      withTransition: false,
+      withTransitionForTransform: false
+    });
+  };
+
+  Chart.prototype.destroy = function () {
+    var $$ = this.internal;
+    window.clearInterval($$.intervalForObserveInserted);
+
+    if ($$.resizeTimeout !== undefined) {
+      window.clearTimeout($$.resizeTimeout);
+    }
+
+    if (window.detachEvent) {
+      window.detachEvent('onresize', $$.resizeIfElementDisplayed);
+    } else if (window.removeEventListener) {
+      window.removeEventListener('resize', $$.resizeIfElementDisplayed);
+    } else {
+      var wrapper = window.onresize; // check if no one else removed our wrapper and remove our resizeFunction from it
+
+      if (wrapper && wrapper.add && wrapper.remove) {
+        wrapper.remove($$.resizeFunction);
+      }
+    } // Removes the inner resize functions
+
+
+    $$.resizeFunction.remove(); // Unbinds from the window focus event
+
+    $$.unbindWindowFocus();
+    $$.selectChart.classed('c3', false).html(""); // MEMO: this is needed because the reference of some elements will not be released, then memory leak will happen.
+
+    Object.keys($$).forEach(function (key) {
+      $$[key] = null;
+    });
+    return null;
+  };
+
+  Chart.prototype.color = function (id) {
+    var $$ = this.internal;
+    return $$.color(id); // more patterns
+  };
+
+  Chart.prototype.data = function (targetIds) {
+    var targets = this.internal.data.targets;
+    return typeof targetIds === 'undefined' ? targets : targets.filter(function (t) {
+      return [].concat(targetIds).indexOf(t.id) >= 0;
+    });
+  };
+
+  Chart.prototype.data.shown = function (targetIds) {
+    return this.internal.filterTargetsToShow(this.data(targetIds));
+  };
+
+  Chart.prototype.data.values = function (targetId) {
+    var targets,
+        values = null;
+
+    if (targetId) {
+      targets = this.data(targetId);
+      values = targets[0] ? targets[0].values.map(function (d) {
+        return d.value;
+      }) : null;
+    }
+
+    return values;
+  };
+
+  Chart.prototype.data.names = function (names) {
+    this.internal.clearLegendItemTextBoxCache();
+    return this.internal.updateDataAttributes('names', names);
+  };
+
+  Chart.prototype.data.colors = function (colors) {
+    return this.internal.updateDataAttributes('colors', colors);
+  };
+
+  Chart.prototype.data.axes = function (axes) {
+    return this.internal.updateDataAttributes('axes', axes);
+  };
+
+  Chart.prototype.flow = function (args) {
+    var $$ = this.internal,
+        targets,
+        data,
+        notfoundIds = [],
+        orgDataCount = $$.getMaxDataCount(),
+        dataCount,
+        domain,
+        baseTarget,
+        baseValue,
+        length = 0,
+        tail = 0,
+        diff,
+        to;
+
+    if (args.json) {
+      data = $$.convertJsonToData(args.json, args.keys);
+    } else if (args.rows) {
+      data = $$.convertRowsToData(args.rows);
+    } else if (args.columns) {
+      data = $$.convertColumnsToData(args.columns);
+    } else {
+      return;
+    }
+
+    targets = $$.convertDataToTargets(data, true); // Update/Add data
+
+    $$.data.targets.forEach(function (t) {
+      var found = false,
+          i,
+          j;
+
+      for (i = 0; i < targets.length; i++) {
+        if (t.id === targets[i].id) {
+          found = true;
+
+          if (t.values[t.values.length - 1]) {
+            tail = t.values[t.values.length - 1].index + 1;
+          }
+
+          length = targets[i].values.length;
+
+          for (j = 0; j < length; j++) {
+            targets[i].values[j].index = tail + j;
+
+            if (!$$.isTimeSeries()) {
+              targets[i].values[j].x = tail + j;
             }
             }
+          }
+
+          t.values = t.values.concat(targets[i].values);
+          targets.splice(i, 1);
+          break;
+        }
+      }
+
+      if (!found) {
+        notfoundIds.push(t.id);
+      }
+    }); // Append null for not found targets
+
+    $$.data.targets.forEach(function (t) {
+      var i, j;
+
+      for (i = 0; i < notfoundIds.length; i++) {
+        if (t.id === notfoundIds[i]) {
+          tail = t.values[t.values.length - 1].index + 1;
+
+          for (j = 0; j < length; j++) {
+            t.values.push({
+              id: t.id,
+              index: tail + j,
+              x: $$.isTimeSeries() ? $$.getOtherTargetX(tail + j) : tail + j,
+              value: null
+            });
+          }
+        }
+      }
+    }); // Generate null values for new target
+
+    if ($$.data.targets.length) {
+      targets.forEach(function (t) {
+        var i,
+            missing = [];
+
+        for (i = $$.data.targets[0].values[0].index; i < tail; i++) {
+          missing.push({
+            id: t.id,
+            index: i,
+            x: $$.isTimeSeries() ? $$.getOtherTargetX(i) : i,
+            value: null
+          });
+        }
+
+        t.values.forEach(function (v) {
+          v.index += tail;
+
+          if (!$$.isTimeSeries()) {
+            v.x += tail;
+          }
+        });
+        t.values = missing.concat(t.values);
+      });
+    }
+
+    $$.data.targets = $$.data.targets.concat(targets); // add remained
+    // check data count because behavior needs to change when it's only one
+
+    dataCount = $$.getMaxDataCount();
+    baseTarget = $$.data.targets[0];
+    baseValue = baseTarget.values[0]; // Update length to flow if needed
+
+    if (isDefined(args.to)) {
+      length = 0;
+      to = $$.isTimeSeries() ? $$.parseDate(args.to) : args.to;
+      baseTarget.values.forEach(function (v) {
+        if (v.x < to) {
+          length++;
+        }
+      });
+    } else if (isDefined(args.length)) {
+      length = args.length;
+    } // If only one data, update the domain to flow from left edge of the chart
+
+
+    if (!orgDataCount) {
+      if ($$.isTimeSeries()) {
+        if (baseTarget.values.length > 1) {
+          diff = baseTarget.values[baseTarget.values.length - 1].x - baseValue.x;
+        } else {
+          diff = baseValue.x - $$.getXDomain($$.data.targets)[0];
+        }
+      } else {
+        diff = 1;
+      }
+
+      domain = [baseValue.x - diff, baseValue.x];
+      $$.updateXDomain(null, true, true, false, domain);
+    } else if (orgDataCount === 1) {
+      if ($$.isTimeSeries()) {
+        diff = (baseTarget.values[baseTarget.values.length - 1].x - baseValue.x) / 2;
+        domain = [new Date(+baseValue.x - diff), new Date(+baseValue.x + diff)];
+        $$.updateXDomain(null, true, true, false, domain);
+      }
+    } // Set targets
+
+
+    $$.updateTargets($$.data.targets); // Redraw with new targets
+
+    $$.redraw({
+      flow: {
+        index: baseValue.index,
+        length: length,
+        duration: isValue(args.duration) ? args.duration : $$.config.transition_duration,
+        done: args.done,
+        orgDataCount: orgDataCount
+      },
+      withLegend: true,
+      withTransition: orgDataCount > 1,
+      withTrimXDomain: false,
+      withUpdateXAxis: true
+    });
+  };
+
+  ChartInternal.prototype.generateFlow = function (args) {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3;
+    return function () {
+      var targets = args.targets,
+          flow = args.flow,
+          drawBar = args.drawBar,
+          drawLine = args.drawLine,
+          drawArea = args.drawArea,
+          cx = args.cx,
+          cy = args.cy,
+          xv = args.xv,
+          xForText = args.xForText,
+          yForText = args.yForText,
+          duration = args.duration;
+
+      var translateX,
+          scaleX = 1,
+          transform,
+          flowIndex = flow.index,
+          flowLength = flow.length,
+          flowStart = $$.getValueOnIndex($$.data.targets[0].values, flowIndex),
+          flowEnd = $$.getValueOnIndex($$.data.targets[0].values, flowIndex + flowLength),
+          orgDomain = $$.x.domain(),
+          domain,
+          durationForFlow = flow.duration || duration,
+          done = flow.done || function () {},
+          wait = $$.generateWait();
+
+      var xgrid, xgridLines, mainRegion, mainText, mainBar, mainLine, mainArea, mainCircle; // set flag
+
+      $$.flowing = true; // remove head data after rendered
+
+      $$.data.targets.forEach(function (d) {
+        d.values.splice(0, flowLength);
+      }); // update x domain to generate axis elements for flow
+
+      domain = $$.updateXDomain(targets, true, true); // update elements related to x scale
+
+      if ($$.updateXGrid) {
+        $$.updateXGrid(true);
+      }
+
+      xgrid = $$.xgrid || d3.selectAll([]); // xgrid needs to be obtained after updateXGrid
+
+      xgridLines = $$.xgridLines || d3.selectAll([]);
+      mainRegion = $$.mainRegion || d3.selectAll([]);
+      mainText = $$.mainText || d3.selectAll([]);
+      mainBar = $$.mainBar || d3.selectAll([]);
+      mainLine = $$.mainLine || d3.selectAll([]);
+      mainArea = $$.mainArea || d3.selectAll([]);
+      mainCircle = $$.mainCircle || d3.selectAll([]); // generate transform to flow
+
+      if (!flow.orgDataCount) {
+        // if empty
+        if ($$.data.targets[0].values.length !== 1) {
+          translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
+        } else {
+          if ($$.isTimeSeries()) {
+            flowStart = $$.getValueOnIndex($$.data.targets[0].values, 0);
+            flowEnd = $$.getValueOnIndex($$.data.targets[0].values, $$.data.targets[0].values.length - 1);
+            translateX = $$.x(flowStart.x) - $$.x(flowEnd.x);
+          } else {
+            translateX = diffDomain(domain) / 2;
+          }
+        }
+      } else if (flow.orgDataCount === 1 || (flowStart && flowStart.x) === (flowEnd && flowEnd.x)) {
+        translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
+      } else {
+        if ($$.isTimeSeries()) {
+          translateX = $$.x(orgDomain[0]) - $$.x(domain[0]);
+        } else {
+          translateX = $$.x(flowStart.x) - $$.x(flowEnd.x);
+        }
+      }
+
+      scaleX = diffDomain(orgDomain) / diffDomain(domain);
+      transform = 'translate(' + translateX + ',0) scale(' + scaleX + ',1)';
+      $$.hideXGridFocus();
+      var flowTransition = d3.transition().ease(d3.easeLinear).duration(durationForFlow);
+      wait.add($$.xAxis($$.axes.x, flowTransition));
+      wait.add(mainBar.transition(flowTransition).attr('transform', transform));
+      wait.add(mainLine.transition(flowTransition).attr('transform', transform));
+      wait.add(mainArea.transition(flowTransition).attr('transform', transform));
+      wait.add(mainCircle.transition(flowTransition).attr('transform', transform));
+      wait.add(mainText.transition(flowTransition).attr('transform', transform));
+      wait.add(mainRegion.filter($$.isRegionOnX).transition(flowTransition).attr('transform', transform));
+      wait.add(xgrid.transition(flowTransition).attr('transform', transform));
+      wait.add(xgridLines.transition(flowTransition).attr('transform', transform));
+      wait(function () {
+        var i,
+            shapes = [],
+            texts = []; // remove flowed elements
+
+        if (flowLength) {
+          for (i = 0; i < flowLength; i++) {
+            shapes.push('.' + CLASS.shape + '-' + (flowIndex + i));
+            texts.push('.' + CLASS.text + '-' + (flowIndex + i));
+          }
+
+          $$.svg.selectAll('.' + CLASS.shapes).selectAll(shapes).remove();
+          $$.svg.selectAll('.' + CLASS.texts).selectAll(texts).remove();
+          $$.svg.select('.' + CLASS.xgrid).remove();
+        } // draw again for removing flowed elements and reverting attr
+
+
+        xgrid.attr('transform', null).attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", $$.xgridAttr.opacity);
+        xgridLines.attr('transform', null);
+        xgridLines.select('line').attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv);
+        xgridLines.select('text').attr("x", config.axis_rotated ? $$.width : 0).attr("y", xv);
+        mainBar.attr('transform', null).attr("d", drawBar);
+        mainLine.attr('transform', null).attr("d", drawLine);
+        mainArea.attr('transform', null).attr("d", drawArea);
+        mainCircle.attr('transform', null).attr("cx", cx).attr("cy", cy);
+        mainText.attr('transform', null).attr('x', xForText).attr('y', yForText).style('fill-opacity', $$.opacityForText.bind($$));
+        mainRegion.attr('transform', null);
+        mainRegion.filter($$.isRegionOnX).attr("x", $$.regionX.bind($$)).attr("width", $$.regionWidth.bind($$)); // callback for end of flow
+
+        done();
+        $$.flowing = false;
+      });
+    };
+  };
+
+  Chart.prototype.focus = function (targetIds) {
+    var $$ = this.internal,
+        candidates;
+    targetIds = $$.mapToTargetIds(targetIds);
+    candidates = $$.svg.selectAll($$.selectorTargets(targetIds.filter($$.isTargetToShow, $$))), this.revert();
+    this.defocus();
+    candidates.classed(CLASS.focused, true).classed(CLASS.defocused, false);
+
+    if ($$.hasArcType()) {
+      $$.expandArc(targetIds);
+    }
+
+    $$.toggleFocusLegend(targetIds, true);
+    $$.focusedTargetIds = targetIds;
+    $$.defocusedTargetIds = $$.defocusedTargetIds.filter(function (id) {
+      return targetIds.indexOf(id) < 0;
+    });
+  };
+
+  Chart.prototype.defocus = function (targetIds) {
+    var $$ = this.internal,
+        candidates;
+    targetIds = $$.mapToTargetIds(targetIds);
+    candidates = $$.svg.selectAll($$.selectorTargets(targetIds.filter($$.isTargetToShow, $$))), candidates.classed(CLASS.focused, false).classed(CLASS.defocused, true);
+
+    if ($$.hasArcType()) {
+      $$.unexpandArc(targetIds);
+    }
+
+    $$.toggleFocusLegend(targetIds, false);
+    $$.focusedTargetIds = $$.focusedTargetIds.filter(function (id) {
+      return targetIds.indexOf(id) < 0;
+    });
+    $$.defocusedTargetIds = targetIds;
+  };
+
+  Chart.prototype.revert = function (targetIds) {
+    var $$ = this.internal,
+        candidates;
+    targetIds = $$.mapToTargetIds(targetIds);
+    candidates = $$.svg.selectAll($$.selectorTargets(targetIds)); // should be for all targets
+
+    candidates.classed(CLASS.focused, false).classed(CLASS.defocused, false);
+
+    if ($$.hasArcType()) {
+      $$.unexpandArc(targetIds);
+    }
+
+    if ($$.config.legend_show) {
+      $$.showLegend(targetIds.filter($$.isLegendToShow.bind($$)));
+      $$.legend.selectAll($$.selectorLegends(targetIds)).filter(function () {
+        return $$.d3.select(this).classed(CLASS.legendItemFocused);
+      }).classed(CLASS.legendItemFocused, false);
+    }
+
+    $$.focusedTargetIds = [];
+    $$.defocusedTargetIds = [];
+  };
+
+  Chart.prototype.xgrids = function (grids) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (!grids) {
+      return config.grid_x_lines;
+    }
+
+    config.grid_x_lines = grids;
+    $$.redrawWithoutRescale();
+    return config.grid_x_lines;
+  };
+
+  Chart.prototype.xgrids.add = function (grids) {
+    var $$ = this.internal;
+    return this.xgrids($$.config.grid_x_lines.concat(grids ? grids : []));
+  };
+
+  Chart.prototype.xgrids.remove = function (params) {
+    // TODO: multiple
+    var $$ = this.internal;
+    $$.removeGridLines(params, true);
+  };
+
+  Chart.prototype.ygrids = function (grids) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (!grids) {
+      return config.grid_y_lines;
+    }
+
+    config.grid_y_lines = grids;
+    $$.redrawWithoutRescale();
+    return config.grid_y_lines;
+  };
+
+  Chart.prototype.ygrids.add = function (grids) {
+    var $$ = this.internal;
+    return this.ygrids($$.config.grid_y_lines.concat(grids ? grids : []));
+  };
+
+  Chart.prototype.ygrids.remove = function (params) {
+    // TODO: multiple
+    var $$ = this.internal;
+    $$.removeGridLines(params, false);
+  };
+
+  Chart.prototype.groups = function (groups) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (isUndefined(groups)) {
+      return config.data_groups;
+    }
+
+    config.data_groups = groups;
+    $$.redraw();
+    return config.data_groups;
+  };
+
+  Chart.prototype.legend = function () {};
+
+  Chart.prototype.legend.show = function (targetIds) {
+    var $$ = this.internal;
+    $$.showLegend($$.mapToTargetIds(targetIds));
+    $$.updateAndRedraw({
+      withLegend: true
+    });
+  };
+
+  Chart.prototype.legend.hide = function (targetIds) {
+    var $$ = this.internal;
+    $$.hideLegend($$.mapToTargetIds(targetIds));
+    $$.updateAndRedraw({
+      withLegend: false
+    });
+  };
+
+  Chart.prototype.load = function (args) {
+    var $$ = this.internal,
+        config = $$.config; // update xs if specified
+
+    if (args.xs) {
+      $$.addXs(args.xs);
+    } // update names if exists
+
+
+    if ('names' in args) {
+      Chart.prototype.data.names.bind(this)(args.names);
+    } // update classes if exists
+
+
+    if ('classes' in args) {
+      Object.keys(args.classes).forEach(function (id) {
+        config.data_classes[id] = args.classes[id];
+      });
+    } // update categories if exists
+
+
+    if ('categories' in args && $$.isCategorized()) {
+      config.axis_x_categories = args.categories;
+    } // update axes if exists
+
+
+    if ('axes' in args) {
+      Object.keys(args.axes).forEach(function (id) {
+        config.data_axes[id] = args.axes[id];
+      });
+    } // update colors if exists
+
+
+    if ('colors' in args) {
+      Object.keys(args.colors).forEach(function (id) {
+        config.data_colors[id] = args.colors[id];
+      });
+    } // use cache if exists
+
+
+    if ('cacheIds' in args && $$.hasCaches(args.cacheIds)) {
+      $$.load($$.getCaches(args.cacheIds), args.done);
+      return;
+    } // unload if needed
+
+
+    if ('unload' in args) {
+      // TODO: do not unload if target will load (included in url/rows/columns)
+      $$.unload($$.mapToTargetIds(typeof args.unload === 'boolean' && args.unload ? null : args.unload), function () {
+        $$.loadFromArgs(args);
+      });
+    } else {
+      $$.loadFromArgs(args);
+    }
+  };
+
+  Chart.prototype.unload = function (args) {
+    var $$ = this.internal;
+    args = args || {};
+
+    if (args instanceof Array) {
+      args = {
+        ids: args
+      };
+    } else if (typeof args === 'string') {
+      args = {
+        ids: [args]
+      };
+    }
+
+    $$.unload($$.mapToTargetIds(args.ids), function () {
+      $$.redraw({
+        withUpdateOrgXDomain: true,
+        withUpdateXDomain: true,
+        withLegend: true
+      });
+
+      if (args.done) {
+        args.done();
+      }
+    });
+  };
+
+  Chart.prototype.regions = function (regions) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (!regions) {
+      return config.regions;
+    }
+
+    config.regions = regions;
+    $$.redrawWithoutRescale();
+    return config.regions;
+  };
+
+  Chart.prototype.regions.add = function (regions) {
+    var $$ = this.internal,
+        config = $$.config;
+
+    if (!regions) {
+      return config.regions;
+    }
+
+    config.regions = config.regions.concat(regions);
+    $$.redrawWithoutRescale();
+    return config.regions;
+  };
+
+  Chart.prototype.regions.remove = function (options) {
+    var $$ = this.internal,
+        config = $$.config,
+        duration,
+        classes,
+        regions;
+    options = options || {};
+    duration = getOption(options, "duration", config.transition_duration);
+    classes = getOption(options, "classes", [CLASS.region]);
+    regions = $$.main.select('.' + CLASS.regions).selectAll(classes.map(function (c) {
+      return '.' + c;
+    }));
+    (duration ? regions.transition().duration(duration) : regions).style('opacity', 0).remove();
+    config.regions = config.regions.filter(function (region) {
+      var found = false;
+
+      if (!region['class']) {
+        return true;
+      }
+
+      region['class'].split(' ').forEach(function (c) {
+        if (classes.indexOf(c) >= 0) {
+          found = true;
+        }
+      });
+      return !found;
+    });
+    return config.regions;
+  };
+
+  Chart.prototype.selected = function (targetId) {
+    var $$ = this.internal,
+        d3 = $$.d3;
+    return d3.merge($$.main.selectAll('.' + CLASS.shapes + $$.getTargetSelectorSuffix(targetId)).selectAll('.' + CLASS.shape).filter(function () {
+      return d3.select(this).classed(CLASS.SELECTED);
+    }).map(function (d) {
+      return d.map(function (d) {
+        var data = d.__data__;
+        return data.data ? data.data : data;
+      });
+    }));
+  };
+
+  Chart.prototype.select = function (ids, indices, resetOther) {
+    var $$ = this.internal,
+        d3 = $$.d3,
+        config = $$.config;
+
+    if (!config.data_selection_enabled) {
+      return;
+    }
+
+    $$.main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
+      var shape = d3.select(this),
+          id = d.data ? d.data.id : d.id,
+          toggle = $$.getToggle(this, d).bind($$),
+          isTargetId = config.data_selection_grouped || !ids || ids.indexOf(id) >= 0,
+          isTargetIndex = !indices || indices.indexOf(i) >= 0,
+          isSelected = shape.classed(CLASS.SELECTED); // line/area selection not supported yet
+
+      if (shape.classed(CLASS.line) || shape.classed(CLASS.area)) {
+        return;
+      }
+
+      if (isTargetId && isTargetIndex) {
+        if (config.data_selection_isselectable(d) && !isSelected) {
+          toggle(true, shape.classed(CLASS.SELECTED, true), d, i);
+        }
+      } else if (isDefined(resetOther) && resetOther) {
+        if (isSelected) {
+          toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
+        }
+      }
+    });
+  };
+
+  Chart.prototype.unselect = function (ids, indices) {
+    var $$ = this.internal,
+        d3 = $$.d3,
+        config = $$.config;
+
+    if (!config.data_selection_enabled) {
+      return;
+    }
+
+    $$.main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
+      var shape = d3.select(this),
+          id = d.data ? d.data.id : d.id,
+          toggle = $$.getToggle(this, d).bind($$),
+          isTargetId = config.data_selection_grouped || !ids || ids.indexOf(id) >= 0,
+          isTargetIndex = !indices || indices.indexOf(i) >= 0,
+          isSelected = shape.classed(CLASS.SELECTED); // line/area selection not supported yet
+
+      if (shape.classed(CLASS.line) || shape.classed(CLASS.area)) {
+        return;
+      }
+
+      if (isTargetId && isTargetIndex) {
+        if (config.data_selection_isselectable(d)) {
+          if (isSelected) {
+            toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
+          }
+        }
+      }
+    });
+  };
+
+  Chart.prototype.show = function (targetIds, options) {
+    var $$ = this.internal,
+        targets;
+    targetIds = $$.mapToTargetIds(targetIds);
+    options = options || {};
+    $$.removeHiddenTargetIds(targetIds);
+    targets = $$.svg.selectAll($$.selectorTargets(targetIds));
+    targets.transition().style('display', 'initial', 'important').style('opacity', 1, 'important').call($$.endall, function () {
+      targets.style('opacity', null).style('opacity', 1);
+    });
+
+    if (options.withLegend) {
+      $$.showLegend(targetIds);
+    }
+
+    $$.redraw({
+      withUpdateOrgXDomain: true,
+      withUpdateXDomain: true,
+      withLegend: true
+    });
+  };
+
+  Chart.prototype.hide = function (targetIds, options) {
+    var $$ = this.internal,
+        targets;
+    targetIds = $$.mapToTargetIds(targetIds);
+    options = options || {};
+    $$.addHiddenTargetIds(targetIds);
+    targets = $$.svg.selectAll($$.selectorTargets(targetIds));
+    targets.transition().style('opacity', 0, 'important').call($$.endall, function () {
+      targets.style('opacity', null).style('opacity', 0);
+      targets.style('display', 'none');
+    });
+
+    if (options.withLegend) {
+      $$.hideLegend(targetIds);
+    }
+
+    $$.redraw({
+      withUpdateOrgXDomain: true,
+      withUpdateXDomain: true,
+      withLegend: true
+    });
+  };
+
+  Chart.prototype.toggle = function (targetIds, options) {
+    var that = this,
+        $$ = this.internal;
+    $$.mapToTargetIds(targetIds).forEach(function (targetId) {
+      $$.isTargetToShow(targetId) ? that.hide(targetId, options) : that.show(targetId, options);
+    });
+  };
+
+  Chart.prototype.tooltip = function () {};
+
+  Chart.prototype.tooltip.show = function (args) {
+    var $$ = this.internal,
+        targets,
+        data,
+        mouse = {}; // determine mouse position on the chart
+
+    if (args.mouse) {
+      mouse = args.mouse;
+    } else {
+      // determine focus data
+      if (args.data) {
+        data = args.data;
+      } else if (typeof args.x !== 'undefined') {
+        if (args.id) {
+          targets = $$.data.targets.filter(function (t) {
+            return t.id === args.id;
+          });
+        } else {
+          targets = $$.data.targets;
+        }
+
+        data = $$.filterByX(targets, args.x).slice(0, 1)[0];
+      }
+
+      mouse = data ? $$.getMousePosition(data) : null;
+    } // emulate mouse events to show
+
+
+    $$.dispatchEvent('mousemove', mouse);
+    $$.config.tooltip_onshow.call($$, data);
+  };
+
+  Chart.prototype.tooltip.hide = function () {
+    // TODO: get target data by checking the state of focus
+    this.internal.dispatchEvent('mouseout', 0);
+    this.internal.config.tooltip_onhide.call(this);
+  };
+
+  Chart.prototype.transform = function (type, targetIds) {
+    var $$ = this.internal,
+        options = ['pie', 'donut'].indexOf(type) >= 0 ? {
+      withTransform: true
+    } : null;
+    $$.transformTo(targetIds, type, options);
+  };
+
+  ChartInternal.prototype.transformTo = function (targetIds, type, optionsForRedraw) {
+    var $$ = this,
+        withTransitionForAxis = !$$.hasArcType(),
+        options = optionsForRedraw || {
+      withTransitionForAxis: withTransitionForAxis
+    };
+    options.withTransitionForTransform = false;
+    $$.transiting = false;
+    $$.setTargetType(targetIds, type);
+    $$.updateTargets($$.data.targets); // this is needed when transforming to arc
+
+    $$.updateAndRedraw(options);
+  };
+
+  Chart.prototype.x = function (x) {
+    var $$ = this.internal;
+
+    if (arguments.length) {
+      $$.updateTargetX($$.data.targets, x);
+      $$.redraw({
+        withUpdateOrgXDomain: true,
+        withUpdateXDomain: true
+      });
+    }
+
+    return $$.data.xs;
+  };
+
+  Chart.prototype.xs = function (xs) {
+    var $$ = this.internal;
+
+    if (arguments.length) {
+      $$.updateTargetXs($$.data.targets, xs);
+      $$.redraw({
+        withUpdateOrgXDomain: true,
+        withUpdateXDomain: true
+      });
+    }
+
+    return $$.data.xs;
+  };
+
+  Chart.prototype.zoom = function (domain) {
+    var $$ = this.internal;
+
+    if (domain) {
+      if ($$.isTimeSeries()) {
+        domain = domain.map(function (x) {
+          return $$.parseDate(x);
+        });
+      }
+
+      if ($$.config.subchart_show) {
+        $$.brush.selectionAsValue(domain, true);
+      } else {
+        $$.updateXDomain(null, true, false, false, domain);
+        $$.redraw({
+          withY: $$.config.zoom_rescale,
+          withSubchart: false
+        });
+      }
+
+      $$.config.zoom_onzoom.call(this, $$.x.orgDomain());
+      return domain;
+    } else {
+      return $$.x.domain();
+    }
+  };
+
+  Chart.prototype.zoom.enable = function (enabled) {
+    var $$ = this.internal;
+    $$.config.zoom_enabled = enabled;
+    $$.updateAndRedraw();
+  };
+
+  Chart.prototype.unzoom = function () {
+    var $$ = this.internal;
+
+    if ($$.config.subchart_show) {
+      $$.brush.clear();
+    } else {
+      $$.updateXDomain(null, true, false, false, $$.subX.domain());
+      $$.redraw({
+        withY: $$.config.zoom_rescale,
+        withSubchart: false
+      });
+    }
+  };
+
+  Chart.prototype.zoom.max = function (max) {
+    var $$ = this.internal,
+        config = $$.config,
+        d3 = $$.d3;
+
+    if (max === 0 || max) {
+      config.zoom_x_max = d3.max([$$.orgXDomain[1], max]);
+    } else {
+      return config.zoom_x_max;
+    }
+  };
+
+  Chart.prototype.zoom.min = function (min) {
+    var $$ = this.internal,
+        config = $$.config,
+        d3 = $$.d3;
+
+    if (min === 0 || min) {
+      config.zoom_x_min = d3.min([$$.orgXDomain[0], min]);
+    } else {
+      return config.zoom_x_min;
+    }
+  };
+
+  Chart.prototype.zoom.range = function (range) {
+    if (arguments.length) {
+      if (isDefined(range.max)) {
+        this.domain.max(range.max);
+      }
+
+      if (isDefined(range.min)) {
+        this.domain.min(range.min);
+      }
+    } else {
+      return {
+        max: this.domain.max(),
+        min: this.domain.min()
+      };
+    }
+  };
+
+  ChartInternal.prototype.initPie = function () {
+    var $$ = this,
+        d3 = $$.d3;
+    $$.pie = d3.pie().value(function (d) {
+      return d.values.reduce(function (a, b) {
+        return a + b.value;
+      }, 0);
+    });
+    var orderFct = $$.getOrderFunction(); // we need to reverse the returned order if asc or desc to have the slice in expected order.
+
+    if (orderFct && ($$.isOrderAsc() || $$.isOrderDesc())) {
+      var defaultSort = orderFct;
+
+      orderFct = function orderFct(t1, t2) {
+        return defaultSort(t1, t2) * -1;
+      };
+    }
+
+    $$.pie.sort(orderFct || null);
+  };
+
+  ChartInternal.prototype.updateRadius = function () {
+    var $$ = this,
+        config = $$.config,
+        w = config.gauge_width || config.donut_width,
+        gaugeArcWidth = $$.filterTargetsToShow($$.data.targets).length * $$.config.gauge_arcs_minWidth;
+    $$.radiusExpanded = Math.min($$.arcWidth, $$.arcHeight) / 2 * ($$.hasType('gauge') ? 0.85 : 1);
+    $$.radius = $$.radiusExpanded * 0.95;
+    $$.innerRadiusRatio = w ? ($$.radius - w) / $$.radius : 0.6;
+    $$.innerRadius = $$.hasType('donut') || $$.hasType('gauge') ? $$.radius * $$.innerRadiusRatio : 0;
+    $$.gaugeArcWidth = w ? w : gaugeArcWidth <= $$.radius - $$.innerRadius ? $$.radius - $$.innerRadius : gaugeArcWidth <= $$.radius ? gaugeArcWidth : $$.radius;
+  };
+
+  ChartInternal.prototype.updateArc = function () {
+    var $$ = this;
+    $$.svgArc = $$.getSvgArc();
+    $$.svgArcExpanded = $$.getSvgArcExpanded();
+    $$.svgArcExpandedSub = $$.getSvgArcExpanded(0.98);
+  };
+
+  ChartInternal.prototype.updateAngle = function (d) {
+    var $$ = this,
+        config = $$.config,
+        found = false,
+        index = 0,
+        gMin,
+        gMax,
+        gTic,
+        gValue;
+
+    if (!config) {
+      return null;
+    }
+
+    $$.pie($$.filterTargetsToShow($$.data.targets)).forEach(function (t) {
+      if (!found && t.data.id === d.data.id) {
+        found = true;
+        d = t;
+        d.index = index;
+      }
+
+      index++;
+    });
+
+    if (isNaN(d.startAngle)) {
+      d.startAngle = 0;
+    }
+
+    if (isNaN(d.endAngle)) {
+      d.endAngle = d.startAngle;
+    }
+
+    if ($$.isGaugeType(d.data)) {
+      gMin = config.gauge_min;
+      gMax = config.gauge_max;
+      gTic = Math.PI * (config.gauge_fullCircle ? 2 : 1) / (gMax - gMin);
+      gValue = d.value < gMin ? 0 : d.value < gMax ? d.value - gMin : gMax - gMin;
+      d.startAngle = config.gauge_startingAngle;
+      d.endAngle = d.startAngle + gTic * gValue;
+    }
+
+    return found ? d : null;
+  };
+
+  ChartInternal.prototype.getSvgArc = function () {
+    var $$ = this,
+        hasGaugeType = $$.hasType('gauge'),
+        singleArcWidth = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length,
+        arc = $$.d3.arc().outerRadius(function (d) {
+      return hasGaugeType ? $$.radius - singleArcWidth * d.index : $$.radius;
+    }).innerRadius(function (d) {
+      return hasGaugeType ? $$.radius - singleArcWidth * (d.index + 1) : $$.innerRadius;
+    }),
+        newArc = function newArc(d, withoutUpdate) {
+      var updated;
+
+      if (withoutUpdate) {
+        return arc(d);
+      } // for interpolate
+
+
+      updated = $$.updateAngle(d);
+      return updated ? arc(updated) : "M 0 0";
+    }; // TODO: extends all function
+
+
+    newArc.centroid = arc.centroid;
+    return newArc;
+  };
+
+  ChartInternal.prototype.getSvgArcExpanded = function (rate) {
+    rate = rate || 1;
+    var $$ = this,
+        hasGaugeType = $$.hasType('gauge'),
+        singleArcWidth = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length,
+        expandWidth = Math.min($$.radiusExpanded * rate - $$.radius, singleArcWidth * 0.8 - (1 - rate) * 100),
+        arc = $$.d3.arc().outerRadius(function (d) {
+      return hasGaugeType ? $$.radius - singleArcWidth * d.index + expandWidth : $$.radiusExpanded * rate;
+    }).innerRadius(function (d) {
+      return hasGaugeType ? $$.radius - singleArcWidth * (d.index + 1) : $$.innerRadius;
+    });
+    return function (d) {
+      var updated = $$.updateAngle(d);
+      return updated ? arc(updated) : "M 0 0";
+    };
+  };
+
+  ChartInternal.prototype.getArc = function (d, withoutUpdate, force) {
+    return force || this.isArcType(d.data) ? this.svgArc(d, withoutUpdate) : "M 0 0";
+  };
+
+  ChartInternal.prototype.transformForArcLabel = function (d) {
+    var $$ = this,
+        config = $$.config,
+        updated = $$.updateAngle(d),
+        c,
+        x,
+        y,
+        h,
+        ratio,
+        translate = "",
+        hasGauge = $$.hasType('gauge');
+
+    if (updated && !hasGauge) {
+      c = this.svgArc.centroid(updated);
+      x = isNaN(c[0]) ? 0 : c[0];
+      y = isNaN(c[1]) ? 0 : c[1];
+      h = Math.sqrt(x * x + y * y);
+
+      if ($$.hasType('donut') && config.donut_label_ratio) {
+        ratio = isFunction(config.donut_label_ratio) ? config.donut_label_ratio(d, $$.radius, h) : config.donut_label_ratio;
+      } else if ($$.hasType('pie') && config.pie_label_ratio) {
+        ratio = isFunction(config.pie_label_ratio) ? config.pie_label_ratio(d, $$.radius, h) : config.pie_label_ratio;
+      } else {
+        ratio = $$.radius && h ? (36 / $$.radius > 0.375 ? 1.175 - 36 / $$.radius : 0.8) * $$.radius / h : 0;
+      }
+
+      translate = "translate(" + x * ratio + ',' + y * ratio + ")";
+    } else if (updated && hasGauge && $$.filterTargetsToShow($$.data.targets).length > 1) {
+      var y1 = Math.sin(updated.endAngle - Math.PI / 2);
+      x = Math.cos(updated.endAngle - Math.PI / 2) * ($$.radiusExpanded + 25);
+      y = y1 * ($$.radiusExpanded + 15 - Math.abs(y1 * 10)) + 3;
+      translate = "translate(" + x + ',' + y + ")";
+    }
+
+    return translate;
+  };
+
+  ChartInternal.prototype.getArcRatio = function (d) {
+    var $$ = this,
+        config = $$.config,
+        whole = Math.PI * ($$.hasType('gauge') && !config.gauge_fullCircle ? 1 : 2);
+    return d ? (d.endAngle - d.startAngle) / whole : null;
+  };
+
+  ChartInternal.prototype.convertToArcData = function (d) {
+    return this.addName({
+      id: d.data.id,
+      value: d.value,
+      ratio: this.getArcRatio(d),
+      index: d.index
+    });
+  };
+
+  ChartInternal.prototype.textForArcLabel = function (d) {
+    var $$ = this,
+        updated,
+        value,
+        ratio,
+        id,
+        format;
+
+    if (!$$.shouldShowArcLabel()) {
+      return "";
+    }
+
+    updated = $$.updateAngle(d);
+    value = updated ? updated.value : null;
+    ratio = $$.getArcRatio(updated);
+    id = d.data.id;
+
+    if (!$$.hasType('gauge') && !$$.meetsArcLabelThreshold(ratio)) {
+      return "";
+    }
+
+    format = $$.getArcLabelFormat();
+    return format ? format(value, ratio, id) : $$.defaultArcValueFormat(value, ratio);
+  };
+
+  ChartInternal.prototype.textForGaugeMinMax = function (value, isMax) {
+    var $$ = this,
+        format = $$.getGaugeLabelExtents();
+    return format ? format(value, isMax) : value;
+  };
+
+  ChartInternal.prototype.expandArc = function (targetIds) {
+    var $$ = this,
+        interval; // MEMO: avoid to cancel transition
+
+    if ($$.transiting) {
+      interval = window.setInterval(function () {
+        if (!$$.transiting) {
+          window.clearInterval(interval);
+
+          if ($$.legend.selectAll('.c3-legend-item-focused').size() > 0) {
+            $$.expandArc(targetIds);
+          }
+        }
+      }, 10);
+      return;
+    }
+
+    targetIds = $$.mapToTargetIds(targetIds);
+    $$.svg.selectAll($$.selectorTargets(targetIds, '.' + CLASS.chartArc)).each(function (d) {
+      if (!$$.shouldExpand(d.data.id)) {
+        return;
+      }
+
+      $$.d3.select(this).selectAll('path').transition().duration($$.expandDuration(d.data.id)).attr("d", $$.svgArcExpanded).transition().duration($$.expandDuration(d.data.id) * 2).attr("d", $$.svgArcExpandedSub).each(function (d) {
+        if ($$.isDonutType(d.data)) ;
+      });
+    });
+  };
+
+  ChartInternal.prototype.unexpandArc = function (targetIds) {
+    var $$ = this;
+
+    if ($$.transiting) {
+      return;
+    }
+
+    targetIds = $$.mapToTargetIds(targetIds);
+    $$.svg.selectAll($$.selectorTargets(targetIds, '.' + CLASS.chartArc)).selectAll('path').transition().duration(function (d) {
+      return $$.expandDuration(d.data.id);
+    }).attr("d", $$.svgArc);
+    $$.svg.selectAll('.' + CLASS.arc);
+  };
+
+  ChartInternal.prototype.expandDuration = function (id) {
+    var $$ = this,
+        config = $$.config;
+
+    if ($$.isDonutType(id)) {
+      return config.donut_expand_duration;
+    } else if ($$.isGaugeType(id)) {
+      return config.gauge_expand_duration;
+    } else if ($$.isPieType(id)) {
+      return config.pie_expand_duration;
+    } else {
+      return 50;
+    }
+  };
+
+  ChartInternal.prototype.shouldExpand = function (id) {
+    var $$ = this,
+        config = $$.config;
+    return $$.isDonutType(id) && config.donut_expand || $$.isGaugeType(id) && config.gauge_expand || $$.isPieType(id) && config.pie_expand;
+  };
+
+  ChartInternal.prototype.shouldShowArcLabel = function () {
+    var $$ = this,
+        config = $$.config,
+        shouldShow = true;
+
+    if ($$.hasType('donut')) {
+      shouldShow = config.donut_label_show;
+    } else if ($$.hasType('pie')) {
+      shouldShow = config.pie_label_show;
+    } // when gauge, always true
+
+
+    return shouldShow;
+  };
+
+  ChartInternal.prototype.meetsArcLabelThreshold = function (ratio) {
+    var $$ = this,
+        config = $$.config,
+        threshold = $$.hasType('donut') ? config.donut_label_threshold : config.pie_label_threshold;
+    return ratio >= threshold;
+  };
+
+  ChartInternal.prototype.getArcLabelFormat = function () {
+    var $$ = this,
+        config = $$.config,
+        format = config.pie_label_format;
+
+    if ($$.hasType('gauge')) {
+      format = config.gauge_label_format;
+    } else if ($$.hasType('donut')) {
+      format = config.donut_label_format;
+    }
+
+    return format;
+  };
+
+  ChartInternal.prototype.getGaugeLabelExtents = function () {
+    var $$ = this,
+        config = $$.config;
+    return config.gauge_label_extents;
+  };
+
+  ChartInternal.prototype.getArcTitle = function () {
+    var $$ = this;
+    return $$.hasType('donut') ? $$.config.donut_title : "";
+  };
+
+  ChartInternal.prototype.updateTargetsForArc = function (targets) {
+    var $$ = this,
+        main = $$.main,
+        mainPies,
+        mainPieEnter,
+        classChartArc = $$.classChartArc.bind($$),
+        classArcs = $$.classArcs.bind($$),
+        classFocus = $$.classFocus.bind($$);
+    mainPies = main.select('.' + CLASS.chartArcs).selectAll('.' + CLASS.chartArc).data($$.pie(targets)).attr("class", function (d) {
+      return classChartArc(d) + classFocus(d.data);
+    });
+    mainPieEnter = mainPies.enter().append("g").attr("class", classChartArc);
+    mainPieEnter.append('g').attr('class', classArcs);
+    mainPieEnter.append("text").attr("dy", $$.hasType('gauge') ? "-.1em" : ".35em").style("opacity", 0).style("text-anchor", "middle").style("pointer-events", "none"); // MEMO: can not keep same color..., but not bad to update color in redraw
+    //mainPieUpdate.exit().remove();
+  };
+
+  ChartInternal.prototype.initArc = function () {
+    var $$ = this;
+    $$.arcs = $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartArcs).attr("transform", $$.getTranslate('arc'));
+    $$.arcs.append('text').attr('class', CLASS.chartArcsTitle).style("text-anchor", "middle").text($$.getArcTitle());
+  };
+
+  ChartInternal.prototype.redrawArc = function (duration, durationForExit, withTransform) {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        main = $$.main,
+        arcs,
+        mainArc,
+        arcLabelLines,
+        mainArcLabelLine,
+        hasGaugeType = $$.hasType('gauge');
+    arcs = main.selectAll('.' + CLASS.arcs).selectAll('.' + CLASS.arc).data($$.arcData.bind($$));
+    mainArc = arcs.enter().append('path').attr("class", $$.classArc.bind($$)).style("fill", function (d) {
+      return $$.color(d.data);
+    }).style("cursor", function (d) {
+      return config.interaction_enabled && config.data_selection_isselectable(d) ? "pointer" : null;
+    }).each(function (d) {
+      if ($$.isGaugeType(d.data)) {
+        d.startAngle = d.endAngle = config.gauge_startingAngle;
+      }
+
+      this._current = d;
+    }).merge(arcs);
+
+    if (hasGaugeType) {
+      arcLabelLines = main.selectAll('.' + CLASS.arcs).selectAll('.' + CLASS.arcLabelLine).data($$.arcData.bind($$));
+      mainArcLabelLine = arcLabelLines.enter().append('rect').attr("class", function (d) {
+        return CLASS.arcLabelLine + ' ' + CLASS.target + ' ' + CLASS.target + '-' + d.data.id;
+      }).merge(arcLabelLines);
+
+      if ($$.filterTargetsToShow($$.data.targets).length === 1) {
+        mainArcLabelLine.style("display", "none");
+      } else {
+        mainArcLabelLine.style("fill", function (d) {
+          return config.color_pattern.length > 0 ? $$.levelColor(d.data.values[0].value) : $$.color(d.data);
+        }).style("display", config.gauge_labelLine_show ? "" : "none").each(function (d) {
+          var lineLength = 0,
+              lineThickness = 2,
+              x = 0,
+              y = 0,
+              transform = "";
+
+          if ($$.hiddenTargetIds.indexOf(d.data.id) < 0) {
+            var updated = $$.updateAngle(d),
+                innerLineLength = $$.gaugeArcWidth / $$.filterTargetsToShow($$.data.targets).length * (updated.index + 1),
+                lineAngle = updated.endAngle - Math.PI / 2,
+                arcInnerRadius = $$.radius - innerLineLength,
+                linePositioningAngle = lineAngle - (arcInnerRadius === 0 ? 0 : 1 / arcInnerRadius);
+            lineLength = $$.radiusExpanded - $$.radius + innerLineLength;
+            x = Math.cos(linePositioningAngle) * arcInnerRadius;
+            y = Math.sin(linePositioningAngle) * arcInnerRadius;
+            transform = "rotate(" + lineAngle * 180 / Math.PI + ", " + x + ", " + y + ")";
+          }
+
+          d3.select(this).attr('x', x).attr('y', y).attr('width', lineLength).attr('height', lineThickness).attr('transform', transform).style("stroke-dasharray", "0, " + (lineLength + lineThickness) + ", 0");
+        });
+      }
+    }
+
+    mainArc.attr("transform", function (d) {
+      return !$$.isGaugeType(d.data) && withTransform ? "scale(0)" : "";
+    }).on('mouseover', config.interaction_enabled ? function (d) {
+      var updated, arcData;
+
+      if ($$.transiting) {
+        // skip while transiting
+        return;
+      }
+
+      updated = $$.updateAngle(d);
+
+      if (updated) {
+        arcData = $$.convertToArcData(updated); // transitions
+
+        $$.expandArc(updated.data.id);
+        $$.api.focus(updated.data.id);
+        $$.toggleFocusLegend(updated.data.id, true);
+        $$.config.data_onmouseover(arcData, this);
+      }
+    } : null).on('mousemove', config.interaction_enabled ? function (d) {
+      var updated = $$.updateAngle(d),
+          arcData,
+          selectedData;
+
+      if (updated) {
+        arcData = $$.convertToArcData(updated), selectedData = [arcData];
+        $$.showTooltip(selectedData, this);
+      }
+    } : null).on('mouseout', config.interaction_enabled ? function (d) {
+      var updated, arcData;
+
+      if ($$.transiting) {
+        // skip while transiting
+        return;
+      }
+
+      updated = $$.updateAngle(d);
+
+      if (updated) {
+        arcData = $$.convertToArcData(updated); // transitions
+
+        $$.unexpandArc(updated.data.id);
+        $$.api.revert();
+        $$.revertLegend();
+        $$.hideTooltip();
+        $$.config.data_onmouseout(arcData, this);
+      }
+    } : null).on('click', config.interaction_enabled ? function (d, i) {
+      var updated = $$.updateAngle(d),
+          arcData;
+
+      if (updated) {
+        arcData = $$.convertToArcData(updated);
+
+        if ($$.toggleShape) {
+          $$.toggleShape(this, arcData, i);
+        }
+
+        $$.config.data_onclick.call($$.api, arcData, this);
+      }
+    } : null).each(function () {
+      $$.transiting = true;
+    }).transition().duration(duration).attrTween("d", function (d) {
+      var updated = $$.updateAngle(d),
+          interpolate;
+
+      if (!updated) {
+        return function () {
+          return "M 0 0";
+        };
+      } //                if (this._current === d) {
+      //                    this._current = {
+      //                        startAngle: Math.PI*2,
+      //                        endAngle: Math.PI*2,
+      //                    };
+      //                }
+
+
+      if (isNaN(this._current.startAngle)) {
+        this._current.startAngle = 0;
+      }
+
+      if (isNaN(this._current.endAngle)) {
+        this._current.endAngle = this._current.startAngle;
+      }
+
+      interpolate = d3.interpolate(this._current, updated);
+      this._current = interpolate(0);
+      return function (t) {
+        var interpolated = interpolate(t);
+        interpolated.data = d.data; // data.id will be updated by interporator
+
+        return $$.getArc(interpolated, true);
+      };
+    }).attr("transform", withTransform ? "scale(1)" : "").style("fill", function (d) {
+      return $$.levelColor ? $$.levelColor(d.data.values[0].value) : $$.color(d.data.id);
+    }) // Where gauge reading color would receive customization.
+    .call($$.endall, function () {
+      $$.transiting = false;
+    });
+    arcs.exit().transition().duration(durationForExit).style('opacity', 0).remove();
+    main.selectAll('.' + CLASS.chartArc).select('text').style("opacity", 0).attr('class', function (d) {
+      return $$.isGaugeType(d.data) ? CLASS.gaugeValue : '';
+    }).text($$.textForArcLabel.bind($$)).attr("transform", $$.transformForArcLabel.bind($$)).style('font-size', function (d) {
+      return $$.isGaugeType(d.data) && $$.filterTargetsToShow($$.data.targets).length === 1 ? Math.round($$.radius / 5) + 'px' : '';
+    }).transition().duration(duration).style("opacity", function (d) {
+      return $$.isTargetToShow(d.data.id) && $$.isArcType(d.data) ? 1 : 0;
+    });
+    main.select('.' + CLASS.chartArcsTitle).style("opacity", $$.hasType('donut') || hasGaugeType ? 1 : 0);
+
+    if (hasGaugeType) {
+      var index = 0;
+      var backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);
+      backgroundArc.enter().append("path").attr("class", function (d, i) {
+        return CLASS.chartArcsBackground + ' ' + CLASS.chartArcsBackground + '-' + i;
+      }).merge(backgroundArc).attr("d", function (d1) {
+        if ($$.hiddenTargetIds.indexOf(d1.id) >= 0) {
+          return "M 0 0";
+        }
+
+        var d = {
+          data: [{
+            value: config.gauge_max
+          }],
+          startAngle: config.gauge_startingAngle,
+          endAngle: -1 * config.gauge_startingAngle * (config.gauge_fullCircle ? Math.PI : 1),
+          index: index++
+        };
+        return $$.getArc(d, true, true);
+      });
+      backgroundArc.exit().remove();
+      $$.arcs.select('.' + CLASS.chartArcsGaugeUnit).attr("dy", ".75em").text(config.gauge_label_show ? config.gauge_units : '');
+      $$.arcs.select('.' + CLASS.chartArcsGaugeMin).attr("dx", -1 * ($$.innerRadius + ($$.radius - $$.innerRadius) / (config.gauge_fullCircle ? 1 : 2)) + "px").attr("dy", "1.2em").text(config.gauge_label_show ? $$.textForGaugeMinMax(config.gauge_min, false) : '');
+      $$.arcs.select('.' + CLASS.chartArcsGaugeMax).attr("dx", $$.innerRadius + ($$.radius - $$.innerRadius) / (config.gauge_fullCircle ? 1 : 2) + "px").attr("dy", "1.2em").text(config.gauge_label_show ? $$.textForGaugeMinMax(config.gauge_max, true) : '');
+    }
+  };
+
+  ChartInternal.prototype.initGauge = function () {
+    var arcs = this.arcs;
+
+    if (this.hasType('gauge')) {
+      arcs.append('g').attr("class", CLASS.chartArcsBackground);
+      arcs.append("text").attr("class", CLASS.chartArcsGaugeUnit).style("text-anchor", "middle").style("pointer-events", "none");
+      arcs.append("text").attr("class", CLASS.chartArcsGaugeMin).style("text-anchor", "middle").style("pointer-events", "none");
+      arcs.append("text").attr("class", CLASS.chartArcsGaugeMax).style("text-anchor", "middle").style("pointer-events", "none");
+    }
+  };
+
+  ChartInternal.prototype.getGaugeLabelHeight = function () {
+    return this.config.gauge_label_show ? 20 : 0;
+  };
+
+  ChartInternal.prototype.hasCaches = function (ids) {
+    for (var i = 0; i < ids.length; i++) {
+      if (!(ids[i] in this.cache)) {
+        return false;
+      }
+    }
+
+    return true;
+  };
+
+  ChartInternal.prototype.addCache = function (id, target) {
+    this.cache[id] = this.cloneTarget(target);
+  };
+
+  ChartInternal.prototype.getCaches = function (ids) {
+    var targets = [],
+        i;
+
+    for (i = 0; i < ids.length; i++) {
+      if (ids[i] in this.cache) {
+        targets.push(this.cloneTarget(this.cache[ids[i]]));
+      }
+    }
+
+    return targets;
+  };
+
+  ChartInternal.prototype.categoryName = function (i) {
+    var config = this.config;
+    return i < config.axis_x_categories.length ? config.axis_x_categories[i] : i;
+  };
+
+  ChartInternal.prototype.generateTargetClass = function (targetId) {
+    return targetId || targetId === 0 ? ('-' + targetId).replace(/\s/g, '-') : '';
+  };
+
+  ChartInternal.prototype.generateClass = function (prefix, targetId) {
+    return " " + prefix + " " + prefix + this.generateTargetClass(targetId);
+  };
+
+  ChartInternal.prototype.classText = function (d) {
+    return this.generateClass(CLASS.text, d.index);
+  };
+
+  ChartInternal.prototype.classTexts = function (d) {
+    return this.generateClass(CLASS.texts, d.id);
+  };
+
+  ChartInternal.prototype.classShape = function (d) {
+    return this.generateClass(CLASS.shape, d.index);
+  };
+
+  ChartInternal.prototype.classShapes = function (d) {
+    return this.generateClass(CLASS.shapes, d.id);
+  };
+
+  ChartInternal.prototype.classLine = function (d) {
+    return this.classShape(d) + this.generateClass(CLASS.line, d.id);
+  };
+
+  ChartInternal.prototype.classLines = function (d) {
+    return this.classShapes(d) + this.generateClass(CLASS.lines, d.id);
+  };
+
+  ChartInternal.prototype.classCircle = function (d) {
+    return this.classShape(d) + this.generateClass(CLASS.circle, d.index);
+  };
+
+  ChartInternal.prototype.classCircles = function (d) {
+    return this.classShapes(d) + this.generateClass(CLASS.circles, d.id);
+  };
+
+  ChartInternal.prototype.classBar = function (d) {
+    return this.classShape(d) + this.generateClass(CLASS.bar, d.index);
+  };
+
+  ChartInternal.prototype.classBars = function (d) {
+    return this.classShapes(d) + this.generateClass(CLASS.bars, d.id);
+  };
+
+  ChartInternal.prototype.classArc = function (d) {
+    return this.classShape(d.data) + this.generateClass(CLASS.arc, d.data.id);
+  };
+
+  ChartInternal.prototype.classArcs = function (d) {
+    return this.classShapes(d.data) + this.generateClass(CLASS.arcs, d.data.id);
+  };
+
+  ChartInternal.prototype.classArea = function (d) {
+    return this.classShape(d) + this.generateClass(CLASS.area, d.id);
+  };
+
+  ChartInternal.prototype.classAreas = function (d) {
+    return this.classShapes(d) + this.generateClass(CLASS.areas, d.id);
+  };
+
+  ChartInternal.prototype.classRegion = function (d, i) {
+    return this.generateClass(CLASS.region, i) + ' ' + ('class' in d ? d['class'] : '');
+  };
+
+  ChartInternal.prototype.classEvent = function (d) {
+    return this.generateClass(CLASS.eventRect, d.index);
+  };
+
+  ChartInternal.prototype.classTarget = function (id) {
+    var $$ = this;
+    var additionalClassSuffix = $$.config.data_classes[id],
+        additionalClass = '';
+
+    if (additionalClassSuffix) {
+      additionalClass = ' ' + CLASS.target + '-' + additionalClassSuffix;
+    }
+
+    return $$.generateClass(CLASS.target, id) + additionalClass;
+  };
+
+  ChartInternal.prototype.classFocus = function (d) {
+    return this.classFocused(d) + this.classDefocused(d);
+  };
+
+  ChartInternal.prototype.classFocused = function (d) {
+    return ' ' + (this.focusedTargetIds.indexOf(d.id) >= 0 ? CLASS.focused : '');
+  };
+
+  ChartInternal.prototype.classDefocused = function (d) {
+    return ' ' + (this.defocusedTargetIds.indexOf(d.id) >= 0 ? CLASS.defocused : '');
+  };
+
+  ChartInternal.prototype.classChartText = function (d) {
+    return CLASS.chartText + this.classTarget(d.id);
+  };
+
+  ChartInternal.prototype.classChartLine = function (d) {
+    return CLASS.chartLine + this.classTarget(d.id);
+  };
+
+  ChartInternal.prototype.classChartBar = function (d) {
+    return CLASS.chartBar + this.classTarget(d.id);
+  };
+
+  ChartInternal.prototype.classChartArc = function (d) {
+    return CLASS.chartArc + this.classTarget(d.data.id);
+  };
+
+  ChartInternal.prototype.getTargetSelectorSuffix = function (targetId) {
+    return this.generateTargetClass(targetId).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
+  };
+
+  ChartInternal.prototype.selectorTarget = function (id, prefix) {
+    return (prefix || '') + '.' + CLASS.target + this.getTargetSelectorSuffix(id);
+  };
+
+  ChartInternal.prototype.selectorTargets = function (ids, prefix) {
+    var $$ = this;
+    ids = ids || [];
+    return ids.length ? ids.map(function (id) {
+      return $$.selectorTarget(id, prefix);
+    }) : null;
+  };
+
+  ChartInternal.prototype.selectorLegend = function (id) {
+    return '.' + CLASS.legendItem + this.getTargetSelectorSuffix(id);
+  };
+
+  ChartInternal.prototype.selectorLegends = function (ids) {
+    var $$ = this;
+    return ids && ids.length ? ids.map(function (id) {
+      return $$.selectorLegend(id);
+    }) : null;
+  };
+
+  ChartInternal.prototype.getClipPath = function (id) {
+    var isIE9 = window.navigator.appVersion.toLowerCase().indexOf("msie 9.") >= 0;
+    return "url(" + (isIE9 ? "" : document.URL.split('#')[0]) + "#" + id + ")";
+  };
+
+  ChartInternal.prototype.appendClip = function (parent, id) {
+    return parent.append("clipPath").attr("id", id).append("rect");
+  };
+
+  ChartInternal.prototype.getAxisClipX = function (forHorizontal) {
+    // axis line width + padding for left
+    var left = Math.max(30, this.margin.left);
+    return forHorizontal ? -(1 + left) : -(left - 1);
+  };
+
+  ChartInternal.prototype.getAxisClipY = function (forHorizontal) {
+    return forHorizontal ? -20 : -this.margin.top;
+  };
+
+  ChartInternal.prototype.getXAxisClipX = function () {
+    var $$ = this;
+    return $$.getAxisClipX(!$$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getXAxisClipY = function () {
+    var $$ = this;
+    return $$.getAxisClipY(!$$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getYAxisClipX = function () {
+    var $$ = this;
+    return $$.config.axis_y_inner ? -1 : $$.getAxisClipX($$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getYAxisClipY = function () {
+    var $$ = this;
+    return $$.getAxisClipY($$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getAxisClipWidth = function (forHorizontal) {
+    var $$ = this,
+        left = Math.max(30, $$.margin.left),
+        right = Math.max(30, $$.margin.right); // width + axis line width + padding for left/right
+
+    return forHorizontal ? $$.width + 2 + left + right : $$.margin.left + 20;
+  };
+
+  ChartInternal.prototype.getAxisClipHeight = function (forHorizontal) {
+    // less than 20 is not enough to show the axis label 'outer' without legend
+    return (forHorizontal ? this.margin.bottom : this.margin.top + this.height) + 20;
+  };
+
+  ChartInternal.prototype.getXAxisClipWidth = function () {
+    var $$ = this;
+    return $$.getAxisClipWidth(!$$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getXAxisClipHeight = function () {
+    var $$ = this;
+    return $$.getAxisClipHeight(!$$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.getYAxisClipWidth = function () {
+    var $$ = this;
+    return $$.getAxisClipWidth($$.config.axis_rotated) + ($$.config.axis_y_inner ? 20 : 0);
+  };
+
+  ChartInternal.prototype.getYAxisClipHeight = function () {
+    var $$ = this;
+    return $$.getAxisClipHeight($$.config.axis_rotated);
+  };
+
+  ChartInternal.prototype.generateColor = function () {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3,
+        colors = config.data_colors,
+        pattern = notEmpty(config.color_pattern) ? config.color_pattern : d3.schemeCategory10,
+        callback = config.data_color,
+        ids = [];
+    return function (d) {
+      var id = d.id || d.data && d.data.id || d,
+          color; // if callback function is provided
+
+      if (colors[id] instanceof Function) {
+        color = colors[id](d);
+      } // if specified, choose that color
+      else if (colors[id]) {
+          color = colors[id];
+        } // if not specified, choose from pattern
+        else {
+            if (ids.indexOf(id) < 0) {
+              ids.push(id);
+            }
+
+            color = pattern[ids.indexOf(id) % pattern.length];
+            colors[id] = color;
+          }
+
+      return callback instanceof Function ? callback(color, d) : color;
+    };
+  };
+
+  ChartInternal.prototype.generateLevelColor = function () {
+    var $$ = this,
+        config = $$.config,
+        colors = config.color_pattern,
+        threshold = config.color_threshold,
+        asValue = threshold.unit === 'value',
+        values = threshold.values && threshold.values.length ? threshold.values : [],
+        max = threshold.max || 100;
+    return notEmpty(config.color_threshold) ? function (value) {
+      var i,
+          v,
+          color = colors[colors.length - 1];
+
+      for (i = 0; i < values.length; i++) {
+        v = asValue ? value : value * 100 / max;
+
+        if (v < values[i]) {
+          color = colors[i];
+          break;
         }
         }
-        mainArc.attr("transform", function (d) {
-            return !$$.isGaugeType(d.data) && withTransform ? "scale(0)" : "";
-        }).on('mouseover', config.interaction_enabled ? function (d) {
-            var updated, arcData;
-            if ($$.transiting) {
-                // skip while transiting
-                return;
-            }
-            updated = $$.updateAngle(d);
-            if (updated) {
-                arcData = $$.convertToArcData(updated);
-                // transitions
-                $$.expandArc(updated.data.id);
-                $$.api.focus(updated.data.id);
-                $$.toggleFocusLegend(updated.data.id, true);
-                $$.config.data_onmouseover(arcData, this);
-            }
-        } : null).on('mousemove', config.interaction_enabled ? function (d) {
-            var updated = $$.updateAngle(d),
-                arcData,
-                selectedData;
-            if (updated) {
-                arcData = $$.convertToArcData(updated), selectedData = [arcData];
-                $$.showTooltip(selectedData, this);
-            }
-        } : null).on('mouseout', config.interaction_enabled ? function (d) {
-            var updated, arcData;
-            if ($$.transiting) {
-                // skip while transiting
-                return;
-            }
-            updated = $$.updateAngle(d);
-            if (updated) {
-                arcData = $$.convertToArcData(updated);
-                // transitions
-                $$.unexpandArc(updated.data.id);
-                $$.api.revert();
-                $$.revertLegend();
-                $$.hideTooltip();
-                $$.config.data_onmouseout(arcData, this);
-            }
-        } : null).on('click', config.interaction_enabled ? function (d, i) {
-            var updated = $$.updateAngle(d),
-                arcData;
-            if (updated) {
-                arcData = $$.convertToArcData(updated);
-                if ($$.toggleShape) {
-                    $$.toggleShape(this, arcData, i);
-                }
-                $$.config.data_onclick.call($$.api, arcData, this);
-            }
-        } : null).each(function () {
-            $$.transiting = true;
-        }).transition().duration(duration).attrTween("d", function (d) {
-            var updated = $$.updateAngle(d),
-                interpolate;
-            if (!updated) {
-                return function () {
-                    return "M 0 0";
-                };
-            }
-            //                if (this._current === d) {
-            //                    this._current = {
-            //                        startAngle: Math.PI*2,
-            //                        endAngle: Math.PI*2,
-            //                    };
-            //                }
-            if (isNaN(this._current.startAngle)) {
-                this._current.startAngle = 0;
-            }
-            if (isNaN(this._current.endAngle)) {
-                this._current.endAngle = this._current.startAngle;
-            }
-            interpolate = d3.interpolate(this._current, updated);
-            this._current = interpolate(0);
-            return function (t) {
-                var interpolated = interpolate(t);
-                interpolated.data = d.data; // data.id will be updated by interporator
-                return $$.getArc(interpolated, true);
-            };
-        }).attr("transform", withTransform ? "scale(1)" : "").style("fill", function (d) {
-            return $$.levelColor ? $$.levelColor(d.data.values[0].value) : $$.color(d.data.id);
-        }) // Where gauge reading color would receive customization.
-        .call($$.endall, function () {
-            $$.transiting = false;
+      }
+
+      return color;
+    } : null;
+  };
+
+  ChartInternal.prototype.getDefaultConfig = function () {
+    var config = {
+      bindto: '#chart',
+      svg_classname: undefined,
+      size_width: undefined,
+      size_height: undefined,
+      padding_left: undefined,
+      padding_right: undefined,
+      padding_top: undefined,
+      padding_bottom: undefined,
+      resize_auto: true,
+      zoom_enabled: false,
+      zoom_initialRange: undefined,
+      zoom_type: 'scroll',
+      zoom_disableDefaultBehavior: false,
+      zoom_privileged: false,
+      zoom_rescale: false,
+      zoom_onzoom: function zoom_onzoom() {},
+      zoom_onzoomstart: function zoom_onzoomstart() {},
+      zoom_onzoomend: function zoom_onzoomend() {},
+      zoom_x_min: undefined,
+      zoom_x_max: undefined,
+      interaction_brighten: true,
+      interaction_enabled: true,
+      onmouseover: function onmouseover() {},
+      onmouseout: function onmouseout() {},
+      onresize: function onresize() {},
+      onresized: function onresized() {},
+      oninit: function oninit() {},
+      onrendered: function onrendered() {},
+      transition_duration: 350,
+      data_x: undefined,
+      data_xs: {},
+      data_xFormat: '%Y-%m-%d',
+      data_xLocaltime: true,
+      data_xSort: true,
+      data_idConverter: function data_idConverter(id) {
+        return id;
+      },
+      data_names: {},
+      data_classes: {},
+      data_groups: [],
+      data_axes: {},
+      data_type: undefined,
+      data_types: {},
+      data_labels: {},
+      data_order: 'desc',
+      data_regions: {},
+      data_color: undefined,
+      data_colors: {},
+      data_hide: false,
+      data_filter: undefined,
+      data_selection_enabled: false,
+      data_selection_grouped: false,
+      data_selection_isselectable: function data_selection_isselectable() {
+        return true;
+      },
+      data_selection_multiple: true,
+      data_selection_draggable: false,
+      data_onclick: function data_onclick() {},
+      data_onmouseover: function data_onmouseover() {},
+      data_onmouseout: function data_onmouseout() {},
+      data_onselected: function data_onselected() {},
+      data_onunselected: function data_onunselected() {},
+      data_url: undefined,
+      data_headers: undefined,
+      data_json: undefined,
+      data_rows: undefined,
+      data_columns: undefined,
+      data_mimeType: undefined,
+      data_keys: undefined,
+      // configuration for no plot-able data supplied.
+      data_empty_label_text: "",
+      // subchart
+      subchart_show: false,
+      subchart_size_height: 60,
+      subchart_axis_x_show: true,
+      subchart_onbrush: function subchart_onbrush() {},
+      // color
+      color_pattern: [],
+      color_threshold: {},
+      // legend
+      legend_show: true,
+      legend_hide: false,
+      legend_position: 'bottom',
+      legend_inset_anchor: 'top-left',
+      legend_inset_x: 10,
+      legend_inset_y: 0,
+      legend_inset_step: undefined,
+      legend_item_onclick: undefined,
+      legend_item_onmouseover: undefined,
+      legend_item_onmouseout: undefined,
+      legend_equally: false,
+      legend_padding: 0,
+      legend_item_tile_width: 10,
+      legend_item_tile_height: 10,
+      // axis
+      axis_rotated: false,
+      axis_x_show: true,
+      axis_x_type: 'indexed',
+      axis_x_localtime: true,
+      axis_x_categories: [],
+      axis_x_tick_centered: false,
+      axis_x_tick_format: undefined,
+      axis_x_tick_culling: {},
+      axis_x_tick_culling_max: 10,
+      axis_x_tick_count: undefined,
+      axis_x_tick_fit: true,
+      axis_x_tick_values: null,
+      axis_x_tick_rotate: 0,
+      axis_x_tick_outer: true,
+      axis_x_tick_multiline: true,
+      axis_x_tick_multilineMax: 0,
+      axis_x_tick_width: null,
+      axis_x_max: undefined,
+      axis_x_min: undefined,
+      axis_x_padding: {},
+      axis_x_height: undefined,
+      axis_x_selection: undefined,
+      axis_x_label: {},
+      axis_x_inner: undefined,
+      axis_y_show: true,
+      axis_y_type: undefined,
+      axis_y_max: undefined,
+      axis_y_min: undefined,
+      axis_y_inverted: false,
+      axis_y_center: undefined,
+      axis_y_inner: undefined,
+      axis_y_label: {},
+      axis_y_tick_format: undefined,
+      axis_y_tick_outer: true,
+      axis_y_tick_values: null,
+      axis_y_tick_rotate: 0,
+      axis_y_tick_count: undefined,
+      axis_y_tick_time_type: undefined,
+      axis_y_tick_time_interval: undefined,
+      axis_y_padding: {},
+      axis_y_default: undefined,
+      axis_y2_show: false,
+      axis_y2_max: undefined,
+      axis_y2_min: undefined,
+      axis_y2_inverted: false,
+      axis_y2_center: undefined,
+      axis_y2_inner: undefined,
+      axis_y2_label: {},
+      axis_y2_tick_format: undefined,
+      axis_y2_tick_outer: true,
+      axis_y2_tick_values: null,
+      axis_y2_tick_count: undefined,
+      axis_y2_padding: {},
+      axis_y2_default: undefined,
+      // grid
+      grid_x_show: false,
+      grid_x_type: 'tick',
+      grid_x_lines: [],
+      grid_y_show: false,
+      // not used
+      // grid_y_type: 'tick',
+      grid_y_lines: [],
+      grid_y_ticks: 10,
+      grid_focus_show: true,
+      grid_lines_front: true,
+      // point - point of each data
+      point_show: true,
+      point_r: 2.5,
+      point_sensitivity: 10,
+      point_focus_expand_enabled: true,
+      point_focus_expand_r: undefined,
+      point_select_r: undefined,
+      // line
+      line_connectNull: false,
+      line_step_type: 'step',
+      // bar
+      bar_width: undefined,
+      bar_width_ratio: 0.6,
+      bar_width_max: undefined,
+      bar_zerobased: true,
+      bar_space: 0,
+      // area
+      area_zerobased: true,
+      area_above: false,
+      // pie
+      pie_label_show: true,
+      pie_label_format: undefined,
+      pie_label_threshold: 0.05,
+      pie_label_ratio: undefined,
+      pie_expand: {},
+      pie_expand_duration: 50,
+      // gauge
+      gauge_fullCircle: false,
+      gauge_label_show: true,
+      gauge_labelLine_show: true,
+      gauge_label_format: undefined,
+      gauge_min: 0,
+      gauge_max: 100,
+      gauge_startingAngle: -1 * Math.PI / 2,
+      gauge_label_extents: undefined,
+      gauge_units: undefined,
+      gauge_width: undefined,
+      gauge_arcs_minWidth: 5,
+      gauge_expand: {},
+      gauge_expand_duration: 50,
+      // donut
+      donut_label_show: true,
+      donut_label_format: undefined,
+      donut_label_threshold: 0.05,
+      donut_label_ratio: undefined,
+      donut_width: undefined,
+      donut_title: "",
+      donut_expand: {},
+      donut_expand_duration: 50,
+      // spline
+      spline_interpolation_type: 'cardinal',
+      // region - region to change style
+      regions: [],
+      // tooltip - show when mouseover on each data
+      tooltip_show: true,
+      tooltip_grouped: true,
+      tooltip_order: undefined,
+      tooltip_format_title: undefined,
+      tooltip_format_name: undefined,
+      tooltip_format_value: undefined,
+      tooltip_position: undefined,
+      tooltip_contents: function tooltip_contents(d, defaultTitleFormat, defaultValueFormat, color) {
+        return this.getTooltipContent ? this.getTooltipContent(d, defaultTitleFormat, defaultValueFormat, color) : '';
+      },
+      tooltip_init_show: false,
+      tooltip_init_x: 0,
+      tooltip_init_position: {
+        top: '0px',
+        left: '50px'
+      },
+      tooltip_onshow: function tooltip_onshow() {},
+      tooltip_onhide: function tooltip_onhide() {},
+      // title
+      title_text: undefined,
+      title_padding: {
+        top: 0,
+        right: 0,
+        bottom: 0,
+        left: 0
+      },
+      title_position: 'top-center'
+    };
+    Object.keys(this.additionalConfig).forEach(function (key) {
+      config[key] = this.additionalConfig[key];
+    }, this);
+    return config;
+  };
+
+  ChartInternal.prototype.additionalConfig = {};
+
+  ChartInternal.prototype.loadConfig = function (config) {
+    var this_config = this.config,
+        target,
+        keys,
+        read;
+
+    function find() {
+      var key = keys.shift(); //        console.log("key =>", key, ", target =>", target);
+
+      if (key && target && _typeof(target) === 'object' && key in target) {
+        target = target[key];
+        return find();
+      } else if (!key) {
+        return target;
+      } else {
+        return undefined;
+      }
+    }
+
+    Object.keys(this_config).forEach(function (key) {
+      target = config;
+      keys = key.split('_');
+      read = find(); //        console.log("CONFIG : ", key, read);
+
+      if (isDefined(read)) {
+        this_config[key] = read;
+      }
+    });
+  };
+
+  ChartInternal.prototype.convertUrlToData = function (url, mimeType, headers, keys, done) {
+    var $$ = this,
+        type = mimeType ? mimeType : 'csv',
+        f,
+        converter;
+
+    if (type === 'json') {
+      f = $$.d3.json;
+      converter = $$.convertJsonToData;
+    } else if (type === 'tsv') {
+      f = $$.d3.tsv;
+      converter = $$.convertXsvToData;
+    } else {
+      f = $$.d3.csv;
+      converter = $$.convertXsvToData;
+    }
+
+    f(url, headers).then(function (data) {
+      done.call($$, converter.call($$, data, keys));
+    }).catch(function (error) {
+      throw error;
+    });
+  };
+
+  ChartInternal.prototype.convertXsvToData = function (xsv) {
+    var keys = xsv.columns,
+        rows = xsv;
+
+    if (rows.length === 0) {
+      return {
+        keys: keys,
+        rows: [keys.reduce(function (row, key) {
+          return Object.assign(row, _defineProperty({}, key, null));
+        }, {})]
+      };
+    } else {
+      // [].concat() is to convert result into a plain array otherwise
+      // test is not happy because rows have properties.
+      return {
+        keys: keys,
+        rows: [].concat(xsv)
+      };
+    }
+  };
+
+  ChartInternal.prototype.convertJsonToData = function (json, keys) {
+    var $$ = this,
+        new_rows = [],
+        targetKeys,
+        data;
+
+    if (keys) {
+      // when keys specified, json would be an array that includes objects
+      if (keys.x) {
+        targetKeys = keys.value.concat(keys.x);
+        $$.config.data_x = keys.x;
+      } else {
+        targetKeys = keys.value;
+      }
+
+      new_rows.push(targetKeys);
+      json.forEach(function (o) {
+        var new_row = [];
+        targetKeys.forEach(function (key) {
+          // convert undefined to null because undefined data will be removed in convertDataToTargets()
+          var v = $$.findValueInJson(o, key);
+
+          if (isUndefined(v)) {
+            v = null;
+          }
+
+          new_row.push(v);
+        });
+        new_rows.push(new_row);
+      });
+      data = $$.convertRowsToData(new_rows);
+    } else {
+      Object.keys(json).forEach(function (key) {
+        new_rows.push([key].concat(json[key]));
+      });
+      data = $$.convertColumnsToData(new_rows);
+    }
+
+    return data;
+  };
+
+  ChartInternal.prototype.findValueInJson = function (object, path) {
+    path = path.replace(/\[(\w+)\]/g, '.$1'); // convert indexes to properties (replace [] with .)
+
+    path = path.replace(/^\./, ''); // strip a leading dot
+
+    var pathArray = path.split('.');
+
+    for (var i = 0; i < pathArray.length; ++i) {
+      var k = pathArray[i];
+
+      if (k in object) {
+        object = object[k];
+      } else {
+        return;
+      }
+    }
+
+    return object;
+  };
+  /**
+   * Converts the rows to normalized data.
+   * @param {any[][]} rows The row data
+   * @return {Object}
+   */
+
+
+  ChartInternal.prototype.convertRowsToData = function (rows) {
+    var newRows = [];
+    var keys = rows[0];
+
+    for (var i = 1; i < rows.length; i++) {
+      var newRow = {};
+
+      for (var j = 0; j < rows[i].length; j++) {
+        if (isUndefined(rows[i][j])) {
+          throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
+        }
+
+        newRow[keys[j]] = rows[i][j];
+      }
+
+      newRows.push(newRow);
+    }
+
+    return {
+      keys: keys,
+      rows: newRows
+    };
+  };
+  /**
+   * Converts the columns to normalized data.
+   * @param {any[][]} columns The column data
+   * @return {Object}
+   */
+
+
+  ChartInternal.prototype.convertColumnsToData = function (columns) {
+    var newRows = [];
+    var keys = [];
+
+    for (var i = 0; i < columns.length; i++) {
+      var key = columns[i][0];
+
+      for (var j = 1; j < columns[i].length; j++) {
+        if (isUndefined(newRows[j - 1])) {
+          newRows[j - 1] = {};
+        }
+
+        if (isUndefined(columns[i][j])) {
+          throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
+        }
+
+        newRows[j - 1][key] = columns[i][j];
+      }
+
+      keys.push(key);
+    }
+
+    return {
+      keys: keys,
+      rows: newRows
+    };
+  };
+  /**
+   * Converts the data format into the target format.
+   * @param {!Object} data
+   * @param {!Array} data.keys Ordered list of target IDs.
+   * @param {!Array} data.rows Rows of data to convert.
+   * @param {boolean} appendXs True to append to $$.data.xs, False to replace.
+   * @return {!Array}
+   */
+
+
+  ChartInternal.prototype.convertDataToTargets = function (data, appendXs) {
+    var $$ = this,
+        config = $$.config,
+        targets,
+        ids,
+        xs,
+        keys; // handles format where keys are not orderly provided
+
+    if (isArray(data)) {
+      keys = Object.keys(data[0]);
+    } else {
+      keys = data.keys;
+      data = data.rows;
+    }
+
+    ids = keys.filter($$.isNotX, $$);
+    xs = keys.filter($$.isX, $$); // save x for update data by load when custom x and c3.x API
+
+    ids.forEach(function (id) {
+      var xKey = $$.getXKey(id);
+
+      if ($$.isCustomX() || $$.isTimeSeries()) {
+        // if included in input data
+        if (xs.indexOf(xKey) >= 0) {
+          $$.data.xs[id] = (appendXs && $$.data.xs[id] ? $$.data.xs[id] : []).concat(data.map(function (d) {
+            return d[xKey];
+          }).filter(isValue).map(function (rawX, i) {
+            return $$.generateTargetX(rawX, id, i);
+          }));
+        } // if not included in input data, find from preloaded data of other id's x
+        else if (config.data_x) {
+            $$.data.xs[id] = $$.getOtherTargetXs();
+          } // if not included in input data, find from preloaded data
+          else if (notEmpty(config.data_xs)) {
+              $$.data.xs[id] = $$.getXValuesOfXKey(xKey, $$.data.targets);
+            } // MEMO: if no x included, use same x of current will be used
+
+      } else {
+        $$.data.xs[id] = data.map(function (d, i) {
+          return i;
         });
         });
-        arcs.exit().transition().duration(durationForExit).style('opacity', 0).remove();
-        main.selectAll('.' + CLASS.chartArc).select('text').style("opacity", 0).attr('class', function (d) {
-            return $$.isGaugeType(d.data) ? CLASS.gaugeValue : '';
-        }).text($$.textForArcLabel.bind($$)).attr("transform", $$.transformForArcLabel.bind($$)).style('font-size', function (d) {
-            return $$.isGaugeType(d.data) && $$.filterTargetsToShow($$.data.targets).length === 1 ? Math.round($$.radius / 5) + 'px' : '';
-        }).transition().duration(duration).style("opacity", function (d) {
-            return $$.isTargetToShow(d.data.id) && $$.isArcType(d.data) ? 1 : 0;
+      }
+    }); // check x is defined
+
+    ids.forEach(function (id) {
+      if (!$$.data.xs[id]) {
+        throw new Error('x is not defined for id = "' + id + '".');
+      }
+    }); // convert to target
+
+    targets = ids.map(function (id, index) {
+      var convertedId = config.data_idConverter(id);
+      return {
+        id: convertedId,
+        id_org: id,
+        values: data.map(function (d, i) {
+          var xKey = $$.getXKey(id),
+              rawX = d[xKey],
+              value = d[id] !== null && !isNaN(d[id]) ? +d[id] : null,
+              x; // use x as categories if custom x and categorized
+
+          if ($$.isCustomX() && $$.isCategorized() && !isUndefined(rawX)) {
+            if (index === 0 && i === 0) {
+              config.axis_x_categories = [];
+            }
+
+            x = config.axis_x_categories.indexOf(rawX);
+
+            if (x === -1) {
+              x = config.axis_x_categories.length;
+              config.axis_x_categories.push(rawX);
+            }
+          } else {
+            x = $$.generateTargetX(rawX, id, i);
+          } // mark as x = undefined if value is undefined and filter to remove after mapped
+
+
+          if (isUndefined(d[id]) || $$.data.xs[id].length <= i) {
+            x = undefined;
+          }
+
+          return {
+            x: x,
+            value: value,
+            id: convertedId
+          };
+        }).filter(function (v) {
+          return isDefined(v.x);
+        })
+      };
+    }); // finish targets
+
+    targets.forEach(function (t) {
+      var i; // sort values by its x
+
+      if (config.data_xSort) {
+        t.values = t.values.sort(function (v1, v2) {
+          var x1 = v1.x || v1.x === 0 ? v1.x : Infinity,
+              x2 = v2.x || v2.x === 0 ? v2.x : Infinity;
+          return x1 - x2;
         });
         });
-        main.select('.' + CLASS.chartArcsTitle).style("opacity", $$.hasType('donut') || hasGaugeType ? 1 : 0);
-
-        if (hasGaugeType) {
-            var index = 0;
-            var backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);
-
-            backgroundArc.enter().append("path").attr("class", function (d, i) {
-                return CLASS.chartArcsBackground + ' ' + CLASS.chartArcsBackground + '-' + i;
-            }).merge(backgroundArc).attr("d", function (d1) {
-                if ($$.hiddenTargetIds.indexOf(d1.id) >= 0) {
-                    return "M 0 0";
-                }
-
-                var d = {
-                    data: [{ value: config.gauge_max }],
-                    startAngle: config.gauge_startingAngle,
-                    endAngle: -1 * config.gauge_startingAngle * (config.gauge_fullCircle ? Math.PI : 1),
-                    index: index++
-                };
-                return $$.getArc(d, true, true);
-            });
+      } // indexing each value
+
+
+      i = 0;
+      t.values.forEach(function (v) {
+        v.index = i++;
+      }); // this needs to be sorted because its index and value.index is identical
+
+      $$.data.xs[t.id].sort(function (v1, v2) {
+        return v1 - v2;
+      });
+    }); // cache information about values
+
+    $$.hasNegativeValue = $$.hasNegativeValueInTargets(targets);
+    $$.hasPositiveValue = $$.hasPositiveValueInTargets(targets); // set target types
+
+    if (config.data_type) {
+      $$.setTargetType($$.mapToIds(targets).filter(function (id) {
+        return !(id in config.data_types);
+      }), config.data_type);
+    } // cache as original id keyed
+
+
+    targets.forEach(function (d) {
+      $$.addCache(d.id_org, d);
+    });
+    return targets;
+  };
+
+  ChartInternal.prototype.isX = function (key) {
+    var $$ = this,
+        config = $$.config;
+    return config.data_x && key === config.data_x || notEmpty(config.data_xs) && hasValue(config.data_xs, key);
+  };
+
+  ChartInternal.prototype.isNotX = function (key) {
+    return !this.isX(key);
+  };
+
+  ChartInternal.prototype.getXKey = function (id) {
+    var $$ = this,
+        config = $$.config;
+    return config.data_x ? config.data_x : notEmpty(config.data_xs) ? config.data_xs[id] : null;
+  };
+
+  ChartInternal.prototype.getXValuesOfXKey = function (key, targets) {
+    var $$ = this,
+        xValues,
+        ids = targets && notEmpty(targets) ? $$.mapToIds(targets) : [];
+    ids.forEach(function (id) {
+      if ($$.getXKey(id) === key) {
+        xValues = $$.data.xs[id];
+      }
+    });
+    return xValues;
+  };
+
+  ChartInternal.prototype.getXValue = function (id, i) {
+    var $$ = this;
+    return id in $$.data.xs && $$.data.xs[id] && isValue($$.data.xs[id][i]) ? $$.data.xs[id][i] : i;
+  };
+
+  ChartInternal.prototype.getOtherTargetXs = function () {
+    var $$ = this,
+        idsForX = Object.keys($$.data.xs);
+    return idsForX.length ? $$.data.xs[idsForX[0]] : null;
+  };
+
+  ChartInternal.prototype.getOtherTargetX = function (index) {
+    var xs = this.getOtherTargetXs();
+    return xs && index < xs.length ? xs[index] : null;
+  };
+
+  ChartInternal.prototype.addXs = function (xs) {
+    var $$ = this;
+    Object.keys(xs).forEach(function (id) {
+      $$.config.data_xs[id] = xs[id];
+    });
+  };
+
+  ChartInternal.prototype.addName = function (data) {
+    var $$ = this,
+        name;
+
+    if (data) {
+      name = $$.config.data_names[data.id];
+      data.name = name !== undefined ? name : data.id;
+    }
+
+    return data;
+  };
+
+  ChartInternal.prototype.getValueOnIndex = function (values, index) {
+    var valueOnIndex = values.filter(function (v) {
+      return v.index === index;
+    });
+    return valueOnIndex.length ? valueOnIndex[0] : null;
+  };
+
+  ChartInternal.prototype.updateTargetX = function (targets, x) {
+    var $$ = this;
+    targets.forEach(function (t) {
+      t.values.forEach(function (v, i) {
+        v.x = $$.generateTargetX(x[i], t.id, i);
+      });
+      $$.data.xs[t.id] = x;
+    });
+  };
+
+  ChartInternal.prototype.updateTargetXs = function (targets, xs) {
+    var $$ = this;
+    targets.forEach(function (t) {
+      if (xs[t.id]) {
+        $$.updateTargetX([t], xs[t.id]);
+      }
+    });
+  };
+
+  ChartInternal.prototype.generateTargetX = function (rawX, id, index) {
+    var $$ = this,
+        x;
+
+    if ($$.isTimeSeries()) {
+      x = rawX ? $$.parseDate(rawX) : $$.parseDate($$.getXValue(id, index));
+    } else if ($$.isCustomX() && !$$.isCategorized()) {
+      x = isValue(rawX) ? +rawX : $$.getXValue(id, index);
+    } else {
+      x = index;
+    }
+
+    return x;
+  };
+
+  ChartInternal.prototype.cloneTarget = function (target) {
+    return {
+      id: target.id,
+      id_org: target.id_org,
+      values: target.values.map(function (d) {
+        return {
+          x: d.x,
+          value: d.value,
+          id: d.id
+        };
+      })
+    };
+  };
+
+  ChartInternal.prototype.getMaxDataCount = function () {
+    var $$ = this;
+    return $$.d3.max($$.data.targets, function (t) {
+      return t.values.length;
+    });
+  };
+
+  ChartInternal.prototype.mapToIds = function (targets) {
+    return targets.map(function (d) {
+      return d.id;
+    });
+  };
+
+  ChartInternal.prototype.mapToTargetIds = function (ids) {
+    var $$ = this;
+    return ids ? [].concat(ids) : $$.mapToIds($$.data.targets);
+  };
+
+  ChartInternal.prototype.hasTarget = function (targets, id) {
+    var ids = this.mapToIds(targets),
+        i;
+
+    for (i = 0; i < ids.length; i++) {
+      if (ids[i] === id) {
+        return true;
+      }
+    }
+
+    return false;
+  };
+
+  ChartInternal.prototype.isTargetToShow = function (targetId) {
+    return this.hiddenTargetIds.indexOf(targetId) < 0;
+  };
+
+  ChartInternal.prototype.isLegendToShow = function (targetId) {
+    return this.hiddenLegendIds.indexOf(targetId) < 0;
+  };
+
+  ChartInternal.prototype.filterTargetsToShow = function (targets) {
+    var $$ = this;
+    return targets.filter(function (t) {
+      return $$.isTargetToShow(t.id);
+    });
+  };
+
+  ChartInternal.prototype.mapTargetsToUniqueXs = function (targets) {
+    var $$ = this;
+    var xs = $$.d3.set($$.d3.merge(targets.map(function (t) {
+      return t.values.map(function (v) {
+        return +v.x;
+      });
+    }))).values();
+    xs = $$.isTimeSeries() ? xs.map(function (x) {
+      return new Date(+x);
+    }) : xs.map(function (x) {
+      return +x;
+    });
+    return xs.sort(function (a, b) {
+      return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
+    });
+  };
+
+  ChartInternal.prototype.addHiddenTargetIds = function (targetIds) {
+    targetIds = targetIds instanceof Array ? targetIds : new Array(targetIds);
+
+    for (var i = 0; i < targetIds.length; i++) {
+      if (this.hiddenTargetIds.indexOf(targetIds[i]) < 0) {
+        this.hiddenTargetIds = this.hiddenTargetIds.concat(targetIds[i]);
+      }
+    }
+  };
+
+  ChartInternal.prototype.removeHiddenTargetIds = function (targetIds) {
+    this.hiddenTargetIds = this.hiddenTargetIds.filter(function (id) {
+      return targetIds.indexOf(id) < 0;
+    });
+  };
+
+  ChartInternal.prototype.addHiddenLegendIds = function (targetIds) {
+    targetIds = targetIds instanceof Array ? targetIds : new Array(targetIds);
+
+    for (var i = 0; i < targetIds.length; i++) {
+      if (this.hiddenLegendIds.indexOf(targetIds[i]) < 0) {
+        this.hiddenLegendIds = this.hiddenLegendIds.concat(targetIds[i]);
+      }
+    }
+  };
+
+  ChartInternal.prototype.removeHiddenLegendIds = function (targetIds) {
+    this.hiddenLegendIds = this.hiddenLegendIds.filter(function (id) {
+      return targetIds.indexOf(id) < 0;
+    });
+  };
+
+  ChartInternal.prototype.getValuesAsIdKeyed = function (targets) {
+    var ys = {};
+    targets.forEach(function (t) {
+      ys[t.id] = [];
+      t.values.forEach(function (v) {
+        ys[t.id].push(v.value);
+      });
+    });
+    return ys;
+  };
+
+  ChartInternal.prototype.checkValueInTargets = function (targets, checker) {
+    var ids = Object.keys(targets),
+        i,
+        j,
+        values;
+
+    for (i = 0; i < ids.length; i++) {
+      values = targets[ids[i]].values;
+
+      for (j = 0; j < values.length; j++) {
+        if (checker(values[j].value)) {
+          return true;
+        }
+      }
+    }
+
+    return false;
+  };
+
+  ChartInternal.prototype.hasNegativeValueInTargets = function (targets) {
+    return this.checkValueInTargets(targets, function (v) {
+      return v < 0;
+    });
+  };
+
+  ChartInternal.prototype.hasPositiveValueInTargets = function (targets) {
+    return this.checkValueInTargets(targets, function (v) {
+      return v > 0;
+    });
+  };
+
+  ChartInternal.prototype.isOrderDesc = function () {
+    var config = this.config;
+    return typeof config.data_order === 'string' && config.data_order.toLowerCase() === 'desc';
+  };
+
+  ChartInternal.prototype.isOrderAsc = function () {
+    var config = this.config;
+    return typeof config.data_order === 'string' && config.data_order.toLowerCase() === 'asc';
+  };
+
+  ChartInternal.prototype.getOrderFunction = function () {
+    var $$ = this,
+        config = $$.config,
+        orderAsc = $$.isOrderAsc(),
+        orderDesc = $$.isOrderDesc();
+
+    if (orderAsc || orderDesc) {
+      var reducer = function reducer(p, c) {
+        return p + Math.abs(c.value);
+      };
+
+      return function (t1, t2) {
+        var t1Sum = t1.values.reduce(reducer, 0),
+            t2Sum = t2.values.reduce(reducer, 0);
+        return orderAsc ? t2Sum - t1Sum : t1Sum - t2Sum;
+      };
+    } else if (isFunction(config.data_order)) {
+      return config.data_order;
+    } else if (isArray(config.data_order)) {
+      var order = config.data_order;
+      return function (t1, t2) {
+        return order.indexOf(t1.id) - order.indexOf(t2.id);
+      };
+    }
+  };
+
+  ChartInternal.prototype.orderTargets = function (targets) {
+    var fct = this.getOrderFunction();
+
+    if (fct) {
+      targets.sort(fct);
+    }
+
+    return targets;
+  };
+
+  ChartInternal.prototype.filterByX = function (targets, x) {
+    return this.d3.merge(targets.map(function (t) {
+      return t.values;
+    })).filter(function (v) {
+      return v.x - x === 0;
+    });
+  };
+
+  ChartInternal.prototype.filterRemoveNull = function (data) {
+    return data.filter(function (d) {
+      return isValue(d.value);
+    });
+  };
+
+  ChartInternal.prototype.filterByXDomain = function (targets, xDomain) {
+    return targets.map(function (t) {
+      return {
+        id: t.id,
+        id_org: t.id_org,
+        values: t.values.filter(function (v) {
+          return xDomain[0] <= v.x && v.x <= xDomain[1];
+        })
+      };
+    });
+  };
+
+  ChartInternal.prototype.hasDataLabel = function () {
+    var config = this.config;
+
+    if (typeof config.data_labels === 'boolean' && config.data_labels) {
+      return true;
+    } else if (_typeof(config.data_labels) === 'object' && notEmpty(config.data_labels)) {
+      return true;
+    }
+
+    return false;
+  };
+
+  ChartInternal.prototype.getDataLabelLength = function (min, max, key) {
+    var $$ = this,
+        lengths = [0, 0],
+        paddingCoef = 1.3;
+    $$.selectChart.select('svg').selectAll('.dummy').data([min, max]).enter().append('text').text(function (d) {
+      return $$.dataLabelFormat(d.id)(d);
+    }).each(function (d, i) {
+      lengths[i] = this.getBoundingClientRect()[key] * paddingCoef;
+    }).remove();
+    return lengths;
+  };
+  /**
+   * Returns true if the given data point is not arc type, otherwise false.
+   * @param {Object} d The data point
+   * @return {boolean}
+   */
+
+
+  ChartInternal.prototype.isNoneArc = function (d) {
+    return this.hasTarget(this.data.targets, d.id);
+  };
+  /**
+   * Returns true if the given data point is arc type, otherwise false.
+   * @param {Object} d The data point
+   * @return {boolean}
+   */
+
+
+  ChartInternal.prototype.isArc = function (d) {
+    return 'data' in d && this.hasTarget(this.data.targets, d.data.id);
+  };
+
+  ChartInternal.prototype.findClosestFromTargets = function (targets, pos) {
+    var $$ = this,
+        candidates; // map to array of closest points of each target
+
+    candidates = targets.map(function (target) {
+      return $$.findClosest(target.values, pos);
+    }); // decide closest point and return
+
+    return $$.findClosest(candidates, pos);
+  };
+
+  ChartInternal.prototype.findClosest = function (values, pos) {
+    var $$ = this,
+        minDist = $$.config.point_sensitivity,
+        closest; // find mouseovering bar
+
+    values.filter(function (v) {
+      return v && $$.isBarType(v.id);
+    }).forEach(function (v) {
+      var shape = $$.main.select('.' + CLASS.bars + $$.getTargetSelectorSuffix(v.id) + ' .' + CLASS.bar + '-' + v.index).node();
+
+      if (!closest && $$.isWithinBar($$.d3.mouse(shape), shape)) {
+        closest = v;
+      }
+    }); // find closest point from non-bar
+
+    values.filter(function (v) {
+      return v && !$$.isBarType(v.id);
+    }).forEach(function (v) {
+      var d = $$.dist(v, pos);
+
+      if (d < minDist) {
+        minDist = d;
+        closest = v;
+      }
+    });
+    return closest;
+  };
+
+  ChartInternal.prototype.dist = function (data, pos) {
+    var $$ = this,
+        config = $$.config,
+        xIndex = config.axis_rotated ? 1 : 0,
+        yIndex = config.axis_rotated ? 0 : 1,
+        y = $$.circleY(data, data.index),
+        x = $$.x(data.x);
+    return Math.sqrt(Math.pow(x - pos[xIndex], 2) + Math.pow(y - pos[yIndex], 2));
+  };
+
+  ChartInternal.prototype.convertValuesToStep = function (values) {
+    var converted = [].concat(values),
+        i;
+
+    if (!this.isCategorized()) {
+      return values;
+    }
+
+    for (i = values.length + 1; 0 < i; i--) {
+      converted[i] = converted[i - 1];
+    }
+
+    converted[0] = {
+      x: converted[0].x - 1,
+      value: converted[0].value,
+      id: converted[0].id
+    };
+    converted[values.length + 1] = {
+      x: converted[values.length].x + 1,
+      value: converted[values.length].value,
+      id: converted[values.length].id
+    };
+    return converted;
+  };
+
+  ChartInternal.prototype.updateDataAttributes = function (name, attrs) {
+    var $$ = this,
+        config = $$.config,
+        current = config['data_' + name];
+
+    if (typeof attrs === 'undefined') {
+      return current;
+    }
+
+    Object.keys(attrs).forEach(function (id) {
+      current[id] = attrs[id];
+    });
+    $$.redraw({
+      withLegend: true
+    });
+    return current;
+  };
+
+  ChartInternal.prototype.load = function (targets, args) {
+    var $$ = this;
+
+    if (targets) {
+      // filter loading targets if needed
+      if (args.filter) {
+        targets = targets.filter(args.filter);
+      } // set type if args.types || args.type specified
+
+
+      if (args.type || args.types) {
+        targets.forEach(function (t) {
+          var type = args.types && args.types[t.id] ? args.types[t.id] : args.type;
+          $$.setTargetType(t.id, type);
+        });
+      } // Update/Add data
+
+
+      $$.data.targets.forEach(function (d) {
+        for (var i = 0; i < targets.length; i++) {
+          if (d.id === targets[i].id) {
+            d.values = targets[i].values;
+            targets.splice(i, 1);
+            break;
+          }
+        }
+      });
+      $$.data.targets = $$.data.targets.concat(targets); // add remained
+    } // Set targets
+
+
+    $$.updateTargets($$.data.targets); // Redraw with new targets
+
+    $$.redraw({
+      withUpdateOrgXDomain: true,
+      withUpdateXDomain: true,
+      withLegend: true
+    });
+
+    if (args.done) {
+      args.done();
+    }
+  };
+
+  ChartInternal.prototype.loadFromArgs = function (args) {
+    var $$ = this;
+
+    if (args.data) {
+      $$.load($$.convertDataToTargets(args.data), args);
+    } else if (args.url) {
+      $$.convertUrlToData(args.url, args.mimeType, args.headers, args.keys, function (data) {
+        $$.load($$.convertDataToTargets(data), args);
+      });
+    } else if (args.json) {
+      $$.load($$.convertDataToTargets($$.convertJsonToData(args.json, args.keys)), args);
+    } else if (args.rows) {
+      $$.load($$.convertDataToTargets($$.convertRowsToData(args.rows)), args);
+    } else if (args.columns) {
+      $$.load($$.convertDataToTargets($$.convertColumnsToData(args.columns)), args);
+    } else {
+      $$.load(null, args);
+    }
+  };
+
+  ChartInternal.prototype.unload = function (targetIds, done) {
+    var $$ = this;
+
+    if (!done) {
+      done = function done() {};
+    } // filter existing target
+
+
+    targetIds = targetIds.filter(function (id) {
+      return $$.hasTarget($$.data.targets, id);
+    }); // If no target, call done and return
+
+    if (!targetIds || targetIds.length === 0) {
+      done();
+      return;
+    }
+
+    $$.svg.selectAll(targetIds.map(function (id) {
+      return $$.selectorTarget(id);
+    })).transition().style('opacity', 0).remove().call($$.endall, done);
+    targetIds.forEach(function (id) {
+      // Reset fadein for future load
+      $$.withoutFadeIn[id] = false; // Remove target's elements
+
+      if ($$.legend) {
+        $$.legend.selectAll('.' + CLASS.legendItem + $$.getTargetSelectorSuffix(id)).remove();
+      } // Remove target
+
+
+      $$.data.targets = $$.data.targets.filter(function (t) {
+        return t.id !== id;
+      });
+    });
+  };
+
+  ChartInternal.prototype.getYDomainMin = function (targets) {
+    var $$ = this,
+        config = $$.config,
+        ids = $$.mapToIds(targets),
+        ys = $$.getValuesAsIdKeyed(targets),
+        j,
+        k,
+        baseId,
+        idsInGroup,
+        id,
+        hasNegativeValue;
+
+    if (config.data_groups.length > 0) {
+      hasNegativeValue = $$.hasNegativeValueInTargets(targets);
+
+      for (j = 0; j < config.data_groups.length; j++) {
+        // Determine baseId
+        idsInGroup = config.data_groups[j].filter(function (id) {
+          return ids.indexOf(id) >= 0;
+        });
+
+        if (idsInGroup.length === 0) {
+          continue;
+        }
+
+        baseId = idsInGroup[0]; // Consider negative values
+
+        if (hasNegativeValue && ys[baseId]) {
+          ys[baseId].forEach(function (v, i) {
+            ys[baseId][i] = v < 0 ? v : 0;
+          });
+        } // Compute min
+
+
+        for (k = 1; k < idsInGroup.length; k++) {
+          id = idsInGroup[k];
+
+          if (!ys[id]) {
+            continue;
+          }
+
+          ys[id].forEach(function (v, i) {
+            if ($$.axis.getId(id) === $$.axis.getId(baseId) && ys[baseId] && !(hasNegativeValue && +v > 0)) {
+              ys[baseId][i] += +v;
+            }
+          });
+        }
+      }
+    }
+
+    return $$.d3.min(Object.keys(ys).map(function (key) {
+      return $$.d3.min(ys[key]);
+    }));
+  };
+
+  ChartInternal.prototype.getYDomainMax = function (targets) {
+    var $$ = this,
+        config = $$.config,
+        ids = $$.mapToIds(targets),
+        ys = $$.getValuesAsIdKeyed(targets),
+        j,
+        k,
+        baseId,
+        idsInGroup,
+        id,
+        hasPositiveValue;
+
+    if (config.data_groups.length > 0) {
+      hasPositiveValue = $$.hasPositiveValueInTargets(targets);
+
+      for (j = 0; j < config.data_groups.length; j++) {
+        // Determine baseId
+        idsInGroup = config.data_groups[j].filter(function (id) {
+          return ids.indexOf(id) >= 0;
+        });
+
+        if (idsInGroup.length === 0) {
+          continue;
+        }
+
+        baseId = idsInGroup[0]; // Consider positive values
+
+        if (hasPositiveValue && ys[baseId]) {
+          ys[baseId].forEach(function (v, i) {
+            ys[baseId][i] = v > 0 ? v : 0;
+          });
+        } // Compute max
+
+
+        for (k = 1; k < idsInGroup.length; k++) {
+          id = idsInGroup[k];
+
+          if (!ys[id]) {
+            continue;
+          }
+
+          ys[id].forEach(function (v, i) {
+            if ($$.axis.getId(id) === $$.axis.getId(baseId) && ys[baseId] && !(hasPositiveValue && +v < 0)) {
+              ys[baseId][i] += +v;
+            }
+          });
+        }
+      }
+    }
+
+    return $$.d3.max(Object.keys(ys).map(function (key) {
+      return $$.d3.max(ys[key]);
+    }));
+  };
+
+  ChartInternal.prototype.getYDomain = function (targets, axisId, xDomain) {
+    var $$ = this,
+        config = $$.config,
+        targetsByAxisId = targets.filter(function (t) {
+      return $$.axis.getId(t.id) === axisId;
+    }),
+        yTargets = xDomain ? $$.filterByXDomain(targetsByAxisId, xDomain) : targetsByAxisId,
+        yMin = axisId === 'y2' ? config.axis_y2_min : config.axis_y_min,
+        yMax = axisId === 'y2' ? config.axis_y2_max : config.axis_y_max,
+        yDomainMin = $$.getYDomainMin(yTargets),
+        yDomainMax = $$.getYDomainMax(yTargets),
+        domain,
+        domainLength,
+        padding,
+        padding_top,
+        padding_bottom,
+        center = axisId === 'y2' ? config.axis_y2_center : config.axis_y_center,
+        yDomainAbs,
+        lengths,
+        diff,
+        ratio,
+        isAllPositive,
+        isAllNegative,
+        isZeroBased = $$.hasType('bar', yTargets) && config.bar_zerobased || $$.hasType('area', yTargets) && config.area_zerobased,
+        isInverted = axisId === 'y2' ? config.axis_y2_inverted : config.axis_y_inverted,
+        showHorizontalDataLabel = $$.hasDataLabel() && config.axis_rotated,
+        showVerticalDataLabel = $$.hasDataLabel() && !config.axis_rotated; // MEMO: avoid inverting domain unexpectedly
+
+    yDomainMin = isValue(yMin) ? yMin : isValue(yMax) ? yDomainMin < yMax ? yDomainMin : yMax - 10 : yDomainMin;
+    yDomainMax = isValue(yMax) ? yMax : isValue(yMin) ? yMin < yDomainMax ? yDomainMax : yMin + 10 : yDomainMax;
+
+    if (yTargets.length === 0) {
+      // use current domain if target of axisId is none
+      return axisId === 'y2' ? $$.y2.domain() : $$.y.domain();
+    }
+
+    if (isNaN(yDomainMin)) {
+      // set minimum to zero when not number
+      yDomainMin = 0;
+    }
+
+    if (isNaN(yDomainMax)) {
+      // set maximum to have same value as yDomainMin
+      yDomainMax = yDomainMin;
+    }
+
+    if (yDomainMin === yDomainMax) {
+      yDomainMin < 0 ? yDomainMax = 0 : yDomainMin = 0;
+    }
+
+    isAllPositive = yDomainMin >= 0 && yDomainMax >= 0;
+    isAllNegative = yDomainMin <= 0 && yDomainMax <= 0; // Cancel zerobased if axis_*_min / axis_*_max specified
+
+    if (isValue(yMin) && isAllPositive || isValue(yMax) && isAllNegative) {
+      isZeroBased = false;
+    } // Bar/Area chart should be 0-based if all positive|negative
+
+
+    if (isZeroBased) {
+      if (isAllPositive) {
+        yDomainMin = 0;
+      }
+
+      if (isAllNegative) {
+        yDomainMax = 0;
+      }
+    }
+
+    domainLength = Math.abs(yDomainMax - yDomainMin);
+    padding = padding_top = padding_bottom = domainLength * 0.1;
+
+    if (typeof center !== 'undefined') {
+      yDomainAbs = Math.max(Math.abs(yDomainMin), Math.abs(yDomainMax));
+      yDomainMax = center + yDomainAbs;
+      yDomainMin = center - yDomainAbs;
+    } // add padding for data label
+
+
+    if (showHorizontalDataLabel) {
+      lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, 'width');
+      diff = diffDomain($$.y.range());
+      ratio = [lengths[0] / diff, lengths[1] / diff];
+      padding_top += domainLength * (ratio[1] / (1 - ratio[0] - ratio[1]));
+      padding_bottom += domainLength * (ratio[0] / (1 - ratio[0] - ratio[1]));
+    } else if (showVerticalDataLabel) {
+      lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, 'height');
+      padding_top += $$.axis.convertPixelsToAxisPadding(lengths[1], domainLength);
+      padding_bottom += $$.axis.convertPixelsToAxisPadding(lengths[0], domainLength);
+    }
+
+    if (axisId === 'y' && notEmpty(config.axis_y_padding)) {
+      padding_top = $$.axis.getPadding(config.axis_y_padding, 'top', padding_top, domainLength);
+      padding_bottom = $$.axis.getPadding(config.axis_y_padding, 'bottom', padding_bottom, domainLength);
+    }
+
+    if (axisId === 'y2' && notEmpty(config.axis_y2_padding)) {
+      padding_top = $$.axis.getPadding(config.axis_y2_padding, 'top', padding_top, domainLength);
+      padding_bottom = $$.axis.getPadding(config.axis_y2_padding, 'bottom', padding_bottom, domainLength);
+    } // Bar/Area chart should be 0-based if all positive|negative
+
+
+    if (isZeroBased) {
+      if (isAllPositive) {
+        padding_bottom = yDomainMin;
+      }
+
+      if (isAllNegative) {
+        padding_top = -yDomainMax;
+      }
+    }
+
+    domain = [yDomainMin - padding_bottom, yDomainMax + padding_top];
+    return isInverted ? domain.reverse() : domain;
+  };
+
+  ChartInternal.prototype.getXDomainMin = function (targets) {
+    var $$ = this,
+        config = $$.config;
+    return isDefined(config.axis_x_min) ? $$.isTimeSeries() ? this.parseDate(config.axis_x_min) : config.axis_x_min : $$.d3.min(targets, function (t) {
+      return $$.d3.min(t.values, function (v) {
+        return v.x;
+      });
+    });
+  };
+
+  ChartInternal.prototype.getXDomainMax = function (targets) {
+    var $$ = this,
+        config = $$.config;
+    return isDefined(config.axis_x_max) ? $$.isTimeSeries() ? this.parseDate(config.axis_x_max) : config.axis_x_max : $$.d3.max(targets, function (t) {
+      return $$.d3.max(t.values, function (v) {
+        return v.x;
+      });
+    });
+  };
+
+  ChartInternal.prototype.getXDomainPadding = function (domain) {
+    var $$ = this,
+        config = $$.config,
+        diff = domain[1] - domain[0],
+        maxDataCount,
+        padding,
+        paddingLeft,
+        paddingRight;
+
+    if ($$.isCategorized()) {
+      padding = 0;
+    } else if ($$.hasType('bar')) {
+      maxDataCount = $$.getMaxDataCount();
+      padding = maxDataCount > 1 ? diff / (maxDataCount - 1) / 2 : 0.5;
+    } else {
+      padding = diff * 0.01;
+    }
+
+    if (_typeof(config.axis_x_padding) === 'object' && notEmpty(config.axis_x_padding)) {
+      paddingLeft = isValue(config.axis_x_padding.left) ? config.axis_x_padding.left : padding;
+      paddingRight = isValue(config.axis_x_padding.right) ? config.axis_x_padding.right : padding;
+    } else if (typeof config.axis_x_padding === 'number') {
+      paddingLeft = paddingRight = config.axis_x_padding;
+    } else {
+      paddingLeft = paddingRight = padding;
+    }
+
+    return {
+      left: paddingLeft,
+      right: paddingRight
+    };
+  };
+
+  ChartInternal.prototype.getXDomain = function (targets) {
+    var $$ = this,
+        xDomain = [$$.getXDomainMin(targets), $$.getXDomainMax(targets)],
+        firstX = xDomain[0],
+        lastX = xDomain[1],
+        padding = $$.getXDomainPadding(xDomain),
+        min = 0,
+        max = 0; // show center of x domain if min and max are the same
+
+    if (firstX - lastX === 0 && !$$.isCategorized()) {
+      if ($$.isTimeSeries()) {
+        firstX = new Date(firstX.getTime() * 0.5);
+        lastX = new Date(lastX.getTime() * 1.5);
+      } else {
+        firstX = firstX === 0 ? 1 : firstX * 0.5;
+        lastX = lastX === 0 ? -1 : lastX * 1.5;
+      }
+    }
+
+    if (firstX || firstX === 0) {
+      min = $$.isTimeSeries() ? new Date(firstX.getTime() - padding.left) : firstX - padding.left;
+    }
+
+    if (lastX || lastX === 0) {
+      max = $$.isTimeSeries() ? new Date(lastX.getTime() + padding.right) : lastX + padding.right;
+    }
+
+    return [min, max];
+  };
+
+  ChartInternal.prototype.updateXDomain = function (targets, withUpdateXDomain, withUpdateOrgXDomain, withTrim, domain) {
+    var $$ = this,
+        config = $$.config;
+
+    if (withUpdateOrgXDomain) {
+      $$.x.domain(domain ? domain : $$.d3.extent($$.getXDomain(targets)));
+      $$.orgXDomain = $$.x.domain();
+
+      if (config.zoom_enabled) {
+        $$.zoom.update();
+      }
+
+      $$.subX.domain($$.x.domain());
+
+      if ($$.brush) {
+        $$.brush.updateScale($$.subX);
+      }
+    }
+
+    if (withUpdateXDomain) {
+      $$.x.domain(domain ? domain : !$$.brush || $$.brush.empty() ? $$.orgXDomain : $$.brush.selectionAsValue());
+    } // Trim domain when too big by zoom mousemove event
+
+
+    if (withTrim) {
+      $$.x.domain($$.trimXDomain($$.x.orgDomain()));
+    }
 
 
-            backgroundArc.exit().remove();
+    return $$.x.domain();
+  };
 
 
-            $$.arcs.select('.' + CLASS.chartArcsGaugeUnit).attr("dy", ".75em").text(config.gauge_label_show ? config.gauge_units : '');
-            $$.arcs.select('.' + CLASS.chartArcsGaugeMin).attr("dx", -1 * ($$.innerRadius + ($$.radius - $$.innerRadius) / (config.gauge_fullCircle ? 1 : 2)) + "px").attr("dy", "1.2em").text(config.gauge_label_show ? $$.textForGaugeMinMax(config.gauge_min, false) : '');
-            $$.arcs.select('.' + CLASS.chartArcsGaugeMax).attr("dx", $$.innerRadius + ($$.radius - $$.innerRadius) / (config.gauge_fullCircle ? 1 : 2) + "px").attr("dy", "1.2em").text(config.gauge_label_show ? $$.textForGaugeMinMax(config.gauge_max, true) : '');
-        }
-    };
-    ChartInternal.prototype.initGauge = function () {
-        var arcs = this.arcs;
-        if (this.hasType('gauge')) {
-            arcs.append('g').attr("class", CLASS.chartArcsBackground);
-            arcs.append("text").attr("class", CLASS.chartArcsGaugeUnit).style("text-anchor", "middle").style("pointer-events", "none");
-            arcs.append("text").attr("class", CLASS.chartArcsGaugeMin).style("text-anchor", "middle").style("pointer-events", "none");
-            arcs.append("text").attr("class", CLASS.chartArcsGaugeMax).style("text-anchor", "middle").style("pointer-events", "none");
-        }
-    };
-    ChartInternal.prototype.getGaugeLabelHeight = function () {
-        return this.config.gauge_label_show ? 20 : 0;
-    };
+  ChartInternal.prototype.trimXDomain = function (domain) {
+    var zoomDomain = this.getZoomDomain(),
+        min = zoomDomain[0],
+        max = zoomDomain[1];
 
 
-    ChartInternal.prototype.hasCaches = function (ids) {
-        for (var i = 0; i < ids.length; i++) {
-            if (!(ids[i] in this.cache)) {
-                return false;
-            }
-        }
-        return true;
-    };
-    ChartInternal.prototype.addCache = function (id, target) {
-        this.cache[id] = this.cloneTarget(target);
-    };
-    ChartInternal.prototype.getCaches = function (ids) {
-        var targets = [],
-            i;
-        for (i = 0; i < ids.length; i++) {
-            if (ids[i] in this.cache) {
-                targets.push(this.cloneTarget(this.cache[ids[i]]));
-            }
-        }
-        return targets;
-    };
+    if (domain[0] <= min) {
+      domain[1] = +domain[1] + (min - domain[0]);
+      domain[0] = min;
+    }
 
 
-    ChartInternal.prototype.categoryName = function (i) {
-        var config = this.config;
-        return i < config.axis_x_categories.length ? config.axis_x_categories[i] : i;
-    };
+    if (max <= domain[1]) {
+      domain[0] = +domain[0] - (domain[1] - max);
+      domain[1] = max;
+    }
 
 
-    ChartInternal.prototype.generateTargetClass = function (targetId) {
-        return targetId || targetId === 0 ? ('-' + targetId).replace(/\s/g, '-') : '';
-    };
-    ChartInternal.prototype.generateClass = function (prefix, targetId) {
-        return " " + prefix + " " + prefix + this.generateTargetClass(targetId);
-    };
-    ChartInternal.prototype.classText = function (d) {
-        return this.generateClass(CLASS.text, d.index);
-    };
-    ChartInternal.prototype.classTexts = function (d) {
-        return this.generateClass(CLASS.texts, d.id);
-    };
-    ChartInternal.prototype.classShape = function (d) {
-        return this.generateClass(CLASS.shape, d.index);
-    };
-    ChartInternal.prototype.classShapes = function (d) {
-        return this.generateClass(CLASS.shapes, d.id);
-    };
-    ChartInternal.prototype.classLine = function (d) {
-        return this.classShape(d) + this.generateClass(CLASS.line, d.id);
-    };
-    ChartInternal.prototype.classLines = function (d) {
-        return this.classShapes(d) + this.generateClass(CLASS.lines, d.id);
-    };
-    ChartInternal.prototype.classCircle = function (d) {
-        return this.classShape(d) + this.generateClass(CLASS.circle, d.index);
-    };
-    ChartInternal.prototype.classCircles = function (d) {
-        return this.classShapes(d) + this.generateClass(CLASS.circles, d.id);
-    };
-    ChartInternal.prototype.classBar = function (d) {
-        return this.classShape(d) + this.generateClass(CLASS.bar, d.index);
-    };
-    ChartInternal.prototype.classBars = function (d) {
-        return this.classShapes(d) + this.generateClass(CLASS.bars, d.id);
-    };
-    ChartInternal.prototype.classArc = function (d) {
-        return this.classShape(d.data) + this.generateClass(CLASS.arc, d.data.id);
-    };
-    ChartInternal.prototype.classArcs = function (d) {
-        return this.classShapes(d.data) + this.generateClass(CLASS.arcs, d.data.id);
-    };
-    ChartInternal.prototype.classArea = function (d) {
-        return this.classShape(d) + this.generateClass(CLASS.area, d.id);
-    };
-    ChartInternal.prototype.classAreas = function (d) {
-        return this.classShapes(d) + this.generateClass(CLASS.areas, d.id);
-    };
-    ChartInternal.prototype.classRegion = function (d, i) {
-        return this.generateClass(CLASS.region, i) + ' ' + ('class' in d ? d['class'] : '');
-    };
-    ChartInternal.prototype.classEvent = function (d) {
-        return this.generateClass(CLASS.eventRect, d.index);
-    };
-    ChartInternal.prototype.classTarget = function (id) {
-        var $$ = this;
-        var additionalClassSuffix = $$.config.data_classes[id],
-            additionalClass = '';
-        if (additionalClassSuffix) {
-            additionalClass = ' ' + CLASS.target + '-' + additionalClassSuffix;
-        }
-        return $$.generateClass(CLASS.target, id) + additionalClass;
-    };
-    ChartInternal.prototype.classFocus = function (d) {
-        return this.classFocused(d) + this.classDefocused(d);
-    };
-    ChartInternal.prototype.classFocused = function (d) {
-        return ' ' + (this.focusedTargetIds.indexOf(d.id) >= 0 ? CLASS.focused : '');
-    };
-    ChartInternal.prototype.classDefocused = function (d) {
-        return ' ' + (this.defocusedTargetIds.indexOf(d.id) >= 0 ? CLASS.defocused : '');
-    };
-    ChartInternal.prototype.classChartText = function (d) {
-        return CLASS.chartText + this.classTarget(d.id);
-    };
-    ChartInternal.prototype.classChartLine = function (d) {
-        return CLASS.chartLine + this.classTarget(d.id);
-    };
-    ChartInternal.prototype.classChartBar = function (d) {
-        return CLASS.chartBar + this.classTarget(d.id);
-    };
-    ChartInternal.prototype.classChartArc = function (d) {
-        return CLASS.chartArc + this.classTarget(d.data.id);
-    };
-    ChartInternal.prototype.getTargetSelectorSuffix = function (targetId) {
-        return this.generateTargetClass(targetId).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
-    };
-    ChartInternal.prototype.selectorTarget = function (id, prefix) {
-        return (prefix || '') + '.' + CLASS.target + this.getTargetSelectorSuffix(id);
-    };
-    ChartInternal.prototype.selectorTargets = function (ids, prefix) {
-        var $$ = this;
-        ids = ids || [];
-        return ids.length ? ids.map(function (id) {
-            return $$.selectorTarget(id, prefix);
-        }) : null;
-    };
-    ChartInternal.prototype.selectorLegend = function (id) {
-        return '.' + CLASS.legendItem + this.getTargetSelectorSuffix(id);
-    };
-    ChartInternal.prototype.selectorLegends = function (ids) {
-        var $$ = this;
-        return ids && ids.length ? ids.map(function (id) {
-            return $$.selectorLegend(id);
-        }) : null;
-    };
+    return domain;
+  };
 
 
-    ChartInternal.prototype.getClipPath = function (id) {
-        var isIE9 = window.navigator.appVersion.toLowerCase().indexOf("msie 9.") >= 0;
-        return "url(" + (isIE9 ? "" : document.URL.split('#')[0]) + "#" + id + ")";
-    };
-    ChartInternal.prototype.appendClip = function (parent, id) {
-        return parent.append("clipPath").attr("id", id).append("rect");
-    };
-    ChartInternal.prototype.getAxisClipX = function (forHorizontal) {
-        // axis line width + padding for left
-        var left = Math.max(30, this.margin.left);
-        return forHorizontal ? -(1 + left) : -(left - 1);
-    };
-    ChartInternal.prototype.getAxisClipY = function (forHorizontal) {
-        return forHorizontal ? -20 : -this.margin.top;
-    };
-    ChartInternal.prototype.getXAxisClipX = function () {
-        var $$ = this;
-        return $$.getAxisClipX(!$$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getXAxisClipY = function () {
-        var $$ = this;
-        return $$.getAxisClipY(!$$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getYAxisClipX = function () {
-        var $$ = this;
-        return $$.config.axis_y_inner ? -1 : $$.getAxisClipX($$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getYAxisClipY = function () {
-        var $$ = this;
-        return $$.getAxisClipY($$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getAxisClipWidth = function (forHorizontal) {
-        var $$ = this,
-            left = Math.max(30, $$.margin.left),
-            right = Math.max(30, $$.margin.right);
-        // width + axis line width + padding for left/right
-        return forHorizontal ? $$.width + 2 + left + right : $$.margin.left + 20;
-    };
-    ChartInternal.prototype.getAxisClipHeight = function (forHorizontal) {
-        // less than 20 is not enough to show the axis label 'outer' without legend
-        return (forHorizontal ? this.margin.bottom : this.margin.top + this.height) + 20;
-    };
-    ChartInternal.prototype.getXAxisClipWidth = function () {
-        var $$ = this;
-        return $$.getAxisClipWidth(!$$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getXAxisClipHeight = function () {
-        var $$ = this;
-        return $$.getAxisClipHeight(!$$.config.axis_rotated);
-    };
-    ChartInternal.prototype.getYAxisClipWidth = function () {
-        var $$ = this;
-        return $$.getAxisClipWidth($$.config.axis_rotated) + ($$.config.axis_y_inner ? 20 : 0);
-    };
-    ChartInternal.prototype.getYAxisClipHeight = function () {
-        var $$ = this;
-        return $$.getAxisClipHeight($$.config.axis_rotated);
-    };
+  ChartInternal.prototype.drag = function (mouse) {
+    var $$ = this,
+        config = $$.config,
+        main = $$.main,
+        d3 = $$.d3;
+    var sx, sy, mx, my, minX, maxX, minY, maxY;
 
 
-    ChartInternal.prototype.generateColor = function () {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3,
-            colors = config.data_colors,
-            pattern = notEmpty(config.color_pattern) ? config.color_pattern : d3.schemeCategory10,
-            callback = config.data_color,
-            ids = [];
-
-        return function (d) {
-            var id = d.id || d.data && d.data.id || d,
-                color;
-
-            // if callback function is provided
-            if (colors[id] instanceof Function) {
-                color = colors[id](d);
-            }
-            // if specified, choose that color
-            else if (colors[id]) {
-                    color = colors[id];
-                }
-                // if not specified, choose from pattern
-                else {
-                        if (ids.indexOf(id) < 0) {
-                            ids.push(id);
-                        }
-                        color = pattern[ids.indexOf(id) % pattern.length];
-                        colors[id] = color;
-                    }
-            return callback instanceof Function ? callback(color, d) : color;
-        };
-    };
-    ChartInternal.prototype.generateLevelColor = function () {
-        var $$ = this,
-            config = $$.config,
-            colors = config.color_pattern,
-            threshold = config.color_threshold,
-            asValue = threshold.unit === 'value',
-            values = threshold.values && threshold.values.length ? threshold.values : [],
-            max = threshold.max || 100;
-        return notEmpty(config.color_threshold) ? function (value) {
-            var i,
-                v,
-                color = colors[colors.length - 1];
-            for (i = 0; i < values.length; i++) {
-                v = asValue ? value : value * 100 / max;
-                if (v < values[i]) {
-                    color = colors[i];
-                    break;
-                }
-            }
-            return color;
-        } : null;
-    };
+    if ($$.hasArcType()) {
+      return;
+    }
+
+    if (!config.data_selection_enabled) {
+      return;
+    } // do nothing if not selectable
+
+
+    if (!config.data_selection_multiple) {
+      return;
+    } // skip when single selection because drag is used for multiple selection
+
+
+    sx = $$.dragStart[0];
+    sy = $$.dragStart[1];
+    mx = mouse[0];
+    my = mouse[1];
+    minX = Math.min(sx, mx);
+    maxX = Math.max(sx, mx);
+    minY = config.data_selection_grouped ? $$.margin.top : Math.min(sy, my);
+    maxY = config.data_selection_grouped ? $$.height : Math.max(sy, my);
+    main.select('.' + CLASS.dragarea).attr('x', minX).attr('y', minY).attr('width', maxX - minX).attr('height', maxY - minY); // TODO: binary search when multiple xs
+
+    main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).filter(function (d) {
+      return config.data_selection_isselectable(d);
+    }).each(function (d, i) {
+      var shape = d3.select(this),
+          isSelected = shape.classed(CLASS.SELECTED),
+          isIncluded = shape.classed(CLASS.INCLUDED),
+          _x,
+          _y,
+          _w,
+          _h,
+          toggle,
+          isWithin = false,
+          box;
+
+      if (shape.classed(CLASS.circle)) {
+        _x = shape.attr("cx") * 1;
+        _y = shape.attr("cy") * 1;
+        toggle = $$.togglePoint;
+        isWithin = minX < _x && _x < maxX && minY < _y && _y < maxY;
+      } else if (shape.classed(CLASS.bar)) {
+        box = getPathBox(this);
+        _x = box.x;
+        _y = box.y;
+        _w = box.width;
+        _h = box.height;
+        toggle = $$.togglePath;
+        isWithin = !(maxX < _x || _x + _w < minX) && !(maxY < _y || _y + _h < minY);
+      } else {
+        // line/area selection not supported yet
+        return;
+      }
+
+      if (isWithin ^ isIncluded) {
+        shape.classed(CLASS.INCLUDED, !isIncluded); // TODO: included/unincluded callback here
+
+        shape.classed(CLASS.SELECTED, !isSelected);
+        toggle.call($$, !isSelected, shape, d, i);
+      }
+    });
+  };
+
+  ChartInternal.prototype.dragstart = function (mouse) {
+    var $$ = this,
+        config = $$.config;
+
+    if ($$.hasArcType()) {
+      return;
+    }
+
+    if (!config.data_selection_enabled) {
+      return;
+    } // do nothing if not selectable
+
+
+    $$.dragStart = mouse;
+    $$.main.select('.' + CLASS.chart).append('rect').attr('class', CLASS.dragarea).style('opacity', 0.1);
+    $$.dragging = true;
+  };
 
 
-    ChartInternal.prototype.getDefaultConfig = function () {
-        var config = {
-            bindto: '#chart',
-            svg_classname: undefined,
-            size_width: undefined,
-            size_height: undefined,
-            padding_left: undefined,
-            padding_right: undefined,
-            padding_top: undefined,
-            padding_bottom: undefined,
-            resize_auto: true,
-            zoom_enabled: false,
-            zoom_initialRange: undefined,
-            zoom_type: 'scroll',
-            zoom_disableDefaultBehavior: false,
-            zoom_privileged: false,
-            zoom_rescale: false,
-            zoom_onzoom: function zoom_onzoom() {},
-            zoom_onzoomstart: function zoom_onzoomstart() {},
-            zoom_onzoomend: function zoom_onzoomend() {},
-            zoom_x_min: undefined,
-            zoom_x_max: undefined,
-            interaction_brighten: true,
-            interaction_enabled: true,
-            onmouseover: function onmouseover() {},
-            onmouseout: function onmouseout() {},
-            onresize: function onresize() {},
-            onresized: function onresized() {},
-            oninit: function oninit() {},
-            onrendered: function onrendered() {},
-            transition_duration: 350,
-            data_x: undefined,
-            data_xs: {},
-            data_xFormat: '%Y-%m-%d',
-            data_xLocaltime: true,
-            data_xSort: true,
-            data_idConverter: function data_idConverter(id) {
-                return id;
-            },
-            data_names: {},
-            data_classes: {},
-            data_groups: [],
-            data_axes: {},
-            data_type: undefined,
-            data_types: {},
-            data_labels: {},
-            data_order: 'desc',
-            data_regions: {},
-            data_color: undefined,
-            data_colors: {},
-            data_hide: false,
-            data_filter: undefined,
-            data_selection_enabled: false,
-            data_selection_grouped: false,
-            data_selection_isselectable: function data_selection_isselectable() {
-                return true;
-            },
-            data_selection_multiple: true,
-            data_selection_draggable: false,
-            data_onclick: function data_onclick() {},
-            data_onmouseover: function data_onmouseover() {},
-            data_onmouseout: function data_onmouseout() {},
-            data_onselected: function data_onselected() {},
-            data_onunselected: function data_onunselected() {},
-            data_url: undefined,
-            data_headers: undefined,
-            data_json: undefined,
-            data_rows: undefined,
-            data_columns: undefined,
-            data_mimeType: undefined,
-            data_keys: undefined,
-            // configuration for no plot-able data supplied.
-            data_empty_label_text: "",
-            // subchart
-            subchart_show: false,
-            subchart_size_height: 60,
-            subchart_axis_x_show: true,
-            subchart_onbrush: function subchart_onbrush() {},
-            // color
-            color_pattern: [],
-            color_threshold: {},
-            // legend
-            legend_show: true,
-            legend_hide: false,
-            legend_position: 'bottom',
-            legend_inset_anchor: 'top-left',
-            legend_inset_x: 10,
-            legend_inset_y: 0,
-            legend_inset_step: undefined,
-            legend_item_onclick: undefined,
-            legend_item_onmouseover: undefined,
-            legend_item_onmouseout: undefined,
-            legend_equally: false,
-            legend_padding: 0,
-            legend_item_tile_width: 10,
-            legend_item_tile_height: 10,
-            // axis
-            axis_rotated: false,
-            axis_x_show: true,
-            axis_x_type: 'indexed',
-            axis_x_localtime: true,
-            axis_x_categories: [],
-            axis_x_tick_centered: false,
-            axis_x_tick_format: undefined,
-            axis_x_tick_culling: {},
-            axis_x_tick_culling_max: 10,
-            axis_x_tick_count: undefined,
-            axis_x_tick_fit: true,
-            axis_x_tick_values: null,
-            axis_x_tick_rotate: 0,
-            axis_x_tick_outer: true,
-            axis_x_tick_multiline: true,
-            axis_x_tick_multilineMax: 0,
-            axis_x_tick_width: null,
-            axis_x_max: undefined,
-            axis_x_min: undefined,
-            axis_x_padding: {},
-            axis_x_height: undefined,
-            axis_x_selection: undefined,
-            axis_x_label: {},
-            axis_x_inner: undefined,
-            axis_y_show: true,
-            axis_y_type: undefined,
-            axis_y_max: undefined,
-            axis_y_min: undefined,
-            axis_y_inverted: false,
-            axis_y_center: undefined,
-            axis_y_inner: undefined,
-            axis_y_label: {},
-            axis_y_tick_format: undefined,
-            axis_y_tick_outer: true,
-            axis_y_tick_values: null,
-            axis_y_tick_rotate: 0,
-            axis_y_tick_count: undefined,
-            axis_y_tick_time_type: undefined,
-            axis_y_tick_time_interval: undefined,
-            axis_y_padding: {},
-            axis_y_default: undefined,
-            axis_y2_show: false,
-            axis_y2_max: undefined,
-            axis_y2_min: undefined,
-            axis_y2_inverted: false,
-            axis_y2_center: undefined,
-            axis_y2_inner: undefined,
-            axis_y2_label: {},
-            axis_y2_tick_format: undefined,
-            axis_y2_tick_outer: true,
-            axis_y2_tick_values: null,
-            axis_y2_tick_count: undefined,
-            axis_y2_padding: {},
-            axis_y2_default: undefined,
-            // grid
-            grid_x_show: false,
-            grid_x_type: 'tick',
-            grid_x_lines: [],
-            grid_y_show: false,
-            // not used
-            // grid_y_type: 'tick',
-            grid_y_lines: [],
-            grid_y_ticks: 10,
-            grid_focus_show: true,
-            grid_lines_front: true,
-            // point - point of each data
-            point_show: true,
-            point_r: 2.5,
-            point_sensitivity: 10,
-            point_focus_expand_enabled: true,
-            point_focus_expand_r: undefined,
-            point_select_r: undefined,
-            // line
-            line_connectNull: false,
-            line_step_type: 'step',
-            // bar
-            bar_width: undefined,
-            bar_width_ratio: 0.6,
-            bar_width_max: undefined,
-            bar_zerobased: true,
-            bar_space: 0,
-            // area
-            area_zerobased: true,
-            area_above: false,
-            // pie
-            pie_label_show: true,
-            pie_label_format: undefined,
-            pie_label_threshold: 0.05,
-            pie_label_ratio: undefined,
-            pie_expand: {},
-            pie_expand_duration: 50,
-            // gauge
-            gauge_fullCircle: false,
-            gauge_label_show: true,
-            gauge_labelLine_show: true,
-            gauge_label_format: undefined,
-            gauge_min: 0,
-            gauge_max: 100,
-            gauge_startingAngle: -1 * Math.PI / 2,
-            gauge_label_extents: undefined,
-            gauge_units: undefined,
-            gauge_width: undefined,
-            gauge_arcs_minWidth: 5,
-            gauge_expand: {},
-            gauge_expand_duration: 50,
-            // donut
-            donut_label_show: true,
-            donut_label_format: undefined,
-            donut_label_threshold: 0.05,
-            donut_label_ratio: undefined,
-            donut_width: undefined,
-            donut_title: "",
-            donut_expand: {},
-            donut_expand_duration: 50,
-            // spline
-            spline_interpolation_type: 'cardinal',
-            // region - region to change style
-            regions: [],
-            // tooltip - show when mouseover on each data
-            tooltip_show: true,
-            tooltip_grouped: true,
-            tooltip_order: undefined,
-            tooltip_format_title: undefined,
-            tooltip_format_name: undefined,
-            tooltip_format_value: undefined,
-            tooltip_position: undefined,
-            tooltip_contents: function tooltip_contents(d, defaultTitleFormat, defaultValueFormat, color) {
-                return this.getTooltipContent ? this.getTooltipContent(d, defaultTitleFormat, defaultValueFormat, color) : '';
-            },
-            tooltip_init_show: false,
-            tooltip_init_x: 0,
-            tooltip_init_position: { top: '0px', left: '50px' },
-            tooltip_onshow: function tooltip_onshow() {},
-            tooltip_onhide: function tooltip_onhide() {},
-            // title
-            title_text: undefined,
-            title_padding: {
-                top: 0,
-                right: 0,
-                bottom: 0,
-                left: 0
-            },
-            title_position: 'top-center'
+  ChartInternal.prototype.dragend = function () {
+    var $$ = this,
+        config = $$.config;
+
+    if ($$.hasArcType()) {
+      return;
+    }
+
+    if (!config.data_selection_enabled) {
+      return;
+    } // do nothing if not selectable
+
+
+    $$.main.select('.' + CLASS.dragarea).transition().duration(100).style('opacity', 0).remove();
+    $$.main.selectAll('.' + CLASS.shape).classed(CLASS.INCLUDED, false);
+    $$.dragging = false;
+  };
+
+  ChartInternal.prototype.getYFormat = function (forArc) {
+    var $$ = this,
+        formatForY = forArc && !$$.hasType('gauge') ? $$.defaultArcValueFormat : $$.yFormat,
+        formatForY2 = forArc && !$$.hasType('gauge') ? $$.defaultArcValueFormat : $$.y2Format;
+    return function (v, ratio, id) {
+      var format = $$.axis.getId(id) === 'y2' ? formatForY2 : formatForY;
+      return format.call($$, v, ratio);
+    };
+  };
+
+  ChartInternal.prototype.yFormat = function (v) {
+    var $$ = this,
+        config = $$.config,
+        format = config.axis_y_tick_format ? config.axis_y_tick_format : $$.defaultValueFormat;
+    return format(v);
+  };
+
+  ChartInternal.prototype.y2Format = function (v) {
+    var $$ = this,
+        config = $$.config,
+        format = config.axis_y2_tick_format ? config.axis_y2_tick_format : $$.defaultValueFormat;
+    return format(v);
+  };
+
+  ChartInternal.prototype.defaultValueFormat = function (v) {
+    return isValue(v) ? +v : "";
+  };
+
+  ChartInternal.prototype.defaultArcValueFormat = function (v, ratio) {
+    return (ratio * 100).toFixed(1) + '%';
+  };
+
+  ChartInternal.prototype.dataLabelFormat = function (targetId) {
+    var $$ = this,
+        data_labels = $$.config.data_labels,
+        format,
+        defaultFormat = function defaultFormat(v) {
+      return isValue(v) ? +v : "";
+    }; // find format according to axis id
+
+
+    if (typeof data_labels.format === 'function') {
+      format = data_labels.format;
+    } else if (_typeof(data_labels.format) === 'object') {
+      if (data_labels.format[targetId]) {
+        format = data_labels.format[targetId] === true ? defaultFormat : data_labels.format[targetId];
+      } else {
+        format = function format() {
+          return '';
         };
         };
+      }
+    } else {
+      format = defaultFormat;
+    }
 
 
-        Object.keys(this.additionalConfig).forEach(function (key) {
-            config[key] = this.additionalConfig[key];
-        }, this);
+    return format;
+  };
 
 
-        return config;
-    };
-    ChartInternal.prototype.additionalConfig = {};
-
-    ChartInternal.prototype.loadConfig = function (config) {
-        var this_config = this.config,
-            target,
-            keys,
-            read;
-        function find() {
-            var key = keys.shift();
-            //        console.log("key =>", key, ", target =>", target);
-            if (key && target && (typeof target === 'undefined' ? 'undefined' : _typeof(target)) === 'object' && key in target) {
-                target = target[key];
-                return find();
-            } else if (!key) {
-                return target;
-            } else {
-                return undefined;
-            }
-        }
-        Object.keys(this_config).forEach(function (key) {
-            target = config;
-            keys = key.split('_');
-            read = find();
-            //        console.log("CONFIG : ", key, read);
-            if (isDefined(read)) {
-                this_config[key] = read;
-            }
-        });
-    };
+  ChartInternal.prototype.initGrid = function () {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3;
+    $$.grid = $$.main.append('g').attr("clip-path", $$.clipPathForGrid).attr('class', CLASS.grid);
 
 
-    ChartInternal.prototype.convertUrlToData = function (url, mimeType, headers, keys, done) {
-        var $$ = this,
-            type = mimeType ? mimeType : 'csv',
-            f,
-            converter;
-
-        if (type === 'json') {
-            f = $$.d3.json;
-            converter = $$.convertJsonToData;
-        } else if (type === 'tsv') {
-            f = $$.d3.tsv;
-            converter = $$.convertXsvToData;
-        } else {
-            f = $$.d3.csv;
-            converter = $$.convertXsvToData;
-        }
+    if (config.grid_x_show) {
+      $$.grid.append("g").attr("class", CLASS.xgrids);
+    }
 
 
-        f(url, headers).then(function (data) {
-            done.call($$, converter.call($$, data, keys));
-        }).catch(function (error) {
-            throw error;
-        });
-    };
-    ChartInternal.prototype.convertXsvToData = function (xsv) {
-        var keys = xsv.columns,
-            rows = xsv;
-        if (rows.length === 0) {
-            return { keys: keys, rows: [keys.reduce(function (row, key) {
-                    return Object.assign(row, defineProperty({}, key, null));
-                }, {})] };
-        } else {
-            // [].concat() is to convert result into a plain array otherwise
-            // test is not happy because rows have properties.
-            return { keys: keys, rows: [].concat(xsv) };
-        }
-    };
-    ChartInternal.prototype.convertJsonToData = function (json, keys) {
-        var $$ = this,
-            new_rows = [],
-            targetKeys,
-            data;
-        if (keys) {
-            // when keys specified, json would be an array that includes objects
-            if (keys.x) {
-                targetKeys = keys.value.concat(keys.x);
-                $$.config.data_x = keys.x;
-            } else {
-                targetKeys = keys.value;
-            }
-            new_rows.push(targetKeys);
-            json.forEach(function (o) {
-                var new_row = [];
-                targetKeys.forEach(function (key) {
-                    // convert undefined to null because undefined data will be removed in convertDataToTargets()
-                    var v = $$.findValueInJson(o, key);
-                    if (isUndefined(v)) {
-                        v = null;
-                    }
-                    new_row.push(v);
-                });
-                new_rows.push(new_row);
-            });
-            data = $$.convertRowsToData(new_rows);
-        } else {
-            Object.keys(json).forEach(function (key) {
-                new_rows.push([key].concat(json[key]));
-            });
-            data = $$.convertColumnsToData(new_rows);
-        }
-        return data;
-    };
-    ChartInternal.prototype.findValueInJson = function (object, path) {
-        path = path.replace(/\[(\w+)\]/g, '.$1'); // convert indexes to properties (replace [] with .)
-        path = path.replace(/^\./, ''); // strip a leading dot
-        var pathArray = path.split('.');
-        for (var i = 0; i < pathArray.length; ++i) {
-            var k = pathArray[i];
-            if (k in object) {
-                object = object[k];
-            } else {
-                return;
-            }
-        }
-        return object;
+    if (config.grid_y_show) {
+      $$.grid.append('g').attr('class', CLASS.ygrids);
+    }
+
+    if (config.grid_focus_show) {
+      $$.grid.append('g').attr("class", CLASS.xgridFocus).append('line').attr('class', CLASS.xgridFocus);
+    }
+
+    $$.xgrid = d3.selectAll([]);
+
+    if (!config.grid_lines_front) {
+      $$.initGridLines();
+    }
+  };
+
+  ChartInternal.prototype.initGridLines = function () {
+    var $$ = this,
+        d3 = $$.d3;
+    $$.gridLines = $$.main.append('g').attr("clip-path", $$.clipPathForGrid).attr('class', CLASS.grid + ' ' + CLASS.gridLines);
+    $$.gridLines.append('g').attr("class", CLASS.xgridLines);
+    $$.gridLines.append('g').attr('class', CLASS.ygridLines);
+    $$.xgridLines = d3.selectAll([]);
+  };
+
+  ChartInternal.prototype.updateXGrid = function (withoutUpdate) {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3,
+        xgridData = $$.generateGridData(config.grid_x_type, $$.x),
+        tickOffset = $$.isCategorized() ? $$.xAxis.tickOffset() : 0;
+    $$.xgridAttr = config.axis_rotated ? {
+      'x1': 0,
+      'x2': $$.width,
+      'y1': function y1(d) {
+        return $$.x(d) - tickOffset;
+      },
+      'y2': function y2(d) {
+        return $$.x(d) - tickOffset;
+      }
+    } : {
+      'x1': function x1(d) {
+        return $$.x(d) + tickOffset;
+      },
+      'x2': function x2(d) {
+        return $$.x(d) + tickOffset;
+      },
+      'y1': 0,
+      'y2': $$.height
     };
 
     };
 
-    /**
-     * Converts the rows to normalized data.
-     * @param {any[][]} rows The row data
-     * @return {Object}
-     */
-    ChartInternal.prototype.convertRowsToData = function (rows) {
-        var newRows = [];
-        var keys = rows[0];
-
-        for (var i = 1; i < rows.length; i++) {
-            var newRow = {};
-            for (var j = 0; j < rows[i].length; j++) {
-                if (isUndefined(rows[i][j])) {
-                    throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
-                }
-                newRow[keys[j]] = rows[i][j];
-            }
-            newRows.push(newRow);
-        }
-        return { keys: keys, rows: newRows };
+    $$.xgridAttr.opacity = function () {
+      var pos = +d3.select(this).attr(config.axis_rotated ? 'y1' : 'x1');
+      return pos === (config.axis_rotated ? $$.height : 0) ? 0 : 1;
     };
 
     };
 
-    /**
-     * Converts the columns to normalized data.
-     * @param {any[][]} columns The column data
-     * @return {Object}
-     */
-    ChartInternal.prototype.convertColumnsToData = function (columns) {
-        var newRows = [];
-        var keys = [];
-
-        for (var i = 0; i < columns.length; i++) {
-            var key = columns[i][0];
-            for (var j = 1; j < columns[i].length; j++) {
-                if (isUndefined(newRows[j - 1])) {
-                    newRows[j - 1] = {};
-                }
-                if (isUndefined(columns[i][j])) {
-                    throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
-                }
-                newRows[j - 1][key] = columns[i][j];
-            }
-            keys.push(key);
-        }
+    var xgrid = $$.main.select('.' + CLASS.xgrids).selectAll('.' + CLASS.xgrid).data(xgridData);
+    var xgridEnter = xgrid.enter().append('line').attr("class", CLASS.xgrid).attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", 0);
+    $$.xgrid = xgridEnter.merge(xgrid);
 
 
-        return { keys: keys, rows: newRows };
-    };
+    if (!withoutUpdate) {
+      $$.xgrid.attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", $$.xgridAttr.opacity);
+    }
 
 
-    /**
-     * Converts the data format into the target format.
-     * @param {!Object} data
-     * @param {!Array} data.keys Ordered list of target IDs.
-     * @param {!Array} data.rows Rows of data to convert.
-     * @param {boolean} appendXs True to append to $$.data.xs, False to replace.
-     * @return {!Array}
-     */
-    ChartInternal.prototype.convertDataToTargets = function (data, appendXs) {
-        var $$ = this,
-            config = $$.config,
-            targets,
-            ids,
-            xs,
-            keys;
-
-        // handles format where keys are not orderly provided
-        if (isArray(data)) {
-            keys = Object.keys(data[0]);
-        } else {
-            keys = data.keys;
-            data = data.rows;
-        }
+    xgrid.exit().remove();
+  };
+
+  ChartInternal.prototype.updateYGrid = function () {
+    var $$ = this,
+        config = $$.config,
+        gridValues = $$.yAxis.tickValues() || $$.y.ticks(config.grid_y_ticks);
+    var ygrid = $$.main.select('.' + CLASS.ygrids).selectAll('.' + CLASS.ygrid).data(gridValues);
+    var ygridEnter = ygrid.enter().append('line') // TODO: x1, x2, y1, y2, opacity need to be set here maybe
+    .attr('class', CLASS.ygrid);
+    $$.ygrid = ygridEnter.merge(ygrid);
+    $$.ygrid.attr("x1", config.axis_rotated ? $$.y : 0).attr("x2", config.axis_rotated ? $$.y : $$.width).attr("y1", config.axis_rotated ? 0 : $$.y).attr("y2", config.axis_rotated ? $$.height : $$.y);
+    ygrid.exit().remove();
+    $$.smoothLines($$.ygrid, 'grid');
+  };
+
+  ChartInternal.prototype.gridTextAnchor = function (d) {
+    return d.position ? d.position : "end";
+  };
+
+  ChartInternal.prototype.gridTextDx = function (d) {
+    return d.position === 'start' ? 4 : d.position === 'middle' ? 0 : -4;
+  };
+
+  ChartInternal.prototype.xGridTextX = function (d) {
+    return d.position === 'start' ? -this.height : d.position === 'middle' ? -this.height / 2 : 0;
+  };
+
+  ChartInternal.prototype.yGridTextX = function (d) {
+    return d.position === 'start' ? 0 : d.position === 'middle' ? this.width / 2 : this.width;
+  };
+
+  ChartInternal.prototype.updateGrid = function (duration) {
+    var $$ = this,
+        main = $$.main,
+        config = $$.config,
+        xgridLine,
+        xgridLineEnter,
+        ygridLine,
+        ygridLineEnter,
+        xv = $$.xv.bind($$),
+        yv = $$.yv.bind($$),
+        xGridTextX = $$.xGridTextX.bind($$),
+        yGridTextX = $$.yGridTextX.bind($$); // hide if arc type
+
+    $$.grid.style('visibility', $$.hasArcType() ? 'hidden' : 'visible');
+    main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden");
+
+    if (config.grid_x_show) {
+      $$.updateXGrid();
+    }
 
 
-        ids = keys.filter($$.isNotX, $$);
-        xs = keys.filter($$.isX, $$);
-
-        // save x for update data by load when custom x and c3.x API
-        ids.forEach(function (id) {
-            var xKey = $$.getXKey(id);
-
-            if ($$.isCustomX() || $$.isTimeSeries()) {
-                // if included in input data
-                if (xs.indexOf(xKey) >= 0) {
-                    $$.data.xs[id] = (appendXs && $$.data.xs[id] ? $$.data.xs[id] : []).concat(data.map(function (d) {
-                        return d[xKey];
-                    }).filter(isValue).map(function (rawX, i) {
-                        return $$.generateTargetX(rawX, id, i);
-                    }));
-                }
-                // if not included in input data, find from preloaded data of other id's x
-                else if (config.data_x) {
-                        $$.data.xs[id] = $$.getOtherTargetXs();
-                    }
-                    // if not included in input data, find from preloaded data
-                    else if (notEmpty(config.data_xs)) {
-                            $$.data.xs[id] = $$.getXValuesOfXKey(xKey, $$.data.targets);
-                        }
-                // MEMO: if no x included, use same x of current will be used
-            } else {
-                $$.data.xs[id] = data.map(function (d, i) {
-                    return i;
-                });
-            }
-        });
+    xgridLine = main.select('.' + CLASS.xgridLines).selectAll('.' + CLASS.xgridLine).data(config.grid_x_lines); // enter
 
 
-        // check x is defined
-        ids.forEach(function (id) {
-            if (!$$.data.xs[id]) {
-                throw new Error('x is not defined for id = "' + id + '".');
-            }
-        });
+    xgridLineEnter = xgridLine.enter().append('g').attr("class", function (d) {
+      return CLASS.xgridLine + (d['class'] ? ' ' + d['class'] : '');
+    });
+    xgridLineEnter.append('line').attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv).attr("y1", config.axis_rotated ? xv : 0).attr("y2", config.axis_rotated ? xv : $$.height).style("opacity", 0);
+    xgridLineEnter.append('text').attr("text-anchor", $$.gridTextAnchor).attr("transform", config.axis_rotated ? "" : "rotate(-90)").attr("x", config.axis_rotated ? yGridTextX : xGridTextX).attr("y", xv).attr('dx', $$.gridTextDx).attr('dy', -5).style("opacity", 0); // udpate
 
 
-        // convert to target
-        targets = ids.map(function (id, index) {
-            var convertedId = config.data_idConverter(id);
-            return {
-                id: convertedId,
-                id_org: id,
-                values: data.map(function (d, i) {
-                    var xKey = $$.getXKey(id),
-                        rawX = d[xKey],
-                        value = d[id] !== null && !isNaN(d[id]) ? +d[id] : null,
-                        x;
-                    // use x as categories if custom x and categorized
-                    if ($$.isCustomX() && $$.isCategorized() && !isUndefined(rawX)) {
-                        if (index === 0 && i === 0) {
-                            config.axis_x_categories = [];
-                        }
-                        x = config.axis_x_categories.indexOf(rawX);
-                        if (x === -1) {
-                            x = config.axis_x_categories.length;
-                            config.axis_x_categories.push(rawX);
-                        }
-                    } else {
-                        x = $$.generateTargetX(rawX, id, i);
-                    }
-                    // mark as x = undefined if value is undefined and filter to remove after mapped
-                    if (isUndefined(d[id]) || $$.data.xs[id].length <= i) {
-                        x = undefined;
-                    }
-                    return { x: x, value: value, id: convertedId };
-                }).filter(function (v) {
-                    return isDefined(v.x);
-                })
-            };
-        });
+    $$.xgridLines = xgridLineEnter.merge(xgridLine); // done in d3.transition() of the end of this function
+    // exit
 
 
-        // finish targets
-        targets.forEach(function (t) {
-            var i;
-            // sort values by its x
-            if (config.data_xSort) {
-                t.values = t.values.sort(function (v1, v2) {
-                    var x1 = v1.x || v1.x === 0 ? v1.x : Infinity,
-                        x2 = v2.x || v2.x === 0 ? v2.x : Infinity;
-                    return x1 - x2;
-                });
-            }
-            // indexing each value
-            i = 0;
-            t.values.forEach(function (v) {
-                v.index = i++;
-            });
-            // this needs to be sorted because its index and value.index is identical
-            $$.data.xs[t.id].sort(function (v1, v2) {
-                return v1 - v2;
-            });
-        });
+    xgridLine.exit().transition().duration(duration).style("opacity", 0).remove(); // Y-Grid
 
 
-        // cache information about values
-        $$.hasNegativeValue = $$.hasNegativeValueInTargets(targets);
-        $$.hasPositiveValue = $$.hasPositiveValueInTargets(targets);
+    if (config.grid_y_show) {
+      $$.updateYGrid();
+    }
 
 
-        // set target types
-        if (config.data_type) {
-            $$.setTargetType($$.mapToIds(targets).filter(function (id) {
-                return !(id in config.data_types);
-            }), config.data_type);
-        }
+    ygridLine = main.select('.' + CLASS.ygridLines).selectAll('.' + CLASS.ygridLine).data(config.grid_y_lines); // enter
+
+    ygridLineEnter = ygridLine.enter().append('g').attr("class", function (d) {
+      return CLASS.ygridLine + (d['class'] ? ' ' + d['class'] : '');
+    });
+    ygridLineEnter.append('line').attr("x1", config.axis_rotated ? yv : 0).attr("x2", config.axis_rotated ? yv : $$.width).attr("y1", config.axis_rotated ? 0 : yv).attr("y2", config.axis_rotated ? $$.height : yv).style("opacity", 0);
+    ygridLineEnter.append('text').attr("text-anchor", $$.gridTextAnchor).attr("transform", config.axis_rotated ? "rotate(-90)" : "").attr("x", config.axis_rotated ? xGridTextX : yGridTextX).attr("y", yv).attr('dx', $$.gridTextDx).attr('dy', -5).style("opacity", 0); // update
+
+    $$.ygridLines = ygridLineEnter.merge(ygridLine);
+    $$.ygridLines.select('line').transition().duration(duration).attr("x1", config.axis_rotated ? yv : 0).attr("x2", config.axis_rotated ? yv : $$.width).attr("y1", config.axis_rotated ? 0 : yv).attr("y2", config.axis_rotated ? $$.height : yv).style("opacity", 1);
+    $$.ygridLines.select('text').transition().duration(duration).attr("x", config.axis_rotated ? $$.xGridTextX.bind($$) : $$.yGridTextX.bind($$)).attr("y", yv).text(function (d) {
+      return d.text;
+    }).style("opacity", 1); // exit
+
+    ygridLine.exit().transition().duration(duration).style("opacity", 0).remove();
+  };
+
+  ChartInternal.prototype.redrawGrid = function (withTransition, transition) {
+    var $$ = this,
+        config = $$.config,
+        xv = $$.xv.bind($$),
+        lines = $$.xgridLines.select('line'),
+        texts = $$.xgridLines.select('text');
+    return [(withTransition ? lines.transition(transition) : lines).attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv).attr("y1", config.axis_rotated ? xv : 0).attr("y2", config.axis_rotated ? xv : $$.height).style("opacity", 1), (withTransition ? texts.transition(transition) : texts).attr("x", config.axis_rotated ? $$.yGridTextX.bind($$) : $$.xGridTextX.bind($$)).attr("y", xv).text(function (d) {
+      return d.text;
+    }).style("opacity", 1)];
+  };
+
+  ChartInternal.prototype.showXGridFocus = function (selectedData) {
+    var $$ = this,
+        config = $$.config,
+        dataToShow = selectedData.filter(function (d) {
+      return d && isValue(d.value);
+    }),
+        focusEl = $$.main.selectAll('line.' + CLASS.xgridFocus),
+        xx = $$.xx.bind($$);
+
+    if (!config.tooltip_show) {
+      return;
+    } // Hide when scatter plot exists
+
+
+    if ($$.hasType('scatter') || $$.hasArcType()) {
+      return;
+    }
+
+    focusEl.style("visibility", "visible").data([dataToShow[0]]).attr(config.axis_rotated ? 'y1' : 'x1', xx).attr(config.axis_rotated ? 'y2' : 'x2', xx);
+    $$.smoothLines(focusEl, 'grid');
+  };
+
+  ChartInternal.prototype.hideXGridFocus = function () {
+    this.main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden");
+  };
+
+  ChartInternal.prototype.updateXgridFocus = function () {
+    var $$ = this,
+        config = $$.config;
+    $$.main.select('line.' + CLASS.xgridFocus).attr("x1", config.axis_rotated ? 0 : -10).attr("x2", config.axis_rotated ? $$.width : -10).attr("y1", config.axis_rotated ? -10 : 0).attr("y2", config.axis_rotated ? -10 : $$.height);
+  };
+
+  ChartInternal.prototype.generateGridData = function (type, scale) {
+    var $$ = this,
+        gridData = [],
+        xDomain,
+        firstYear,
+        lastYear,
+        i,
+        tickNum = $$.main.select("." + CLASS.axisX).selectAll('.tick').size();
+
+    if (type === 'year') {
+      xDomain = $$.getXDomain();
+      firstYear = xDomain[0].getFullYear();
+      lastYear = xDomain[1].getFullYear();
+
+      for (i = firstYear; i <= lastYear; i++) {
+        gridData.push(new Date(i + '-01-01 00:00:00'));
+      }
+    } else {
+      gridData = scale.ticks(10);
 
 
-        // cache as original id keyed
-        targets.forEach(function (d) {
-            $$.addCache(d.id_org, d);
+      if (gridData.length > tickNum) {
+        // use only int
+        gridData = gridData.filter(function (d) {
+          return ("" + d).indexOf('.') < 0;
         });
         });
+      }
+    }
 
 
-        return targets;
-    };
+    return gridData;
+  };
+
+  ChartInternal.prototype.getGridFilterToRemove = function (params) {
+    return params ? function (line) {
+      var found = false;
+      [].concat(params).forEach(function (param) {
+        if ('value' in param && line.value === param.value || 'class' in param && line['class'] === param['class']) {
+          found = true;
+        }
+      });
+      return found;
+    } : function () {
+      return true;
+    };
+  };
+
+  ChartInternal.prototype.removeGridLines = function (params, forX) {
+    var $$ = this,
+        config = $$.config,
+        toRemove = $$.getGridFilterToRemove(params),
+        toShow = function toShow(line) {
+      return !toRemove(line);
+    },
+        classLines = forX ? CLASS.xgridLines : CLASS.ygridLines,
+        classLine = forX ? CLASS.xgridLine : CLASS.ygridLine;
+
+    $$.main.select('.' + classLines).selectAll('.' + classLine).filter(toRemove).transition().duration(config.transition_duration).style('opacity', 0).remove();
+
+    if (forX) {
+      config.grid_x_lines = config.grid_x_lines.filter(toShow);
+    } else {
+      config.grid_y_lines = config.grid_y_lines.filter(toShow);
+    }
+  };
 
 
-    ChartInternal.prototype.isX = function (key) {
-        var $$ = this,
-            config = $$.config;
-        return config.data_x && key === config.data_x || notEmpty(config.data_xs) && hasValue(config.data_xs, key);
-    };
-    ChartInternal.prototype.isNotX = function (key) {
-        return !this.isX(key);
-    };
-    ChartInternal.prototype.getXKey = function (id) {
-        var $$ = this,
-            config = $$.config;
-        return config.data_x ? config.data_x : notEmpty(config.data_xs) ? config.data_xs[id] : null;
-    };
-    ChartInternal.prototype.getXValuesOfXKey = function (key, targets) {
-        var $$ = this,
-            xValues,
-            ids = targets && notEmpty(targets) ? $$.mapToIds(targets) : [];
-        ids.forEach(function (id) {
-            if ($$.getXKey(id) === key) {
-                xValues = $$.data.xs[id];
-            }
-        });
-        return xValues;
-    };
-    ChartInternal.prototype.getXValue = function (id, i) {
-        var $$ = this;
-        return id in $$.data.xs && $$.data.xs[id] && isValue($$.data.xs[id][i]) ? $$.data.xs[id][i] : i;
-    };
-    ChartInternal.prototype.getOtherTargetXs = function () {
-        var $$ = this,
-            idsForX = Object.keys($$.data.xs);
-        return idsForX.length ? $$.data.xs[idsForX[0]] : null;
-    };
-    ChartInternal.prototype.getOtherTargetX = function (index) {
-        var xs = this.getOtherTargetXs();
-        return xs && index < xs.length ? xs[index] : null;
-    };
-    ChartInternal.prototype.addXs = function (xs) {
-        var $$ = this;
-        Object.keys(xs).forEach(function (id) {
-            $$.config.data_xs[id] = xs[id];
-        });
-    };
-    ChartInternal.prototype.addName = function (data) {
-        var $$ = this,
-            name;
-        if (data) {
-            name = $$.config.data_names[data.id];
-            data.name = name !== undefined ? name : data.id;
-        }
-        return data;
-    };
-    ChartInternal.prototype.getValueOnIndex = function (values, index) {
-        var valueOnIndex = values.filter(function (v) {
-            return v.index === index;
-        });
-        return valueOnIndex.length ? valueOnIndex[0] : null;
-    };
-    ChartInternal.prototype.updateTargetX = function (targets, x) {
-        var $$ = this;
-        targets.forEach(function (t) {
-            t.values.forEach(function (v, i) {
-                v.x = $$.generateTargetX(x[i], t.id, i);
-            });
-            $$.data.xs[t.id] = x;
-        });
-    };
-    ChartInternal.prototype.updateTargetXs = function (targets, xs) {
-        var $$ = this;
-        targets.forEach(function (t) {
-            if (xs[t.id]) {
-                $$.updateTargetX([t], xs[t.id]);
-            }
-        });
-    };
-    ChartInternal.prototype.generateTargetX = function (rawX, id, index) {
-        var $$ = this,
-            x;
-        if ($$.isTimeSeries()) {
-            x = rawX ? $$.parseDate(rawX) : $$.parseDate($$.getXValue(id, index));
-        } else if ($$.isCustomX() && !$$.isCategorized()) {
-            x = isValue(rawX) ? +rawX : $$.getXValue(id, index);
-        } else {
-            x = index;
-        }
-        return x;
-    };
-    ChartInternal.prototype.cloneTarget = function (target) {
-        return {
-            id: target.id,
-            id_org: target.id_org,
-            values: target.values.map(function (d) {
-                return {
-                    x: d.x,
-                    value: d.value,
-                    id: d.id
-                };
-            })
-        };
-    };
-    ChartInternal.prototype.getMaxDataCount = function () {
-        var $$ = this;
-        return $$.d3.max($$.data.targets, function (t) {
-            return t.values.length;
-        });
-    };
-    ChartInternal.prototype.mapToIds = function (targets) {
-        return targets.map(function (d) {
-            return d.id;
-        });
-    };
-    ChartInternal.prototype.mapToTargetIds = function (ids) {
-        var $$ = this;
-        return ids ? [].concat(ids) : $$.mapToIds($$.data.targets);
-    };
-    ChartInternal.prototype.hasTarget = function (targets, id) {
-        var ids = this.mapToIds(targets),
-            i;
-        for (i = 0; i < ids.length; i++) {
-            if (ids[i] === id) {
-                return true;
-            }
-        }
-        return false;
-    };
-    ChartInternal.prototype.isTargetToShow = function (targetId) {
-        return this.hiddenTargetIds.indexOf(targetId) < 0;
-    };
-    ChartInternal.prototype.isLegendToShow = function (targetId) {
-        return this.hiddenLegendIds.indexOf(targetId) < 0;
-    };
-    ChartInternal.prototype.filterTargetsToShow = function (targets) {
-        var $$ = this;
-        return targets.filter(function (t) {
-            return $$.isTargetToShow(t.id);
-        });
-    };
-    ChartInternal.prototype.mapTargetsToUniqueXs = function (targets) {
-        var $$ = this;
-        var xs = $$.d3.set($$.d3.merge(targets.map(function (t) {
-            return t.values.map(function (v) {
-                return +v.x;
-            });
-        }))).values();
-        xs = $$.isTimeSeries() ? xs.map(function (x) {
-            return new Date(+x);
-        }) : xs.map(function (x) {
-            return +x;
-        });
-        return xs.sort(function (a, b) {
-            return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
-        });
-    };
-    ChartInternal.prototype.addHiddenTargetIds = function (targetIds) {
-        targetIds = targetIds instanceof Array ? targetIds : new Array(targetIds);
-        for (var i = 0; i < targetIds.length; i++) {
-            if (this.hiddenTargetIds.indexOf(targetIds[i]) < 0) {
-                this.hiddenTargetIds = this.hiddenTargetIds.concat(targetIds[i]);
-            }
-        }
-    };
-    ChartInternal.prototype.removeHiddenTargetIds = function (targetIds) {
-        this.hiddenTargetIds = this.hiddenTargetIds.filter(function (id) {
-            return targetIds.indexOf(id) < 0;
-        });
-    };
-    ChartInternal.prototype.addHiddenLegendIds = function (targetIds) {
-        targetIds = targetIds instanceof Array ? targetIds : new Array(targetIds);
-        for (var i = 0; i < targetIds.length; i++) {
-            if (this.hiddenLegendIds.indexOf(targetIds[i]) < 0) {
-                this.hiddenLegendIds = this.hiddenLegendIds.concat(targetIds[i]);
-            }
-        }
-    };
-    ChartInternal.prototype.removeHiddenLegendIds = function (targetIds) {
-        this.hiddenLegendIds = this.hiddenLegendIds.filter(function (id) {
-            return targetIds.indexOf(id) < 0;
-        });
-    };
-    ChartInternal.prototype.getValuesAsIdKeyed = function (targets) {
-        var ys = {};
-        targets.forEach(function (t) {
-            ys[t.id] = [];
-            t.values.forEach(function (v) {
-                ys[t.id].push(v.value);
-            });
-        });
-        return ys;
-    };
-    ChartInternal.prototype.checkValueInTargets = function (targets, checker) {
-        var ids = Object.keys(targets),
-            i,
-            j,
-            values;
-        for (i = 0; i < ids.length; i++) {
-            values = targets[ids[i]].values;
-            for (j = 0; j < values.length; j++) {
-                if (checker(values[j].value)) {
-                    return true;
-                }
-            }
-        }
-        return false;
-    };
-    ChartInternal.prototype.hasNegativeValueInTargets = function (targets) {
-        return this.checkValueInTargets(targets, function (v) {
-            return v < 0;
-        });
-    };
-    ChartInternal.prototype.hasPositiveValueInTargets = function (targets) {
-        return this.checkValueInTargets(targets, function (v) {
-            return v > 0;
-        });
-    };
-    ChartInternal.prototype.isOrderDesc = function () {
-        var config = this.config;
-        return typeof config.data_order === 'string' && config.data_order.toLowerCase() === 'desc';
-    };
-    ChartInternal.prototype.isOrderAsc = function () {
-        var config = this.config;
-        return typeof config.data_order === 'string' && config.data_order.toLowerCase() === 'asc';
-    };
-    ChartInternal.prototype.getOrderFunction = function () {
-        var $$ = this,
-            config = $$.config,
-            orderAsc = $$.isOrderAsc(),
-            orderDesc = $$.isOrderDesc();
-        if (orderAsc || orderDesc) {
-            var reducer = function reducer(p, c) {
-                return p + Math.abs(c.value);
-            };
-            return function (t1, t2) {
-                var t1Sum = t1.values.reduce(reducer, 0),
-                    t2Sum = t2.values.reduce(reducer, 0);
-                return orderAsc ? t2Sum - t1Sum : t1Sum - t2Sum;
-            };
-        } else if (isFunction(config.data_order)) {
-            return config.data_order;
-        } else if (isArray(config.data_order)) {
-            var order = config.data_order;
-            return function (t1, t2) {
-                return order.indexOf(t1.id) - order.indexOf(t2.id);
-            };
-        }
-    };
-    ChartInternal.prototype.orderTargets = function (targets) {
-        var fct = this.getOrderFunction();
-        if (fct) {
-            targets.sort(fct);
-        }
-        return targets;
-    };
-    ChartInternal.prototype.filterByX = function (targets, x) {
-        return this.d3.merge(targets.map(function (t) {
-            return t.values;
-        })).filter(function (v) {
-            return v.x - x === 0;
-        });
-    };
-    ChartInternal.prototype.filterRemoveNull = function (data) {
-        return data.filter(function (d) {
-            return isValue(d.value);
-        });
-    };
-    ChartInternal.prototype.filterByXDomain = function (targets, xDomain) {
-        return targets.map(function (t) {
-            return {
-                id: t.id,
-                id_org: t.id_org,
-                values: t.values.filter(function (v) {
-                    return xDomain[0] <= v.x && v.x <= xDomain[1];
-                })
-            };
+  ChartInternal.prototype.initEventRect = function () {
+    var $$ = this,
+        config = $$.config;
+    $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.eventRects).style('fill-opacity', 0);
+    $$.eventRect = $$.main.select('.' + CLASS.eventRects).append('rect').attr('class', CLASS.eventRect); // event rect handle zoom event as well
+
+    if (config.zoom_enabled && $$.zoom) {
+      $$.eventRect.call($$.zoom).on("dblclick.zoom", null);
+
+      if (config.zoom_initialRange) {
+        // WORKAROUND: Add transition to apply transform immediately when no subchart
+        $$.eventRect.transition().duration(0).call($$.zoom.transform, $$.zoomTransform(config.zoom_initialRange));
+      }
+    }
+  };
+
+  ChartInternal.prototype.redrawEventRect = function () {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        x,
+        y,
+        w,
+        h; // TODO: rotated not supported yet
+
+    x = 0;
+    y = 0;
+    w = $$.width;
+    h = $$.height;
+
+    function mouseout() {
+      $$.svg.select('.' + CLASS.eventRect).style('cursor', null);
+      $$.hideXGridFocus();
+      $$.hideTooltip();
+      $$.unexpandCircles();
+      $$.unexpandBars();
+    } // rects for mouseover
+
+
+    $$.main.select('.' + CLASS.eventRects).style('cursor', config.zoom_enabled ? config.axis_rotated ? 'ns-resize' : 'ew-resize' : null);
+    $$.eventRect.attr('x', x).attr('y', y).attr('width', w).attr('height', h).on('mouseout', config.interaction_enabled ? function () {
+      if (!config) {
+        return;
+      } // chart is destroyed
+
+
+      if ($$.hasArcType()) {
+        return;
+      }
+
+      mouseout();
+    } : null).on('mousemove', config.interaction_enabled ? function () {
+      var targetsToShow, mouse, closest, sameXData, selectedData;
+
+      if ($$.dragging) {
+        return;
+      } // do nothing when dragging
+
+
+      if ($$.hasArcType(targetsToShow)) {
+        return;
+      }
+
+      targetsToShow = $$.filterTargetsToShow($$.data.targets);
+      mouse = d3.mouse(this);
+      closest = $$.findClosestFromTargets(targetsToShow, mouse);
+
+      if ($$.mouseover && (!closest || closest.id !== $$.mouseover.id)) {
+        config.data_onmouseout.call($$.api, $$.mouseover);
+        $$.mouseover = undefined;
+      }
+
+      if (!closest) {
+        mouseout();
+        return;
+      }
+
+      if ($$.isScatterType(closest) || !config.tooltip_grouped) {
+        sameXData = [closest];
+      } else {
+        sameXData = $$.filterByX(targetsToShow, closest.x);
+      } // show tooltip when cursor is close to some point
+
+
+      selectedData = sameXData.map(function (d) {
+        return $$.addName(d);
+      });
+      $$.showTooltip(selectedData, this); // expand points
+
+      if (config.point_focus_expand_enabled) {
+        $$.unexpandCircles();
+        selectedData.forEach(function (d) {
+          $$.expandCircles(d.index, d.id, false);
         });
         });
-    };
-    ChartInternal.prototype.hasDataLabel = function () {
-        var config = this.config;
-        if (typeof config.data_labels === 'boolean' && config.data_labels) {
-            return true;
-        } else if (_typeof(config.data_labels) === 'object' && notEmpty(config.data_labels)) {
-            return true;
+      }
+
+      $$.expandBars(closest.index, closest.id, true); // Show xgrid focus line
+
+      $$.showXGridFocus(selectedData); // Show cursor as pointer if point is close to mouse position
+
+      if ($$.isBarType(closest.id) || $$.dist(closest, mouse) < config.point_sensitivity) {
+        $$.svg.select('.' + CLASS.eventRect).style('cursor', 'pointer');
+
+        if (!$$.mouseover) {
+          config.data_onmouseover.call($$.api, closest);
+          $$.mouseover = closest;
         }
         }
-        return false;
-    };
-    ChartInternal.prototype.getDataLabelLength = function (min, max, key) {
-        var $$ = this,
-            lengths = [0, 0],
-            paddingCoef = 1.3;
-        $$.selectChart.select('svg').selectAll('.dummy').data([min, max]).enter().append('text').text(function (d) {
-            return $$.dataLabelFormat(d.id)(d);
-        }).each(function (d, i) {
-            lengths[i] = this.getBoundingClientRect()[key] * paddingCoef;
-        }).remove();
-        return lengths;
-    };
-    ChartInternal.prototype.isNoneArc = function (d) {
-        return this.hasTarget(this.data.targets, d.id);
-    }, ChartInternal.prototype.isArc = function (d) {
-        return 'data' in d && this.hasTarget(this.data.targets, d.data.id);
-    };
-    ChartInternal.prototype.findClosestFromTargets = function (targets, pos) {
-        var $$ = this,
-            candidates;
+      }
+    } : null).on('click', config.interaction_enabled ? function () {
+      var targetsToShow, mouse, closest, sameXData;
+
+      if ($$.hasArcType(targetsToShow)) {
+        return;
+      }
+
+      targetsToShow = $$.filterTargetsToShow($$.data.targets);
+      mouse = d3.mouse(this);
+      closest = $$.findClosestFromTargets(targetsToShow, mouse);
 
 
-        // map to array of closest points of each target
-        candidates = targets.map(function (target) {
-            return $$.findClosest(target.values, pos);
-        });
+      if (!closest) {
+        return;
+      } // select if selection enabled
 
 
-        // decide closest point and return
-        return $$.findClosest(candidates, pos);
-    };
-    ChartInternal.prototype.findClosest = function (values, pos) {
-        var $$ = this,
-            minDist = $$.config.point_sensitivity,
-            closest;
-
-        // find mouseovering bar
-        values.filter(function (v) {
-            return v && $$.isBarType(v.id);
-        }).forEach(function (v) {
-            var shape = $$.main.select('.' + CLASS.bars + $$.getTargetSelectorSuffix(v.id) + ' .' + CLASS.bar + '-' + v.index).node();
-            if (!closest && $$.isWithinBar($$.d3.mouse(shape), shape)) {
-                closest = v;
-            }
-        });
 
 
-        // find closest point from non-bar
-        values.filter(function (v) {
-            return v && !$$.isBarType(v.id);
-        }).forEach(function (v) {
-            var d = $$.dist(v, pos);
-            if (d < minDist) {
-                minDist = d;
-                closest = v;
+      if ($$.isBarType(closest.id) || $$.dist(closest, mouse) < config.point_sensitivity) {
+        if ($$.isScatterType(closest) || !config.data_selection_grouped) {
+          sameXData = [closest];
+        } else {
+          sameXData = $$.filterByX(targetsToShow, closest.x);
+        }
+
+        sameXData.forEach(function (d) {
+          $$.main.selectAll('.' + CLASS.shapes + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.shape + '-' + d.index).each(function () {
+            if (config.data_selection_grouped || $$.isWithinShape(this, d)) {
+              $$.toggleShape(this, d, d.index);
+              config.data_onclick.call($$.api, d, this);
             }
             }
+          });
         });
         });
+      }
+    } : null).call(config.interaction_enabled && config.data_selection_draggable && $$.drag ? d3.drag().on('drag', function () {
+      $$.drag(d3.mouse(this));
+    }).on('start', function () {
+      $$.dragstart(d3.mouse(this));
+    }).on('end', function () {
+      $$.dragend();
+    }) : function () {});
+  };
+
+  ChartInternal.prototype.getMousePosition = function (data) {
+    var $$ = this;
+    return [$$.x(data.x), $$.getYScale(data.id)(data.value)];
+  };
+
+  ChartInternal.prototype.dispatchEvent = function (type, mouse) {
+    var $$ = this,
+        selector = '.' + CLASS.eventRect,
+        eventRect = $$.main.select(selector).node(),
+        box = eventRect.getBoundingClientRect(),
+        x = box.left + (mouse ? mouse[0] : 0),
+        y = box.top + (mouse ? mouse[1] : 0),
+        event = document.createEvent("MouseEvents");
+    event.initMouseEvent(type, true, true, window, 0, x, y, x, y, false, false, false, false, 0, null);
+    eventRect.dispatchEvent(event);
+  };
+
+  ChartInternal.prototype.initLegend = function () {
+    var $$ = this;
+    $$.legendItemTextBox = {};
+    $$.legendHasRendered = false;
+    $$.legend = $$.svg.append("g").attr("transform", $$.getTranslate('legend'));
+
+    if (!$$.config.legend_show) {
+      $$.legend.style('visibility', 'hidden');
+      $$.hiddenLegendIds = $$.mapToIds($$.data.targets);
+      return;
+    } // MEMO: call here to update legend box and tranlate for all
+    // MEMO: translate will be upated by this, so transform not needed in updateLegend()
+
+
+    $$.updateLegendWithDefaults();
+  };
+
+  ChartInternal.prototype.updateLegendWithDefaults = function () {
+    var $$ = this;
+    $$.updateLegend($$.mapToIds($$.data.targets), {
+      withTransform: false,
+      withTransitionForTransform: false,
+      withTransition: false
+    });
+  };
+
+  ChartInternal.prototype.updateSizeForLegend = function (legendHeight, legendWidth) {
+    var $$ = this,
+        config = $$.config,
+        insetLegendPosition = {
+      top: $$.isLegendTop ? $$.getCurrentPaddingTop() + config.legend_inset_y + 5.5 : $$.currentHeight - legendHeight - $$.getCurrentPaddingBottom() - config.legend_inset_y,
+      left: $$.isLegendLeft ? $$.getCurrentPaddingLeft() + config.legend_inset_x + 0.5 : $$.currentWidth - legendWidth - $$.getCurrentPaddingRight() - config.legend_inset_x + 0.5
+    };
+    $$.margin3 = {
+      top: $$.isLegendRight ? 0 : $$.isLegendInset ? insetLegendPosition.top : $$.currentHeight - legendHeight,
+      right: NaN,
+      bottom: 0,
+      left: $$.isLegendRight ? $$.currentWidth - legendWidth : $$.isLegendInset ? insetLegendPosition.left : 0
+    };
+  };
+
+  ChartInternal.prototype.transformLegend = function (withTransition) {
+    var $$ = this;
+    (withTransition ? $$.legend.transition() : $$.legend).attr("transform", $$.getTranslate('legend'));
+  };
+
+  ChartInternal.prototype.updateLegendStep = function (step) {
+    this.legendStep = step;
+  };
+
+  ChartInternal.prototype.updateLegendItemWidth = function (w) {
+    this.legendItemWidth = w;
+  };
+
+  ChartInternal.prototype.updateLegendItemHeight = function (h) {
+    this.legendItemHeight = h;
+  };
+
+  ChartInternal.prototype.getLegendWidth = function () {
+    var $$ = this;
+    return $$.config.legend_show ? $$.isLegendRight || $$.isLegendInset ? $$.legendItemWidth * ($$.legendStep + 1) : $$.currentWidth : 0;
+  };
+
+  ChartInternal.prototype.getLegendHeight = function () {
+    var $$ = this,
+        h = 0;
+
+    if ($$.config.legend_show) {
+      if ($$.isLegendRight) {
+        h = $$.currentHeight;
+      } else {
+        h = Math.max(20, $$.legendItemHeight) * ($$.legendStep + 1);
+      }
+    }
 
 
-        return closest;
-    };
-    ChartInternal.prototype.dist = function (data, pos) {
-        var $$ = this,
-            config = $$.config,
-            xIndex = config.axis_rotated ? 1 : 0,
-            yIndex = config.axis_rotated ? 0 : 1,
-            y = $$.circleY(data, data.index),
-            x = $$.x(data.x);
-        return Math.sqrt(Math.pow(x - pos[xIndex], 2) + Math.pow(y - pos[yIndex], 2));
-    };
-    ChartInternal.prototype.convertValuesToStep = function (values) {
-        var converted = [].concat(values),
-            i;
+    return h;
+  };
+
+  ChartInternal.prototype.opacityForLegend = function (legendItem) {
+    return legendItem.classed(CLASS.legendItemHidden) ? null : 1;
+  };
+
+  ChartInternal.prototype.opacityForUnfocusedLegend = function (legendItem) {
+    return legendItem.classed(CLASS.legendItemHidden) ? null : 0.3;
+  };
+
+  ChartInternal.prototype.toggleFocusLegend = function (targetIds, focus) {
+    var $$ = this;
+    targetIds = $$.mapToTargetIds(targetIds);
+    $$.legend.selectAll('.' + CLASS.legendItem).filter(function (id) {
+      return targetIds.indexOf(id) >= 0;
+    }).classed(CLASS.legendItemFocused, focus).transition().duration(100).style('opacity', function () {
+      var opacity = focus ? $$.opacityForLegend : $$.opacityForUnfocusedLegend;
+      return opacity.call($$, $$.d3.select(this));
+    });
+  };
+
+  ChartInternal.prototype.revertLegend = function () {
+    var $$ = this,
+        d3 = $$.d3;
+    $$.legend.selectAll('.' + CLASS.legendItem).classed(CLASS.legendItemFocused, false).transition().duration(100).style('opacity', function () {
+      return $$.opacityForLegend(d3.select(this));
+    });
+  };
+
+  ChartInternal.prototype.showLegend = function (targetIds) {
+    var $$ = this,
+        config = $$.config;
+
+    if (!config.legend_show) {
+      config.legend_show = true;
+      $$.legend.style('visibility', 'visible');
+
+      if (!$$.legendHasRendered) {
+        $$.updateLegendWithDefaults();
+      }
+    }
 
 
-        if (!this.isCategorized()) {
-            return values;
-        }
+    $$.removeHiddenLegendIds(targetIds);
+    $$.legend.selectAll($$.selectorLegends(targetIds)).style('visibility', 'visible').transition().style('opacity', function () {
+      return $$.opacityForLegend($$.d3.select(this));
+    });
+  };
 
 
-        for (i = values.length + 1; 0 < i; i--) {
-            converted[i] = converted[i - 1];
-        }
+  ChartInternal.prototype.hideLegend = function (targetIds) {
+    var $$ = this,
+        config = $$.config;
 
 
-        converted[0] = {
-            x: converted[0].x - 1,
-            value: converted[0].value,
-            id: converted[0].id
-        };
-        converted[values.length + 1] = {
-            x: converted[values.length].x + 1,
-            value: converted[values.length].value,
-            id: converted[values.length].id
-        };
+    if (config.legend_show && isEmpty(targetIds)) {
+      config.legend_show = false;
+      $$.legend.style('visibility', 'hidden');
+    }
 
 
-        return converted;
-    };
-    ChartInternal.prototype.updateDataAttributes = function (name, attrs) {
-        var $$ = this,
-            config = $$.config,
-            current = config['data_' + name];
-        if (typeof attrs === 'undefined') {
-            return current;
-        }
-        Object.keys(attrs).forEach(function (id) {
-            current[id] = attrs[id];
-        });
-        $$.redraw({
-            withLegend: true
-        });
-        return current;
-    };
+    $$.addHiddenLegendIds(targetIds);
+    $$.legend.selectAll($$.selectorLegends(targetIds)).style('opacity', 0).style('visibility', 'hidden');
+  };
+
+  ChartInternal.prototype.clearLegendItemTextBoxCache = function () {
+    this.legendItemTextBox = {};
+  };
+
+  ChartInternal.prototype.updateLegend = function (targetIds, options, transitions) {
+    var $$ = this,
+        config = $$.config;
+    var xForLegend, xForLegendText, xForLegendRect, yForLegend, yForLegendText, yForLegendRect, x1ForLegendTile, x2ForLegendTile, yForLegendTile;
+    var paddingTop = 4,
+        paddingRight = 10,
+        maxWidth = 0,
+        maxHeight = 0,
+        posMin = 10,
+        tileWidth = config.legend_item_tile_width + 5;
+    var l,
+        totalLength = 0,
+        offsets = {},
+        widths = {},
+        heights = {},
+        margins = [0],
+        steps = {},
+        step = 0;
+    var withTransition, withTransitionForTransform;
+    var texts, rects, tiles, background; // Skip elements when their name is set to null
+
+    targetIds = targetIds.filter(function (id) {
+      return !isDefined(config.data_names[id]) || config.data_names[id] !== null;
+    });
+    options = options || {};
+    withTransition = getOption(options, "withTransition", true);
+    withTransitionForTransform = getOption(options, "withTransitionForTransform", true);
+
+    function getTextBox(textElement, id) {
+      if (!$$.legendItemTextBox[id]) {
+        $$.legendItemTextBox[id] = $$.getTextRect(textElement.textContent, CLASS.legendItem, textElement);
+      }
 
 
-    ChartInternal.prototype.load = function (targets, args) {
-        var $$ = this;
-        if (targets) {
-            // filter loading targets if needed
-            if (args.filter) {
-                targets = targets.filter(args.filter);
-            }
-            // set type if args.types || args.type specified
-            if (args.type || args.types) {
-                targets.forEach(function (t) {
-                    var type = args.types && args.types[t.id] ? args.types[t.id] : args.type;
-                    $$.setTargetType(t.id, type);
-                });
-            }
-            // Update/Add data
-            $$.data.targets.forEach(function (d) {
-                for (var i = 0; i < targets.length; i++) {
-                    if (d.id === targets[i].id) {
-                        d.values = targets[i].values;
-                        targets.splice(i, 1);
-                        break;
-                    }
-                }
-            });
-            $$.data.targets = $$.data.targets.concat(targets); // add remained
-        }
+      return $$.legendItemTextBox[id];
+    }
 
 
-        // Set targets
-        $$.updateTargets($$.data.targets);
+    function updatePositions(textElement, id, index) {
+      var reset = index === 0,
+          isLast = index === targetIds.length - 1,
+          box = getTextBox(textElement, id),
+          itemWidth = box.width + tileWidth + (isLast && !($$.isLegendRight || $$.isLegendInset) ? 0 : paddingRight) + config.legend_padding,
+          itemHeight = box.height + paddingTop,
+          itemLength = $$.isLegendRight || $$.isLegendInset ? itemHeight : itemWidth,
+          areaLength = $$.isLegendRight || $$.isLegendInset ? $$.getLegendHeight() : $$.getLegendWidth(),
+          margin,
+          maxLength; // MEMO: care about condifion of step, totalLength
+
+      function updateValues(id, withoutStep) {
+        if (!withoutStep) {
+          margin = (areaLength - totalLength - itemLength) / 2;
+
+          if (margin < posMin) {
+            margin = (areaLength - itemLength) / 2;
+            totalLength = 0;
+            step++;
+          }
+        }
+
+        steps[id] = step;
+        margins[step] = $$.isLegendInset ? 10 : margin;
+        offsets[id] = totalLength;
+        totalLength += itemLength;
+      }
 
 
-        // Redraw with new targets
-        $$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true });
+      if (reset) {
+        totalLength = 0;
+        step = 0;
+        maxWidth = 0;
+        maxHeight = 0;
+      }
 
 
-        if (args.done) {
-            args.done();
-        }
-    };
-    ChartInternal.prototype.loadFromArgs = function (args) {
-        var $$ = this;
-        if (args.data) {
-            $$.load($$.convertDataToTargets(args.data), args);
-        } else if (args.url) {
-            $$.convertUrlToData(args.url, args.mimeType, args.headers, args.keys, function (data) {
-                $$.load($$.convertDataToTargets(data), args);
-            });
-        } else if (args.json) {
-            $$.load($$.convertDataToTargets($$.convertJsonToData(args.json, args.keys)), args);
-        } else if (args.rows) {
-            $$.load($$.convertDataToTargets($$.convertRowsToData(args.rows)), args);
-        } else if (args.columns) {
-            $$.load($$.convertDataToTargets($$.convertColumnsToData(args.columns)), args);
-        } else {
-            $$.load(null, args);
-        }
-    };
-    ChartInternal.prototype.unload = function (targetIds, done) {
-        var $$ = this;
-        if (!done) {
-            done = function done() {};
-        }
-        // filter existing target
-        targetIds = targetIds.filter(function (id) {
-            return $$.hasTarget($$.data.targets, id);
-        });
-        // If no target, call done and return
-        if (!targetIds || targetIds.length === 0) {
-            done();
-            return;
-        }
-        $$.svg.selectAll(targetIds.map(function (id) {
-            return $$.selectorTarget(id);
-        })).transition().style('opacity', 0).remove().call($$.endall, done);
-        targetIds.forEach(function (id) {
-            // Reset fadein for future load
-            $$.withoutFadeIn[id] = false;
-            // Remove target's elements
-            if ($$.legend) {
-                $$.legend.selectAll('.' + CLASS.legendItem + $$.getTargetSelectorSuffix(id)).remove();
-            }
-            // Remove target
-            $$.data.targets = $$.data.targets.filter(function (t) {
-                return t.id !== id;
-            });
-        });
-    };
+      if (config.legend_show && !$$.isLegendToShow(id)) {
+        widths[id] = heights[id] = steps[id] = offsets[id] = 0;
+        return;
+      }
 
 
-    ChartInternal.prototype.getYDomainMin = function (targets) {
-        var $$ = this,
-            config = $$.config,
-            ids = $$.mapToIds(targets),
-            ys = $$.getValuesAsIdKeyed(targets),
-            j,
-            k,
-            baseId,
-            idsInGroup,
-            id,
-            hasNegativeValue;
-        if (config.data_groups.length > 0) {
-            hasNegativeValue = $$.hasNegativeValueInTargets(targets);
-            for (j = 0; j < config.data_groups.length; j++) {
-                // Determine baseId
-                idsInGroup = config.data_groups[j].filter(function (id) {
-                    return ids.indexOf(id) >= 0;
-                });
-                if (idsInGroup.length === 0) {
-                    continue;
-                }
-                baseId = idsInGroup[0];
-                // Consider negative values
-                if (hasNegativeValue && ys[baseId]) {
-                    ys[baseId].forEach(function (v, i) {
-                        ys[baseId][i] = v < 0 ? v : 0;
-                    });
-                }
-                // Compute min
-                for (k = 1; k < idsInGroup.length; k++) {
-                    id = idsInGroup[k];
-                    if (!ys[id]) {
-                        continue;
-                    }
-                    ys[id].forEach(function (v, i) {
-                        if ($$.axis.getId(id) === $$.axis.getId(baseId) && ys[baseId] && !(hasNegativeValue && +v > 0)) {
-                            ys[baseId][i] += +v;
-                        }
-                    });
-                }
-            }
-        }
-        return $$.d3.min(Object.keys(ys).map(function (key) {
-            return $$.d3.min(ys[key]);
-        }));
-    };
-    ChartInternal.prototype.getYDomainMax = function (targets) {
-        var $$ = this,
-            config = $$.config,
-            ids = $$.mapToIds(targets),
-            ys = $$.getValuesAsIdKeyed(targets),
-            j,
-            k,
-            baseId,
-            idsInGroup,
-            id,
-            hasPositiveValue;
-        if (config.data_groups.length > 0) {
-            hasPositiveValue = $$.hasPositiveValueInTargets(targets);
-            for (j = 0; j < config.data_groups.length; j++) {
-                // Determine baseId
-                idsInGroup = config.data_groups[j].filter(function (id) {
-                    return ids.indexOf(id) >= 0;
-                });
-                if (idsInGroup.length === 0) {
-                    continue;
-                }
-                baseId = idsInGroup[0];
-                // Consider positive values
-                if (hasPositiveValue && ys[baseId]) {
-                    ys[baseId].forEach(function (v, i) {
-                        ys[baseId][i] = v > 0 ? v : 0;
-                    });
-                }
-                // Compute max
-                for (k = 1; k < idsInGroup.length; k++) {
-                    id = idsInGroup[k];
-                    if (!ys[id]) {
-                        continue;
-                    }
-                    ys[id].forEach(function (v, i) {
-                        if ($$.axis.getId(id) === $$.axis.getId(baseId) && ys[baseId] && !(hasPositiveValue && +v < 0)) {
-                            ys[baseId][i] += +v;
-                        }
-                    });
-                }
-            }
-        }
-        return $$.d3.max(Object.keys(ys).map(function (key) {
-            return $$.d3.max(ys[key]);
-        }));
-    };
-    ChartInternal.prototype.getYDomain = function (targets, axisId, xDomain) {
-        var $$ = this,
-            config = $$.config,
-            targetsByAxisId = targets.filter(function (t) {
-            return $$.axis.getId(t.id) === axisId;
-        }),
-            yTargets = xDomain ? $$.filterByXDomain(targetsByAxisId, xDomain) : targetsByAxisId,
-            yMin = axisId === 'y2' ? config.axis_y2_min : config.axis_y_min,
-            yMax = axisId === 'y2' ? config.axis_y2_max : config.axis_y_max,
-            yDomainMin = $$.getYDomainMin(yTargets),
-            yDomainMax = $$.getYDomainMax(yTargets),
-            domain,
-            domainLength,
-            padding,
-            padding_top,
-            padding_bottom,
-            center = axisId === 'y2' ? config.axis_y2_center : config.axis_y_center,
-            yDomainAbs,
-            lengths,
-            diff,
-            ratio,
-            isAllPositive,
-            isAllNegative,
-            isZeroBased = $$.hasType('bar', yTargets) && config.bar_zerobased || $$.hasType('area', yTargets) && config.area_zerobased,
-            isInverted = axisId === 'y2' ? config.axis_y2_inverted : config.axis_y_inverted,
-            showHorizontalDataLabel = $$.hasDataLabel() && config.axis_rotated,
-            showVerticalDataLabel = $$.hasDataLabel() && !config.axis_rotated;
-
-        // MEMO: avoid inverting domain unexpectedly
-        yDomainMin = isValue(yMin) ? yMin : isValue(yMax) ? yDomainMin < yMax ? yDomainMin : yMax - 10 : yDomainMin;
-        yDomainMax = isValue(yMax) ? yMax : isValue(yMin) ? yMin < yDomainMax ? yDomainMax : yMin + 10 : yDomainMax;
-
-        if (yTargets.length === 0) {
-            // use current domain if target of axisId is none
-            return axisId === 'y2' ? $$.y2.domain() : $$.y.domain();
-        }
-        if (isNaN(yDomainMin)) {
-            // set minimum to zero when not number
-            yDomainMin = 0;
-        }
-        if (isNaN(yDomainMax)) {
-            // set maximum to have same value as yDomainMin
-            yDomainMax = yDomainMin;
-        }
-        if (yDomainMin === yDomainMax) {
-            yDomainMin < 0 ? yDomainMax = 0 : yDomainMin = 0;
-        }
-        isAllPositive = yDomainMin >= 0 && yDomainMax >= 0;
-        isAllNegative = yDomainMin <= 0 && yDomainMax <= 0;
+      widths[id] = itemWidth;
+      heights[id] = itemHeight;
 
 
-        // Cancel zerobased if axis_*_min / axis_*_max specified
-        if (isValue(yMin) && isAllPositive || isValue(yMax) && isAllNegative) {
-            isZeroBased = false;
-        }
+      if (!maxWidth || itemWidth >= maxWidth) {
+        maxWidth = itemWidth;
+      }
 
 
-        // Bar/Area chart should be 0-based if all positive|negative
-        if (isZeroBased) {
-            if (isAllPositive) {
-                yDomainMin = 0;
-            }
-            if (isAllNegative) {
-                yDomainMax = 0;
-            }
-        }
+      if (!maxHeight || itemHeight >= maxHeight) {
+        maxHeight = itemHeight;
+      }
 
 
-        domainLength = Math.abs(yDomainMax - yDomainMin);
-        padding = padding_top = padding_bottom = domainLength * 0.1;
+      maxLength = $$.isLegendRight || $$.isLegendInset ? maxHeight : maxWidth;
 
 
-        if (typeof center !== 'undefined') {
-            yDomainAbs = Math.max(Math.abs(yDomainMin), Math.abs(yDomainMax));
-            yDomainMax = center + yDomainAbs;
-            yDomainMin = center - yDomainAbs;
-        }
-        // add padding for data label
-        if (showHorizontalDataLabel) {
-            lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, 'width');
-            diff = diffDomain($$.y.range());
-            ratio = [lengths[0] / diff, lengths[1] / diff];
-            padding_top += domainLength * (ratio[1] / (1 - ratio[0] - ratio[1]));
-            padding_bottom += domainLength * (ratio[0] / (1 - ratio[0] - ratio[1]));
-        } else if (showVerticalDataLabel) {
-            lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, 'height');
-            padding_top += $$.axis.convertPixelsToAxisPadding(lengths[1], domainLength);
-            padding_bottom += $$.axis.convertPixelsToAxisPadding(lengths[0], domainLength);
-        }
-        if (axisId === 'y' && notEmpty(config.axis_y_padding)) {
-            padding_top = $$.axis.getPadding(config.axis_y_padding, 'top', padding_top, domainLength);
-            padding_bottom = $$.axis.getPadding(config.axis_y_padding, 'bottom', padding_bottom, domainLength);
-        }
-        if (axisId === 'y2' && notEmpty(config.axis_y2_padding)) {
-            padding_top = $$.axis.getPadding(config.axis_y2_padding, 'top', padding_top, domainLength);
-            padding_bottom = $$.axis.getPadding(config.axis_y2_padding, 'bottom', padding_bottom, domainLength);
-        }
-        // Bar/Area chart should be 0-based if all positive|negative
-        if (isZeroBased) {
-            if (isAllPositive) {
-                padding_bottom = yDomainMin;
-            }
-            if (isAllNegative) {
-                padding_top = -yDomainMax;
-            }
-        }
-        domain = [yDomainMin - padding_bottom, yDomainMax + padding_top];
-        return isInverted ? domain.reverse() : domain;
-    };
-    ChartInternal.prototype.getXDomainMin = function (targets) {
-        var $$ = this,
-            config = $$.config;
-        return isDefined(config.axis_x_min) ? $$.isTimeSeries() ? this.parseDate(config.axis_x_min) : config.axis_x_min : $$.d3.min(targets, function (t) {
-            return $$.d3.min(t.values, function (v) {
-                return v.x;
-            });
+      if (config.legend_equally) {
+        Object.keys(widths).forEach(function (id) {
+          widths[id] = maxWidth;
         });
         });
-    };
-    ChartInternal.prototype.getXDomainMax = function (targets) {
-        var $$ = this,
-            config = $$.config;
-        return isDefined(config.axis_x_max) ? $$.isTimeSeries() ? this.parseDate(config.axis_x_max) : config.axis_x_max : $$.d3.max(targets, function (t) {
-            return $$.d3.max(t.values, function (v) {
-                return v.x;
-            });
+        Object.keys(heights).forEach(function (id) {
+          heights[id] = maxHeight;
         });
         });
-    };
-    ChartInternal.prototype.getXDomainPadding = function (domain) {
-        var $$ = this,
-            config = $$.config,
-            diff = domain[1] - domain[0],
-            maxDataCount,
-            padding,
-            paddingLeft,
-            paddingRight;
-        if ($$.isCategorized()) {
-            padding = 0;
-        } else if ($$.hasType('bar')) {
-            maxDataCount = $$.getMaxDataCount();
-            padding = maxDataCount > 1 ? diff / (maxDataCount - 1) / 2 : 0.5;
+        margin = (areaLength - maxLength * targetIds.length) / 2;
+
+        if (margin < posMin) {
+          totalLength = 0;
+          step = 0;
+          targetIds.forEach(function (id) {
+            updateValues(id);
+          });
         } else {
         } else {
-            padding = diff * 0.01;
-        }
-        if (_typeof(config.axis_x_padding) === 'object' && notEmpty(config.axis_x_padding)) {
-            paddingLeft = isValue(config.axis_x_padding.left) ? config.axis_x_padding.left : padding;
-            paddingRight = isValue(config.axis_x_padding.right) ? config.axis_x_padding.right : padding;
-        } else if (typeof config.axis_x_padding === 'number') {
-            paddingLeft = paddingRight = config.axis_x_padding;
-        } else {
-            paddingLeft = paddingRight = padding;
-        }
-        return { left: paddingLeft, right: paddingRight };
-    };
-    ChartInternal.prototype.getXDomain = function (targets) {
-        var $$ = this,
-            xDomain = [$$.getXDomainMin(targets), $$.getXDomainMax(targets)],
-            firstX = xDomain[0],
-            lastX = xDomain[1],
-            padding = $$.getXDomainPadding(xDomain),
-            min = 0,
-            max = 0;
-        // show center of x domain if min and max are the same
-        if (firstX - lastX === 0 && !$$.isCategorized()) {
-            if ($$.isTimeSeries()) {
-                firstX = new Date(firstX.getTime() * 0.5);
-                lastX = new Date(lastX.getTime() * 1.5);
-            } else {
-                firstX = firstX === 0 ? 1 : firstX * 0.5;
-                lastX = lastX === 0 ? -1 : lastX * 1.5;
-            }
-        }
-        if (firstX || firstX === 0) {
-            min = $$.isTimeSeries() ? new Date(firstX.getTime() - padding.left) : firstX - padding.left;
-        }
-        if (lastX || lastX === 0) {
-            max = $$.isTimeSeries() ? new Date(lastX.getTime() + padding.right) : lastX + padding.right;
-        }
-        return [min, max];
-    };
-    ChartInternal.prototype.updateXDomain = function (targets, withUpdateXDomain, withUpdateOrgXDomain, withTrim, domain) {
-        var $$ = this,
-            config = $$.config;
-
-        if (withUpdateOrgXDomain) {
-            $$.x.domain(domain ? domain : $$.d3.extent($$.getXDomain(targets)));
-            $$.orgXDomain = $$.x.domain();
-            if (config.zoom_enabled) {
-                $$.zoom.update();
-            }
-            $$.subX.domain($$.x.domain());
-            if ($$.brush) {
-                $$.brush.updateScale($$.subX);
-            }
-        }
-        if (withUpdateXDomain) {
-            $$.x.domain(domain ? domain : !$$.brush || $$.brush.empty() ? $$.orgXDomain : $$.brush.selectionAsValue());
-        }
-
-        // Trim domain when too big by zoom mousemove event
-        if (withTrim) {
-            $$.x.domain($$.trimXDomain($$.x.orgDomain()));
+          updateValues(id, true);
         }
         }
+      } else {
+        updateValues(id);
+      }
+    }
 
 
-        return $$.x.domain();
-    };
-    ChartInternal.prototype.trimXDomain = function (domain) {
-        var zoomDomain = this.getZoomDomain(),
-            min = zoomDomain[0],
-            max = zoomDomain[1];
-        if (domain[0] <= min) {
-            domain[1] = +domain[1] + (min - domain[0]);
-            domain[0] = min;
-        }
-        if (max <= domain[1]) {
-            domain[0] = +domain[0] - (domain[1] - max);
-            domain[1] = max;
-        }
-        return domain;
-    };
+    if ($$.isLegendInset) {
+      step = config.legend_inset_step ? config.legend_inset_step : targetIds.length;
+      $$.updateLegendStep(step);
+    }
 
 
-    ChartInternal.prototype.drag = function (mouse) {
-        var $$ = this,
-            config = $$.config,
-            main = $$.main,
-            d3 = $$.d3;
-        var sx, sy, mx, my, minX, maxX, minY, maxY;
+    if ($$.isLegendRight) {
+      xForLegend = function xForLegend(id) {
+        return maxWidth * steps[id];
+      };
+
+      yForLegend = function yForLegend(id) {
+        return margins[steps[id]] + offsets[id];
+      };
+    } else if ($$.isLegendInset) {
+      xForLegend = function xForLegend(id) {
+        return maxWidth * steps[id] + 10;
+      };
+
+      yForLegend = function yForLegend(id) {
+        return margins[steps[id]] + offsets[id];
+      };
+    } else {
+      xForLegend = function xForLegend(id) {
+        return margins[steps[id]] + offsets[id];
+      };
+
+      yForLegend = function yForLegend(id) {
+        return maxHeight * steps[id];
+      };
+    }
 
 
-        if ($$.hasArcType()) {
-            return;
-        }
-        if (!config.data_selection_enabled) {
-            return;
-        } // do nothing if not selectable
-        if (!config.data_selection_multiple) {
-            return;
-        } // skip when single selection because drag is used for multiple selection
-
-        sx = $$.dragStart[0];
-        sy = $$.dragStart[1];
-        mx = mouse[0];
-        my = mouse[1];
-        minX = Math.min(sx, mx);
-        maxX = Math.max(sx, mx);
-        minY = config.data_selection_grouped ? $$.margin.top : Math.min(sy, my);
-        maxY = config.data_selection_grouped ? $$.height : Math.max(sy, my);
-
-        main.select('.' + CLASS.dragarea).attr('x', minX).attr('y', minY).attr('width', maxX - minX).attr('height', maxY - minY);
-        // TODO: binary search when multiple xs
-        main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).filter(function (d) {
-            return config.data_selection_isselectable(d);
-        }).each(function (d, i) {
-            var shape = d3.select(this),
-                isSelected = shape.classed(CLASS.SELECTED),
-                isIncluded = shape.classed(CLASS.INCLUDED),
-                _x,
-                _y,
-                _w,
-                _h,
-                toggle,
-                isWithin = false,
-                box;
-            if (shape.classed(CLASS.circle)) {
-                _x = shape.attr("cx") * 1;
-                _y = shape.attr("cy") * 1;
-                toggle = $$.togglePoint;
-                isWithin = minX < _x && _x < maxX && minY < _y && _y < maxY;
-            } else if (shape.classed(CLASS.bar)) {
-                box = getPathBox(this);
-                _x = box.x;
-                _y = box.y;
-                _w = box.width;
-                _h = box.height;
-                toggle = $$.togglePath;
-                isWithin = !(maxX < _x || _x + _w < minX) && !(maxY < _y || _y + _h < minY);
-            } else {
-                // line/area selection not supported yet
-                return;
-            }
-            if (isWithin ^ isIncluded) {
-                shape.classed(CLASS.INCLUDED, !isIncluded);
-                // TODO: included/unincluded callback here
-                shape.classed(CLASS.SELECTED, !isSelected);
-                toggle.call($$, !isSelected, shape, d, i);
-            }
-        });
+    xForLegendText = function xForLegendText(id, i) {
+      return xForLegend(id, i) + 4 + config.legend_item_tile_width;
     };
 
     };
 
-    ChartInternal.prototype.dragstart = function (mouse) {
-        var $$ = this,
-            config = $$.config;
-        if ($$.hasArcType()) {
-            return;
-        }
-        if (!config.data_selection_enabled) {
-            return;
-        } // do nothing if not selectable
-        $$.dragStart = mouse;
-        $$.main.select('.' + CLASS.chart).append('rect').attr('class', CLASS.dragarea).style('opacity', 0.1);
-        $$.dragging = true;
+    yForLegendText = function yForLegendText(id, i) {
+      return yForLegend(id, i) + 9;
     };
 
     };
 
-    ChartInternal.prototype.dragend = function () {
-        var $$ = this,
-            config = $$.config;
-        if ($$.hasArcType()) {
-            return;
-        }
-        if (!config.data_selection_enabled) {
-            return;
-        } // do nothing if not selectable
-        $$.main.select('.' + CLASS.dragarea).transition().duration(100).style('opacity', 0).remove();
-        $$.main.selectAll('.' + CLASS.shape).classed(CLASS.INCLUDED, false);
-        $$.dragging = false;
+    xForLegendRect = function xForLegendRect(id, i) {
+      return xForLegend(id, i);
     };
 
     };
 
-    ChartInternal.prototype.getYFormat = function (forArc) {
-        var $$ = this,
-            formatForY = forArc && !$$.hasType('gauge') ? $$.defaultArcValueFormat : $$.yFormat,
-            formatForY2 = forArc && !$$.hasType('gauge') ? $$.defaultArcValueFormat : $$.y2Format;
-        return function (v, ratio, id) {
-            var format = $$.axis.getId(id) === 'y2' ? formatForY2 : formatForY;
-            return format.call($$, v, ratio);
-        };
-    };
-    ChartInternal.prototype.yFormat = function (v) {
-        var $$ = this,
-            config = $$.config,
-            format = config.axis_y_tick_format ? config.axis_y_tick_format : $$.defaultValueFormat;
-        return format(v);
-    };
-    ChartInternal.prototype.y2Format = function (v) {
-        var $$ = this,
-            config = $$.config,
-            format = config.axis_y2_tick_format ? config.axis_y2_tick_format : $$.defaultValueFormat;
-        return format(v);
-    };
-    ChartInternal.prototype.defaultValueFormat = function (v) {
-        return isValue(v) ? +v : "";
-    };
-    ChartInternal.prototype.defaultArcValueFormat = function (v, ratio) {
-        return (ratio * 100).toFixed(1) + '%';
-    };
-    ChartInternal.prototype.dataLabelFormat = function (targetId) {
-        var $$ = this,
-            data_labels = $$.config.data_labels,
-            format,
-            defaultFormat = function defaultFormat(v) {
-            return isValue(v) ? +v : "";
-        };
-        // find format according to axis id
-        if (typeof data_labels.format === 'function') {
-            format = data_labels.format;
-        } else if (_typeof(data_labels.format) === 'object') {
-            if (data_labels.format[targetId]) {
-                format = data_labels.format[targetId] === true ? defaultFormat : data_labels.format[targetId];
-            } else {
-                format = function format() {
-                    return '';
-                };
-            }
-        } else {
-            format = defaultFormat;
-        }
-        return format;
+    yForLegendRect = function yForLegendRect(id, i) {
+      return yForLegend(id, i) - 5;
     };
 
     };
 
-    ChartInternal.prototype.initGrid = function () {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3;
-        $$.grid = $$.main.append('g').attr("clip-path", $$.clipPathForGrid).attr('class', CLASS.grid);
-        if (config.grid_x_show) {
-            $$.grid.append("g").attr("class", CLASS.xgrids);
-        }
-        if (config.grid_y_show) {
-            $$.grid.append('g').attr('class', CLASS.ygrids);
-        }
-        if (config.grid_focus_show) {
-            $$.grid.append('g').attr("class", CLASS.xgridFocus).append('line').attr('class', CLASS.xgridFocus);
-        }
-        $$.xgrid = d3.selectAll([]);
-        if (!config.grid_lines_front) {
-            $$.initGridLines();
-        }
+    x1ForLegendTile = function x1ForLegendTile(id, i) {
+      return xForLegend(id, i) - 2;
     };
     };
-    ChartInternal.prototype.initGridLines = function () {
-        var $$ = this,
-            d3 = $$.d3;
-        $$.gridLines = $$.main.append('g').attr("clip-path", $$.clipPathForGrid).attr('class', CLASS.grid + ' ' + CLASS.gridLines);
-        $$.gridLines.append('g').attr("class", CLASS.xgridLines);
-        $$.gridLines.append('g').attr('class', CLASS.ygridLines);
-        $$.xgridLines = d3.selectAll([]);
-    };
-    ChartInternal.prototype.updateXGrid = function (withoutUpdate) {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3,
-            xgridData = $$.generateGridData(config.grid_x_type, $$.x),
-            tickOffset = $$.isCategorized() ? $$.xAxis.tickOffset() : 0;
-
-        $$.xgridAttr = config.axis_rotated ? {
-            'x1': 0,
-            'x2': $$.width,
-            'y1': function y1(d) {
-                return $$.x(d) - tickOffset;
-            },
-            'y2': function y2(d) {
-                return $$.x(d) - tickOffset;
-            }
-        } : {
-            'x1': function x1(d) {
-                return $$.x(d) + tickOffset;
-            },
-            'x2': function x2(d) {
-                return $$.x(d) + tickOffset;
-            },
-            'y1': 0,
-            'y2': $$.height
-        };
-        $$.xgridAttr.opacity = function () {
-            var pos = +d3.select(this).attr(config.axis_rotated ? 'y1' : 'x1');
-            return pos === (config.axis_rotated ? $$.height : 0) ? 0 : 1;
-        };
 
 
-        var xgrid = $$.main.select('.' + CLASS.xgrids).selectAll('.' + CLASS.xgrid).data(xgridData);
-        var xgridEnter = xgrid.enter().append('line').attr("class", CLASS.xgrid).attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", 0);
-        $$.xgrid = xgridEnter.merge(xgrid);
-        if (!withoutUpdate) {
-            $$.xgrid.attr('x1', $$.xgridAttr.x1).attr('x2', $$.xgridAttr.x2).attr('y1', $$.xgridAttr.y1).attr('y2', $$.xgridAttr.y2).style("opacity", $$.xgridAttr.opacity);
-        }
-        xgrid.exit().remove();
+    x2ForLegendTile = function x2ForLegendTile(id, i) {
+      return xForLegend(id, i) - 2 + config.legend_item_tile_width;
     };
 
     };
 
-    ChartInternal.prototype.updateYGrid = function () {
-        var $$ = this,
-            config = $$.config,
-            gridValues = $$.yAxis.tickValues() || $$.y.ticks(config.grid_y_ticks);
-        var ygrid = $$.main.select('.' + CLASS.ygrids).selectAll('.' + CLASS.ygrid).data(gridValues);
-        var ygridEnter = ygrid.enter().append('line')
-        // TODO: x1, x2, y1, y2, opacity need to be set here maybe
-        .attr('class', CLASS.ygrid);
-        $$.ygrid = ygridEnter.merge(ygrid);
-        $$.ygrid.attr("x1", config.axis_rotated ? $$.y : 0).attr("x2", config.axis_rotated ? $$.y : $$.width).attr("y1", config.axis_rotated ? 0 : $$.y).attr("y2", config.axis_rotated ? $$.height : $$.y);
-        ygrid.exit().remove();
-        $$.smoothLines($$.ygrid, 'grid');
-    };
+    yForLegendTile = function yForLegendTile(id, i) {
+      return yForLegend(id, i) + 4;
+    }; // Define g for legend area
 
 
-    ChartInternal.prototype.gridTextAnchor = function (d) {
-        return d.position ? d.position : "end";
-    };
-    ChartInternal.prototype.gridTextDx = function (d) {
-        return d.position === 'start' ? 4 : d.position === 'middle' ? 0 : -4;
-    };
-    ChartInternal.prototype.xGridTextX = function (d) {
-        return d.position === 'start' ? -this.height : d.position === 'middle' ? -this.height / 2 : 0;
-    };
-    ChartInternal.prototype.yGridTextX = function (d) {
-        return d.position === 'start' ? 0 : d.position === 'middle' ? this.width / 2 : this.width;
-    };
-    ChartInternal.prototype.updateGrid = function (duration) {
-        var $$ = this,
-            main = $$.main,
-            config = $$.config,
-            xgridLine,
-            xgridLineEnter,
-            ygridLine,
-            ygridLineEnter,
-            xv = $$.xv.bind($$),
-            yv = $$.yv.bind($$),
-            xGridTextX = $$.xGridTextX.bind($$),
-            yGridTextX = $$.yGridTextX.bind($$);
-
-        // hide if arc type
-        $$.grid.style('visibility', $$.hasArcType() ? 'hidden' : 'visible');
-
-        main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden");
-        if (config.grid_x_show) {
-            $$.updateXGrid();
-        }
-        xgridLine = main.select('.' + CLASS.xgridLines).selectAll('.' + CLASS.xgridLine).data(config.grid_x_lines);
-        // enter
-        xgridLineEnter = xgridLine.enter().append('g').attr("class", function (d) {
-            return CLASS.xgridLine + (d['class'] ? ' ' + d['class'] : '');
-        });
-        xgridLineEnter.append('line').attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv).attr("y1", config.axis_rotated ? xv : 0).attr("y2", config.axis_rotated ? xv : $$.height).style("opacity", 0);
-        xgridLineEnter.append('text').attr("text-anchor", $$.gridTextAnchor).attr("transform", config.axis_rotated ? "" : "rotate(-90)").attr("x", config.axis_rotated ? yGridTextX : xGridTextX).attr("y", xv).attr('dx', $$.gridTextDx).attr('dy', -5).style("opacity", 0);
-        // udpate
-        $$.xgridLines = xgridLineEnter.merge(xgridLine);
-        // done in d3.transition() of the end of this function
-        // exit
-        xgridLine.exit().transition().duration(duration).style("opacity", 0).remove();
-
-        // Y-Grid
-        if (config.grid_y_show) {
-            $$.updateYGrid();
-        }
-        ygridLine = main.select('.' + CLASS.ygridLines).selectAll('.' + CLASS.ygridLine).data(config.grid_y_lines);
-        // enter
-        ygridLineEnter = ygridLine.enter().append('g').attr("class", function (d) {
-            return CLASS.ygridLine + (d['class'] ? ' ' + d['class'] : '');
-        });
-        ygridLineEnter.append('line').attr("x1", config.axis_rotated ? yv : 0).attr("x2", config.axis_rotated ? yv : $$.width).attr("y1", config.axis_rotated ? 0 : yv).attr("y2", config.axis_rotated ? $$.height : yv).style("opacity", 0);
-        ygridLineEnter.append('text').attr("text-anchor", $$.gridTextAnchor).attr("transform", config.axis_rotated ? "rotate(-90)" : "").attr("x", config.axis_rotated ? xGridTextX : yGridTextX).attr("y", yv).attr('dx', $$.gridTextDx).attr('dy', -5).style("opacity", 0);
-        // update
-        $$.ygridLines = ygridLineEnter.merge(ygridLine);
-        $$.ygridLines.select('line').transition().duration(duration).attr("x1", config.axis_rotated ? yv : 0).attr("x2", config.axis_rotated ? yv : $$.width).attr("y1", config.axis_rotated ? 0 : yv).attr("y2", config.axis_rotated ? $$.height : yv).style("opacity", 1);
-        $$.ygridLines.select('text').transition().duration(duration).attr("x", config.axis_rotated ? $$.xGridTextX.bind($$) : $$.yGridTextX.bind($$)).attr("y", yv).text(function (d) {
-            return d.text;
-        }).style("opacity", 1);
-        // exit
-        ygridLine.exit().transition().duration(duration).style("opacity", 0).remove();
-    };
-    ChartInternal.prototype.redrawGrid = function (withTransition, transition) {
-        var $$ = this,
-            config = $$.config,
-            xv = $$.xv.bind($$),
-            lines = $$.xgridLines.select('line'),
-            texts = $$.xgridLines.select('text');
-        return [(withTransition ? lines.transition(transition) : lines).attr("x1", config.axis_rotated ? 0 : xv).attr("x2", config.axis_rotated ? $$.width : xv).attr("y1", config.axis_rotated ? xv : 0).attr("y2", config.axis_rotated ? xv : $$.height).style("opacity", 1), (withTransition ? texts.transition(transition) : texts).attr("x", config.axis_rotated ? $$.yGridTextX.bind($$) : $$.xGridTextX.bind($$)).attr("y", xv).text(function (d) {
-            return d.text;
-        }).style("opacity", 1)];
-    };
-    ChartInternal.prototype.showXGridFocus = function (selectedData) {
-        var $$ = this,
-            config = $$.config,
-            dataToShow = selectedData.filter(function (d) {
-            return d && isValue(d.value);
-        }),
-            focusEl = $$.main.selectAll('line.' + CLASS.xgridFocus),
-            xx = $$.xx.bind($$);
-        if (!config.tooltip_show) {
-            return;
-        }
-        // Hide when scatter plot exists
-        if ($$.hasType('scatter') || $$.hasArcType()) {
-            return;
-        }
-        focusEl.style("visibility", "visible").data([dataToShow[0]]).attr(config.axis_rotated ? 'y1' : 'x1', xx).attr(config.axis_rotated ? 'y2' : 'x2', xx);
-        $$.smoothLines(focusEl, 'grid');
-    };
-    ChartInternal.prototype.hideXGridFocus = function () {
-        this.main.select('line.' + CLASS.xgridFocus).style("visibility", "hidden");
-    };
-    ChartInternal.prototype.updateXgridFocus = function () {
-        var $$ = this,
-            config = $$.config;
-        $$.main.select('line.' + CLASS.xgridFocus).attr("x1", config.axis_rotated ? 0 : -10).attr("x2", config.axis_rotated ? $$.width : -10).attr("y1", config.axis_rotated ? -10 : 0).attr("y2", config.axis_rotated ? -10 : $$.height);
-    };
-    ChartInternal.prototype.generateGridData = function (type, scale) {
-        var $$ = this,
-            gridData = [],
-            xDomain,
-            firstYear,
-            lastYear,
-            i,
-            tickNum = $$.main.select("." + CLASS.axisX).selectAll('.tick').size();
-        if (type === 'year') {
-            xDomain = $$.getXDomain();
-            firstYear = xDomain[0].getFullYear();
-            lastYear = xDomain[1].getFullYear();
-            for (i = firstYear; i <= lastYear; i++) {
-                gridData.push(new Date(i + '-01-01 00:00:00'));
-            }
+
+    l = $$.legend.selectAll('.' + CLASS.legendItem).data(targetIds).enter().append('g').attr('class', function (id) {
+      return $$.generateClass(CLASS.legendItem, id);
+    }).style('visibility', function (id) {
+      return $$.isLegendToShow(id) ? 'visible' : 'hidden';
+    }).style('cursor', 'pointer').on('click', function (id) {
+      if (config.legend_item_onclick) {
+        config.legend_item_onclick.call($$, id);
+      } else {
+        if ($$.d3.event.altKey) {
+          $$.api.hide();
+          $$.api.show(id);
         } else {
         } else {
-            gridData = scale.ticks(10);
-            if (gridData.length > tickNum) {
-                // use only int
-                gridData = gridData.filter(function (d) {
-                    return ("" + d).indexOf('.') < 0;
-                });
-            }
+          $$.api.toggle(id);
+          $$.isTargetToShow(id) ? $$.api.focus(id) : $$.api.revert();
         }
         }
-        return gridData;
-    };
-    ChartInternal.prototype.getGridFilterToRemove = function (params) {
-        return params ? function (line) {
-            var found = false;
-            [].concat(params).forEach(function (param) {
-                if ('value' in param && line.value === param.value || 'class' in param && line['class'] === param['class']) {
-                    found = true;
-                }
-            });
-            return found;
-        } : function () {
-            return true;
-        };
-    };
-    ChartInternal.prototype.removeGridLines = function (params, forX) {
-        var $$ = this,
-            config = $$.config,
-            toRemove = $$.getGridFilterToRemove(params),
-            toShow = function toShow(line) {
-            return !toRemove(line);
-        },
-            classLines = forX ? CLASS.xgridLines : CLASS.ygridLines,
-            classLine = forX ? CLASS.xgridLine : CLASS.ygridLine;
-        $$.main.select('.' + classLines).selectAll('.' + classLine).filter(toRemove).transition().duration(config.transition_duration).style('opacity', 0).remove();
-        if (forX) {
-            config.grid_x_lines = config.grid_x_lines.filter(toShow);
-        } else {
-            config.grid_y_lines = config.grid_y_lines.filter(toShow);
+      }
+    }).on('mouseover', function (id) {
+      if (config.legend_item_onmouseover) {
+        config.legend_item_onmouseover.call($$, id);
+      } else {
+        $$.d3.select(this).classed(CLASS.legendItemFocused, true);
+
+        if (!$$.transiting && $$.isTargetToShow(id)) {
+          $$.api.focus(id);
         }
         }
-    };
+      }
+    }).on('mouseout', function (id) {
+      if (config.legend_item_onmouseout) {
+        config.legend_item_onmouseout.call($$, id);
+      } else {
+        $$.d3.select(this).classed(CLASS.legendItemFocused, false);
+        $$.api.revert();
+      }
+    });
+    l.append('text').text(function (id) {
+      return isDefined(config.data_names[id]) ? config.data_names[id] : id;
+    }).each(function (id, i) {
+      updatePositions(this, id, i);
+    }).style("pointer-events", "none").attr('x', $$.isLegendRight || $$.isLegendInset ? xForLegendText : -200).attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendText);
+    l.append('rect').attr("class", CLASS.legendItemEvent).style('fill-opacity', 0).attr('x', $$.isLegendRight || $$.isLegendInset ? xForLegendRect : -200).attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendRect);
+    l.append('line').attr('class', CLASS.legendItemTile).style('stroke', $$.color).style("pointer-events", "none").attr('x1', $$.isLegendRight || $$.isLegendInset ? x1ForLegendTile : -200).attr('y1', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendTile).attr('x2', $$.isLegendRight || $$.isLegendInset ? x2ForLegendTile : -200).attr('y2', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendTile).attr('stroke-width', config.legend_item_tile_height); // Set background for inset legend
+
+    background = $$.legend.select('.' + CLASS.legendBackground + ' rect');
+
+    if ($$.isLegendInset && maxWidth > 0 && background.size() === 0) {
+      background = $$.legend.insert('g', '.' + CLASS.legendItem).attr("class", CLASS.legendBackground).append('rect');
+    }
 
 
-    ChartInternal.prototype.initEventRect = function () {
-        var $$ = this,
-            config = $$.config;
+    texts = $$.legend.selectAll('text').data(targetIds).text(function (id) {
+      return isDefined(config.data_names[id]) ? config.data_names[id] : id;
+    }) // MEMO: needed for update
+    .each(function (id, i) {
+      updatePositions(this, id, i);
+    });
+    (withTransition ? texts.transition() : texts).attr('x', xForLegendText).attr('y', yForLegendText);
+    rects = $$.legend.selectAll('rect.' + CLASS.legendItemEvent).data(targetIds);
+    (withTransition ? rects.transition() : rects).attr('width', function (id) {
+      return widths[id];
+    }).attr('height', function (id) {
+      return heights[id];
+    }).attr('x', xForLegendRect).attr('y', yForLegendRect);
+    tiles = $$.legend.selectAll('line.' + CLASS.legendItemTile).data(targetIds);
+    (withTransition ? tiles.transition() : tiles).style('stroke', $$.levelColor ? function (id) {
+      return $$.levelColor($$.cache[id].values[0].value);
+    } : $$.color).attr('x1', x1ForLegendTile).attr('y1', yForLegendTile).attr('x2', x2ForLegendTile).attr('y2', yForLegendTile);
+
+    if (background) {
+      (withTransition ? background.transition() : background).attr('height', $$.getLegendHeight() - 12).attr('width', maxWidth * (step + 1) + 10);
+    } // toggle legend state
+
+
+    $$.legend.selectAll('.' + CLASS.legendItem).classed(CLASS.legendItemHidden, function (id) {
+      return !$$.isTargetToShow(id);
+    }); // Update all to reflect change of legend
+
+    $$.updateLegendItemWidth(maxWidth);
+    $$.updateLegendItemHeight(maxHeight);
+    $$.updateLegendStep(step); // Update size and scale
+
+    $$.updateSizes();
+    $$.updateScales();
+    $$.updateSvgSize(); // Update g positions
+
+    $$.transformAll(withTransitionForTransform, transitions);
+    $$.legendHasRendered = true;
+  };
+
+  ChartInternal.prototype.initRegion = function () {
+    var $$ = this;
+    $$.region = $$.main.append('g').attr("clip-path", $$.clipPath).attr("class", CLASS.regions);
+  };
+
+  ChartInternal.prototype.updateRegion = function (duration) {
+    var $$ = this,
+        config = $$.config; // hide if arc type
+
+    $$.region.style('visibility', $$.hasArcType() ? 'hidden' : 'visible');
+    var mainRegion = $$.main.select('.' + CLASS.regions).selectAll('.' + CLASS.region).data(config.regions);
+    var mainRegionEnter = mainRegion.enter().append('rect').attr("x", $$.regionX.bind($$)).attr("y", $$.regionY.bind($$)).attr("width", $$.regionWidth.bind($$)).attr("height", $$.regionHeight.bind($$)).style("fill-opacity", 0);
+    $$.mainRegion = mainRegionEnter.merge(mainRegion).attr('class', $$.classRegion.bind($$));
+    mainRegion.exit().transition().duration(duration).style("opacity", 0).remove();
+  };
+
+  ChartInternal.prototype.redrawRegion = function (withTransition, transition) {
+    var $$ = this,
+        regions = $$.mainRegion;
+    return [(withTransition ? regions.transition(transition) : regions).attr("x", $$.regionX.bind($$)).attr("y", $$.regionY.bind($$)).attr("width", $$.regionWidth.bind($$)).attr("height", $$.regionHeight.bind($$)).style("fill-opacity", function (d) {
+      return isValue(d.opacity) ? d.opacity : 0.1;
+    })];
+  };
+
+  ChartInternal.prototype.regionX = function (d) {
+    var $$ = this,
+        config = $$.config,
+        xPos,
+        yScale = d.axis === 'y' ? $$.y : $$.y2;
+
+    if (d.axis === 'y' || d.axis === 'y2') {
+      xPos = config.axis_rotated ? 'start' in d ? yScale(d.start) : 0 : 0;
+    } else {
+      xPos = config.axis_rotated ? 0 : 'start' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.start) : d.start) : 0;
+    }
 
 
-        $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.eventRects).style('fill-opacity', 0);
-        $$.eventRect = $$.main.select('.' + CLASS.eventRects).append('rect').attr('class', CLASS.eventRect);
+    return xPos;
+  };
 
 
-        // event rect handle zoom event as well
-        if (config.zoom_enabled && $$.zoom) {
-            $$.eventRect.call($$.zoom).on("dblclick.zoom", null);
-            if (config.zoom_initialRange) {
-                // WORKAROUND: Add transition to apply transform immediately when no subchart
-                $$.eventRect.transition().duration(0).call($$.zoom.transform, $$.zoomTransform(config.zoom_initialRange));
-            }
-        }
-    };
-    ChartInternal.prototype.redrawEventRect = function () {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            x,
-            y,
-            w,
-            h;
-
-        // TODO: rotated not supported yet
-        x = 0;
-        y = 0;
-        w = $$.width;
-        h = $$.height;
-
-        function mouseout() {
-            $$.svg.select('.' + CLASS.eventRect).style('cursor', null);
-            $$.hideXGridFocus();
-            $$.hideTooltip();
-            $$.unexpandCircles();
-            $$.unexpandBars();
-        }
+  ChartInternal.prototype.regionY = function (d) {
+    var $$ = this,
+        config = $$.config,
+        yPos,
+        yScale = d.axis === 'y' ? $$.y : $$.y2;
 
 
-        // rects for mouseover
-        $$.main.select('.' + CLASS.eventRects).style('cursor', config.zoom_enabled ? config.axis_rotated ? 'ns-resize' : 'ew-resize' : null);
+    if (d.axis === 'y' || d.axis === 'y2') {
+      yPos = config.axis_rotated ? 0 : 'end' in d ? yScale(d.end) : 0;
+    } else {
+      yPos = config.axis_rotated ? 'start' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.start) : d.start) : 0 : 0;
+    }
 
 
-        $$.eventRect.attr('x', x).attr('y', y).attr('width', w).attr('height', h).on('mouseout', config.interaction_enabled ? function () {
-            if (!config) {
-                return;
-            } // chart is destroyed
-            if ($$.hasArcType()) {
-                return;
-            }
-            mouseout();
-        } : null).on('mousemove', config.interaction_enabled ? function () {
-            var targetsToShow, mouse, closest, sameXData, selectedData;
-
-            if ($$.dragging) {
-                return;
-            } // do nothing when dragging
-            if ($$.hasArcType(targetsToShow)) {
-                return;
-            }
+    return yPos;
+  };
 
 
-            targetsToShow = $$.filterTargetsToShow($$.data.targets);
-            mouse = d3.mouse(this);
-            closest = $$.findClosestFromTargets(targetsToShow, mouse);
+  ChartInternal.prototype.regionWidth = function (d) {
+    var $$ = this,
+        config = $$.config,
+        start = $$.regionX(d),
+        end,
+        yScale = d.axis === 'y' ? $$.y : $$.y2;
 
 
-            if ($$.mouseover && (!closest || closest.id !== $$.mouseover.id)) {
-                config.data_onmouseout.call($$.api, $$.mouseover);
-                $$.mouseover = undefined;
-            }
+    if (d.axis === 'y' || d.axis === 'y2') {
+      end = config.axis_rotated ? 'end' in d ? yScale(d.end) : $$.width : $$.width;
+    } else {
+      end = config.axis_rotated ? $$.width : 'end' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.end) : d.end) : $$.width;
+    }
 
 
-            if (!closest) {
-                mouseout();
-                return;
-            }
+    return end < start ? 0 : end - start;
+  };
 
 
-            if ($$.isScatterType(closest) || !config.tooltip_grouped) {
-                sameXData = [closest];
-            } else {
-                sameXData = $$.filterByX(targetsToShow, closest.x);
-            }
+  ChartInternal.prototype.regionHeight = function (d) {
+    var $$ = this,
+        config = $$.config,
+        start = this.regionY(d),
+        end,
+        yScale = d.axis === 'y' ? $$.y : $$.y2;
 
 
-            // show tooltip when cursor is close to some point
-            selectedData = sameXData.map(function (d) {
-                return $$.addName(d);
-            });
-            $$.showTooltip(selectedData, this);
-
-            // expand points
-            if (config.point_focus_expand_enabled) {
-                $$.unexpandCircles();
-                selectedData.forEach(function (d) {
-                    $$.expandCircles(d.index, d.id, false);
-                });
-            }
-            $$.expandBars(closest.index, closest.id, true);
-
-            // Show xgrid focus line
-            $$.showXGridFocus(selectedData);
-
-            // Show cursor as pointer if point is close to mouse position
-            if ($$.isBarType(closest.id) || $$.dist(closest, mouse) < config.point_sensitivity) {
-                $$.svg.select('.' + CLASS.eventRect).style('cursor', 'pointer');
-                if (!$$.mouseover) {
-                    config.data_onmouseover.call($$.api, closest);
-                    $$.mouseover = closest;
-                }
-            }
-        } : null).on('click', config.interaction_enabled ? function () {
-            var targetsToShow, mouse, closest, sameXData;
-            if ($$.hasArcType(targetsToShow)) {
-                return;
-            }
+    if (d.axis === 'y' || d.axis === 'y2') {
+      end = config.axis_rotated ? $$.height : 'start' in d ? yScale(d.start) : $$.height;
+    } else {
+      end = config.axis_rotated ? 'end' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.end) : d.end) : $$.height : $$.height;
+    }
 
 
-            targetsToShow = $$.filterTargetsToShow($$.data.targets);
-            mouse = d3.mouse(this);
-            closest = $$.findClosestFromTargets(targetsToShow, mouse);
-            if (!closest) {
-                return;
-            }
-            // select if selection enabled
-            if ($$.isBarType(closest.id) || $$.dist(closest, mouse) < config.point_sensitivity) {
-                if ($$.isScatterType(closest) || !config.data_selection_grouped) {
-                    sameXData = [closest];
-                } else {
-                    sameXData = $$.filterByX(targetsToShow, closest.x);
-                }
-                sameXData.forEach(function (d) {
-                    $$.main.selectAll('.' + CLASS.shapes + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.shape + '-' + d.index).each(function () {
-                        if (config.data_selection_grouped || $$.isWithinShape(this, d)) {
-                            $$.toggleShape(this, d, d.index);
-                            config.data_onclick.call($$.api, d, this);
-                        }
-                    });
-                });
-            }
-        } : null).call(config.interaction_enabled && config.data_selection_draggable && $$.drag ? d3.drag().on('drag', function () {
-            $$.drag(d3.mouse(this));
-        }).on('start', function () {
-            $$.dragstart(d3.mouse(this));
-        }).on('end', function () {
-            $$.dragend();
-        }) : function () {});
-    };
-    ChartInternal.prototype.getMousePosition = function (data) {
-        var $$ = this;
-        return [$$.x(data.x), $$.getYScale(data.id)(data.value)];
-    };
-    ChartInternal.prototype.dispatchEvent = function (type, mouse) {
-        var $$ = this,
-            selector = '.' + CLASS.eventRect,
-            eventRect = $$.main.select(selector).node(),
-            box = eventRect.getBoundingClientRect(),
-            x = box.left + (mouse ? mouse[0] : 0),
-            y = box.top + (mouse ? mouse[1] : 0),
-            event = document.createEvent("MouseEvents");
-
-        event.initMouseEvent(type, true, true, window, 0, x, y, x, y, false, false, false, false, 0, null);
-        eventRect.dispatchEvent(event);
-    };
+    return end < start ? 0 : end - start;
+  };
 
 
-    ChartInternal.prototype.initLegend = function () {
-        var $$ = this;
-        $$.legendItemTextBox = {};
-        $$.legendHasRendered = false;
-        $$.legend = $$.svg.append("g").attr("transform", $$.getTranslate('legend'));
-        if (!$$.config.legend_show) {
-            $$.legend.style('visibility', 'hidden');
-            $$.hiddenLegendIds = $$.mapToIds($$.data.targets);
-            return;
-        }
-        // MEMO: call here to update legend box and tranlate for all
-        // MEMO: translate will be upated by this, so transform not needed in updateLegend()
-        $$.updateLegendWithDefaults();
-    };
-    ChartInternal.prototype.updateLegendWithDefaults = function () {
-        var $$ = this;
-        $$.updateLegend($$.mapToIds($$.data.targets), { withTransform: false, withTransitionForTransform: false, withTransition: false });
-    };
-    ChartInternal.prototype.updateSizeForLegend = function (legendHeight, legendWidth) {
-        var $$ = this,
-            config = $$.config,
-            insetLegendPosition = {
-            top: $$.isLegendTop ? $$.getCurrentPaddingTop() + config.legend_inset_y + 5.5 : $$.currentHeight - legendHeight - $$.getCurrentPaddingBottom() - config.legend_inset_y,
-            left: $$.isLegendLeft ? $$.getCurrentPaddingLeft() + config.legend_inset_x + 0.5 : $$.currentWidth - legendWidth - $$.getCurrentPaddingRight() - config.legend_inset_x + 0.5
-        };
+  ChartInternal.prototype.isRegionOnX = function (d) {
+    return !d.axis || d.axis === 'x';
+  };
 
 
-        $$.margin3 = {
-            top: $$.isLegendRight ? 0 : $$.isLegendInset ? insetLegendPosition.top : $$.currentHeight - legendHeight,
-            right: NaN,
-            bottom: 0,
-            left: $$.isLegendRight ? $$.currentWidth - legendWidth : $$.isLegendInset ? insetLegendPosition.left : 0
-        };
-    };
-    ChartInternal.prototype.transformLegend = function (withTransition) {
-        var $$ = this;
-        (withTransition ? $$.legend.transition() : $$.legend).attr("transform", $$.getTranslate('legend'));
-    };
-    ChartInternal.prototype.updateLegendStep = function (step) {
-        this.legendStep = step;
-    };
-    ChartInternal.prototype.updateLegendItemWidth = function (w) {
-        this.legendItemWidth = w;
-    };
-    ChartInternal.prototype.updateLegendItemHeight = function (h) {
-        this.legendItemHeight = h;
-    };
-    ChartInternal.prototype.getLegendWidth = function () {
-        var $$ = this;
-        return $$.config.legend_show ? $$.isLegendRight || $$.isLegendInset ? $$.legendItemWidth * ($$.legendStep + 1) : $$.currentWidth : 0;
-    };
-    ChartInternal.prototype.getLegendHeight = function () {
-        var $$ = this,
-            h = 0;
-        if ($$.config.legend_show) {
-            if ($$.isLegendRight) {
-                h = $$.currentHeight;
-            } else {
-                h = Math.max(20, $$.legendItemHeight) * ($$.legendStep + 1);
-            }
-        }
-        return h;
-    };
-    ChartInternal.prototype.opacityForLegend = function (legendItem) {
-        return legendItem.classed(CLASS.legendItemHidden) ? null : 1;
-    };
-    ChartInternal.prototype.opacityForUnfocusedLegend = function (legendItem) {
-        return legendItem.classed(CLASS.legendItemHidden) ? null : 0.3;
-    };
-    ChartInternal.prototype.toggleFocusLegend = function (targetIds, focus) {
-        var $$ = this;
-        targetIds = $$.mapToTargetIds(targetIds);
-        $$.legend.selectAll('.' + CLASS.legendItem).filter(function (id) {
-            return targetIds.indexOf(id) >= 0;
-        }).classed(CLASS.legendItemFocused, focus).transition().duration(100).style('opacity', function () {
-            var opacity = focus ? $$.opacityForLegend : $$.opacityForUnfocusedLegend;
-            return opacity.call($$, $$.d3.select(this));
-        });
-    };
-    ChartInternal.prototype.revertLegend = function () {
-        var $$ = this,
-            d3 = $$.d3;
-        $$.legend.selectAll('.' + CLASS.legendItem).classed(CLASS.legendItemFocused, false).transition().duration(100).style('opacity', function () {
-            return $$.opacityForLegend(d3.select(this));
-        });
-    };
-    ChartInternal.prototype.showLegend = function (targetIds) {
-        var $$ = this,
-            config = $$.config;
-        if (!config.legend_show) {
-            config.legend_show = true;
-            $$.legend.style('visibility', 'visible');
-            if (!$$.legendHasRendered) {
-                $$.updateLegendWithDefaults();
-            }
-        }
-        $$.removeHiddenLegendIds(targetIds);
-        $$.legend.selectAll($$.selectorLegends(targetIds)).style('visibility', 'visible').transition().style('opacity', function () {
-            return $$.opacityForLegend($$.d3.select(this));
-        });
-    };
-    ChartInternal.prototype.hideLegend = function (targetIds) {
-        var $$ = this,
-            config = $$.config;
-        if (config.legend_show && isEmpty(targetIds)) {
-            config.legend_show = false;
-            $$.legend.style('visibility', 'hidden');
+  ChartInternal.prototype.getScale = function (min, max, forTimeseries) {
+    return (forTimeseries ? this.d3.scaleTime() : this.d3.scaleLinear()).range([min, max]);
+  };
+
+  ChartInternal.prototype.getX = function (min, max, domain, offset) {
+    var $$ = this,
+        scale = $$.getScale(min, max, $$.isTimeSeries()),
+        _scale = domain ? scale.domain(domain) : scale,
+        key; // Define customized scale if categorized axis
+
+
+    if ($$.isCategorized()) {
+      offset = offset || function () {
+        return 0;
+      };
+
+      scale = function scale(d, raw) {
+        var v = _scale(d) + offset(d);
+        return raw ? v : Math.ceil(v);
+      };
+    } else {
+      scale = function scale(d, raw) {
+        var v = _scale(d);
+
+        return raw ? v : Math.ceil(v);
+      };
+    } // define functions
+
+
+    for (key in _scale) {
+      scale[key] = _scale[key];
+    }
+
+    scale.orgDomain = function () {
+      return _scale.domain();
+    }; // define custom domain() for categorized axis
+
+
+    if ($$.isCategorized()) {
+      scale.domain = function (domain) {
+        if (!arguments.length) {
+          domain = this.orgDomain();
+          return [domain[0], domain[1] + 1];
         }
         }
-        $$.addHiddenLegendIds(targetIds);
-        $$.legend.selectAll($$.selectorLegends(targetIds)).style('opacity', 0).style('visibility', 'hidden');
-    };
-    ChartInternal.prototype.clearLegendItemTextBoxCache = function () {
-        this.legendItemTextBox = {};
-    };
-    ChartInternal.prototype.updateLegend = function (targetIds, options, transitions) {
-        var $$ = this,
-            config = $$.config;
-        var xForLegend, xForLegendText, xForLegendRect, yForLegend, yForLegendText, yForLegendRect, x1ForLegendTile, x2ForLegendTile, yForLegendTile;
-        var paddingTop = 4,
-            paddingRight = 10,
-            maxWidth = 0,
-            maxHeight = 0,
-            posMin = 10,
-            tileWidth = config.legend_item_tile_width + 5;
-        var l,
-            totalLength = 0,
-            offsets = {},
-            widths = {},
-            heights = {},
-            margins = [0],
-            steps = {},
-            step = 0;
-        var withTransition, withTransitionForTransform;
-        var texts, rects, tiles, background;
 
 
-        // Skip elements when their name is set to null
-        targetIds = targetIds.filter(function (id) {
-            return !isDefined(config.data_names[id]) || config.data_names[id] !== null;
+        _scale.domain(domain);
+
+        return scale;
+      };
+    }
+
+    return scale;
+  };
+
+  ChartInternal.prototype.getY = function (min, max, domain) {
+    var scale = this.getScale(min, max, this.isTimeSeriesY());
+
+    if (domain) {
+      scale.domain(domain);
+    }
+
+    return scale;
+  };
+
+  ChartInternal.prototype.getYScale = function (id) {
+    return this.axis.getId(id) === 'y2' ? this.y2 : this.y;
+  };
+
+  ChartInternal.prototype.getSubYScale = function (id) {
+    return this.axis.getId(id) === 'y2' ? this.subY2 : this.subY;
+  };
+
+  ChartInternal.prototype.updateScales = function () {
+    var $$ = this,
+        config = $$.config,
+        forInit = !$$.x; // update edges
+
+    $$.xMin = config.axis_rotated ? 1 : 0;
+    $$.xMax = config.axis_rotated ? $$.height : $$.width;
+    $$.yMin = config.axis_rotated ? 0 : $$.height;
+    $$.yMax = config.axis_rotated ? $$.width : 1;
+    $$.subXMin = $$.xMin;
+    $$.subXMax = $$.xMax;
+    $$.subYMin = config.axis_rotated ? 0 : $$.height2;
+    $$.subYMax = config.axis_rotated ? $$.width2 : 1; // update scales
+
+    $$.x = $$.getX($$.xMin, $$.xMax, forInit ? undefined : $$.x.orgDomain(), function () {
+      return $$.xAxis.tickOffset();
+    });
+    $$.y = $$.getY($$.yMin, $$.yMax, forInit ? config.axis_y_default : $$.y.domain());
+    $$.y2 = $$.getY($$.yMin, $$.yMax, forInit ? config.axis_y2_default : $$.y2.domain());
+    $$.subX = $$.getX($$.xMin, $$.xMax, $$.orgXDomain, function (d) {
+      return d % 1 ? 0 : $$.subXAxis.tickOffset();
+    });
+    $$.subY = $$.getY($$.subYMin, $$.subYMax, forInit ? config.axis_y_default : $$.subY.domain());
+    $$.subY2 = $$.getY($$.subYMin, $$.subYMax, forInit ? config.axis_y2_default : $$.subY2.domain()); // update axes
+
+    $$.xAxisTickFormat = $$.axis.getXAxisTickFormat();
+    $$.xAxisTickValues = $$.axis.getXAxisTickValues();
+    $$.yAxisTickValues = $$.axis.getYAxisTickValues();
+    $$.y2AxisTickValues = $$.axis.getY2AxisTickValues();
+    $$.xAxis = $$.axis.getXAxis($$.x, $$.xOrient, $$.xAxisTickFormat, $$.xAxisTickValues, config.axis_x_tick_outer);
+    $$.subXAxis = $$.axis.getXAxis($$.subX, $$.subXOrient, $$.xAxisTickFormat, $$.xAxisTickValues, config.axis_x_tick_outer);
+    $$.yAxis = $$.axis.getYAxis($$.y, $$.yOrient, config.axis_y_tick_format, $$.yAxisTickValues, config.axis_y_tick_outer);
+    $$.y2Axis = $$.axis.getYAxis($$.y2, $$.y2Orient, config.axis_y2_tick_format, $$.y2AxisTickValues, config.axis_y2_tick_outer); // Set initialized scales to brush and zoom
+
+    if (!forInit) {
+      if ($$.brush) {
+        $$.brush.updateScale($$.subX);
+      }
+    } // update for arc
+
+
+    if ($$.updateArc) {
+      $$.updateArc();
+    }
+  };
+
+  ChartInternal.prototype.selectPoint = function (target, d, i) {
+    var $$ = this,
+        config = $$.config,
+        cx = (config.axis_rotated ? $$.circleY : $$.circleX).bind($$),
+        cy = (config.axis_rotated ? $$.circleX : $$.circleY).bind($$),
+        r = $$.pointSelectR.bind($$);
+    config.data_onselected.call($$.api, d, target.node()); // add selected-circle on low layer g
+
+    $$.main.select('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.selectedCircle + '-' + i).data([d]).enter().append('circle').attr("class", function () {
+      return $$.generateClass(CLASS.selectedCircle, i);
+    }).attr("cx", cx).attr("cy", cy).attr("stroke", function () {
+      return $$.color(d);
+    }).attr("r", function (d) {
+      return $$.pointSelectR(d) * 1.4;
+    }).transition().duration(100).attr("r", r);
+  };
+
+  ChartInternal.prototype.unselectPoint = function (target, d, i) {
+    var $$ = this;
+    $$.config.data_onunselected.call($$.api, d, target.node()); // remove selected-circle from low layer g
+
+    $$.main.select('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.selectedCircle + '-' + i).transition().duration(100).attr('r', 0).remove();
+  };
+
+  ChartInternal.prototype.togglePoint = function (selected, target, d, i) {
+    selected ? this.selectPoint(target, d, i) : this.unselectPoint(target, d, i);
+  };
+
+  ChartInternal.prototype.selectPath = function (target, d) {
+    var $$ = this;
+    $$.config.data_onselected.call($$, d, target.node());
+
+    if ($$.config.interaction_brighten) {
+      target.transition().duration(100).style("fill", function () {
+        return $$.d3.rgb($$.color(d)).brighter(0.75);
+      });
+    }
+  };
+
+  ChartInternal.prototype.unselectPath = function (target, d) {
+    var $$ = this;
+    $$.config.data_onunselected.call($$, d, target.node());
+
+    if ($$.config.interaction_brighten) {
+      target.transition().duration(100).style("fill", function () {
+        return $$.color(d);
+      });
+    }
+  };
+
+  ChartInternal.prototype.togglePath = function (selected, target, d, i) {
+    selected ? this.selectPath(target, d, i) : this.unselectPath(target, d, i);
+  };
+
+  ChartInternal.prototype.getToggle = function (that, d) {
+    var $$ = this,
+        toggle;
+
+    if (that.nodeName === 'circle') {
+      if ($$.isStepType(d)) {
+        // circle is hidden in step chart, so treat as within the click area
+        toggle = function toggle() {}; // TODO: how to select step chart?
+
+      } else {
+        toggle = $$.togglePoint;
+      }
+    } else if (that.nodeName === 'path') {
+      toggle = $$.togglePath;
+    }
+
+    return toggle;
+  };
+
+  ChartInternal.prototype.toggleShape = function (that, d, i) {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        shape = d3.select(that),
+        isSelected = shape.classed(CLASS.SELECTED),
+        toggle = $$.getToggle(that, d).bind($$);
+
+    if (config.data_selection_enabled && config.data_selection_isselectable(d)) {
+      if (!config.data_selection_multiple) {
+        $$.main.selectAll('.' + CLASS.shapes + (config.data_selection_grouped ? $$.getTargetSelectorSuffix(d.id) : "")).selectAll('.' + CLASS.shape).each(function (d, i) {
+          var shape = d3.select(this);
+
+          if (shape.classed(CLASS.SELECTED)) {
+            toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
+          }
         });
         });
+      }
 
 
-        options = options || {};
-        withTransition = getOption(options, "withTransition", true);
-        withTransitionForTransform = getOption(options, "withTransitionForTransform", true);
+      shape.classed(CLASS.SELECTED, !isSelected);
+      toggle(!isSelected, shape, d, i);
+    }
+  };
+
+  ChartInternal.prototype.initBar = function () {
+    var $$ = this;
+    $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartBars);
+  };
+
+  ChartInternal.prototype.updateTargetsForBar = function (targets) {
+    var $$ = this,
+        config = $$.config,
+        mainBars,
+        mainBarEnter,
+        classChartBar = $$.classChartBar.bind($$),
+        classBars = $$.classBars.bind($$),
+        classFocus = $$.classFocus.bind($$);
+    mainBars = $$.main.select('.' + CLASS.chartBars).selectAll('.' + CLASS.chartBar).data(targets).attr('class', function (d) {
+      return classChartBar(d) + classFocus(d);
+    });
+    mainBarEnter = mainBars.enter().append('g').attr('class', classChartBar).style("pointer-events", "none"); // Bars for each data
+
+    mainBarEnter.append('g').attr("class", classBars).style("cursor", function (d) {
+      return config.data_selection_isselectable(d) ? "pointer" : null;
+    });
+  };
+
+  ChartInternal.prototype.updateBar = function (durationForExit) {
+    var $$ = this,
+        barData = $$.barData.bind($$),
+        classBar = $$.classBar.bind($$),
+        initialOpacity = $$.initialOpacity.bind($$),
+        color = function color(d) {
+      return $$.color(d.id);
+    };
+
+    var mainBar = $$.main.selectAll('.' + CLASS.bars).selectAll('.' + CLASS.bar).data(barData);
+    var mainBarEnter = mainBar.enter().append('path').attr("class", classBar).style("stroke", color).style("fill", color);
+    $$.mainBar = mainBarEnter.merge(mainBar).style("opacity", initialOpacity);
+    mainBar.exit().transition().duration(durationForExit).style("opacity", 0);
+  };
+
+  ChartInternal.prototype.redrawBar = function (drawBar, withTransition, transition) {
+    return [(withTransition ? this.mainBar.transition(transition) : this.mainBar).attr('d', drawBar).style("stroke", this.color).style("fill", this.color).style("opacity", 1)];
+  };
+
+  ChartInternal.prototype.getBarW = function (axis, barTargetsNum) {
+    var $$ = this,
+        config = $$.config,
+        w = typeof config.bar_width === 'number' ? config.bar_width : barTargetsNum ? axis.tickInterval() * config.bar_width_ratio / barTargetsNum : 0;
+    return config.bar_width_max && w > config.bar_width_max ? config.bar_width_max : w;
+  };
+
+  ChartInternal.prototype.getBars = function (i, id) {
+    var $$ = this;
+    return (id ? $$.main.selectAll('.' + CLASS.bars + $$.getTargetSelectorSuffix(id)) : $$.main).selectAll('.' + CLASS.bar + (isValue(i) ? '-' + i : ''));
+  };
+
+  ChartInternal.prototype.expandBars = function (i, id, reset) {
+    var $$ = this;
+
+    if (reset) {
+      $$.unexpandBars();
+    }
 
 
-        function getTextBox(textElement, id) {
-            if (!$$.legendItemTextBox[id]) {
-                $$.legendItemTextBox[id] = $$.getTextRect(textElement.textContent, CLASS.legendItem, textElement);
-            }
-            return $$.legendItemTextBox[id];
+    $$.getBars(i, id).classed(CLASS.EXPANDED, true);
+  };
+
+  ChartInternal.prototype.unexpandBars = function (i) {
+    var $$ = this;
+    $$.getBars(i).classed(CLASS.EXPANDED, false);
+  };
+
+  ChartInternal.prototype.generateDrawBar = function (barIndices, isSub) {
+    var $$ = this,
+        config = $$.config,
+        getPoints = $$.generateGetBarPoints(barIndices, isSub);
+    return function (d, i) {
+      // 4 points that make a bar
+      var points = getPoints(d, i); // switch points if axis is rotated, not applicable for sub chart
+
+      var indexX = config.axis_rotated ? 1 : 0;
+      var indexY = config.axis_rotated ? 0 : 1;
+      var path = 'M ' + points[0][indexX] + ',' + points[0][indexY] + ' ' + 'L' + points[1][indexX] + ',' + points[1][indexY] + ' ' + 'L' + points[2][indexX] + ',' + points[2][indexY] + ' ' + 'L' + points[3][indexX] + ',' + points[3][indexY] + ' ' + 'z';
+      return path;
+    };
+  };
+
+  ChartInternal.prototype.generateGetBarPoints = function (barIndices, isSub) {
+    var $$ = this,
+        axis = isSub ? $$.subXAxis : $$.xAxis,
+        barTargetsNum = barIndices.__max__ + 1,
+        barW = $$.getBarW(axis, barTargetsNum),
+        barX = $$.getShapeX(barW, barTargetsNum, barIndices, !!isSub),
+        barY = $$.getShapeY(!!isSub),
+        barOffset = $$.getShapeOffset($$.isBarType, barIndices, !!isSub),
+        barSpaceOffset = barW * ($$.config.bar_space / 2),
+        yScale = isSub ? $$.getSubYScale : $$.getYScale;
+    return function (d, i) {
+      var y0 = yScale.call($$, d.id)(0),
+          offset = barOffset(d, i) || y0,
+          // offset is for stacked bar chart
+      posX = barX(d),
+          posY = barY(d); // fix posY not to overflow opposite quadrant
+
+      if ($$.config.axis_rotated) {
+        if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
+          posY = y0;
+        }
+      } // 4 points that make a bar
+
+
+      return [[posX + barSpaceOffset, offset], [posX + barSpaceOffset, posY - (y0 - offset)], [posX + barW - barSpaceOffset, posY - (y0 - offset)], [posX + barW - barSpaceOffset, offset]];
+    };
+  };
+
+  ChartInternal.prototype.isWithinBar = function (mouse, that) {
+    var box = that.getBoundingClientRect(),
+        seg0 = that.pathSegList.getItem(0),
+        seg1 = that.pathSegList.getItem(1),
+        x = Math.min(seg0.x, seg1.x),
+        y = Math.min(seg0.y, seg1.y),
+        w = box.width,
+        h = box.height,
+        offset = 2,
+        sx = x - offset,
+        ex = x + w + offset,
+        sy = y + h + offset,
+        ey = y - offset;
+    return sx < mouse[0] && mouse[0] < ex && ey < mouse[1] && mouse[1] < sy;
+  };
+
+  ChartInternal.prototype.getShapeIndices = function (typeFilter) {
+    var $$ = this,
+        config = $$.config,
+        indices = {},
+        i = 0,
+        j,
+        k;
+    $$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$)).forEach(function (d) {
+      for (j = 0; j < config.data_groups.length; j++) {
+        if (config.data_groups[j].indexOf(d.id) < 0) {
+          continue;
+        }
+
+        for (k = 0; k < config.data_groups[j].length; k++) {
+          if (config.data_groups[j][k] in indices) {
+            indices[d.id] = indices[config.data_groups[j][k]];
+            break;
+          }
         }
         }
+      }
 
 
-        function updatePositions(textElement, id, index) {
-            var reset = index === 0,
-                isLast = index === targetIds.length - 1,
-                box = getTextBox(textElement, id),
-                itemWidth = box.width + tileWidth + (isLast && !($$.isLegendRight || $$.isLegendInset) ? 0 : paddingRight) + config.legend_padding,
-                itemHeight = box.height + paddingTop,
-                itemLength = $$.isLegendRight || $$.isLegendInset ? itemHeight : itemWidth,
-                areaLength = $$.isLegendRight || $$.isLegendInset ? $$.getLegendHeight() : $$.getLegendWidth(),
-                margin,
-                maxLength;
-
-            // MEMO: care about condifion of step, totalLength
-            function updateValues(id, withoutStep) {
-                if (!withoutStep) {
-                    margin = (areaLength - totalLength - itemLength) / 2;
-                    if (margin < posMin) {
-                        margin = (areaLength - itemLength) / 2;
-                        totalLength = 0;
-                        step++;
-                    }
-                }
-                steps[id] = step;
-                margins[step] = $$.isLegendInset ? 10 : margin;
-                offsets[id] = totalLength;
-                totalLength += itemLength;
-            }
+      if (isUndefined(indices[d.id])) {
+        indices[d.id] = i++;
+      }
+    });
+    indices.__max__ = i - 1;
+    return indices;
+  };
+
+  ChartInternal.prototype.getShapeX = function (offset, targetsNum, indices, isSub) {
+    var $$ = this,
+        scale = isSub ? $$.subX : $$.x;
+    return function (d) {
+      var index = d.id in indices ? indices[d.id] : 0;
+      return d.x || d.x === 0 ? scale(d.x) - offset * (targetsNum / 2 - index) : 0;
+    };
+  };
+
+  ChartInternal.prototype.getShapeY = function (isSub) {
+    var $$ = this;
+    return function (d) {
+      var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id);
+      return scale(d.value);
+    };
+  };
+
+  ChartInternal.prototype.getShapeOffset = function (typeFilter, indices, isSub) {
+    var $$ = this,
+        targets = $$.orderTargets($$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$))),
+        targetIds = targets.map(function (t) {
+      return t.id;
+    });
+    return function (d, i) {
+      var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id),
+          y0 = scale(0),
+          offset = y0;
+      targets.forEach(function (t) {
+        var values = $$.isStepType(d) ? $$.convertValuesToStep(t.values) : t.values;
+
+        if (t.id === d.id || indices[t.id] !== indices[d.id]) {
+          return;
+        }
+
+        if (targetIds.indexOf(t.id) < targetIds.indexOf(d.id)) {
+          // check if the x values line up
+          if (typeof values[i] === 'undefined' || +values[i].x !== +d.x) {
+            // "+" for timeseries
+            // if not, try to find the value that does line up
+            i = -1;
+            values.forEach(function (v, j) {
+              if (v.x === d.x) {
+                i = j;
+              }
+            });
+          }
 
 
-            if (reset) {
-                totalLength = 0;
-                step = 0;
-                maxWidth = 0;
-                maxHeight = 0;
-            }
+          if (i in values && values[i].value * d.value >= 0) {
+            offset += scale(values[i].value) - y0;
+          }
+        }
+      });
+      return offset;
+    };
+  };
 
 
-            if (config.legend_show && !$$.isLegendToShow(id)) {
-                widths[id] = heights[id] = steps[id] = offsets[id] = 0;
-                return;
-            }
+  ChartInternal.prototype.isWithinShape = function (that, d) {
+    var $$ = this,
+        shape = $$.d3.select(that),
+        isWithin;
 
 
-            widths[id] = itemWidth;
-            heights[id] = itemHeight;
+    if (!$$.isTargetToShow(d.id)) {
+      isWithin = false;
+    } else if (that.nodeName === 'circle') {
+      isWithin = $$.isStepType(d) ? $$.isWithinStep(that, $$.getYScale(d.id)(d.value)) : $$.isWithinCircle(that, $$.pointSelectR(d) * 1.5);
+    } else if (that.nodeName === 'path') {
+      isWithin = shape.classed(CLASS.bar) ? $$.isWithinBar($$.d3.mouse(that), that) : true;
+    }
 
 
-            if (!maxWidth || itemWidth >= maxWidth) {
-                maxWidth = itemWidth;
-            }
-            if (!maxHeight || itemHeight >= maxHeight) {
-                maxHeight = itemHeight;
-            }
-            maxLength = $$.isLegendRight || $$.isLegendInset ? maxHeight : maxWidth;
-
-            if (config.legend_equally) {
-                Object.keys(widths).forEach(function (id) {
-                    widths[id] = maxWidth;
-                });
-                Object.keys(heights).forEach(function (id) {
-                    heights[id] = maxHeight;
-                });
-                margin = (areaLength - maxLength * targetIds.length) / 2;
-                if (margin < posMin) {
-                    totalLength = 0;
-                    step = 0;
-                    targetIds.forEach(function (id) {
-                        updateValues(id);
-                    });
-                } else {
-                    updateValues(id, true);
-                }
-            } else {
-                updateValues(id);
-            }
-        }
+    return isWithin;
+  };
+
+  ChartInternal.prototype.getInterpolate = function (d) {
+    var $$ = this,
+        d3 = $$.d3,
+        types = {
+      'linear': d3.curveLinear,
+      'linear-closed': d3.curveLinearClosed,
+      'basis': d3.curveBasis,
+      'basis-open': d3.curveBasisOpen,
+      'basis-closed': d3.curveBasisClosed,
+      'bundle': d3.curveBundle,
+      'cardinal': d3.curveCardinal,
+      'cardinal-open': d3.curveCardinalOpen,
+      'cardinal-closed': d3.curveCardinalClosed,
+      'monotone': d3.curveMonotoneX,
+      'step': d3.curveStep,
+      'step-before': d3.curveStepBefore,
+      'step-after': d3.curveStepAfter
+    },
+        type;
+
+    if ($$.isSplineType(d)) {
+      type = types[$$.config.spline_interpolation_type] || types.cardinal;
+    } else if ($$.isStepType(d)) {
+      type = types[$$.config.line_step_type];
+    } else {
+      type = types.linear;
+    }
 
 
-        if ($$.isLegendInset) {
-            step = config.legend_inset_step ? config.legend_inset_step : targetIds.length;
-            $$.updateLegendStep(step);
-        }
+    return type;
+  };
+
+  ChartInternal.prototype.initLine = function () {
+    var $$ = this;
+    $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartLines);
+  };
+
+  ChartInternal.prototype.updateTargetsForLine = function (targets) {
+    var $$ = this,
+        config = $$.config,
+        mainLines,
+        mainLineEnter,
+        classChartLine = $$.classChartLine.bind($$),
+        classLines = $$.classLines.bind($$),
+        classAreas = $$.classAreas.bind($$),
+        classCircles = $$.classCircles.bind($$),
+        classFocus = $$.classFocus.bind($$);
+    mainLines = $$.main.select('.' + CLASS.chartLines).selectAll('.' + CLASS.chartLine).data(targets).attr('class', function (d) {
+      return classChartLine(d) + classFocus(d);
+    });
+    mainLineEnter = mainLines.enter().append('g').attr('class', classChartLine).style('opacity', 0).style("pointer-events", "none"); // Lines for each data
+
+    mainLineEnter.append('g').attr("class", classLines); // Areas
+
+    mainLineEnter.append('g').attr('class', classAreas); // Circles for each data point on lines
+
+    mainLineEnter.append('g').attr("class", function (d) {
+      return $$.generateClass(CLASS.selectedCircles, d.id);
+    });
+    mainLineEnter.append('g').attr("class", classCircles).style("cursor", function (d) {
+      return config.data_selection_isselectable(d) ? "pointer" : null;
+    }); // Update date for selected circles
+
+    targets.forEach(function (t) {
+      $$.main.selectAll('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(t.id)).selectAll('.' + CLASS.selectedCircle).each(function (d) {
+        d.value = t.values[d.index].value;
+      });
+    }); // MEMO: can not keep same color...
+    //mainLineUpdate.exit().remove();
+  };
+
+  ChartInternal.prototype.updateLine = function (durationForExit) {
+    var $$ = this;
+    var mainLine = $$.main.selectAll('.' + CLASS.lines).selectAll('.' + CLASS.line).data($$.lineData.bind($$));
+    var mainLineEnter = mainLine.enter().append('path').attr('class', $$.classLine.bind($$)).style("stroke", $$.color);
+    $$.mainLine = mainLineEnter.merge(mainLine).style("opacity", $$.initialOpacity.bind($$)).style('shape-rendering', function (d) {
+      return $$.isStepType(d) ? 'crispEdges' : '';
+    }).attr('transform', null);
+    mainLine.exit().transition().duration(durationForExit).style('opacity', 0);
+  };
+
+  ChartInternal.prototype.redrawLine = function (drawLine, withTransition, transition) {
+    return [(withTransition ? this.mainLine.transition(transition) : this.mainLine).attr("d", drawLine).style("stroke", this.color).style("opacity", 1)];
+  };
+
+  ChartInternal.prototype.generateDrawLine = function (lineIndices, isSub) {
+    var $$ = this,
+        config = $$.config,
+        line = $$.d3.line(),
+        getPoints = $$.generateGetLinePoints(lineIndices, isSub),
+        yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale,
+        xValue = function xValue(d) {
+      return (isSub ? $$.subxx : $$.xx).call($$, d);
+    },
+        yValue = function yValue(d, i) {
+      return config.data_groups.length > 0 ? getPoints(d, i)[0][1] : yScaleGetter.call($$, d.id)(d.value);
+    };
+
+    line = config.axis_rotated ? line.x(yValue).y(xValue) : line.x(xValue).y(yValue);
+
+    if (!config.line_connectNull) {
+      line = line.defined(function (d) {
+        return d.value != null;
+      });
+    }
 
 
-        if ($$.isLegendRight) {
-            xForLegend = function xForLegend(id) {
-                return maxWidth * steps[id];
-            };
-            yForLegend = function yForLegend(id) {
-                return margins[steps[id]] + offsets[id];
-            };
-        } else if ($$.isLegendInset) {
-            xForLegend = function xForLegend(id) {
-                return maxWidth * steps[id] + 10;
-            };
-            yForLegend = function yForLegend(id) {
-                return margins[steps[id]] + offsets[id];
-            };
+    return function (d) {
+      var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
+          x = isSub ? $$.subX : $$.x,
+          y = yScaleGetter.call($$, d.id),
+          x0 = 0,
+          y0 = 0,
+          path;
+
+      if ($$.isLineType(d)) {
+        if (config.data_regions[d.id]) {
+          path = $$.lineWithRegions(values, x, y, config.data_regions[d.id]);
         } else {
         } else {
-            xForLegend = function xForLegend(id) {
-                return margins[steps[id]] + offsets[id];
-            };
-            yForLegend = function yForLegend(id) {
-                return maxHeight * steps[id];
-            };
-        }
-        xForLegendText = function xForLegendText(id, i) {
-            return xForLegend(id, i) + 4 + config.legend_item_tile_width;
-        };
-        yForLegendText = function yForLegendText(id, i) {
-            return yForLegend(id, i) + 9;
-        };
-        xForLegendRect = function xForLegendRect(id, i) {
-            return xForLegend(id, i);
-        };
-        yForLegendRect = function yForLegendRect(id, i) {
-            return yForLegend(id, i) - 5;
-        };
-        x1ForLegendTile = function x1ForLegendTile(id, i) {
-            return xForLegend(id, i) - 2;
-        };
-        x2ForLegendTile = function x2ForLegendTile(id, i) {
-            return xForLegend(id, i) - 2 + config.legend_item_tile_width;
-        };
-        yForLegendTile = function yForLegendTile(id, i) {
-            return yForLegend(id, i) + 4;
-        };
+          if ($$.isStepType(d)) {
+            values = $$.convertValuesToStep(values);
+          }
 
 
-        // Define g for legend area
-        l = $$.legend.selectAll('.' + CLASS.legendItem).data(targetIds).enter().append('g').attr('class', function (id) {
-            return $$.generateClass(CLASS.legendItem, id);
-        }).style('visibility', function (id) {
-            return $$.isLegendToShow(id) ? 'visible' : 'hidden';
-        }).style('cursor', 'pointer').on('click', function (id) {
-            if (config.legend_item_onclick) {
-                config.legend_item_onclick.call($$, id);
-            } else {
-                if ($$.d3.event.altKey) {
-                    $$.api.hide();
-                    $$.api.show(id);
-                } else {
-                    $$.api.toggle(id);
-                    $$.isTargetToShow(id) ? $$.api.focus(id) : $$.api.revert();
-                }
-            }
-        }).on('mouseover', function (id) {
-            if (config.legend_item_onmouseover) {
-                config.legend_item_onmouseover.call($$, id);
-            } else {
-                $$.d3.select(this).classed(CLASS.legendItemFocused, true);
-                if (!$$.transiting && $$.isTargetToShow(id)) {
-                    $$.api.focus(id);
-                }
-            }
-        }).on('mouseout', function (id) {
-            if (config.legend_item_onmouseout) {
-                config.legend_item_onmouseout.call($$, id);
-            } else {
-                $$.d3.select(this).classed(CLASS.legendItemFocused, false);
-                $$.api.revert();
-            }
-        });
-        l.append('text').text(function (id) {
-            return isDefined(config.data_names[id]) ? config.data_names[id] : id;
-        }).each(function (id, i) {
-            updatePositions(this, id, i);
-        }).style("pointer-events", "none").attr('x', $$.isLegendRight || $$.isLegendInset ? xForLegendText : -200).attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendText);
-        l.append('rect').attr("class", CLASS.legendItemEvent).style('fill-opacity', 0).attr('x', $$.isLegendRight || $$.isLegendInset ? xForLegendRect : -200).attr('y', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendRect);
-        l.append('line').attr('class', CLASS.legendItemTile).style('stroke', $$.color).style("pointer-events", "none").attr('x1', $$.isLegendRight || $$.isLegendInset ? x1ForLegendTile : -200).attr('y1', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendTile).attr('x2', $$.isLegendRight || $$.isLegendInset ? x2ForLegendTile : -200).attr('y2', $$.isLegendRight || $$.isLegendInset ? -200 : yForLegendTile).attr('stroke-width', config.legend_item_tile_height);
-
-        // Set background for inset legend
-        background = $$.legend.select('.' + CLASS.legendBackground + ' rect');
-        if ($$.isLegendInset && maxWidth > 0 && background.size() === 0) {
-            background = $$.legend.insert('g', '.' + CLASS.legendItem).attr("class", CLASS.legendBackground).append('rect');
+          path = line.curve($$.getInterpolate(d))(values);
         }
         }
-
-        texts = $$.legend.selectAll('text').data(targetIds).text(function (id) {
-            return isDefined(config.data_names[id]) ? config.data_names[id] : id;
-        }) // MEMO: needed for update
-        .each(function (id, i) {
-            updatePositions(this, id, i);
-        });
-        (withTransition ? texts.transition() : texts).attr('x', xForLegendText).attr('y', yForLegendText);
-
-        rects = $$.legend.selectAll('rect.' + CLASS.legendItemEvent).data(targetIds);
-        (withTransition ? rects.transition() : rects).attr('width', function (id) {
-            return widths[id];
-        }).attr('height', function (id) {
-            return heights[id];
-        }).attr('x', xForLegendRect).attr('y', yForLegendRect);
-
-        tiles = $$.legend.selectAll('line.' + CLASS.legendItemTile).data(targetIds);
-        (withTransition ? tiles.transition() : tiles).style('stroke', $$.levelColor ? function (id) {
-            return $$.levelColor($$.cache[id].values[0].value);
-        } : $$.color).attr('x1', x1ForLegendTile).attr('y1', yForLegendTile).attr('x2', x2ForLegendTile).attr('y2', yForLegendTile);
-
-        if (background) {
-            (withTransition ? background.transition() : background).attr('height', $$.getLegendHeight() - 12).attr('width', maxWidth * (step + 1) + 10);
+      } else {
+        if (values[0]) {
+          x0 = x(values[0].x);
+          y0 = y(values[0].value);
         }
 
         }
 
-        // toggle legend state
-        $$.legend.selectAll('.' + CLASS.legendItem).classed(CLASS.legendItemHidden, function (id) {
-            return !$$.isTargetToShow(id);
-        });
+        path = config.axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
+      }
 
 
-        // Update all to reflect change of legend
-        $$.updateLegendItemWidth(maxWidth);
-        $$.updateLegendItemHeight(maxHeight);
-        $$.updateLegendStep(step);
-        // Update size and scale
-        $$.updateSizes();
-        $$.updateScales();
-        $$.updateSvgSize();
-        // Update g positions
-        $$.transformAll(withTransitionForTransform, transitions);
-        $$.legendHasRendered = true;
-    };
+      return path ? path : "M 0 0";
+    };
+  };
+
+  ChartInternal.prototype.generateGetLinePoints = function (lineIndices, isSub) {
+    // partial duplication of generateGetBarPoints
+    var $$ = this,
+        config = $$.config,
+        lineTargetsNum = lineIndices.__max__ + 1,
+        x = $$.getShapeX(0, lineTargetsNum, lineIndices, !!isSub),
+        y = $$.getShapeY(!!isSub),
+        lineOffset = $$.getShapeOffset($$.isLineType, lineIndices, !!isSub),
+        yScale = isSub ? $$.getSubYScale : $$.getYScale;
+    return function (d, i) {
+      var y0 = yScale.call($$, d.id)(0),
+          offset = lineOffset(d, i) || y0,
+          // offset is for stacked area chart
+      posX = x(d),
+          posY = y(d); // fix posY not to overflow opposite quadrant
+
+      if (config.axis_rotated) {
+        if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
+          posY = y0;
+        }
+      } // 1 point that marks the line position
+
+
+      return [[posX, posY - (y0 - offset)], [posX, posY - (y0 - offset)], // needed for compatibility
+      [posX, posY - (y0 - offset)], // needed for compatibility
+      [posX, posY - (y0 - offset)] // needed for compatibility
+      ];
+    };
+  };
+
+  ChartInternal.prototype.lineWithRegions = function (d, x, y, _regions) {
+    var $$ = this,
+        config = $$.config,
+        prev = -1,
+        i,
+        j,
+        s = "M",
+        sWithRegion,
+        xp,
+        yp,
+        dx,
+        dy,
+        dd,
+        diff,
+        diffx2,
+        xOffset = $$.isCategorized() ? 0.5 : 0,
+        xValue,
+        yValue,
+        regions = [];
+
+    function isWithinRegions(x, regions) {
+      var i;
+
+      for (i = 0; i < regions.length; i++) {
+        if (regions[i].start < x && x <= regions[i].end) {
+          return true;
+        }
+      }
 
 
-    ChartInternal.prototype.initRegion = function () {
-        var $$ = this;
-        $$.region = $$.main.append('g').attr("clip-path", $$.clipPath).attr("class", CLASS.regions);
-    };
-    ChartInternal.prototype.updateRegion = function (duration) {
-        var $$ = this,
-            config = $$.config;
+      return false;
+    } // Check start/end of regions
 
 
-        // hide if arc type
-        $$.region.style('visibility', $$.hasArcType() ? 'hidden' : 'visible');
 
 
-        var mainRegion = $$.main.select('.' + CLASS.regions).selectAll('.' + CLASS.region).data(config.regions);
-        var mainRegionEnter = mainRegion.enter().append('rect').attr("x", $$.regionX.bind($$)).attr("y", $$.regionY.bind($$)).attr("width", $$.regionWidth.bind($$)).attr("height", $$.regionHeight.bind($$)).style("fill-opacity", 0);
-        $$.mainRegion = mainRegionEnter.merge(mainRegion).attr('class', $$.classRegion.bind($$));
-        mainRegion.exit().transition().duration(duration).style("opacity", 0).remove();
-    };
-    ChartInternal.prototype.redrawRegion = function (withTransition, transition) {
-        var $$ = this,
-            regions = $$.mainRegion;
-        return [(withTransition ? regions.transition(transition) : regions).attr("x", $$.regionX.bind($$)).attr("y", $$.regionY.bind($$)).attr("width", $$.regionWidth.bind($$)).attr("height", $$.regionHeight.bind($$)).style("fill-opacity", function (d) {
-            return isValue(d.opacity) ? d.opacity : 0.1;
-        })];
-    };
-    ChartInternal.prototype.regionX = function (d) {
-        var $$ = this,
-            config = $$.config,
-            xPos,
-            yScale = d.axis === 'y' ? $$.y : $$.y2;
-        if (d.axis === 'y' || d.axis === 'y2') {
-            xPos = config.axis_rotated ? 'start' in d ? yScale(d.start) : 0 : 0;
-        } else {
-            xPos = config.axis_rotated ? 0 : 'start' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.start) : d.start) : 0;
-        }
-        return xPos;
-    };
-    ChartInternal.prototype.regionY = function (d) {
-        var $$ = this,
-            config = $$.config,
-            yPos,
-            yScale = d.axis === 'y' ? $$.y : $$.y2;
-        if (d.axis === 'y' || d.axis === 'y2') {
-            yPos = config.axis_rotated ? 0 : 'end' in d ? yScale(d.end) : 0;
-        } else {
-            yPos = config.axis_rotated ? 'start' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.start) : d.start) : 0 : 0;
-        }
-        return yPos;
-    };
-    ChartInternal.prototype.regionWidth = function (d) {
-        var $$ = this,
-            config = $$.config,
-            start = $$.regionX(d),
-            end,
-            yScale = d.axis === 'y' ? $$.y : $$.y2;
-        if (d.axis === 'y' || d.axis === 'y2') {
-            end = config.axis_rotated ? 'end' in d ? yScale(d.end) : $$.width : $$.width;
+    if (isDefined(_regions)) {
+      for (i = 0; i < _regions.length; i++) {
+        regions[i] = {};
+
+        if (isUndefined(_regions[i].start)) {
+          regions[i].start = d[0].x;
         } else {
         } else {
-            end = config.axis_rotated ? $$.width : 'end' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.end) : d.end) : $$.width;
+          regions[i].start = $$.isTimeSeries() ? $$.parseDate(_regions[i].start) : _regions[i].start;
         }
         }
-        return end < start ? 0 : end - start;
-    };
-    ChartInternal.prototype.regionHeight = function (d) {
-        var $$ = this,
-            config = $$.config,
-            start = this.regionY(d),
-            end,
-            yScale = d.axis === 'y' ? $$.y : $$.y2;
-        if (d.axis === 'y' || d.axis === 'y2') {
-            end = config.axis_rotated ? $$.height : 'start' in d ? yScale(d.start) : $$.height;
+
+        if (isUndefined(_regions[i].end)) {
+          regions[i].end = d[d.length - 1].x;
         } else {
         } else {
-            end = config.axis_rotated ? 'end' in d ? $$.x($$.isTimeSeries() ? $$.parseDate(d.end) : d.end) : $$.height : $$.height;
+          regions[i].end = $$.isTimeSeries() ? $$.parseDate(_regions[i].end) : _regions[i].end;
         }
         }
-        return end < start ? 0 : end - start;
-    };
-    ChartInternal.prototype.isRegionOnX = function (d) {
-        return !d.axis || d.axis === 'x';
-    };
+      }
+    } // Set scales
+
 
 
-    ChartInternal.prototype.getScale = function (min, max, forTimeseries) {
-        return (forTimeseries ? this.d3.scaleTime() : this.d3.scaleLinear()).range([min, max]);
+    xValue = config.axis_rotated ? function (d) {
+      return y(d.value);
+    } : function (d) {
+      return x(d.x);
     };
     };
-    ChartInternal.prototype.getX = function (min, max, domain, offset) {
-        var $$ = this,
-            scale = $$.getScale(min, max, $$.isTimeSeries()),
-            _scale = domain ? scale.domain(domain) : scale,
-            key;
-        // Define customized scale if categorized axis
-        if ($$.isCategorized()) {
-            offset = offset || function () {
-                return 0;
-            };
-            scale = function scale(d, raw) {
-                var v = _scale(d) + offset(d);
-                return raw ? v : Math.ceil(v);
-            };
+    yValue = config.axis_rotated ? function (d) {
+      return x(d.x);
+    } : function (d) {
+      return y(d.value);
+    }; // Define svg generator function for region
+
+    function generateM(points) {
+      return 'M' + points[0][0] + ' ' + points[0][1] + ' ' + points[1][0] + ' ' + points[1][1];
+    }
+
+    if ($$.isTimeSeries()) {
+      sWithRegion = function sWithRegion(d0, d1, j, diff) {
+        var x0 = d0.x.getTime(),
+            x_diff = d1.x - d0.x,
+            xv0 = new Date(x0 + x_diff * j),
+            xv1 = new Date(x0 + x_diff * (j + diff)),
+            points;
+
+        if (config.axis_rotated) {
+          points = [[y(yp(j)), x(xv0)], [y(yp(j + diff)), x(xv1)]];
         } else {
         } else {
-            scale = function scale(d, raw) {
-                var v = _scale(d);
-                return raw ? v : Math.ceil(v);
-            };
-        }
-        // define functions
-        for (key in _scale) {
-            scale[key] = _scale[key];
-        }
-        scale.orgDomain = function () {
-            return _scale.domain();
-        };
-        // define custom domain() for categorized axis
-        if ($$.isCategorized()) {
-            scale.domain = function (domain) {
-                if (!arguments.length) {
-                    domain = this.orgDomain();
-                    return [domain[0], domain[1] + 1];
-                }
-                _scale.domain(domain);
-                return scale;
-            };
-        }
-        return scale;
-    };
-    ChartInternal.prototype.getY = function (min, max, domain) {
-        var scale = this.getScale(min, max, this.isTimeSeriesY());
-        if (domain) {
-            scale.domain(domain);
-        }
-        return scale;
-    };
-    ChartInternal.prototype.getYScale = function (id) {
-        return this.axis.getId(id) === 'y2' ? this.y2 : this.y;
-    };
-    ChartInternal.prototype.getSubYScale = function (id) {
-        return this.axis.getId(id) === 'y2' ? this.subY2 : this.subY;
-    };
-    ChartInternal.prototype.updateScales = function () {
-        var $$ = this,
-            config = $$.config,
-            forInit = !$$.x;
-        // update edges
-        $$.xMin = config.axis_rotated ? 1 : 0;
-        $$.xMax = config.axis_rotated ? $$.height : $$.width;
-        $$.yMin = config.axis_rotated ? 0 : $$.height;
-        $$.yMax = config.axis_rotated ? $$.width : 1;
-        $$.subXMin = $$.xMin;
-        $$.subXMax = $$.xMax;
-        $$.subYMin = config.axis_rotated ? 0 : $$.height2;
-        $$.subYMax = config.axis_rotated ? $$.width2 : 1;
-        // update scales
-        $$.x = $$.getX($$.xMin, $$.xMax, forInit ? undefined : $$.x.orgDomain(), function () {
-            return $$.xAxis.tickOffset();
-        });
-        $$.y = $$.getY($$.yMin, $$.yMax, forInit ? config.axis_y_default : $$.y.domain());
-        $$.y2 = $$.getY($$.yMin, $$.yMax, forInit ? config.axis_y2_default : $$.y2.domain());
-        $$.subX = $$.getX($$.xMin, $$.xMax, $$.orgXDomain, function (d) {
-            return d % 1 ? 0 : $$.subXAxis.tickOffset();
-        });
-        $$.subY = $$.getY($$.subYMin, $$.subYMax, forInit ? config.axis_y_default : $$.subY.domain());
-        $$.subY2 = $$.getY($$.subYMin, $$.subYMax, forInit ? config.axis_y2_default : $$.subY2.domain());
-        // update axes
-        $$.xAxisTickFormat = $$.axis.getXAxisTickFormat();
-        $$.xAxisTickValues = $$.axis.getXAxisTickValues();
-        $$.yAxisTickValues = $$.axis.getYAxisTickValues();
-        $$.y2AxisTickValues = $$.axis.getY2AxisTickValues();
-
-        $$.xAxis = $$.axis.getXAxis($$.x, $$.xOrient, $$.xAxisTickFormat, $$.xAxisTickValues, config.axis_x_tick_outer);
-        $$.subXAxis = $$.axis.getXAxis($$.subX, $$.subXOrient, $$.xAxisTickFormat, $$.xAxisTickValues, config.axis_x_tick_outer);
-        $$.yAxis = $$.axis.getYAxis($$.y, $$.yOrient, config.axis_y_tick_format, $$.yAxisTickValues, config.axis_y_tick_outer);
-        $$.y2Axis = $$.axis.getYAxis($$.y2, $$.y2Orient, config.axis_y2_tick_format, $$.y2AxisTickValues, config.axis_y2_tick_outer);
-
-        // Set initialized scales to brush and zoom
-        if (!forInit) {
-            if ($$.brush) {
-                $$.brush.updateScale($$.subX);
-            }
-        }
-        // update for arc
-        if ($$.updateArc) {
-            $$.updateArc();
+          points = [[x(xv0), y(yp(j))], [x(xv1), y(yp(j + diff))]];
         }
         }
-    };
 
 
-    ChartInternal.prototype.selectPoint = function (target, d, i) {
-        var $$ = this,
-            config = $$.config,
-            cx = (config.axis_rotated ? $$.circleY : $$.circleX).bind($$),
-            cy = (config.axis_rotated ? $$.circleX : $$.circleY).bind($$),
-            r = $$.pointSelectR.bind($$);
-        config.data_onselected.call($$.api, d, target.node());
-        // add selected-circle on low layer g
-        $$.main.select('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.selectedCircle + '-' + i).data([d]).enter().append('circle').attr("class", function () {
-            return $$.generateClass(CLASS.selectedCircle, i);
-        }).attr("cx", cx).attr("cy", cy).attr("stroke", function () {
-            return $$.color(d);
-        }).attr("r", function (d) {
-            return $$.pointSelectR(d) * 1.4;
-        }).transition().duration(100).attr("r", r);
-    };
-    ChartInternal.prototype.unselectPoint = function (target, d, i) {
-        var $$ = this;
-        $$.config.data_onunselected.call($$.api, d, target.node());
-        // remove selected-circle from low layer g
-        $$.main.select('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(d.id)).selectAll('.' + CLASS.selectedCircle + '-' + i).transition().duration(100).attr('r', 0).remove();
-    };
-    ChartInternal.prototype.togglePoint = function (selected, target, d, i) {
-        selected ? this.selectPoint(target, d, i) : this.unselectPoint(target, d, i);
-    };
-    ChartInternal.prototype.selectPath = function (target, d) {
-        var $$ = this;
-        $$.config.data_onselected.call($$, d, target.node());
-        if ($$.config.interaction_brighten) {
-            target.transition().duration(100).style("fill", function () {
-                return $$.d3.rgb($$.color(d)).brighter(0.75);
-            });
-        }
-    };
-    ChartInternal.prototype.unselectPath = function (target, d) {
-        var $$ = this;
-        $$.config.data_onunselected.call($$, d, target.node());
-        if ($$.config.interaction_brighten) {
-            target.transition().duration(100).style("fill", function () {
-                return $$.color(d);
-            });
-        }
-    };
-    ChartInternal.prototype.togglePath = function (selected, target, d, i) {
-        selected ? this.selectPath(target, d, i) : this.unselectPath(target, d, i);
-    };
-    ChartInternal.prototype.getToggle = function (that, d) {
-        var $$ = this,
-            toggle;
-        if (that.nodeName === 'circle') {
-            if ($$.isStepType(d)) {
-                // circle is hidden in step chart, so treat as within the click area
-                toggle = function toggle() {}; // TODO: how to select step chart?
-            } else {
-                toggle = $$.togglePoint;
-            }
-        } else if (that.nodeName === 'path') {
-            toggle = $$.togglePath;
-        }
-        return toggle;
-    };
-    ChartInternal.prototype.toggleShape = function (that, d, i) {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            shape = d3.select(that),
-            isSelected = shape.classed(CLASS.SELECTED),
-            toggle = $$.getToggle(that, d).bind($$);
-
-        if (config.data_selection_enabled && config.data_selection_isselectable(d)) {
-            if (!config.data_selection_multiple) {
-                $$.main.selectAll('.' + CLASS.shapes + (config.data_selection_grouped ? $$.getTargetSelectorSuffix(d.id) : "")).selectAll('.' + CLASS.shape).each(function (d, i) {
-                    var shape = d3.select(this);
-                    if (shape.classed(CLASS.SELECTED)) {
-                        toggle(false, shape.classed(CLASS.SELECTED, false), d, i);
-                    }
-                });
-            }
-            shape.classed(CLASS.SELECTED, !isSelected);
-            toggle(!isSelected, shape, d, i);
-        }
-    };
+        return generateM(points);
+      };
+    } else {
+      sWithRegion = function sWithRegion(d0, d1, j, diff) {
+        var points;
 
 
-    ChartInternal.prototype.initBar = function () {
-        var $$ = this;
-        $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartBars);
-    };
-    ChartInternal.prototype.updateTargetsForBar = function (targets) {
-        var $$ = this,
-            config = $$.config,
-            mainBars,
-            mainBarEnter,
-            classChartBar = $$.classChartBar.bind($$),
-            classBars = $$.classBars.bind($$),
-            classFocus = $$.classFocus.bind($$);
-        mainBars = $$.main.select('.' + CLASS.chartBars).selectAll('.' + CLASS.chartBar).data(targets).attr('class', function (d) {
-            return classChartBar(d) + classFocus(d);
-        });
-        mainBarEnter = mainBars.enter().append('g').attr('class', classChartBar).style("pointer-events", "none");
-        // Bars for each data
-        mainBarEnter.append('g').attr("class", classBars).style("cursor", function (d) {
-            return config.data_selection_isselectable(d) ? "pointer" : null;
-        });
-    };
-    ChartInternal.prototype.updateBar = function (durationForExit) {
-        var $$ = this,
-            barData = $$.barData.bind($$),
-            classBar = $$.classBar.bind($$),
-            initialOpacity = $$.initialOpacity.bind($$),
-            color = function color(d) {
-            return $$.color(d.id);
-        };
-        var mainBar = $$.main.selectAll('.' + CLASS.bars).selectAll('.' + CLASS.bar).data(barData);
-        var mainBarEnter = mainBar.enter().append('path').attr("class", classBar).style("stroke", color).style("fill", color);
-        $$.mainBar = mainBarEnter.merge(mainBar).style("opacity", initialOpacity);
-        mainBar.exit().transition().duration(durationForExit).style("opacity", 0);
-    };
-    ChartInternal.prototype.redrawBar = function (drawBar, withTransition, transition) {
-        return [(withTransition ? this.mainBar.transition(transition) : this.mainBar).attr('d', drawBar).style("stroke", this.color).style("fill", this.color).style("opacity", 1)];
-    };
-    ChartInternal.prototype.getBarW = function (axis, barTargetsNum) {
-        var $$ = this,
-            config = $$.config,
-            w = typeof config.bar_width === 'number' ? config.bar_width : barTargetsNum ? axis.tickInterval() * config.bar_width_ratio / barTargetsNum : 0;
-        return config.bar_width_max && w > config.bar_width_max ? config.bar_width_max : w;
-    };
-    ChartInternal.prototype.getBars = function (i, id) {
-        var $$ = this;
-        return (id ? $$.main.selectAll('.' + CLASS.bars + $$.getTargetSelectorSuffix(id)) : $$.main).selectAll('.' + CLASS.bar + (isValue(i) ? '-' + i : ''));
-    };
-    ChartInternal.prototype.expandBars = function (i, id, reset) {
-        var $$ = this;
-        if (reset) {
-            $$.unexpandBars();
+        if (config.axis_rotated) {
+          points = [[y(yp(j), true), x(xp(j))], [y(yp(j + diff), true), x(xp(j + diff))]];
+        } else {
+          points = [[x(xp(j), true), y(yp(j))], [x(xp(j + diff), true), y(yp(j + diff))]];
         }
         }
-        $$.getBars(i, id).classed(CLASS.EXPANDED, true);
-    };
-    ChartInternal.prototype.unexpandBars = function (i) {
-        var $$ = this;
-        $$.getBars(i).classed(CLASS.EXPANDED, false);
-    };
-    ChartInternal.prototype.generateDrawBar = function (barIndices, isSub) {
-        var $$ = this,
-            config = $$.config,
-            getPoints = $$.generateGetBarPoints(barIndices, isSub);
-        return function (d, i) {
-            // 4 points that make a bar
-            var points = getPoints(d, i);
 
 
-            // switch points if axis is rotated, not applicable for sub chart
-            var indexX = config.axis_rotated ? 1 : 0;
-            var indexY = config.axis_rotated ? 0 : 1;
+        return generateM(points);
+      };
+    } // Generate
 
 
-            var path = 'M ' + points[0][indexX] + ',' + points[0][indexY] + ' ' + 'L' + points[1][indexX] + ',' + points[1][indexY] + ' ' + 'L' + points[2][indexX] + ',' + points[2][indexY] + ' ' + 'L' + points[3][indexX] + ',' + points[3][indexY] + ' ' + 'z';
 
 
-            return path;
-        };
-    };
-    ChartInternal.prototype.generateGetBarPoints = function (barIndices, isSub) {
-        var $$ = this,
-            axis = isSub ? $$.subXAxis : $$.xAxis,
-            barTargetsNum = barIndices.__max__ + 1,
-            barW = $$.getBarW(axis, barTargetsNum),
-            barX = $$.getShapeX(barW, barTargetsNum, barIndices, !!isSub),
-            barY = $$.getShapeY(!!isSub),
-            barOffset = $$.getShapeOffset($$.isBarType, barIndices, !!isSub),
-            barSpaceOffset = barW * ($$.config.bar_space / 2),
-            yScale = isSub ? $$.getSubYScale : $$.getYScale;
-        return function (d, i) {
-            var y0 = yScale.call($$, d.id)(0),
-                offset = barOffset(d, i) || y0,
-                // offset is for stacked bar chart
-            posX = barX(d),
-                posY = barY(d);
-            // fix posY not to overflow opposite quadrant
-            if ($$.config.axis_rotated) {
-                if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
-                    posY = y0;
-                }
-            }
-            // 4 points that make a bar
-            return [[posX + barSpaceOffset, offset], [posX + barSpaceOffset, posY - (y0 - offset)], [posX + barW - barSpaceOffset, posY - (y0 - offset)], [posX + barW - barSpaceOffset, offset]];
-        };
-    };
-    ChartInternal.prototype.isWithinBar = function (mouse, that) {
-        var box = that.getBoundingClientRect(),
-            seg0 = that.pathSegList.getItem(0),
-            seg1 = that.pathSegList.getItem(1),
-            x = Math.min(seg0.x, seg1.x),
-            y = Math.min(seg0.y, seg1.y),
-            w = box.width,
-            h = box.height,
-            offset = 2,
-            sx = x - offset,
-            ex = x + w + offset,
-            sy = y + h + offset,
-            ey = y - offset;
-        return sx < mouse[0] && mouse[0] < ex && ey < mouse[1] && mouse[1] < sy;
-    };
+    for (i = 0; i < d.length; i++) {
+      // Draw as normal
+      if (isUndefined(regions) || !isWithinRegions(d[i].x, regions)) {
+        s += " " + xValue(d[i]) + " " + yValue(d[i]);
+      } // Draw with region // TODO: Fix for horizotal charts
+      else {
+          xp = $$.getScale(d[i - 1].x + xOffset, d[i].x + xOffset, $$.isTimeSeries());
+          yp = $$.getScale(d[i - 1].value, d[i].value);
+          dx = x(d[i].x) - x(d[i - 1].x);
+          dy = y(d[i].value) - y(d[i - 1].value);
+          dd = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));
+          diff = 2 / dd;
+          diffx2 = diff * 2;
 
 
-    ChartInternal.prototype.getShapeIndices = function (typeFilter) {
-        var $$ = this,
-            config = $$.config,
-            indices = {},
-            i = 0,
-            j,
-            k;
-        $$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$)).forEach(function (d) {
-            for (j = 0; j < config.data_groups.length; j++) {
-                if (config.data_groups[j].indexOf(d.id) < 0) {
-                    continue;
-                }
-                for (k = 0; k < config.data_groups[j].length; k++) {
-                    if (config.data_groups[j][k] in indices) {
-                        indices[d.id] = indices[config.data_groups[j][k]];
-                        break;
-                    }
-                }
-            }
-            if (isUndefined(indices[d.id])) {
-                indices[d.id] = i++;
-            }
-        });
-        indices.__max__ = i - 1;
-        return indices;
-    };
-    ChartInternal.prototype.getShapeX = function (offset, targetsNum, indices, isSub) {
-        var $$ = this,
-            scale = isSub ? $$.subX : $$.x;
-        return function (d) {
-            var index = d.id in indices ? indices[d.id] : 0;
-            return d.x || d.x === 0 ? scale(d.x) - offset * (targetsNum / 2 - index) : 0;
-        };
-    };
-    ChartInternal.prototype.getShapeY = function (isSub) {
-        var $$ = this;
-        return function (d) {
-            var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id);
-            return scale(d.value);
-        };
-    };
-    ChartInternal.prototype.getShapeOffset = function (typeFilter, indices, isSub) {
-        var $$ = this,
-            targets = $$.orderTargets($$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$))),
-            targetIds = targets.map(function (t) {
-            return t.id;
-        });
-        return function (d, i) {
-            var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id),
-                y0 = scale(0),
-                offset = y0;
-            targets.forEach(function (t) {
-                var values = $$.isStepType(d) ? $$.convertValuesToStep(t.values) : t.values;
-                if (t.id === d.id || indices[t.id] !== indices[d.id]) {
-                    return;
-                }
-                if (targetIds.indexOf(t.id) < targetIds.indexOf(d.id)) {
-                    // check if the x values line up
-                    if (typeof values[i] === 'undefined' || +values[i].x !== +d.x) {
-                        // "+" for timeseries
-                        // if not, try to find the value that does line up
-                        i = -1;
-                        values.forEach(function (v, j) {
-                            if (v.x === d.x) {
-                                i = j;
-                            }
-                        });
-                    }
-                    if (i in values && values[i].value * d.value >= 0) {
-                        offset += scale(values[i].value) - y0;
-                    }
-                }
-            });
-            return offset;
-        };
-    };
-    ChartInternal.prototype.isWithinShape = function (that, d) {
-        var $$ = this,
-            shape = $$.d3.select(that),
-            isWithin;
-        if (!$$.isTargetToShow(d.id)) {
-            isWithin = false;
-        } else if (that.nodeName === 'circle') {
-            isWithin = $$.isStepType(d) ? $$.isWithinStep(that, $$.getYScale(d.id)(d.value)) : $$.isWithinCircle(that, $$.pointSelectR(d) * 1.5);
-        } else if (that.nodeName === 'path') {
-            isWithin = shape.classed(CLASS.bar) ? $$.isWithinBar($$.d3.mouse(that), that) : true;
+          for (j = diff; j <= 1; j += diffx2) {
+            s += sWithRegion(d[i - 1], d[i], j, diff);
+          }
         }
         }
-        return isWithin;
-    };
 
 
-    ChartInternal.prototype.getInterpolate = function (d) {
-        var $$ = this,
-            d3 = $$.d3,
-            types = {
-            'linear': d3.curveLinear,
-            'linear-closed': d3.curveLinearClosed,
-            'basis': d3.curveBasis,
-            'basis-open': d3.curveBasisOpen,
-            'basis-closed': d3.curveBasisClosed,
-            'bundle': d3.curveBundle,
-            'cardinal': d3.curveCardinal,
-            'cardinal-open': d3.curveCardinalOpen,
-            'cardinal-closed': d3.curveCardinalClosed,
-            'monotone': d3.curveMonotoneX,
-            'step': d3.curveStep,
-            'step-before': d3.curveStepBefore,
-            'step-after': d3.curveStepAfter
-        },
-            type;
+      prev = d[i].x;
+    }
 
 
-        if ($$.isSplineType(d)) {
-            type = types[$$.config.spline_interpolation_type] || types.cardinal;
-        } else if ($$.isStepType(d)) {
-            type = types[$$.config.line_step_type];
-        } else {
-            type = types.linear;
-        }
-        return type;
-    };
+    return s;
+  };
+
+  ChartInternal.prototype.updateArea = function (durationForExit) {
+    var $$ = this,
+        d3 = $$.d3;
+    var mainArea = $$.main.selectAll('.' + CLASS.areas).selectAll('.' + CLASS.area).data($$.lineData.bind($$));
+    var mainAreaEnter = mainArea.enter().append('path').attr("class", $$.classArea.bind($$)).style("fill", $$.color).style("opacity", function () {
+      $$.orgAreaOpacity = +d3.select(this).style('opacity');
+      return 0;
+    });
+    $$.mainArea = mainAreaEnter.merge(mainArea).style("opacity", $$.orgAreaOpacity);
+    mainArea.exit().transition().duration(durationForExit).style('opacity', 0);
+  };
+
+  ChartInternal.prototype.redrawArea = function (drawArea, withTransition, transition) {
+    return [(withTransition ? this.mainArea.transition(transition) : this.mainArea).attr("d", drawArea).style("fill", this.color).style("opacity", this.orgAreaOpacity)];
+  };
+
+  ChartInternal.prototype.generateDrawArea = function (areaIndices, isSub) {
+    var $$ = this,
+        config = $$.config,
+        area = $$.d3.area(),
+        getPoints = $$.generateGetAreaPoints(areaIndices, isSub),
+        yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale,
+        xValue = function xValue(d) {
+      return (isSub ? $$.subxx : $$.xx).call($$, d);
+    },
+        value0 = function value0(d, i) {
+      return config.data_groups.length > 0 ? getPoints(d, i)[0][1] : yScaleGetter.call($$, d.id)($$.getAreaBaseValue(d.id));
+    },
+        value1 = function value1(d, i) {
+      return config.data_groups.length > 0 ? getPoints(d, i)[1][1] : yScaleGetter.call($$, d.id)(d.value);
+    };
+
+    area = config.axis_rotated ? area.x0(value0).x1(value1).y(xValue) : area.x(xValue).y0(config.area_above ? 0 : value0).y1(value1);
+
+    if (!config.line_connectNull) {
+      area = area.defined(function (d) {
+        return d.value !== null;
+      });
+    }
 
 
-    ChartInternal.prototype.initLine = function () {
-        var $$ = this;
-        $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartLines);
-    };
-    ChartInternal.prototype.updateTargetsForLine = function (targets) {
-        var $$ = this,
-            config = $$.config,
-            mainLines,
-            mainLineEnter,
-            classChartLine = $$.classChartLine.bind($$),
-            classLines = $$.classLines.bind($$),
-            classAreas = $$.classAreas.bind($$),
-            classCircles = $$.classCircles.bind($$),
-            classFocus = $$.classFocus.bind($$);
-        mainLines = $$.main.select('.' + CLASS.chartLines).selectAll('.' + CLASS.chartLine).data(targets).attr('class', function (d) {
-            return classChartLine(d) + classFocus(d);
-        });
-        mainLineEnter = mainLines.enter().append('g').attr('class', classChartLine).style('opacity', 0).style("pointer-events", "none");
-        // Lines for each data
-        mainLineEnter.append('g').attr("class", classLines);
-        // Areas
-        mainLineEnter.append('g').attr('class', classAreas);
-        // Circles for each data point on lines
-        mainLineEnter.append('g').attr("class", function (d) {
-            return $$.generateClass(CLASS.selectedCircles, d.id);
-        });
-        mainLineEnter.append('g').attr("class", classCircles).style("cursor", function (d) {
-            return config.data_selection_isselectable(d) ? "pointer" : null;
-        });
-        // Update date for selected circles
-        targets.forEach(function (t) {
-            $$.main.selectAll('.' + CLASS.selectedCircles + $$.getTargetSelectorSuffix(t.id)).selectAll('.' + CLASS.selectedCircle).each(function (d) {
-                d.value = t.values[d.index].value;
-            });
-        });
-        // MEMO: can not keep same color...
-        //mainLineUpdate.exit().remove();
-    };
-    ChartInternal.prototype.updateLine = function (durationForExit) {
-        var $$ = this;
-        var mainLine = $$.main.selectAll('.' + CLASS.lines).selectAll('.' + CLASS.line).data($$.lineData.bind($$));
-        var mainLineEnter = mainLine.enter().append('path').attr('class', $$.classLine.bind($$)).style("stroke", $$.color);
-        $$.mainLine = mainLineEnter.merge(mainLine).style("opacity", $$.initialOpacity.bind($$)).style('shape-rendering', function (d) {
-            return $$.isStepType(d) ? 'crispEdges' : '';
-        }).attr('transform', null);
-        mainLine.exit().transition().duration(durationForExit).style('opacity', 0);
-    };
-    ChartInternal.prototype.redrawLine = function (drawLine, withTransition, transition) {
-        return [(withTransition ? this.mainLine.transition(transition) : this.mainLine).attr("d", drawLine).style("stroke", this.color).style("opacity", 1)];
-    };
-    ChartInternal.prototype.generateDrawLine = function (lineIndices, isSub) {
-        var $$ = this,
-            config = $$.config,
-            line = $$.d3.line(),
-            getPoints = $$.generateGetLinePoints(lineIndices, isSub),
-            yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale,
-            xValue = function xValue(d) {
-            return (isSub ? $$.subxx : $$.xx).call($$, d);
-        },
-            yValue = function yValue(d, i) {
-            return config.data_groups.length > 0 ? getPoints(d, i)[0][1] : yScaleGetter.call($$, d.id)(d.value);
-        };
+    return function (d) {
+      var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
+          x0 = 0,
+          y0 = 0,
+          path;
 
 
-        line = config.axis_rotated ? line.x(yValue).y(xValue) : line.x(xValue).y(yValue);
-        if (!config.line_connectNull) {
-            line = line.defined(function (d) {
-                return d.value != null;
-            });
+      if ($$.isAreaType(d)) {
+        if ($$.isStepType(d)) {
+          values = $$.convertValuesToStep(values);
         }
         }
-        return function (d) {
-            var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
-                x = isSub ? $$.subX : $$.x,
-                y = yScaleGetter.call($$, d.id),
-                x0 = 0,
-                y0 = 0,
-                path;
-            if ($$.isLineType(d)) {
-                if (config.data_regions[d.id]) {
-                    path = $$.lineWithRegions(values, x, y, config.data_regions[d.id]);
-                } else {
-                    if ($$.isStepType(d)) {
-                        values = $$.convertValuesToStep(values);
-                    }
-                    path = line.curve($$.getInterpolate(d))(values);
-                }
-            } else {
-                if (values[0]) {
-                    x0 = x(values[0].x);
-                    y0 = y(values[0].value);
-                }
-                path = config.axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
-            }
-            return path ? path : "M 0 0";
-        };
-    };
-    ChartInternal.prototype.generateGetLinePoints = function (lineIndices, isSub) {
-        // partial duplication of generateGetBarPoints
-        var $$ = this,
-            config = $$.config,
-            lineTargetsNum = lineIndices.__max__ + 1,
-            x = $$.getShapeX(0, lineTargetsNum, lineIndices, !!isSub),
-            y = $$.getShapeY(!!isSub),
-            lineOffset = $$.getShapeOffset($$.isLineType, lineIndices, !!isSub),
-            yScale = isSub ? $$.getSubYScale : $$.getYScale;
-        return function (d, i) {
-            var y0 = yScale.call($$, d.id)(0),
-                offset = lineOffset(d, i) || y0,
-                // offset is for stacked area chart
-            posX = x(d),
-                posY = y(d);
-            // fix posY not to overflow opposite quadrant
-            if (config.axis_rotated) {
-                if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
-                    posY = y0;
-                }
-            }
-            // 1 point that marks the line position
-            return [[posX, posY - (y0 - offset)], [posX, posY - (y0 - offset)], // needed for compatibility
-            [posX, posY - (y0 - offset)], // needed for compatibility
-            [posX, posY - (y0 - offset)] // needed for compatibility
-            ];
-        };
-    };
 
 
-    ChartInternal.prototype.lineWithRegions = function (d, x, y, _regions) {
-        var $$ = this,
-            config = $$.config,
-            prev = -1,
-            i,
-            j,
-            s = "M",
-            sWithRegion,
-            xp,
-            yp,
-            dx,
-            dy,
-            dd,
-            diff,
-            diffx2,
-            xOffset = $$.isCategorized() ? 0.5 : 0,
-            xValue,
-            yValue,
-            regions = [];
-
-        function isWithinRegions(x, regions) {
-            var i;
-            for (i = 0; i < regions.length; i++) {
-                if (regions[i].start < x && x <= regions[i].end) {
-                    return true;
-                }
-            }
-            return false;
+        path = area.curve($$.getInterpolate(d))(values);
+      } else {
+        if (values[0]) {
+          x0 = $$.x(values[0].x);
+          y0 = $$.getYScale(d.id)(values[0].value);
         }
 
         }
 
-        // Check start/end of regions
-        if (isDefined(_regions)) {
-            for (i = 0; i < _regions.length; i++) {
-                regions[i] = {};
-                if (isUndefined(_regions[i].start)) {
-                    regions[i].start = d[0].x;
-                } else {
-                    regions[i].start = $$.isTimeSeries() ? $$.parseDate(_regions[i].start) : _regions[i].start;
-                }
-                if (isUndefined(_regions[i].end)) {
-                    regions[i].end = d[d.length - 1].x;
-                } else {
-                    regions[i].end = $$.isTimeSeries() ? $$.parseDate(_regions[i].end) : _regions[i].end;
-                }
-            }
-        }
+        path = config.axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
+      }
 
 
-        // Set scales
-        xValue = config.axis_rotated ? function (d) {
-            return y(d.value);
-        } : function (d) {
-            return x(d.x);
-        };
-        yValue = config.axis_rotated ? function (d) {
-            return x(d.x);
-        } : function (d) {
-            return y(d.value);
-        };
+      return path ? path : "M 0 0";
+    };
+  };
+
+  ChartInternal.prototype.getAreaBaseValue = function () {
+    return 0;
+  };
+
+  ChartInternal.prototype.generateGetAreaPoints = function (areaIndices, isSub) {
+    // partial duplication of generateGetBarPoints
+    var $$ = this,
+        config = $$.config,
+        areaTargetsNum = areaIndices.__max__ + 1,
+        x = $$.getShapeX(0, areaTargetsNum, areaIndices, !!isSub),
+        y = $$.getShapeY(!!isSub),
+        areaOffset = $$.getShapeOffset($$.isAreaType, areaIndices, !!isSub),
+        yScale = isSub ? $$.getSubYScale : $$.getYScale;
+    return function (d, i) {
+      var y0 = yScale.call($$, d.id)(0),
+          offset = areaOffset(d, i) || y0,
+          // offset is for stacked area chart
+      posX = x(d),
+          posY = y(d); // fix posY not to overflow opposite quadrant
+
+      if (config.axis_rotated) {
+        if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
+          posY = y0;
+        }
+      } // 1 point that marks the area position
+
+
+      return [[posX, offset], [posX, posY - (y0 - offset)], [posX, posY - (y0 - offset)], // needed for compatibility
+      [posX, offset] // needed for compatibility
+      ];
+    };
+  };
+
+  ChartInternal.prototype.updateCircle = function (cx, cy) {
+    var $$ = this;
+    var mainCircle = $$.main.selectAll('.' + CLASS.circles).selectAll('.' + CLASS.circle).data($$.lineOrScatterData.bind($$));
+    var mainCircleEnter = mainCircle.enter().append("circle").attr("class", $$.classCircle.bind($$)).attr("cx", cx).attr("cy", cy).attr("r", $$.pointR.bind($$)).style("fill", $$.color);
+    $$.mainCircle = mainCircleEnter.merge(mainCircle).style("opacity", $$.initialOpacityForCircle.bind($$));
+    mainCircle.exit().style("opacity", 0);
+  };
+
+  ChartInternal.prototype.redrawCircle = function (cx, cy, withTransition, transition) {
+    var $$ = this,
+        selectedCircles = $$.main.selectAll('.' + CLASS.selectedCircle);
+    return [(withTransition ? $$.mainCircle.transition(transition) : $$.mainCircle).style('opacity', this.opacityForCircle.bind($$)).style("fill", $$.color).attr("cx", cx).attr("cy", cy), (withTransition ? selectedCircles.transition(transition) : selectedCircles).attr("cx", cx).attr("cy", cy)];
+  };
+
+  ChartInternal.prototype.circleX = function (d) {
+    return d.x || d.x === 0 ? this.x(d.x) : null;
+  };
+
+  ChartInternal.prototype.updateCircleY = function () {
+    var $$ = this,
+        lineIndices,
+        getPoints;
+
+    if ($$.config.data_groups.length > 0) {
+      lineIndices = $$.getShapeIndices($$.isLineType), getPoints = $$.generateGetLinePoints(lineIndices);
+
+      $$.circleY = function (d, i) {
+        return getPoints(d, i)[0][1];
+      };
+    } else {
+      $$.circleY = function (d) {
+        return $$.getYScale(d.id)(d.value);
+      };
+    }
+  };
 
 
-        // Define svg generator function for region
-        function generateM(points) {
-            return 'M' + points[0][0] + ' ' + points[0][1] + ' ' + points[1][0] + ' ' + points[1][1];
-        }
-        if ($$.isTimeSeries()) {
-            sWithRegion = function sWithRegion(d0, d1, j, diff) {
-                var x0 = d0.x.getTime(),
-                    x_diff = d1.x - d0.x,
-                    xv0 = new Date(x0 + x_diff * j),
-                    xv1 = new Date(x0 + x_diff * (j + diff)),
-                    points;
-                if (config.axis_rotated) {
-                    points = [[y(yp(j)), x(xv0)], [y(yp(j + diff)), x(xv1)]];
-                } else {
-                    points = [[x(xv0), y(yp(j))], [x(xv1), y(yp(j + diff))]];
-                }
-                return generateM(points);
-            };
-        } else {
-            sWithRegion = function sWithRegion(d0, d1, j, diff) {
-                var points;
-                if (config.axis_rotated) {
-                    points = [[y(yp(j), true), x(xp(j))], [y(yp(j + diff), true), x(xp(j + diff))]];
-                } else {
-                    points = [[x(xp(j), true), y(yp(j))], [x(xp(j + diff), true), y(yp(j + diff))]];
-                }
-                return generateM(points);
-            };
-        }
+  ChartInternal.prototype.getCircles = function (i, id) {
+    var $$ = this;
+    return (id ? $$.main.selectAll('.' + CLASS.circles + $$.getTargetSelectorSuffix(id)) : $$.main).selectAll('.' + CLASS.circle + (isValue(i) ? '-' + i : ''));
+  };
 
 
-        // Generate
-        for (i = 0; i < d.length; i++) {
+  ChartInternal.prototype.expandCircles = function (i, id, reset) {
+    var $$ = this,
+        r = $$.pointExpandedR.bind($$);
 
 
-            // Draw as normal
-            if (isUndefined(regions) || !isWithinRegions(d[i].x, regions)) {
-                s += " " + xValue(d[i]) + " " + yValue(d[i]);
-            }
-            // Draw with region // TODO: Fix for horizotal charts
-            else {
-                    xp = $$.getScale(d[i - 1].x + xOffset, d[i].x + xOffset, $$.isTimeSeries());
-                    yp = $$.getScale(d[i - 1].value, d[i].value);
-
-                    dx = x(d[i].x) - x(d[i - 1].x);
-                    dy = y(d[i].value) - y(d[i - 1].value);
-                    dd = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));
-                    diff = 2 / dd;
-                    diffx2 = diff * 2;
-
-                    for (j = diff; j <= 1; j += diffx2) {
-                        s += sWithRegion(d[i - 1], d[i], j, diff);
-                    }
-                }
-            prev = d[i].x;
-        }
+    if (reset) {
+      $$.unexpandCircles();
+    }
 
 
-        return s;
-    };
+    $$.getCircles(i, id).classed(CLASS.EXPANDED, true).attr('r', r);
+  };
+
+  ChartInternal.prototype.unexpandCircles = function (i) {
+    var $$ = this,
+        r = $$.pointR.bind($$);
+    $$.getCircles(i).filter(function () {
+      return $$.d3.select(this).classed(CLASS.EXPANDED);
+    }).classed(CLASS.EXPANDED, false).attr('r', r);
+  };
+
+  ChartInternal.prototype.pointR = function (d) {
+    var $$ = this,
+        config = $$.config;
+    return $$.isStepType(d) ? 0 : isFunction(config.point_r) ? config.point_r(d) : config.point_r;
+  };
+
+  ChartInternal.prototype.pointExpandedR = function (d) {
+    var $$ = this,
+        config = $$.config;
+
+    if (config.point_focus_expand_enabled) {
+      return isFunction(config.point_focus_expand_r) ? config.point_focus_expand_r(d) : config.point_focus_expand_r ? config.point_focus_expand_r : $$.pointR(d) * 1.75;
+    } else {
+      return $$.pointR(d);
+    }
+  };
+
+  ChartInternal.prototype.pointSelectR = function (d) {
+    var $$ = this,
+        config = $$.config;
+    return isFunction(config.point_select_r) ? config.point_select_r(d) : config.point_select_r ? config.point_select_r : $$.pointR(d) * 4;
+  };
+
+  ChartInternal.prototype.isWithinCircle = function (that, r) {
+    var d3 = this.d3,
+        mouse = d3.mouse(that),
+        d3_this = d3.select(that),
+        cx = +d3_this.attr("cx"),
+        cy = +d3_this.attr("cy");
+    return Math.sqrt(Math.pow(cx - mouse[0], 2) + Math.pow(cy - mouse[1], 2)) < r;
+  };
+
+  ChartInternal.prototype.isWithinStep = function (that, y) {
+    return Math.abs(y - this.d3.mouse(that)[1]) < 30;
+  };
+
+  ChartInternal.prototype.getCurrentWidth = function () {
+    var $$ = this,
+        config = $$.config;
+    return config.size_width ? config.size_width : $$.getParentWidth();
+  };
+
+  ChartInternal.prototype.getCurrentHeight = function () {
+    var $$ = this,
+        config = $$.config,
+        h = config.size_height ? config.size_height : $$.getParentHeight();
+    return h > 0 ? h : 320 / ($$.hasType('gauge') && !config.gauge_fullCircle ? 2 : 1);
+  };
+
+  ChartInternal.prototype.getCurrentPaddingTop = function () {
+    var $$ = this,
+        config = $$.config,
+        padding = isValue(config.padding_top) ? config.padding_top : 0;
+
+    if ($$.title && $$.title.node()) {
+      padding += $$.getTitlePadding();
+    }
 
 
-    ChartInternal.prototype.updateArea = function (durationForExit) {
-        var $$ = this,
-            d3 = $$.d3;
-        var mainArea = $$.main.selectAll('.' + CLASS.areas).selectAll('.' + CLASS.area).data($$.lineData.bind($$));
-        var mainAreaEnter = mainArea.enter().append('path').attr("class", $$.classArea.bind($$)).style("fill", $$.color).style("opacity", function () {
-            $$.orgAreaOpacity = +d3.select(this).style('opacity');return 0;
-        });
-        $$.mainArea = mainAreaEnter.merge(mainArea).style("opacity", $$.orgAreaOpacity);
-        mainArea.exit().transition().duration(durationForExit).style('opacity', 0);
-    };
-    ChartInternal.prototype.redrawArea = function (drawArea, withTransition, transition) {
-        return [(withTransition ? this.mainArea.transition(transition) : this.mainArea).attr("d", drawArea).style("fill", this.color).style("opacity", this.orgAreaOpacity)];
-    };
-    ChartInternal.prototype.generateDrawArea = function (areaIndices, isSub) {
-        var $$ = this,
-            config = $$.config,
-            area = $$.d3.area(),
-            getPoints = $$.generateGetAreaPoints(areaIndices, isSub),
-            yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale,
-            xValue = function xValue(d) {
-            return (isSub ? $$.subxx : $$.xx).call($$, d);
-        },
-            value0 = function value0(d, i) {
-            return config.data_groups.length > 0 ? getPoints(d, i)[0][1] : yScaleGetter.call($$, d.id)($$.getAreaBaseValue(d.id));
-        },
-            value1 = function value1(d, i) {
-            return config.data_groups.length > 0 ? getPoints(d, i)[1][1] : yScaleGetter.call($$, d.id)(d.value);
-        };
+    return padding;
+  };
+
+  ChartInternal.prototype.getCurrentPaddingBottom = function () {
+    var config = this.config;
+    return isValue(config.padding_bottom) ? config.padding_bottom : 0;
+  };
+
+  ChartInternal.prototype.getCurrentPaddingLeft = function (withoutRecompute) {
+    var $$ = this,
+        config = $$.config;
+
+    if (isValue(config.padding_left)) {
+      return config.padding_left;
+    } else if (config.axis_rotated) {
+      return !config.axis_x_show || config.axis_x_inner ? 1 : Math.max(ceil10($$.getAxisWidthByAxisId('x', withoutRecompute)), 40);
+    } else if (!config.axis_y_show || config.axis_y_inner) {
+      // && !config.axis_rotated
+      return $$.axis.getYAxisLabelPosition().isOuter ? 30 : 1;
+    } else {
+      return ceil10($$.getAxisWidthByAxisId('y', withoutRecompute));
+    }
+  };
+
+  ChartInternal.prototype.getCurrentPaddingRight = function () {
+    var $$ = this,
+        config = $$.config,
+        defaultPadding = 10,
+        legendWidthOnRight = $$.isLegendRight ? $$.getLegendWidth() + 20 : 0;
+
+    if (isValue(config.padding_right)) {
+      return config.padding_right + 1; // 1 is needed not to hide tick line
+    } else if (config.axis_rotated) {
+      return defaultPadding + legendWidthOnRight;
+    } else if (!config.axis_y2_show || config.axis_y2_inner) {
+      // && !config.axis_rotated
+      return 2 + legendWidthOnRight + ($$.axis.getY2AxisLabelPosition().isOuter ? 20 : 0);
+    } else {
+      return ceil10($$.getAxisWidthByAxisId('y2')) + legendWidthOnRight;
+    }
+  };
 
 
-        area = config.axis_rotated ? area.x0(value0).x1(value1).y(xValue) : area.x(xValue).y0(config.area_above ? 0 : value0).y1(value1);
-        if (!config.line_connectNull) {
-            area = area.defined(function (d) {
-                return d.value !== null;
-            });
+  ChartInternal.prototype.getParentRectValue = function (key) {
+    var parent = this.selectChart.node(),
+        v;
+
+    while (parent && parent.tagName !== 'BODY') {
+      try {
+        v = parent.getBoundingClientRect()[key];
+      } catch (e) {
+        if (key === 'width') {
+          // In IE in certain cases getBoundingClientRect
+          // will cause an "unspecified error"
+          v = parent.offsetWidth;
         }
         }
+      }
 
 
-        return function (d) {
-            var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
-                x0 = 0,
-                y0 = 0,
-                path;
-            if ($$.isAreaType(d)) {
-                if ($$.isStepType(d)) {
-                    values = $$.convertValuesToStep(values);
-                }
-                path = area.curve($$.getInterpolate(d))(values);
-            } else {
-                if (values[0]) {
-                    x0 = $$.x(values[0].x);
-                    y0 = $$.getYScale(d.id)(values[0].value);
-                }
-                path = config.axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
-            }
-            return path ? path : "M 0 0";
-        };
-    };
-    ChartInternal.prototype.getAreaBaseValue = function () {
-        return 0;
-    };
-    ChartInternal.prototype.generateGetAreaPoints = function (areaIndices, isSub) {
-        // partial duplication of generateGetBarPoints
-        var $$ = this,
-            config = $$.config,
-            areaTargetsNum = areaIndices.__max__ + 1,
-            x = $$.getShapeX(0, areaTargetsNum, areaIndices, !!isSub),
-            y = $$.getShapeY(!!isSub),
-            areaOffset = $$.getShapeOffset($$.isAreaType, areaIndices, !!isSub),
-            yScale = isSub ? $$.getSubYScale : $$.getYScale;
-        return function (d, i) {
-            var y0 = yScale.call($$, d.id)(0),
-                offset = areaOffset(d, i) || y0,
-                // offset is for stacked area chart
-            posX = x(d),
-                posY = y(d);
-            // fix posY not to overflow opposite quadrant
-            if (config.axis_rotated) {
-                if (0 < d.value && posY < y0 || d.value < 0 && y0 < posY) {
-                    posY = y0;
-                }
-            }
-            // 1 point that marks the area position
-            return [[posX, offset], [posX, posY - (y0 - offset)], [posX, posY - (y0 - offset)], // needed for compatibility
-            [posX, offset] // needed for compatibility
-            ];
-        };
-    };
+      if (v) {
+        break;
+      }
 
 
-    ChartInternal.prototype.updateCircle = function (cx, cy) {
-        var $$ = this;
-        var mainCircle = $$.main.selectAll('.' + CLASS.circles).selectAll('.' + CLASS.circle).data($$.lineOrScatterData.bind($$));
-        var mainCircleEnter = mainCircle.enter().append("circle").attr("class", $$.classCircle.bind($$)).attr("cx", cx).attr("cy", cy).attr("r", $$.pointR.bind($$)).style("fill", $$.color);
-        $$.mainCircle = mainCircleEnter.merge(mainCircle).style("opacity", $$.initialOpacityForCircle.bind($$));
-        mainCircle.exit().style("opacity", 0);
-    };
-    ChartInternal.prototype.redrawCircle = function (cx, cy, withTransition, transition) {
-        var $$ = this,
-            selectedCircles = $$.main.selectAll('.' + CLASS.selectedCircle);
-        return [(withTransition ? $$.mainCircle.transition(transition) : $$.mainCircle).style('opacity', this.opacityForCircle.bind($$)).style("fill", $$.color).attr("cx", cx).attr("cy", cy), (withTransition ? selectedCircles.transition(transition) : selectedCircles).attr("cx", cx).attr("cy", cy)];
-    };
-    ChartInternal.prototype.circleX = function (d) {
-        return d.x || d.x === 0 ? this.x(d.x) : null;
-    };
-    ChartInternal.prototype.updateCircleY = function () {
-        var $$ = this,
-            lineIndices,
-            getPoints;
-        if ($$.config.data_groups.length > 0) {
-            lineIndices = $$.getShapeIndices($$.isLineType), getPoints = $$.generateGetLinePoints(lineIndices);
-            $$.circleY = function (d, i) {
-                return getPoints(d, i)[0][1];
-            };
-        } else {
-            $$.circleY = function (d) {
-                return $$.getYScale(d.id)(d.value);
-            };
-        }
-    };
-    ChartInternal.prototype.getCircles = function (i, id) {
-        var $$ = this;
-        return (id ? $$.main.selectAll('.' + CLASS.circles + $$.getTargetSelectorSuffix(id)) : $$.main).selectAll('.' + CLASS.circle + (isValue(i) ? '-' + i : ''));
-    };
-    ChartInternal.prototype.expandCircles = function (i, id, reset) {
-        var $$ = this,
-            r = $$.pointExpandedR.bind($$);
-        if (reset) {
-            $$.unexpandCircles();
-        }
-        $$.getCircles(i, id).classed(CLASS.EXPANDED, true).attr('r', r);
-    };
-    ChartInternal.prototype.unexpandCircles = function (i) {
-        var $$ = this,
-            r = $$.pointR.bind($$);
-        $$.getCircles(i).filter(function () {
-            return $$.d3.select(this).classed(CLASS.EXPANDED);
-        }).classed(CLASS.EXPANDED, false).attr('r', r);
-    };
-    ChartInternal.prototype.pointR = function (d) {
-        var $$ = this,
-            config = $$.config;
-        return $$.isStepType(d) ? 0 : isFunction(config.point_r) ? config.point_r(d) : config.point_r;
-    };
-    ChartInternal.prototype.pointExpandedR = function (d) {
-        var $$ = this,
-            config = $$.config;
-        if (config.point_focus_expand_enabled) {
-            return isFunction(config.point_focus_expand_r) ? config.point_focus_expand_r(d) : config.point_focus_expand_r ? config.point_focus_expand_r : $$.pointR(d) * 1.75;
-        } else {
-            return $$.pointR(d);
-        }
-    };
-    ChartInternal.prototype.pointSelectR = function (d) {
-        var $$ = this,
-            config = $$.config;
-        return isFunction(config.point_select_r) ? config.point_select_r(d) : config.point_select_r ? config.point_select_r : $$.pointR(d) * 4;
-    };
-    ChartInternal.prototype.isWithinCircle = function (that, r) {
-        var d3 = this.d3,
-            mouse = d3.mouse(that),
-            d3_this = d3.select(that),
-            cx = +d3_this.attr("cx"),
-            cy = +d3_this.attr("cy");
-        return Math.sqrt(Math.pow(cx - mouse[0], 2) + Math.pow(cy - mouse[1], 2)) < r;
-    };
-    ChartInternal.prototype.isWithinStep = function (that, y) {
-        return Math.abs(y - this.d3.mouse(that)[1]) < 30;
-    };
+      parent = parent.parentNode;
+    }
 
 
-    ChartInternal.prototype.getCurrentWidth = function () {
-        var $$ = this,
-            config = $$.config;
-        return config.size_width ? config.size_width : $$.getParentWidth();
-    };
-    ChartInternal.prototype.getCurrentHeight = function () {
-        var $$ = this,
-            config = $$.config,
-            h = config.size_height ? config.size_height : $$.getParentHeight();
-        return h > 0 ? h : 320 / ($$.hasType('gauge') && !config.gauge_fullCircle ? 2 : 1);
-    };
-    ChartInternal.prototype.getCurrentPaddingTop = function () {
-        var $$ = this,
-            config = $$.config,
-            padding = isValue(config.padding_top) ? config.padding_top : 0;
-        if ($$.title && $$.title.node()) {
-            padding += $$.getTitlePadding();
-        }
-        return padding;
-    };
-    ChartInternal.prototype.getCurrentPaddingBottom = function () {
-        var config = this.config;
-        return isValue(config.padding_bottom) ? config.padding_bottom : 0;
-    };
-    ChartInternal.prototype.getCurrentPaddingLeft = function (withoutRecompute) {
-        var $$ = this,
-            config = $$.config;
-        if (isValue(config.padding_left)) {
-            return config.padding_left;
-        } else if (config.axis_rotated) {
-            return !config.axis_x_show || config.axis_x_inner ? 1 : Math.max(ceil10($$.getAxisWidthByAxisId('x', withoutRecompute)), 40);
-        } else if (!config.axis_y_show || config.axis_y_inner) {
-            // && !config.axis_rotated
-            return $$.axis.getYAxisLabelPosition().isOuter ? 30 : 1;
-        } else {
-            return ceil10($$.getAxisWidthByAxisId('y', withoutRecompute));
-        }
-    };
-    ChartInternal.prototype.getCurrentPaddingRight = function () {
-        var $$ = this,
-            config = $$.config,
-            defaultPadding = 10,
-            legendWidthOnRight = $$.isLegendRight ? $$.getLegendWidth() + 20 : 0;
-        if (isValue(config.padding_right)) {
-            return config.padding_right + 1; // 1 is needed not to hide tick line
-        } else if (config.axis_rotated) {
-            return defaultPadding + legendWidthOnRight;
-        } else if (!config.axis_y2_show || config.axis_y2_inner) {
-            // && !config.axis_rotated
-            return 2 + legendWidthOnRight + ($$.axis.getY2AxisLabelPosition().isOuter ? 20 : 0);
-        } else {
-            return ceil10($$.getAxisWidthByAxisId('y2')) + legendWidthOnRight;
-        }
-    };
+    return v;
+  };
+
+  ChartInternal.prototype.getParentWidth = function () {
+    return this.getParentRectValue('width');
+  };
+
+  ChartInternal.prototype.getParentHeight = function () {
+    var h = this.selectChart.style('height');
+    return h.indexOf('px') > 0 ? +h.replace('px', '') : 0;
+  };
+
+  ChartInternal.prototype.getSvgLeft = function (withoutRecompute) {
+    var $$ = this,
+        config = $$.config,
+        hasLeftAxisRect = config.axis_rotated || !config.axis_rotated && !config.axis_y_inner,
+        leftAxisClass = config.axis_rotated ? CLASS.axisX : CLASS.axisY,
+        leftAxis = $$.main.select('.' + leftAxisClass).node(),
+        svgRect = leftAxis && hasLeftAxisRect ? leftAxis.getBoundingClientRect() : {
+      right: 0
+    },
+        chartRect = $$.selectChart.node().getBoundingClientRect(),
+        hasArc = $$.hasArcType(),
+        svgLeft = svgRect.right - chartRect.left - (hasArc ? 0 : $$.getCurrentPaddingLeft(withoutRecompute));
+    return svgLeft > 0 ? svgLeft : 0;
+  };
+
+  ChartInternal.prototype.getAxisWidthByAxisId = function (id, withoutRecompute) {
+    var $$ = this,
+        position = $$.axis.getLabelPositionById(id);
+    return $$.axis.getMaxTickWidth(id, withoutRecompute) + (position.isInner ? 20 : 40);
+  };
+
+  ChartInternal.prototype.getHorizontalAxisHeight = function (axisId) {
+    var $$ = this,
+        config = $$.config,
+        h = 30;
+
+    if (axisId === 'x' && !config.axis_x_show) {
+      return 8;
+    }
 
 
-    ChartInternal.prototype.getParentRectValue = function (key) {
-        var parent = this.selectChart.node(),
-            v;
-        while (parent && parent.tagName !== 'BODY') {
-            try {
-                v = parent.getBoundingClientRect()[key];
-            } catch (e) {
-                if (key === 'width') {
-                    // In IE in certain cases getBoundingClientRect
-                    // will cause an "unspecified error"
-                    v = parent.offsetWidth;
-                }
-            }
-            if (v) {
-                break;
-            }
-            parent = parent.parentNode;
-        }
-        return v;
-    };
-    ChartInternal.prototype.getParentWidth = function () {
-        return this.getParentRectValue('width');
-    };
-    ChartInternal.prototype.getParentHeight = function () {
-        var h = this.selectChart.style('height');
-        return h.indexOf('px') > 0 ? +h.replace('px', '') : 0;
-    };
+    if (axisId === 'x' && config.axis_x_height) {
+      return config.axis_x_height;
+    }
 
 
-    ChartInternal.prototype.getSvgLeft = function (withoutRecompute) {
-        var $$ = this,
-            config = $$.config,
-            hasLeftAxisRect = config.axis_rotated || !config.axis_rotated && !config.axis_y_inner,
-            leftAxisClass = config.axis_rotated ? CLASS.axisX : CLASS.axisY,
-            leftAxis = $$.main.select('.' + leftAxisClass).node(),
-            svgRect = leftAxis && hasLeftAxisRect ? leftAxis.getBoundingClientRect() : { right: 0 },
-            chartRect = $$.selectChart.node().getBoundingClientRect(),
-            hasArc = $$.hasArcType(),
-            svgLeft = svgRect.right - chartRect.left - (hasArc ? 0 : $$.getCurrentPaddingLeft(withoutRecompute));
-        return svgLeft > 0 ? svgLeft : 0;
-    };
+    if (axisId === 'y' && !config.axis_y_show) {
+      return config.legend_show && !$$.isLegendRight && !$$.isLegendInset ? 10 : 1;
+    }
 
 
-    ChartInternal.prototype.getAxisWidthByAxisId = function (id, withoutRecompute) {
-        var $$ = this,
-            position = $$.axis.getLabelPositionById(id);
-        return $$.axis.getMaxTickWidth(id, withoutRecompute) + (position.isInner ? 20 : 40);
-    };
-    ChartInternal.prototype.getHorizontalAxisHeight = function (axisId) {
-        var $$ = this,
-            config = $$.config,
-            h = 30;
-        if (axisId === 'x' && !config.axis_x_show) {
-            return 8;
-        }
-        if (axisId === 'x' && config.axis_x_height) {
-            return config.axis_x_height;
-        }
-        if (axisId === 'y' && !config.axis_y_show) {
-            return config.legend_show && !$$.isLegendRight && !$$.isLegendInset ? 10 : 1;
-        }
-        if (axisId === 'y2' && !config.axis_y2_show) {
-            return $$.rotated_padding_top;
-        }
-        // Calculate x axis height when tick rotated
-        if (axisId === 'x' && !config.axis_rotated && config.axis_x_tick_rotate) {
-            h = 30 + $$.axis.getMaxTickWidth(axisId) * Math.cos(Math.PI * (90 - Math.abs(config.axis_x_tick_rotate)) / 180);
-        }
-        // Calculate y axis height when tick rotated
-        if (axisId === 'y' && config.axis_rotated && config.axis_y_tick_rotate) {
-            h = 30 + $$.axis.getMaxTickWidth(axisId) * Math.cos(Math.PI * (90 - Math.abs(config.axis_y_tick_rotate)) / 180);
-        }
-        return h + ($$.axis.getLabelPositionById(axisId).isInner ? 0 : 10) + (axisId === 'y2' ? -10 : 0);
-    };
+    if (axisId === 'y2' && !config.axis_y2_show) {
+      return $$.rotated_padding_top;
+    } // Calculate x axis height when tick rotated
 
 
-    ChartInternal.prototype.initBrush = function (scale) {
-        var $$ = this,
-            d3 = $$.d3;
-        // TODO: dynamically change brushY/brushX according to axis_rotated.
-        $$.brush = ($$.config.axis_rotated ? d3.brushY() : d3.brushX()).on("brush", function () {
-            var event = d3.event.sourceEvent;
-            if (event && event.type === "zoom") {
-                return;
-            }
-            $$.redrawForBrush();
-        }).on("end", function () {
-            var event = d3.event.sourceEvent;
-            if (event && event.type === "zoom") {
-                return;
-            }
-            if ($$.brush.empty() && event && event.type !== 'end') {
-                $$.brush.clear();
-            }
-        });
-        $$.brush.updateExtent = function () {
-            var range = this.scale.range(),
-                extent;
-            if ($$.config.axis_rotated) {
-                extent = [[0, range[0]], [$$.width2, range[1]]];
-            } else {
-                extent = [[range[0], 0], [range[1], $$.height2]];
-            }
-            this.extent(extent);
-            return this;
-        };
-        $$.brush.updateScale = function (scale) {
-            this.scale = scale;
-            return this;
-        };
-        $$.brush.update = function (scale) {
-            this.updateScale(scale || $$.subX).updateExtent();
-            $$.context.select('.' + CLASS.brush).call(this);
-        };
-        $$.brush.clear = function () {
-            $$.context.select('.' + CLASS.brush).call($$.brush.move, null);
-        };
-        $$.brush.selection = function () {
-            return d3.brushSelection($$.context.select('.' + CLASS.brush).node());
-        };
-        $$.brush.selectionAsValue = function (selectionAsValue, withTransition) {
-            var selection, brush;
-            if (selectionAsValue) {
-                if ($$.context) {
-                    selection = [this.scale(selectionAsValue[0]), this.scale(selectionAsValue[1])];
-                    brush = $$.context.select('.' + CLASS.brush);
-                    if (withTransition) {
-                        brush = brush.transition();
-                    }
-                    $$.brush.move(brush, selection);
-                }
-                return [];
-            }
-            selection = $$.brush.selection() || [0, 0];
-            return [this.scale.invert(selection[0]), this.scale.invert(selection[1])];
-        };
-        $$.brush.empty = function () {
-            var selection = $$.brush.selection();
-            return !selection || selection[0] === selection[1];
-        };
-        return $$.brush.updateScale(scale);
-    };
-    ChartInternal.prototype.initSubchart = function () {
-        var $$ = this,
-            config = $$.config,
-            context = $$.context = $$.svg.append("g").attr("transform", $$.getTranslate('context')),
-            visibility = config.subchart_show ? 'visible' : 'hidden';
 
 
-        // set style
-        context.style('visibility', visibility);
+    if (axisId === 'x' && !config.axis_rotated && config.axis_x_tick_rotate) {
+      h = 30 + $$.axis.getMaxTickWidth(axisId) * Math.cos(Math.PI * (90 - Math.abs(config.axis_x_tick_rotate)) / 180);
+    } // Calculate y axis height when tick rotated
+
+
+    if (axisId === 'y' && config.axis_rotated && config.axis_y_tick_rotate) {
+      h = 30 + $$.axis.getMaxTickWidth(axisId) * Math.cos(Math.PI * (90 - Math.abs(config.axis_y_tick_rotate)) / 180);
+    }
+
+    return h + ($$.axis.getLabelPositionById(axisId).isInner ? 0 : 10) + (axisId === 'y2' ? -10 : 0);
+  };
 
 
-        // Define g for chart area
-        context.append('g').attr("clip-path", $$.clipPathForSubchart).attr('class', CLASS.chart);
+  ChartInternal.prototype.initBrush = function (scale) {
+    var $$ = this,
+        d3 = $$.d3; // TODO: dynamically change brushY/brushX according to axis_rotated.
 
 
-        // Define g for bar chart area
-        context.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartBars);
+    $$.brush = ($$.config.axis_rotated ? d3.brushY() : d3.brushX()).on("brush", function () {
+      var event = d3.event.sourceEvent;
 
 
-        // Define g for line chart area
-        context.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartLines);
+      if (event && event.type === "zoom") {
+        return;
+      }
 
 
-        // Add extent rect for Brush
-        context.append("g").attr("clip-path", $$.clipPath).attr("class", CLASS.brush);
+      $$.redrawForBrush();
+    }).on("end", function () {
+      var event = d3.event.sourceEvent;
 
 
-        // ATTENTION: This must be called AFTER chart added
-        // Add Axis
-        $$.axes.subx = context.append("g").attr("class", CLASS.axisX).attr("transform", $$.getTranslate('subx')).attr("clip-path", config.axis_rotated ? "" : $$.clipPathForXAxis);
-    };
-    ChartInternal.prototype.initSubchartBrush = function () {
-        var $$ = this;
-        // Add extent rect for Brush
-        $$.initBrush($$.subX).updateExtent();
-        $$.context.select('.' + CLASS.brush).call($$.brush);
-    };
-    ChartInternal.prototype.updateTargetsForSubchart = function (targets) {
-        var $$ = this,
-            context = $$.context,
-            config = $$.config,
-            contextLineEnter,
-            contextLine,
-            contextBarEnter,
-            contextBar,
-            classChartBar = $$.classChartBar.bind($$),
-            classBars = $$.classBars.bind($$),
-            classChartLine = $$.classChartLine.bind($$),
-            classLines = $$.classLines.bind($$),
-            classAreas = $$.classAreas.bind($$);
-
-        if (config.subchart_show) {
-            //-- Bar --//
-            contextBar = context.select('.' + CLASS.chartBars).selectAll('.' + CLASS.chartBar).data(targets);
-            contextBarEnter = contextBar.enter().append('g').style('opacity', 0);
-            contextBarEnter.merge(contextBar).attr('class', classChartBar);
-            // Bars for each data
-            contextBarEnter.append('g').attr("class", classBars);
-
-            //-- Line --//
-            contextLine = context.select('.' + CLASS.chartLines).selectAll('.' + CLASS.chartLine).data(targets);
-            contextLineEnter = contextLine.enter().append('g').style('opacity', 0);
-            contextLineEnter.merge(contextLine).attr('class', classChartLine);
-            // Lines for each data
-            contextLineEnter.append("g").attr("class", classLines);
-            // Area
-            contextLineEnter.append("g").attr("class", classAreas);
-
-            //-- Brush --//
-            context.selectAll('.' + CLASS.brush + ' rect').attr(config.axis_rotated ? "width" : "height", config.axis_rotated ? $$.width2 : $$.height2);
-        }
-    };
-    ChartInternal.prototype.updateBarForSubchart = function (durationForExit) {
-        var $$ = this;
-        var contextBar = $$.context.selectAll('.' + CLASS.bars).selectAll('.' + CLASS.bar).data($$.barData.bind($$));
-        var contextBarEnter = contextBar.enter().append('path').attr("class", $$.classBar.bind($$)).style("stroke", 'none').style("fill", $$.color);
-        contextBar.exit().transition().duration(durationForExit).style('opacity', 0).remove();
-        $$.contextBar = contextBarEnter.merge(contextBar).style("opacity", $$.initialOpacity.bind($$));
-    };
-    ChartInternal.prototype.redrawBarForSubchart = function (drawBarOnSub, withTransition, duration) {
-        (withTransition ? this.contextBar.transition(Math.random().toString()).duration(duration) : this.contextBar).attr('d', drawBarOnSub).style('opacity', 1);
-    };
-    ChartInternal.prototype.updateLineForSubchart = function (durationForExit) {
-        var $$ = this;
-        var contextLine = $$.context.selectAll('.' + CLASS.lines).selectAll('.' + CLASS.line).data($$.lineData.bind($$));
-        var contextLineEnter = contextLine.enter().append('path').attr('class', $$.classLine.bind($$)).style('stroke', $$.color);
-        contextLine.exit().transition().duration(durationForExit).style('opacity', 0).remove();
-        $$.contextLine = contextLineEnter.merge(contextLine).style("opacity", $$.initialOpacity.bind($$));
-    };
-    ChartInternal.prototype.redrawLineForSubchart = function (drawLineOnSub, withTransition, duration) {
-        (withTransition ? this.contextLine.transition(Math.random().toString()).duration(duration) : this.contextLine).attr("d", drawLineOnSub).style('opacity', 1);
-    };
-    ChartInternal.prototype.updateAreaForSubchart = function (durationForExit) {
-        var $$ = this,
-            d3 = $$.d3;
-        var contextArea = $$.context.selectAll('.' + CLASS.areas).selectAll('.' + CLASS.area).data($$.lineData.bind($$));
-        var contextAreaEnter = contextArea.enter().append('path').attr("class", $$.classArea.bind($$)).style("fill", $$.color).style("opacity", function () {
-            $$.orgAreaOpacity = +d3.select(this).style('opacity');return 0;
-        });
-        contextArea.exit().transition().duration(durationForExit).style('opacity', 0).remove();
-        $$.contextArea = contextAreaEnter.merge(contextArea).style("opacity", 0);
-    };
-    ChartInternal.prototype.redrawAreaForSubchart = function (drawAreaOnSub, withTransition, duration) {
-        (withTransition ? this.contextArea.transition(Math.random().toString()).duration(duration) : this.contextArea).attr("d", drawAreaOnSub).style("fill", this.color).style("opacity", this.orgAreaOpacity);
-    };
-    ChartInternal.prototype.redrawSubchart = function (withSubchart, transitions, duration, durationForExit, areaIndices, barIndices, lineIndices) {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            drawAreaOnSub,
-            drawBarOnSub,
-            drawLineOnSub;
-
-        $$.context.style('visibility', config.subchart_show ? 'visible' : 'hidden');
-
-        // subchart
-        if (config.subchart_show) {
-            // reflect main chart to extent on subchart if zoomed
-            if (d3.event && d3.event.type === 'zoom') {
-                $$.brush.selectionAsValue($$.x.orgDomain());
-            }
-            // update subchart elements if needed
-            if (withSubchart) {
-                // extent rect
-                if (!$$.brush.empty()) {
-                    $$.brush.selectionAsValue($$.x.orgDomain());
-                }
-                // setup drawer - MEMO: this must be called after axis updated
-                drawAreaOnSub = $$.generateDrawArea(areaIndices, true);
-                drawBarOnSub = $$.generateDrawBar(barIndices, true);
-                drawLineOnSub = $$.generateDrawLine(lineIndices, true);
-
-                $$.updateBarForSubchart(duration);
-                $$.updateLineForSubchart(duration);
-                $$.updateAreaForSubchart(duration);
-
-                $$.redrawBarForSubchart(drawBarOnSub, duration, duration);
-                $$.redrawLineForSubchart(drawLineOnSub, duration, duration);
-                $$.redrawAreaForSubchart(drawAreaOnSub, duration, duration);
-            }
-        }
-    };
-    ChartInternal.prototype.redrawForBrush = function () {
-        var $$ = this,
-            x = $$.x,
-            d3 = $$.d3,
-            s;
-        $$.redraw({
-            withTransition: false,
-            withY: $$.config.zoom_rescale,
-            withSubchart: false,
-            withUpdateXDomain: true,
-            withEventRect: false,
-            withDimension: false
-        });
-        // update zoom transation binded to event rect
-        s = d3.event.selection || $$.brush.scale.range();
-        $$.main.select('.' + CLASS.eventRect).call($$.zoom.transform, d3.zoomIdentity.scale($$.width / (s[1] - s[0])).translate(-s[0], 0));
-        $$.config.subchart_onbrush.call($$.api, x.orgDomain());
-    };
-    ChartInternal.prototype.transformContext = function (withTransition, transitions) {
-        var $$ = this,
-            subXAxis;
-        if (transitions && transitions.axisSubX) {
-            subXAxis = transitions.axisSubX;
-        } else {
-            subXAxis = $$.context.select('.' + CLASS.axisX);
-            if (withTransition) {
-                subXAxis = subXAxis.transition();
-            }
-        }
-        $$.context.attr("transform", $$.getTranslate('context'));
-        subXAxis.attr("transform", $$.getTranslate('subx'));
-    };
-    ChartInternal.prototype.getDefaultSelection = function () {
-        var $$ = this,
-            config = $$.config,
-            selection = isFunction(config.axis_x_selection) ? config.axis_x_selection($$.getXDomain($$.data.targets)) : config.axis_x_selection;
-        if ($$.isTimeSeries()) {
-            selection = [$$.parseDate(selection[0]), $$.parseDate(selection[1])];
-        }
-        return selection;
-    };
+      if (event && event.type === "zoom") {
+        return;
+      }
 
 
-    ChartInternal.prototype.initText = function () {
-        var $$ = this;
-        $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartTexts);
-        $$.mainText = $$.d3.selectAll([]);
-    };
-    ChartInternal.prototype.updateTargetsForText = function (targets) {
-        var $$ = this,
-            classChartText = $$.classChartText.bind($$),
-            classTexts = $$.classTexts.bind($$),
-            classFocus = $$.classFocus.bind($$);
-        var mainText = $$.main.select('.' + CLASS.chartTexts).selectAll('.' + CLASS.chartText).data(targets);
-        var mainTextEnter = mainText.enter().append('g').attr('class', classChartText).style('opacity', 0).style("pointer-events", "none");
-        mainTextEnter.append('g').attr('class', classTexts);
-        mainTextEnter.merge(mainText).attr('class', function (d) {
-            return classChartText(d) + classFocus(d);
-        });
-    };
-    ChartInternal.prototype.updateText = function (xForText, yForText, durationForExit) {
-        var $$ = this,
-            config = $$.config,
-            barOrLineData = $$.barOrLineData.bind($$),
-            classText = $$.classText.bind($$);
-        var mainText = $$.main.selectAll('.' + CLASS.texts).selectAll('.' + CLASS.text).data(barOrLineData);
-        var mainTextEnter = mainText.enter().append('text').attr("class", classText).attr('text-anchor', function (d) {
-            return config.axis_rotated ? d.value < 0 ? 'end' : 'start' : 'middle';
-        }).style("stroke", 'none').attr('x', xForText).attr('y', yForText).style("fill", function (d) {
-            return $$.color(d);
-        }).style("fill-opacity", 0);
-        $$.mainText = mainTextEnter.merge(mainText).text(function (d, i, j) {
-            return $$.dataLabelFormat(d.id)(d.value, d.id, i, j);
-        });
-        mainText.exit().transition().duration(durationForExit).style('fill-opacity', 0).remove();
-    };
-    ChartInternal.prototype.redrawText = function (xForText, yForText, forFlow, withTransition, transition) {
-        return [(withTransition ? this.mainText.transition(transition) : this.mainText).attr('x', xForText).attr('y', yForText).style("fill", this.color).style("fill-opacity", forFlow ? 0 : this.opacityForText.bind(this))];
-    };
-    ChartInternal.prototype.getTextRect = function (text, cls, element) {
-        var dummy = this.d3.select('body').append('div').classed('c3', true),
-            svg = dummy.append("svg").style('visibility', 'hidden').style('position', 'fixed').style('top', 0).style('left', 0),
-            font = this.d3.select(element).style('font'),
-            rect;
-        svg.selectAll('.dummy').data([text]).enter().append('text').classed(cls ? cls : "", true).style('font', font).text(text).each(function () {
-            rect = this.getBoundingClientRect();
-        });
-        dummy.remove();
-        return rect;
-    };
-    ChartInternal.prototype.generateXYForText = function (areaIndices, barIndices, lineIndices, forX) {
-        var $$ = this,
-            getAreaPoints = $$.generateGetAreaPoints(areaIndices, false),
-            getBarPoints = $$.generateGetBarPoints(barIndices, false),
-            getLinePoints = $$.generateGetLinePoints(lineIndices, false),
-            getter = forX ? $$.getXForText : $$.getYForText;
-        return function (d, i) {
-            var getPoints = $$.isAreaType(d) ? getAreaPoints : $$.isBarType(d) ? getBarPoints : getLinePoints;
-            return getter.call($$, getPoints(d, i), d, this);
-        };
+      if ($$.brush.empty() && event && event.type !== 'end') {
+        $$.brush.clear();
+      }
+    });
+
+    $$.brush.updateExtent = function () {
+      var range = this.scale.range(),
+          extent;
+
+      if ($$.config.axis_rotated) {
+        extent = [[0, range[0]], [$$.width2, range[1]]];
+      } else {
+        extent = [[range[0], 0], [range[1], $$.height2]];
+      }
+
+      this.extent(extent);
+      return this;
     };
     };
-    ChartInternal.prototype.getXForText = function (points, d, textElement) {
-        var $$ = this,
-            box = textElement.getBoundingClientRect(),
-            xPos,
-            padding;
-        if ($$.config.axis_rotated) {
-            padding = $$.isBarType(d) ? 4 : 6;
-            xPos = points[2][1] + padding * (d.value < 0 ? -1 : 1);
-        } else {
-            xPos = $$.hasType('bar') ? (points[2][0] + points[0][0]) / 2 : points[0][0];
-        }
-        // show labels regardless of the domain if value is null
-        if (d.value === null) {
-            if (xPos > $$.width) {
-                xPos = $$.width - box.width;
-            } else if (xPos < 0) {
-                xPos = 4;
-            }
-        }
-        return xPos;
+
+    $$.brush.updateScale = function (scale) {
+      this.scale = scale;
+      return this;
     };
     };
-    ChartInternal.prototype.getYForText = function (points, d, textElement) {
-        var $$ = this,
-            box = textElement.getBoundingClientRect(),
-            yPos;
-        if ($$.config.axis_rotated) {
-            yPos = (points[0][0] + points[2][0] + box.height * 0.6) / 2;
-        } else {
-            yPos = points[2][1];
-            if (d.value < 0 || d.value === 0 && !$$.hasPositiveValue) {
-                yPos += box.height;
-                if ($$.isBarType(d) && $$.isSafari()) {
-                    yPos -= 3;
-                } else if (!$$.isBarType(d) && $$.isChrome()) {
-                    yPos += 3;
-                }
-            } else {
-                yPos += $$.isBarType(d) ? -3 : -6;
-            }
-        }
-        // show labels regardless of the domain if value is null
-        if (d.value === null && !$$.config.axis_rotated) {
-            if (yPos < box.height) {
-                yPos = box.height;
-            } else if (yPos > this.height) {
-                yPos = this.height - 4;
-            }
-        }
-        return yPos;
+
+    $$.brush.update = function (scale) {
+      this.updateScale(scale || $$.subX).updateExtent();
+      $$.context.select('.' + CLASS.brush).call(this);
     };
 
     };
 
-    ChartInternal.prototype.initTitle = function () {
-        var $$ = this;
-        $$.title = $$.svg.append("text").text($$.config.title_text).attr("class", $$.CLASS.title);
+    $$.brush.clear = function () {
+      $$.context.select('.' + CLASS.brush).call($$.brush.move, null);
     };
     };
-    ChartInternal.prototype.redrawTitle = function () {
-        var $$ = this;
-        $$.title.attr("x", $$.xForTitle.bind($$)).attr("y", $$.yForTitle.bind($$));
+
+    $$.brush.selection = function () {
+      return d3.brushSelection($$.context.select('.' + CLASS.brush).node());
     };
     };
-    ChartInternal.prototype.xForTitle = function () {
-        var $$ = this,
-            config = $$.config,
-            position = config.title_position || 'left',
-            x;
-        if (position.indexOf('right') >= 0) {
-            x = $$.currentWidth - $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).width - config.title_padding.right;
-        } else if (position.indexOf('center') >= 0) {
-            x = ($$.currentWidth - $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).width) / 2;
-        } else {
-            // left
-            x = config.title_padding.left;
+
+    $$.brush.selectionAsValue = function (selectionAsValue, withTransition) {
+      var selection, brush;
+
+      if (selectionAsValue) {
+        if ($$.context) {
+          selection = [this.scale(selectionAsValue[0]), this.scale(selectionAsValue[1])];
+          brush = $$.context.select('.' + CLASS.brush);
+
+          if (withTransition) {
+            brush = brush.transition();
+          }
+
+          $$.brush.move(brush, selection);
         }
         }
-        return x;
-    };
-    ChartInternal.prototype.yForTitle = function () {
-        var $$ = this;
-        return $$.config.title_padding.top + $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).height;
-    };
-    ChartInternal.prototype.getTitlePadding = function () {
-        var $$ = this;
-        return $$.yForTitle() + $$.config.title_padding.bottom;
+
+        return [];
+      }
+
+      selection = $$.brush.selection() || [0, 0];
+      return [this.scale.invert(selection[0]), this.scale.invert(selection[1])];
     };
 
     };
 
-    ChartInternal.prototype.initTooltip = function () {
-        var $$ = this,
-            config = $$.config,
-            i;
-        $$.tooltip = $$.selectChart.style("position", "relative").append("div").attr('class', CLASS.tooltipContainer).style("position", "absolute").style("pointer-events", "none").style("display", "none");
-        // Show tooltip if needed
-        if (config.tooltip_init_show) {
-            if ($$.isTimeSeries() && isString(config.tooltip_init_x)) {
-                config.tooltip_init_x = $$.parseDate(config.tooltip_init_x);
-                for (i = 0; i < $$.data.targets[0].values.length; i++) {
-                    if ($$.data.targets[0].values[i].x - config.tooltip_init_x === 0) {
-                        break;
-                    }
-                }
-                config.tooltip_init_x = i;
-            }
-            $$.tooltip.html(config.tooltip_contents.call($$, $$.data.targets.map(function (d) {
-                return $$.addName(d.values[config.tooltip_init_x]);
-            }), $$.axis.getXAxisTickFormat(), $$.getYFormat($$.hasArcType()), $$.color));
-            $$.tooltip.style("top", config.tooltip_init_position.top).style("left", config.tooltip_init_position.left).style("display", "block");
-        }
+    $$.brush.empty = function () {
+      var selection = $$.brush.selection();
+      return !selection || selection[0] === selection[1];
     };
     };
-    ChartInternal.prototype.getTooltipSortFunction = function () {
-        var $$ = this,
-            config = $$.config;
 
 
-        if (config.data_groups.length === 0 || config.tooltip_order !== undefined) {
-            // if data are not grouped or if an order is specified
-            // for the tooltip values we sort them by their values
+    return $$.brush.updateScale(scale);
+  };
 
 
-            var order = config.tooltip_order;
-            if (order === undefined) {
-                order = config.data_order;
-            }
+  ChartInternal.prototype.initSubchart = function () {
+    var $$ = this,
+        config = $$.config,
+        context = $$.context = $$.svg.append("g").attr("transform", $$.getTranslate('context')),
+        visibility = config.subchart_show ? 'visible' : 'hidden'; // set style
 
 
-            var valueOf = function valueOf(obj) {
-                return obj ? obj.value : null;
-            };
-
-            // if data are not grouped, we sort them by their value
-            if (isString(order) && order.toLowerCase() === 'asc') {
-                return function (a, b) {
-                    return valueOf(a) - valueOf(b);
-                };
-            } else if (isString(order) && order.toLowerCase() === 'desc') {
-                return function (a, b) {
-                    return valueOf(b) - valueOf(a);
-                };
-            } else if (isFunction(order)) {
-
-                // if the function is from data_order we need
-                // to wrap the returned function in order to format
-                // the sorted value to the expected format
-
-                var sortFunction = order;
-
-                if (config.tooltip_order === undefined) {
-                    sortFunction = function sortFunction(a, b) {
-                        return order(a ? {
-                            id: a.id,
-                            values: [a]
-                        } : null, b ? {
-                            id: b.id,
-                            values: [b]
-                        } : null);
-                    };
-                }
-
-                return sortFunction;
-            } else if (isArray(order)) {
-                return function (a, b) {
-                    return order.indexOf(a.id) - order.indexOf(b.id);
-                };
-            }
-        } else {
-            // if data are grouped, we follow the order of grouped targets
-            var ids = $$.orderTargets($$.data.targets).map(function (i) {
-                return i.id;
-            });
+    context.style('visibility', visibility); // Define g for chart area
 
 
-            // if it was either asc or desc we need to invert the order
-            // returned by orderTargets
-            if ($$.isOrderAsc() || $$.isOrderDesc()) {
-                ids = ids.reverse();
-            }
+    context.append('g').attr("clip-path", $$.clipPathForSubchart).attr('class', CLASS.chart); // Define g for bar chart area
 
 
-            return function (a, b) {
-                return ids.indexOf(a.id) - ids.indexOf(b.id);
-            };
-        }
-    };
-    ChartInternal.prototype.getTooltipContent = function (d, defaultTitleFormat, defaultValueFormat, color) {
-        var $$ = this,
-            config = $$.config,
-            titleFormat = config.tooltip_format_title || defaultTitleFormat,
-            nameFormat = config.tooltip_format_name || function (name) {
-            return name;
-        },
-            valueFormat = config.tooltip_format_value || defaultValueFormat,
-            text,
-            i,
-            title,
-            value,
-            name,
-            bgcolor;
-
-        var tooltipSortFunction = this.getTooltipSortFunction();
-        if (tooltipSortFunction) {
-            d.sort(tooltipSortFunction);
-        }
+    context.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartBars); // Define g for line chart area
 
 
-        for (i = 0; i < d.length; i++) {
-            if (!(d[i] && (d[i].value || d[i].value === 0))) {
-                continue;
-            }
+    context.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartLines); // Add extent rect for Brush
 
 
-            if (!text) {
-                title = sanitise(titleFormat ? titleFormat(d[i].x) : d[i].x);
-                text = "<table class='" + $$.CLASS.tooltip + "'>" + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
-            }
+    context.append("g").attr("clip-path", $$.clipPath).attr("class", CLASS.brush); // ATTENTION: This must be called AFTER chart added
+    // Add Axis
 
 
-            value = sanitise(valueFormat(d[i].value, d[i].ratio, d[i].id, d[i].index, d));
-            if (value !== undefined) {
-                // Skip elements when their name is set to null
-                if (d[i].name === null) {
-                    continue;
-                }
-                name = sanitise(nameFormat(d[i].name, d[i].ratio, d[i].id, d[i].index));
-                bgcolor = $$.levelColor ? $$.levelColor(d[i].value) : color(d[i].id);
-
-                text += "<tr class='" + $$.CLASS.tooltipName + "-" + $$.getTargetSelectorSuffix(d[i].id) + "'>";
-                text += "<td class='name'><span style='background-color:" + bgcolor + "'></span>" + name + "</td>";
-                text += "<td class='value'>" + value + "</td>";
-                text += "</tr>";
-            }
-        }
-        return text + "</table>";
-    };
-    ChartInternal.prototype.tooltipPosition = function (dataToShow, tWidth, tHeight, element) {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3;
-        var svgLeft, tooltipLeft, tooltipRight, tooltipTop, chartRight;
-        var forArc = $$.hasArcType(),
-            mouse = d3.mouse(element);
-        // Determin tooltip position
-        if (forArc) {
-            tooltipLeft = ($$.width - ($$.isLegendRight ? $$.getLegendWidth() : 0)) / 2 + mouse[0];
-            tooltipTop = ($$.hasType('gauge') ? $$.height : $$.height / 2) + mouse[1] + 20;
-        } else {
-            svgLeft = $$.getSvgLeft(true);
-            if (config.axis_rotated) {
-                tooltipLeft = svgLeft + mouse[0] + 100;
-                tooltipRight = tooltipLeft + tWidth;
-                chartRight = $$.currentWidth - $$.getCurrentPaddingRight();
-                tooltipTop = $$.x(dataToShow[0].x) + 20;
-            } else {
-                tooltipLeft = svgLeft + $$.getCurrentPaddingLeft(true) + $$.x(dataToShow[0].x) + 20;
-                tooltipRight = tooltipLeft + tWidth;
-                chartRight = svgLeft + $$.currentWidth - $$.getCurrentPaddingRight();
-                tooltipTop = mouse[1] + 15;
-            }
+    $$.axes.subx = context.append("g").attr("class", CLASS.axisX).attr("transform", $$.getTranslate('subx')).attr("clip-path", config.axis_rotated ? "" : $$.clipPathForXAxis);
+  };
 
 
-            if (tooltipRight > chartRight) {
-                // 20 is needed for Firefox to keep tooltip width
-                tooltipLeft -= tooltipRight - chartRight + 20;
-            }
-            if (tooltipTop + tHeight > $$.currentHeight) {
-                tooltipTop -= tHeight + 30;
-            }
-        }
-        if (tooltipTop < 0) {
-            tooltipTop = 0;
-        }
-        return {
-            top: tooltipTop,
-            left: tooltipLeft
-        };
-    };
-    ChartInternal.prototype.showTooltip = function (selectedData, element) {
-        var $$ = this,
-            config = $$.config;
-        var tWidth, tHeight, position;
-        var forArc = $$.hasArcType(),
-            dataToShow = selectedData.filter(function (d) {
-            return d && isValue(d.value);
-        }),
-            positionFunction = config.tooltip_position || ChartInternal.prototype.tooltipPosition;
-        if (dataToShow.length === 0 || !config.tooltip_show) {
-            return;
-        }
-        $$.tooltip.html(config.tooltip_contents.call($$, selectedData, $$.axis.getXAxisTickFormat(), $$.getYFormat(forArc), $$.color)).style("display", "block");
+  ChartInternal.prototype.initSubchartBrush = function () {
+    var $$ = this; // Add extent rect for Brush
 
 
-        // Get tooltip dimensions
-        tWidth = $$.tooltip.property('offsetWidth');
-        tHeight = $$.tooltip.property('offsetHeight');
+    $$.initBrush($$.subX).updateExtent();
+    $$.context.select('.' + CLASS.brush).call($$.brush);
+  };
 
 
-        position = positionFunction.call(this, dataToShow, tWidth, tHeight, element);
-        // Set tooltip
-        $$.tooltip.style("top", position.top + "px").style("left", position.left + 'px');
-    };
-    ChartInternal.prototype.hideTooltip = function () {
-        this.tooltip.style("display", "none");
-    };
+  ChartInternal.prototype.updateTargetsForSubchart = function (targets) {
+    var $$ = this,
+        context = $$.context,
+        config = $$.config,
+        contextLineEnter,
+        contextLine,
+        contextBarEnter,
+        contextBar,
+        classChartBar = $$.classChartBar.bind($$),
+        classBars = $$.classBars.bind($$),
+        classChartLine = $$.classChartLine.bind($$),
+        classLines = $$.classLines.bind($$),
+        classAreas = $$.classAreas.bind($$);
 
 
-    ChartInternal.prototype.setTargetType = function (targetIds, type) {
-        var $$ = this,
-            config = $$.config;
-        $$.mapToTargetIds(targetIds).forEach(function (id) {
-            $$.withoutFadeIn[id] = type === config.data_types[id];
-            config.data_types[id] = type;
-        });
-        if (!targetIds) {
-            config.data_type = type;
-        }
-    };
-    ChartInternal.prototype.hasType = function (type, targets) {
-        var $$ = this,
-            types = $$.config.data_types,
-            has = false;
-        targets = targets || $$.data.targets;
-        if (targets && targets.length) {
-            targets.forEach(function (target) {
-                var t = types[target.id];
-                if (t && t.indexOf(type) >= 0 || !t && type === 'line') {
-                    has = true;
-                }
-            });
-        } else if (Object.keys(types).length) {
-            Object.keys(types).forEach(function (id) {
-                if (types[id] === type) {
-                    has = true;
-                }
-            });
-        } else {
-            has = $$.config.data_type === type;
+    if (config.subchart_show) {
+      //-- Bar --//
+      contextBar = context.select('.' + CLASS.chartBars).selectAll('.' + CLASS.chartBar).data(targets);
+      contextBarEnter = contextBar.enter().append('g').style('opacity', 0);
+      contextBarEnter.merge(contextBar).attr('class', classChartBar); // Bars for each data
+
+      contextBarEnter.append('g').attr("class", classBars); //-- Line --//
+
+      contextLine = context.select('.' + CLASS.chartLines).selectAll('.' + CLASS.chartLine).data(targets);
+      contextLineEnter = contextLine.enter().append('g').style('opacity', 0);
+      contextLineEnter.merge(contextLine).attr('class', classChartLine); // Lines for each data
+
+      contextLineEnter.append("g").attr("class", classLines); // Area
+
+      contextLineEnter.append("g").attr("class", classAreas); //-- Brush --//
+
+      context.selectAll('.' + CLASS.brush + ' rect').attr(config.axis_rotated ? "width" : "height", config.axis_rotated ? $$.width2 : $$.height2);
+    }
+  };
+
+  ChartInternal.prototype.updateBarForSubchart = function (durationForExit) {
+    var $$ = this;
+    var contextBar = $$.context.selectAll('.' + CLASS.bars).selectAll('.' + CLASS.bar).data($$.barData.bind($$));
+    var contextBarEnter = contextBar.enter().append('path').attr("class", $$.classBar.bind($$)).style("stroke", 'none').style("fill", $$.color);
+    contextBar.exit().transition().duration(durationForExit).style('opacity', 0).remove();
+    $$.contextBar = contextBarEnter.merge(contextBar).style("opacity", $$.initialOpacity.bind($$));
+  };
+
+  ChartInternal.prototype.redrawBarForSubchart = function (drawBarOnSub, withTransition, duration) {
+    (withTransition ? this.contextBar.transition(Math.random().toString()).duration(duration) : this.contextBar).attr('d', drawBarOnSub).style('opacity', 1);
+  };
+
+  ChartInternal.prototype.updateLineForSubchart = function (durationForExit) {
+    var $$ = this;
+    var contextLine = $$.context.selectAll('.' + CLASS.lines).selectAll('.' + CLASS.line).data($$.lineData.bind($$));
+    var contextLineEnter = contextLine.enter().append('path').attr('class', $$.classLine.bind($$)).style('stroke', $$.color);
+    contextLine.exit().transition().duration(durationForExit).style('opacity', 0).remove();
+    $$.contextLine = contextLineEnter.merge(contextLine).style("opacity", $$.initialOpacity.bind($$));
+  };
+
+  ChartInternal.prototype.redrawLineForSubchart = function (drawLineOnSub, withTransition, duration) {
+    (withTransition ? this.contextLine.transition(Math.random().toString()).duration(duration) : this.contextLine).attr("d", drawLineOnSub).style('opacity', 1);
+  };
+
+  ChartInternal.prototype.updateAreaForSubchart = function (durationForExit) {
+    var $$ = this,
+        d3 = $$.d3;
+    var contextArea = $$.context.selectAll('.' + CLASS.areas).selectAll('.' + CLASS.area).data($$.lineData.bind($$));
+    var contextAreaEnter = contextArea.enter().append('path').attr("class", $$.classArea.bind($$)).style("fill", $$.color).style("opacity", function () {
+      $$.orgAreaOpacity = +d3.select(this).style('opacity');
+      return 0;
+    });
+    contextArea.exit().transition().duration(durationForExit).style('opacity', 0).remove();
+    $$.contextArea = contextAreaEnter.merge(contextArea).style("opacity", 0);
+  };
+
+  ChartInternal.prototype.redrawAreaForSubchart = function (drawAreaOnSub, withTransition, duration) {
+    (withTransition ? this.contextArea.transition(Math.random().toString()).duration(duration) : this.contextArea).attr("d", drawAreaOnSub).style("fill", this.color).style("opacity", this.orgAreaOpacity);
+  };
+
+  ChartInternal.prototype.redrawSubchart = function (withSubchart, transitions, duration, durationForExit, areaIndices, barIndices, lineIndices) {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        drawAreaOnSub,
+        drawBarOnSub,
+        drawLineOnSub;
+    $$.context.style('visibility', config.subchart_show ? 'visible' : 'hidden'); // subchart
+
+    if (config.subchart_show) {
+      // reflect main chart to extent on subchart if zoomed
+      if (d3.event && d3.event.type === 'zoom') {
+        $$.brush.selectionAsValue($$.x.orgDomain());
+      } // update subchart elements if needed
+
+
+      if (withSubchart) {
+        // extent rect
+        if (!$$.brush.empty()) {
+          $$.brush.selectionAsValue($$.x.orgDomain());
+        } // setup drawer - MEMO: this must be called after axis updated
+
+
+        drawAreaOnSub = $$.generateDrawArea(areaIndices, true);
+        drawBarOnSub = $$.generateDrawBar(barIndices, true);
+        drawLineOnSub = $$.generateDrawLine(lineIndices, true);
+        $$.updateBarForSubchart(duration);
+        $$.updateLineForSubchart(duration);
+        $$.updateAreaForSubchart(duration);
+        $$.redrawBarForSubchart(drawBarOnSub, duration, duration);
+        $$.redrawLineForSubchart(drawLineOnSub, duration, duration);
+        $$.redrawAreaForSubchart(drawAreaOnSub, duration, duration);
+      }
+    }
+  };
+
+  ChartInternal.prototype.redrawForBrush = function () {
+    var $$ = this,
+        x = $$.x,
+        d3 = $$.d3,
+        s;
+    $$.redraw({
+      withTransition: false,
+      withY: $$.config.zoom_rescale,
+      withSubchart: false,
+      withUpdateXDomain: true,
+      withEventRect: false,
+      withDimension: false
+    }); // update zoom transation binded to event rect
+
+    s = d3.event.selection || $$.brush.scale.range();
+    $$.main.select('.' + CLASS.eventRect).call($$.zoom.transform, d3.zoomIdentity.scale($$.width / (s[1] - s[0])).translate(-s[0], 0));
+    $$.config.subchart_onbrush.call($$.api, x.orgDomain());
+  };
+
+  ChartInternal.prototype.transformContext = function (withTransition, transitions) {
+    var $$ = this,
+        subXAxis;
+
+    if (transitions && transitions.axisSubX) {
+      subXAxis = transitions.axisSubX;
+    } else {
+      subXAxis = $$.context.select('.' + CLASS.axisX);
+
+      if (withTransition) {
+        subXAxis = subXAxis.transition();
+      }
+    }
+
+    $$.context.attr("transform", $$.getTranslate('context'));
+    subXAxis.attr("transform", $$.getTranslate('subx'));
+  };
+
+  ChartInternal.prototype.getDefaultSelection = function () {
+    var $$ = this,
+        config = $$.config,
+        selection = isFunction(config.axis_x_selection) ? config.axis_x_selection($$.getXDomain($$.data.targets)) : config.axis_x_selection;
+
+    if ($$.isTimeSeries()) {
+      selection = [$$.parseDate(selection[0]), $$.parseDate(selection[1])];
+    }
+
+    return selection;
+  };
+
+  ChartInternal.prototype.initText = function () {
+    var $$ = this;
+    $$.main.select('.' + CLASS.chart).append("g").attr("class", CLASS.chartTexts);
+    $$.mainText = $$.d3.selectAll([]);
+  };
+
+  ChartInternal.prototype.updateTargetsForText = function (targets) {
+    var $$ = this,
+        classChartText = $$.classChartText.bind($$),
+        classTexts = $$.classTexts.bind($$),
+        classFocus = $$.classFocus.bind($$);
+    var mainText = $$.main.select('.' + CLASS.chartTexts).selectAll('.' + CLASS.chartText).data(targets);
+    var mainTextEnter = mainText.enter().append('g').attr('class', classChartText).style('opacity', 0).style("pointer-events", "none");
+    mainTextEnter.append('g').attr('class', classTexts);
+    mainTextEnter.merge(mainText).attr('class', function (d) {
+      return classChartText(d) + classFocus(d);
+    });
+  };
+
+  ChartInternal.prototype.updateText = function (xForText, yForText, durationForExit) {
+    var $$ = this,
+        config = $$.config,
+        barOrLineData = $$.barOrLineData.bind($$),
+        classText = $$.classText.bind($$);
+    var mainText = $$.main.selectAll('.' + CLASS.texts).selectAll('.' + CLASS.text).data(barOrLineData);
+    var mainTextEnter = mainText.enter().append('text').attr("class", classText).attr('text-anchor', function (d) {
+      return config.axis_rotated ? d.value < 0 ? 'end' : 'start' : 'middle';
+    }).style("stroke", 'none').attr('x', xForText).attr('y', yForText).style("fill", function (d) {
+      return $$.color(d);
+    }).style("fill-opacity", 0);
+    $$.mainText = mainTextEnter.merge(mainText).text(function (d, i, j) {
+      return $$.dataLabelFormat(d.id)(d.value, d.id, i, j);
+    });
+    mainText.exit().transition().duration(durationForExit).style('fill-opacity', 0).remove();
+  };
+
+  ChartInternal.prototype.redrawText = function (xForText, yForText, forFlow, withTransition, transition) {
+    return [(withTransition ? this.mainText.transition(transition) : this.mainText).attr('x', xForText).attr('y', yForText).style("fill", this.color).style("fill-opacity", forFlow ? 0 : this.opacityForText.bind(this))];
+  };
+
+  ChartInternal.prototype.getTextRect = function (text, cls, element) {
+    var dummy = this.d3.select('body').append('div').classed('c3', true),
+        svg = dummy.append("svg").style('visibility', 'hidden').style('position', 'fixed').style('top', 0).style('left', 0),
+        font = this.d3.select(element).style('font'),
+        rect;
+    svg.selectAll('.dummy').data([text]).enter().append('text').classed(cls ? cls : "", true).style('font', font).text(text).each(function () {
+      rect = this.getBoundingClientRect();
+    });
+    dummy.remove();
+    return rect;
+  };
+
+  ChartInternal.prototype.generateXYForText = function (areaIndices, barIndices, lineIndices, forX) {
+    var $$ = this,
+        getAreaPoints = $$.generateGetAreaPoints(areaIndices, false),
+        getBarPoints = $$.generateGetBarPoints(barIndices, false),
+        getLinePoints = $$.generateGetLinePoints(lineIndices, false),
+        getter = forX ? $$.getXForText : $$.getYForText;
+    return function (d, i) {
+      var getPoints = $$.isAreaType(d) ? getAreaPoints : $$.isBarType(d) ? getBarPoints : getLinePoints;
+      return getter.call($$, getPoints(d, i), d, this);
+    };
+  };
+
+  ChartInternal.prototype.getXForText = function (points, d, textElement) {
+    var $$ = this,
+        box = textElement.getBoundingClientRect(),
+        xPos,
+        padding;
+
+    if ($$.config.axis_rotated) {
+      padding = $$.isBarType(d) ? 4 : 6;
+      xPos = points[2][1] + padding * (d.value < 0 ? -1 : 1);
+    } else {
+      xPos = $$.hasType('bar') ? (points[2][0] + points[0][0]) / 2 : points[0][0];
+    } // show labels regardless of the domain if value is null
+
+
+    if (d.value === null) {
+      if (xPos > $$.width) {
+        xPos = $$.width - box.width;
+      } else if (xPos < 0) {
+        xPos = 4;
+      }
+    }
+
+    return xPos;
+  };
+
+  ChartInternal.prototype.getYForText = function (points, d, textElement) {
+    var $$ = this,
+        box = textElement.getBoundingClientRect(),
+        yPos;
+
+    if ($$.config.axis_rotated) {
+      yPos = (points[0][0] + points[2][0] + box.height * 0.6) / 2;
+    } else {
+      yPos = points[2][1];
+
+      if (d.value < 0 || d.value === 0 && !$$.hasPositiveValue) {
+        yPos += box.height;
+
+        if ($$.isBarType(d) && $$.isSafari()) {
+          yPos -= 3;
+        } else if (!$$.isBarType(d) && $$.isChrome()) {
+          yPos += 3;
         }
         }
-        return has;
-    };
-    ChartInternal.prototype.hasArcType = function (targets) {
-        return this.hasType('pie', targets) || this.hasType('donut', targets) || this.hasType('gauge', targets);
-    };
-    ChartInternal.prototype.isLineType = function (d) {
-        var config = this.config,
-            id = isString(d) ? d : d.id;
-        return !config.data_types[id] || ['line', 'spline', 'area', 'area-spline', 'step', 'area-step'].indexOf(config.data_types[id]) >= 0;
-    };
-    ChartInternal.prototype.isStepType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return ['step', 'area-step'].indexOf(this.config.data_types[id]) >= 0;
-    };
-    ChartInternal.prototype.isSplineType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return ['spline', 'area-spline'].indexOf(this.config.data_types[id]) >= 0;
-    };
-    ChartInternal.prototype.isAreaType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return ['area', 'area-spline', 'area-step'].indexOf(this.config.data_types[id]) >= 0;
-    };
-    ChartInternal.prototype.isBarType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return this.config.data_types[id] === 'bar';
-    };
-    ChartInternal.prototype.isScatterType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return this.config.data_types[id] === 'scatter';
-    };
-    ChartInternal.prototype.isPieType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return this.config.data_types[id] === 'pie';
-    };
-    ChartInternal.prototype.isGaugeType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return this.config.data_types[id] === 'gauge';
-    };
-    ChartInternal.prototype.isDonutType = function (d) {
-        var id = isString(d) ? d : d.id;
-        return this.config.data_types[id] === 'donut';
-    };
-    ChartInternal.prototype.isArcType = function (d) {
-        return this.isPieType(d) || this.isDonutType(d) || this.isGaugeType(d);
-    };
-    ChartInternal.prototype.lineData = function (d) {
-        return this.isLineType(d) ? [d] : [];
-    };
-    ChartInternal.prototype.arcData = function (d) {
-        return this.isArcType(d.data) ? [d] : [];
-    };
-    /* not used
-     function scatterData(d) {
-     return isScatterType(d) ? d.values : [];
-     }
-     */
-    ChartInternal.prototype.barData = function (d) {
-        return this.isBarType(d) ? d.values : [];
-    };
-    ChartInternal.prototype.lineOrScatterData = function (d) {
-        return this.isLineType(d) || this.isScatterType(d) ? d.values : [];
-    };
-    ChartInternal.prototype.barOrLineData = function (d) {
-        return this.isBarType(d) || this.isLineType(d) ? d.values : [];
-    };
+      } else {
+        yPos += $$.isBarType(d) ? -3 : -6;
+      }
+    } // show labels regardless of the domain if value is null
 
 
-    ChartInternal.prototype.isSafari = function () {
-        var ua = window.navigator.userAgent;
-        return ua.indexOf('Safari') >= 0 && ua.indexOf('Chrome') < 0;
-    };
-    ChartInternal.prototype.isChrome = function () {
-        var ua = window.navigator.userAgent;
-        return ua.indexOf('Chrome') >= 0;
-    };
 
 
-    ChartInternal.prototype.initZoom = function () {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            startEvent;
+    if (d.value === null && !$$.config.axis_rotated) {
+      if (yPos < box.height) {
+        yPos = box.height;
+      } else if (yPos > this.height) {
+        yPos = this.height - 4;
+      }
+    }
 
 
-        $$.zoom = d3.zoom().on("start", function () {
-            if (config.zoom_type !== 'scroll') {
-                return;
-            }
+    return yPos;
+  };
+
+  ChartInternal.prototype.initTitle = function () {
+    var $$ = this;
+    $$.title = $$.svg.append("text").text($$.config.title_text).attr("class", $$.CLASS.title);
+  };
+
+  ChartInternal.prototype.redrawTitle = function () {
+    var $$ = this;
+    $$.title.attr("x", $$.xForTitle.bind($$)).attr("y", $$.yForTitle.bind($$));
+  };
+
+  ChartInternal.prototype.xForTitle = function () {
+    var $$ = this,
+        config = $$.config,
+        position = config.title_position || 'left',
+        x;
+
+    if (position.indexOf('right') >= 0) {
+      x = $$.currentWidth - $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).width - config.title_padding.right;
+    } else if (position.indexOf('center') >= 0) {
+      x = ($$.currentWidth - $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).width) / 2;
+    } else {
+      // left
+      x = config.title_padding.left;
+    }
 
 
-            var e = d3.event.sourceEvent;
-            if (e && e.type === "brush") {
-                return;
-            }
-            startEvent = e;
-            config.zoom_onzoomstart.call($$.api, e);
-        }).on("zoom", function () {
-            if (config.zoom_type !== 'scroll') {
-                return;
-            }
+    return x;
+  };
 
 
-            var e = d3.event.sourceEvent;
-            if (e && e.type === "brush") {
-                return;
-            }
+  ChartInternal.prototype.yForTitle = function () {
+    var $$ = this;
+    return $$.config.title_padding.top + $$.getTextRect($$.title.node().textContent, $$.CLASS.title, $$.title.node()).height;
+  };
 
 
-            $$.redrawForZoom();
+  ChartInternal.prototype.getTitlePadding = function () {
+    var $$ = this;
+    return $$.yForTitle() + $$.config.title_padding.bottom;
+  };
 
 
-            config.zoom_onzoom.call($$.api, $$.x.orgDomain());
-        }).on('end', function () {
-            if (config.zoom_type !== 'scroll') {
-                return;
-            }
+  ChartInternal.prototype.initTooltip = function () {
+    var $$ = this,
+        config = $$.config,
+        i;
+    $$.tooltip = $$.selectChart.style("position", "relative").append("div").attr('class', CLASS.tooltipContainer).style("position", "absolute").style("pointer-events", "none").style("display", "none"); // Show tooltip if needed
 
 
-            var e = d3.event.sourceEvent;
-            if (e && e.type === "brush") {
-                return;
-            }
-            // if click, do nothing. otherwise, click interaction will be canceled.
-            if (e && startEvent.clientX === e.clientX && startEvent.clientY === e.clientY) {
-                return;
-            }
-            config.zoom_onzoomend.call($$.api, $$.x.orgDomain());
-        });
+    if (config.tooltip_init_show) {
+      if ($$.isTimeSeries() && isString(config.tooltip_init_x)) {
+        config.tooltip_init_x = $$.parseDate(config.tooltip_init_x);
 
 
-        $$.zoom.updateDomain = function () {
-            if (d3.event && d3.event.transform) {
-                $$.x.domain(d3.event.transform.rescaleX($$.subX).domain());
-            }
-            return this;
+        for (i = 0; i < $$.data.targets[0].values.length; i++) {
+          if ($$.data.targets[0].values[i].x - config.tooltip_init_x === 0) {
+            break;
+          }
+        }
+
+        config.tooltip_init_x = i;
+      }
+
+      $$.tooltip.html(config.tooltip_contents.call($$, $$.data.targets.map(function (d) {
+        return $$.addName(d.values[config.tooltip_init_x]);
+      }), $$.axis.getXAxisTickFormat(), $$.getYFormat($$.hasArcType()), $$.color));
+      $$.tooltip.style("top", config.tooltip_init_position.top).style("left", config.tooltip_init_position.left).style("display", "block");
+    }
+  };
+
+  ChartInternal.prototype.getTooltipSortFunction = function () {
+    var $$ = this,
+        config = $$.config;
+
+    if (config.data_groups.length === 0 || config.tooltip_order !== undefined) {
+      // if data are not grouped or if an order is specified
+      // for the tooltip values we sort them by their values
+      var order = config.tooltip_order;
+
+      if (order === undefined) {
+        order = config.data_order;
+      }
+
+      var valueOf = function valueOf(obj) {
+        return obj ? obj.value : null;
+      }; // if data are not grouped, we sort them by their value
+
+
+      if (isString(order) && order.toLowerCase() === 'asc') {
+        return function (a, b) {
+          return valueOf(a) - valueOf(b);
         };
         };
-        $$.zoom.updateExtent = function () {
-            this.scaleExtent([1, Infinity]).translateExtent([[0, 0], [$$.width, $$.height]]).extent([[0, 0], [$$.width, $$.height]]);
-            return this;
+      } else if (isString(order) && order.toLowerCase() === 'desc') {
+        return function (a, b) {
+          return valueOf(b) - valueOf(a);
         };
         };
-        $$.zoom.update = function () {
-            return this.updateExtent().updateDomain();
+      } else if (isFunction(order)) {
+        // if the function is from data_order we need
+        // to wrap the returned function in order to format
+        // the sorted value to the expected format
+        var sortFunction = order;
+
+        if (config.tooltip_order === undefined) {
+          sortFunction = function sortFunction(a, b) {
+            return order(a ? {
+              id: a.id,
+              values: [a]
+            } : null, b ? {
+              id: b.id,
+              values: [b]
+            } : null);
+          };
+        }
+
+        return sortFunction;
+      } else if (isArray(order)) {
+        return function (a, b) {
+          return order.indexOf(a.id) - order.indexOf(b.id);
         };
         };
+      }
+    } else {
+      // if data are grouped, we follow the order of grouped targets
+      var ids = $$.orderTargets($$.data.targets).map(function (i) {
+        return i.id;
+      }); // if it was either asc or desc we need to invert the order
+      // returned by orderTargets
+
+      if ($$.isOrderAsc() || $$.isOrderDesc()) {
+        ids = ids.reverse();
+      }
 
 
-        return $$.zoom.updateExtent();
-    };
-    ChartInternal.prototype.zoomTransform = function (range) {
-        var $$ = this,
-            s = [$$.x(range[0]), $$.x(range[1])];
-        return $$.d3.zoomIdentity.scale($$.width / (s[1] - s[0])).translate(-s[0], 0);
-    };
+      return function (a, b) {
+        return ids.indexOf(a.id) - ids.indexOf(b.id);
+      };
+    }
+  };
+
+  ChartInternal.prototype.getTooltipContent = function (d, defaultTitleFormat, defaultValueFormat, color) {
+    var $$ = this,
+        config = $$.config,
+        titleFormat = config.tooltip_format_title || defaultTitleFormat,
+        nameFormat = config.tooltip_format_name || function (name) {
+      return name;
+    },
+        valueFormat = config.tooltip_format_value || defaultValueFormat,
+        text,
+        i,
+        title,
+        value,
+        name,
+        bgcolor;
+
+    var tooltipSortFunction = this.getTooltipSortFunction();
+
+    if (tooltipSortFunction) {
+      d.sort(tooltipSortFunction);
+    }
 
 
-    ChartInternal.prototype.initDragZoom = function () {
-        var $$ = this;
-        var d3 = $$.d3;
-        var config = $$.config;
-        var context = $$.context = $$.svg;
-        var brushXPos = $$.margin.left + 20.5;
-        var brushYPos = $$.margin.top + 0.5;
+    for (i = 0; i < d.length; i++) {
+      if (!(d[i] && (d[i].value || d[i].value === 0))) {
+        continue;
+      }
 
 
-        if (!(config.zoom_type === 'drag' && config.zoom_enabled)) {
-            return;
+      if (!text) {
+        title = sanitise(titleFormat ? titleFormat(d[i].x) : d[i].x);
+        text = "<table class='" + $$.CLASS.tooltip + "'>" + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
+      }
+
+      value = sanitise(valueFormat(d[i].value, d[i].ratio, d[i].id, d[i].index, d));
+
+      if (value !== undefined) {
+        // Skip elements when their name is set to null
+        if (d[i].name === null) {
+          continue;
         }
 
         }
 
-        var getZoomedDomain = function getZoomedDomain(selection) {
-            return selection && selection.map(function (x) {
-                return $$.x.invert(x);
-            });
-        };
+        name = sanitise(nameFormat(d[i].name, d[i].ratio, d[i].id, d[i].index));
+        bgcolor = $$.levelColor ? $$.levelColor(d[i].value) : color(d[i].id);
+        text += "<tr class='" + $$.CLASS.tooltipName + "-" + $$.getTargetSelectorSuffix(d[i].id) + "'>";
+        text += "<td class='name'><span style='background-color:" + bgcolor + "'></span>" + name + "</td>";
+        text += "<td class='value'>" + value + "</td>";
+        text += "</tr>";
+      }
+    }
 
 
-        var brush = $$.dragZoomBrush = d3.brushX().on("start", function () {
-            $$.api.unzoom();
+    return text + "</table>";
+  };
+
+  ChartInternal.prototype.tooltipPosition = function (dataToShow, tWidth, tHeight, element) {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3;
+    var svgLeft, tooltipLeft, tooltipRight, tooltipTop, chartRight;
+    var forArc = $$.hasArcType(),
+        mouse = d3.mouse(element); // Determin tooltip position
+
+    if (forArc) {
+      tooltipLeft = ($$.width - ($$.isLegendRight ? $$.getLegendWidth() : 0)) / 2 + mouse[0];
+      tooltipTop = ($$.hasType('gauge') ? $$.height : $$.height / 2) + mouse[1] + 20;
+    } else {
+      svgLeft = $$.getSvgLeft(true);
+
+      if (config.axis_rotated) {
+        tooltipLeft = svgLeft + mouse[0] + 100;
+        tooltipRight = tooltipLeft + tWidth;
+        chartRight = $$.currentWidth - $$.getCurrentPaddingRight();
+        tooltipTop = $$.x(dataToShow[0].x) + 20;
+      } else {
+        tooltipLeft = svgLeft + $$.getCurrentPaddingLeft(true) + $$.x(dataToShow[0].x) + 20;
+        tooltipRight = tooltipLeft + tWidth;
+        chartRight = svgLeft + $$.currentWidth - $$.getCurrentPaddingRight();
+        tooltipTop = mouse[1] + 15;
+      }
 
 
-            $$.svg.select("." + CLASS.dragZoom).classed("disabled", false);
+      if (tooltipRight > chartRight) {
+        // 20 is needed for Firefox to keep tooltip width
+        tooltipLeft -= tooltipRight - chartRight + 20;
+      }
 
 
-            config.zoom_onzoomstart.call($$.api, d3.event.sourceEvent);
-        }).on("brush", function () {
-            config.zoom_onzoom.call($$.api, getZoomedDomain(d3.event.selection));
-        }).on("end", function () {
-            if (d3.event.selection == null) {
-                return;
-            }
+      if (tooltipTop + tHeight > $$.currentHeight) {
+        tooltipTop -= tHeight + 30;
+      }
+    }
 
 
-            var zoomedDomain = getZoomedDomain(d3.event.selection);
+    if (tooltipTop < 0) {
+      tooltipTop = 0;
+    }
 
 
-            if (!config.zoom_disableDefaultBehavior) {
-                $$.api.zoom(zoomedDomain);
-            }
+    return {
+      top: tooltipTop,
+      left: tooltipLeft
+    };
+  };
 
 
-            $$.svg.select("." + CLASS.dragZoom).classed("disabled", true);
+  ChartInternal.prototype.showTooltip = function (selectedData, element) {
+    var $$ = this,
+        config = $$.config;
+    var tWidth, tHeight, position;
+    var forArc = $$.hasArcType(),
+        dataToShow = selectedData.filter(function (d) {
+      return d && isValue(d.value);
+    }),
+        positionFunction = config.tooltip_position || ChartInternal.prototype.tooltipPosition;
 
 
-            config.zoom_onzoomend.call($$.api, zoomedDomain);
-        });
+    if (dataToShow.length === 0 || !config.tooltip_show) {
+      return;
+    }
+
+    $$.tooltip.html(config.tooltip_contents.call($$, selectedData, $$.axis.getXAxisTickFormat(), $$.getYFormat(forArc), $$.color)).style("display", "block"); // Get tooltip dimensions
+
+    tWidth = $$.tooltip.property('offsetWidth');
+    tHeight = $$.tooltip.property('offsetHeight');
+    position = positionFunction.call(this, dataToShow, tWidth, tHeight, element); // Set tooltip
+
+    $$.tooltip.style("top", position.top + "px").style("left", position.left + 'px');
+  };
+
+  ChartInternal.prototype.hideTooltip = function () {
+    this.tooltip.style("display", "none");
+  };
+
+  ChartInternal.prototype.setTargetType = function (targetIds, type) {
+    var $$ = this,
+        config = $$.config;
+    $$.mapToTargetIds(targetIds).forEach(function (id) {
+      $$.withoutFadeIn[id] = type === config.data_types[id];
+      config.data_types[id] = type;
+    });
+
+    if (!targetIds) {
+      config.data_type = type;
+    }
+  };
+
+  ChartInternal.prototype.hasType = function (type, targets) {
+    var $$ = this,
+        types = $$.config.data_types,
+        has = false;
+    targets = targets || $$.data.targets;
+
+    if (targets && targets.length) {
+      targets.forEach(function (target) {
+        var t = types[target.id];
+
+        if (t && t.indexOf(type) >= 0 || !t && type === 'line') {
+          has = true;
+        }
+      });
+    } else if (Object.keys(types).length) {
+      Object.keys(types).forEach(function (id) {
+        if (types[id] === type) {
+          has = true;
+        }
+      });
+    } else {
+      has = $$.config.data_type === type;
+    }
+
+    return has;
+  };
+
+  ChartInternal.prototype.hasArcType = function (targets) {
+    return this.hasType('pie', targets) || this.hasType('donut', targets) || this.hasType('gauge', targets);
+  };
+
+  ChartInternal.prototype.isLineType = function (d) {
+    var config = this.config,
+        id = isString(d) ? d : d.id;
+    return !config.data_types[id] || ['line', 'spline', 'area', 'area-spline', 'step', 'area-step'].indexOf(config.data_types[id]) >= 0;
+  };
+
+  ChartInternal.prototype.isStepType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return ['step', 'area-step'].indexOf(this.config.data_types[id]) >= 0;
+  };
+
+  ChartInternal.prototype.isSplineType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return ['spline', 'area-spline'].indexOf(this.config.data_types[id]) >= 0;
+  };
+
+  ChartInternal.prototype.isAreaType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return ['area', 'area-spline', 'area-step'].indexOf(this.config.data_types[id]) >= 0;
+  };
+
+  ChartInternal.prototype.isBarType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return this.config.data_types[id] === 'bar';
+  };
+
+  ChartInternal.prototype.isScatterType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return this.config.data_types[id] === 'scatter';
+  };
+
+  ChartInternal.prototype.isPieType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return this.config.data_types[id] === 'pie';
+  };
+
+  ChartInternal.prototype.isGaugeType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return this.config.data_types[id] === 'gauge';
+  };
+
+  ChartInternal.prototype.isDonutType = function (d) {
+    var id = isString(d) ? d : d.id;
+    return this.config.data_types[id] === 'donut';
+  };
+
+  ChartInternal.prototype.isArcType = function (d) {
+    return this.isPieType(d) || this.isDonutType(d) || this.isGaugeType(d);
+  };
+
+  ChartInternal.prototype.lineData = function (d) {
+    return this.isLineType(d) ? [d] : [];
+  };
+
+  ChartInternal.prototype.arcData = function (d) {
+    return this.isArcType(d.data) ? [d] : [];
+  };
+  /* not used
+   function scatterData(d) {
+   return isScatterType(d) ? d.values : [];
+   }
+   */
+
+
+  ChartInternal.prototype.barData = function (d) {
+    return this.isBarType(d) ? d.values : [];
+  };
+
+  ChartInternal.prototype.lineOrScatterData = function (d) {
+    return this.isLineType(d) || this.isScatterType(d) ? d.values : [];
+  };
+
+  ChartInternal.prototype.barOrLineData = function (d) {
+    return this.isBarType(d) || this.isLineType(d) ? d.values : [];
+  };
+
+  ChartInternal.prototype.isSafari = function () {
+    var ua = window.navigator.userAgent;
+    return ua.indexOf('Safari') >= 0 && ua.indexOf('Chrome') < 0;
+  };
+
+  ChartInternal.prototype.isChrome = function () {
+    var ua = window.navigator.userAgent;
+    return ua.indexOf('Chrome') >= 0;
+  };
+
+  ChartInternal.prototype.initZoom = function () {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        startEvent;
+    $$.zoom = d3.zoom().on("start", function () {
+      if (config.zoom_type !== 'scroll') {
+        return;
+      }
+
+      var e = d3.event.sourceEvent;
+
+      if (e && e.type === "brush") {
+        return;
+      }
+
+      startEvent = e;
+      config.zoom_onzoomstart.call($$.api, e);
+    }).on("zoom", function () {
+      if (config.zoom_type !== 'scroll') {
+        return;
+      }
+
+      var e = d3.event.sourceEvent;
+
+      if (e && e.type === "brush") {
+        return;
+      }
+
+      $$.redrawForZoom();
+      config.zoom_onzoom.call($$.api, $$.x.orgDomain());
+    }).on('end', function () {
+      if (config.zoom_type !== 'scroll') {
+        return;
+      }
+
+      var e = d3.event.sourceEvent;
+
+      if (e && e.type === "brush") {
+        return;
+      } // if click, do nothing. otherwise, click interaction will be canceled.
+
+
+      if (e && startEvent.clientX === e.clientX && startEvent.clientY === e.clientY) {
+        return;
+      }
+
+      config.zoom_onzoomend.call($$.api, $$.x.orgDomain());
+    });
+
+    $$.zoom.updateDomain = function () {
+      if (d3.event && d3.event.transform) {
+        $$.x.domain(d3.event.transform.rescaleX($$.subX).domain());
+      }
 
 
-        context.append("g").classed(CLASS.dragZoom, true).attr("clip-path", $$.clipPath).attr("transform", "translate(" + brushXPos + "," + brushYPos + ")").call(brush);
+      return this;
     };
 
     };
 
-    ChartInternal.prototype.getZoomDomain = function () {
-        var $$ = this,
-            config = $$.config,
-            d3 = $$.d3,
-            min = d3.min([$$.orgXDomain[0], config.zoom_x_min]),
-            max = d3.max([$$.orgXDomain[1], config.zoom_x_max]);
-        return [min, max];
+    $$.zoom.updateExtent = function () {
+      this.scaleExtent([1, Infinity]).translateExtent([[0, 0], [$$.width, $$.height]]).extent([[0, 0], [$$.width, $$.height]]);
+      return this;
     };
     };
-    ChartInternal.prototype.redrawForZoom = function () {
-        var $$ = this,
-            d3 = $$.d3,
-            config = $$.config,
-            zoom = $$.zoom,
-            x = $$.x;
-        if (!config.zoom_enabled) {
-            return;
-        }
-        if ($$.filterTargetsToShow($$.data.targets).length === 0) {
-            return;
-        }
 
 
-        zoom.update();
+    $$.zoom.update = function () {
+      return this.updateExtent().updateDomain();
+    };
 
 
-        if (config.zoom_disableDefaultBehavior) {
-            return;
-        }
+    return $$.zoom.updateExtent();
+  };
 
 
-        if ($$.isCategorized() && x.orgDomain()[0] === $$.orgXDomain[0]) {
-            x.domain([$$.orgXDomain[0] - 1e-10, x.orgDomain()[1]]);
-        }
+  ChartInternal.prototype.zoomTransform = function (range) {
+    var $$ = this,
+        s = [$$.x(range[0]), $$.x(range[1])];
+    return $$.d3.zoomIdentity.scale($$.width / (s[1] - s[0])).translate(-s[0], 0);
+  };
 
 
-        $$.redraw({
-            withTransition: false,
-            withY: config.zoom_rescale,
-            withSubchart: false,
-            withEventRect: false,
-            withDimension: false
-        });
+  ChartInternal.prototype.initDragZoom = function () {
+    var $$ = this;
+    var d3 = $$.d3;
+    var config = $$.config;
+    var context = $$.context = $$.svg;
+    var brushXPos = $$.margin.left + 20.5;
+    var brushYPos = $$.margin.top + 0.5;
 
 
-        if (d3.event.sourceEvent && d3.event.sourceEvent.type === 'mousemove') {
-            $$.cancelClick = true;
-        }
-    };
+    if (!(config.zoom_type === 'drag' && config.zoom_enabled)) {
+      return;
+    }
+
+    var getZoomedDomain = function getZoomedDomain(selection) {
+      return selection && selection.map(function (x) {
+        return $$.x.invert(x);
+      });
+    };
+
+    var brush = $$.dragZoomBrush = d3.brushX().on("start", function () {
+      $$.api.unzoom();
+      $$.svg.select("." + CLASS.dragZoom).classed("disabled", false);
+      config.zoom_onzoomstart.call($$.api, d3.event.sourceEvent);
+    }).on("brush", function () {
+      config.zoom_onzoom.call($$.api, getZoomedDomain(d3.event.selection));
+    }).on("end", function () {
+      if (d3.event.selection == null) {
+        return;
+      }
+
+      var zoomedDomain = getZoomedDomain(d3.event.selection);
+
+      if (!config.zoom_disableDefaultBehavior) {
+        $$.api.zoom(zoomedDomain);
+      }
+
+      $$.svg.select("." + CLASS.dragZoom).classed("disabled", true);
+      config.zoom_onzoomend.call($$.api, zoomedDomain);
+    });
+    context.append("g").classed(CLASS.dragZoom, true).attr("clip-path", $$.clipPath).attr("transform", "translate(" + brushXPos + "," + brushYPos + ")").call(brush);
+  };
+
+  ChartInternal.prototype.getZoomDomain = function () {
+    var $$ = this,
+        config = $$.config,
+        d3 = $$.d3,
+        min = d3.min([$$.orgXDomain[0], config.zoom_x_min]),
+        max = d3.max([$$.orgXDomain[1], config.zoom_x_max]);
+    return [min, max];
+  };
+
+  ChartInternal.prototype.redrawForZoom = function () {
+    var $$ = this,
+        d3 = $$.d3,
+        config = $$.config,
+        zoom = $$.zoom,
+        x = $$.x;
+
+    if (!config.zoom_enabled) {
+      return;
+    }
+
+    if ($$.filterTargetsToShow($$.data.targets).length === 0) {
+      return;
+    }
+
+    zoom.update();
+
+    if (config.zoom_disableDefaultBehavior) {
+      return;
+    }
+
+    if ($$.isCategorized() && x.orgDomain()[0] === $$.orgXDomain[0]) {
+      x.domain([$$.orgXDomain[0] - 1e-10, x.orgDomain()[1]]);
+    }
+
+    $$.redraw({
+      withTransition: false,
+      withY: config.zoom_rescale,
+      withSubchart: false,
+      withEventRect: false,
+      withDimension: false
+    });
+
+    if (d3.event.sourceEvent && d3.event.sourceEvent.type === 'mousemove') {
+      $$.cancelClick = true;
+    }
+  };
 
 
-    return c3;
+  return c3;
 
 })));
 
 })));
index a5a21e9e1104734c8073b515732b50d72b1ca758..cf7adbeeb494d66ffe02757d7cbc9a9e789713c5 100644 (file)
@@ -1,2 +1,2 @@
-/* @license C3.js v0.6.7 | (c) C3 Team and other contributors | http://c3js.org/ */
-!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.c3=e()}(this,function(){"use strict";function l(t){var e=this;e.d3=window.d3?window.d3:"undefined"!=typeof require?require("d3"):void 0,e.api=t,e.config=e.getDefaultConfig(),e.data={},e.cache={},e.axes={}}function n(t){var e=this.internal=new l(this);e.loadConfig(t),e.beforeInit(t),e.init(),e.afterInit(t),function e(i,n,r){Object.keys(i).forEach(function(t){n[t]=i[t].bind(r),0<Object.keys(i[t]).length&&e(i[t],n[t],r)})}(n.prototype,this,this)}function i(t,e){var i=this;i.component=t,i.params=e||{},i.d3=t.d3,i.scale=i.d3.scaleLinear(),i.range,i.orient="bottom",i.innerTickSize=6,i.outerTickSize=this.params.withOuterTick?6:0,i.tickPadding=3,i.tickValues=null,i.tickFormat,i.tickArguments,i.tickOffset=0,i.tickCulling=!0,i.tickCentered,i.tickTextCharSize,i.tickTextRotate=i.params.tickTextRotate,i.tickLength,i.axis=i.generateAxis()}i.prototype.axisX=function(t,e,i){t.attr("transform",function(t){return"translate("+Math.ceil(e(t)+i)+", 0)"})},i.prototype.axisY=function(t,e){t.attr("transform",function(t){return"translate(0,"+Math.ceil(e(t))+")"})},i.prototype.scaleExtent=function(t){var e=t[0],i=t[t.length-1];return e<i?[e,i]:[i,e]},i.prototype.generateTicks=function(t){var e,i,n=[];if(t.ticks)return t.ticks.apply(t,this.tickArguments);for(i=t.domain(),e=Math.ceil(i[0]);e<i[1];e++)n.push(e);return 0<n.length&&0<n[0]&&n.unshift(n[0]-(n[1]-n[0])),n},i.prototype.copyScale=function(){var t,e=this,i=e.scale.copy();return e.params.isCategory&&(t=e.scale.domain(),i.domain([t[0],t[1]-1])),i},i.prototype.textFormatted=function(t){var e=this.tickFormat?this.tickFormat(t):t;return void 0!==e?e:""},i.prototype.updateRange=function(){var t=this;return t.range=t.scale.rangeExtent?t.scale.rangeExtent():t.scaleExtent(t.scale.range()),t.range},i.prototype.updateTickTextCharSize=function(t){var a=this;if(a.tickTextCharSize)return a.tickTextCharSize;var o={h:11.5,w:5.5};return t.select("text").text(function(t){return a.textFormatted(t)}).each(function(t){var e=this.getBoundingClientRect(),i=a.textFormatted(t),n=e.height,r=i?e.width/i.length:void 0;n&&r&&(o.h=n,o.w=r)}).text(""),a.tickTextCharSize=o},i.prototype.isVertical=function(){return"left"===this.orient||"right"===this.orient},i.prototype.tspanData=function(t,e,i){var n=this,r=n.params.tickMultiline?n.splitTickText(t,i):[].concat(n.textFormatted(t));return n.params.tickMultiline&&0<n.params.tickMultilineMax&&(r=n.ellipsify(r,n.params.tickMultilineMax)),r.map(function(t){return{index:e,splitted:t,length:r.length}})},i.prototype.splitTickText=function(t,e){var r,a,o,s=this,i=s.textFormatted(t),c=s.params.tickWidth;if("[object Array]"===Object.prototype.toString.call(i))return i;return(!c||c<=0)&&(c=s.isVertical()?95:s.params.isCategory?Math.ceil(e(1)-e(0))-12:110),function t(e,i){a=void 0;for(var n=1;n<i.length;n++)if(" "===i.charAt(n)&&(a=n),r=i.substr(0,n+1),o=s.tickTextCharSize.w*r.length,c<o)return t(e.concat(i.substr(0,a||n)),i.slice(a?a+1:n));return e.concat(i)}([],i+"")},i.prototype.ellipsify=function(t,e){if(t.length<=e)return t;for(var i=t.slice(0,e),n=3,r=e-1;0<=r;r--){var a=i[r].length;if(i[r]=i[r].substr(0,a-n).padEnd(a,"."),(n-=a)<=0)break}return i},i.prototype.updateTickLength=function(){this.tickLength=Math.max(this.innerTickSize,0)+this.tickPadding},i.prototype.lineY2=function(t){var e=this,i=e.scale(t)+(e.tickCentered?0:e.tickOffset);return e.range[0]<i&&i<e.range[1]?e.innerTickSize:0},i.prototype.textY=function(){var t=this.tickTextRotate;return t?11.5-t/15*2.5*(0<t?1:-1):this.tickLength},i.prototype.textTransform=function(){var t=this.tickTextRotate;return t?"rotate("+t+")":""},i.prototype.textTextAnchor=function(){var t=this.tickTextRotate;return t?0<t?"start":"end":"middle"},i.prototype.tspanDx=function(){var t=this.tickTextRotate;return t?8*Math.sin(Math.PI*(t/180)):0},i.prototype.tspanDy=function(t,e){var i=this.tickTextCharSize.h;return 0===e&&(i=this.isVertical()?-((t.length-1)*(this.tickTextCharSize.h/2)-3):".71em"),i},i.prototype.generateAxis=function(){var w=this,v=w.d3,b=w.params;function A(t,m){var S;return t.each(function(){var t,e,i,n=A.g=v.select(this),r=this.__chart__||w.scale,a=this.__chart__=w.copyScale(),o=w.tickValues?w.tickValues:w.generateTicks(a),s=n.selectAll(".tick").data(o,a),c=s.enter().insert("g",".domain").attr("class","tick").style("opacity",1e-6),d=s.exit().remove(),l=s.merge(c);b.isCategory?(w.tickOffset=Math.ceil((a(1)-a(0))/2),e=w.tickCentered?0:w.tickOffset,i=w.tickCentered?w.tickOffset:0):w.tickOffset=e=0,w.updateRange(),w.updateTickLength(),w.updateTickTextCharSize(n.select(".tick"));var u=l.select("line").merge(c.append("line")),h=l.select("text").merge(c.append("text")),g=l.selectAll("text").selectAll("tspan").data(function(t,e){return w.tspanData(t,e,a)}),p=g.enter().append("tspan").merge(g).text(function(t){return t.splitted});g.exit().remove();var f=n.selectAll(".domain").data([0]),_=f.enter().append("path").merge(f).attr("class","domain");switch(w.orient){case"bottom":t=w.axisX,u.attr("x1",e).attr("x2",e).attr("y2",function(t,e){return w.lineY2(t,e)}),h.attr("x",0).attr("y",function(t,e){return w.textY(t,e)}).attr("transform",function(t,e){return w.textTransform(t,e)}).style("text-anchor",function(t,e){return w.textTextAnchor(t,e)}),p.attr("x",0).attr("dy",function(t,e){return w.tspanDy(t,e)}).attr("dx",function(t,e){return w.tspanDx(t,e)}),_.attr("d","M"+w.range[0]+","+w.outerTickSize+"V0H"+w.range[1]+"V"+w.outerTickSize);break;case"top":t=w.axisX,u.attr("x1",e).attr("x2",e).attr("y2",function(t,e){return-1*w.lineY2(t,e)}),h.attr("x",0).attr("y",function(t,e){return-1*w.textY(t,e)-(b.isCategory?2:w.tickLength-2)}).attr("transform",function(t,e){return w.textTransform(t,e)}).style("text-anchor",function(t,e){return w.textTextAnchor(t,e)}),p.attr("x",0).attr("dy",function(t,e){return w.tspanDy(t,e)}).attr("dx",function(t,e){return w.tspanDx(t,e)}),_.attr("d","M"+w.range[0]+","+-w.outerTickSize+"V0H"+w.range[1]+"V"+-w.outerTickSize);break;case"left":t=w.axisY,u.attr("x2",-w.innerTickSize).attr("y1",i).attr("y2",i),h.attr("x",-w.tickLength).attr("y",w.tickOffset).style("text-anchor","end"),p.attr("x",-w.tickLength).attr("dy",function(t,e){return w.tspanDy(t,e)}),_.attr("d","M"+-w.outerTickSize+","+w.range[0]+"H0V"+w.range[1]+"H"+-w.outerTickSize);break;case"right":t=w.axisY,u.attr("x2",w.innerTickSize).attr("y1",i).attr("y2",i),h.attr("x",w.tickLength).attr("y",w.tickOffset).style("text-anchor","start"),p.attr("x",w.tickLength).attr("dy",function(t,e){return w.tspanDy(t,e)}),_.attr("d","M"+w.outerTickSize+","+w.range[0]+"H0V"+w.range[1]+"H"+w.outerTickSize)}if(a.rangeBand){var x=a,y=x.rangeBand()/2;r=a=function(t){return x(t)+y}}else r.rangeBand?r=a:d.call(t,a,w.tickOffset);c.call(t,r,w.tickOffset),S=(m?l.transition(m):l).style("opacity",1).call(t,a,w.tickOffset)}),S}return A.scale=function(t){return arguments.length?(w.scale=t,A):w.scale},A.orient=function(t){return arguments.length?(w.orient=t in{top:1,right:1,bottom:1,left:1}?t+"":"bottom",A):w.orient},A.tickFormat=function(t){return arguments.length?(w.tickFormat=t,A):w.tickFormat},A.tickCentered=function(t){return arguments.length?(w.tickCentered=t,A):w.tickCentered},A.tickOffset=function(){return w.tickOffset},A.tickInterval=function(){var t;return(t=b.isCategory?2*w.tickOffset:(A.g.select("path.domain").node().getTotalLength()-2*w.outerTickSize)/A.g.selectAll("line").size())===1/0?0:t},A.ticks=function(){return arguments.length?(w.tickArguments=arguments,A):w.tickArguments},A.tickCulling=function(t){return arguments.length?(w.tickCulling=t,A):w.tickCulling},A.tickValues=function(t){if("function"==typeof t)w.tickValues=function(){return t(w.scale.domain())};else{if(!arguments.length)return w.tickValues;w.tickValues=t}return A},A};var Y={target:"c3-target",chart:"c3-chart",chartLine:"c3-chart-line",chartLines:"c3-chart-lines",chartBar:"c3-chart-bar",chartBars:"c3-chart-bars",chartText:"c3-chart-text",chartTexts:"c3-chart-texts",chartArc:"c3-chart-arc",chartArcs:"c3-chart-arcs",chartArcsTitle:"c3-chart-arcs-title",chartArcsBackground:"c3-chart-arcs-background",chartArcsGaugeUnit:"c3-chart-arcs-gauge-unit",chartArcsGaugeMax:"c3-chart-arcs-gauge-max",chartArcsGaugeMin:"c3-chart-arcs-gauge-min",selectedCircle:"c3-selected-circle",selectedCircles:"c3-selected-circles",eventRect:"c3-event-rect",eventRects:"c3-event-rects",eventRectsSingle:"c3-event-rects-single",eventRectsMultiple:"c3-event-rects-multiple",zoomRect:"c3-zoom-rect",brush:"c3-brush",dragZoom:"c3-drag-zoom",focused:"c3-focused",defocused:"c3-defocused",region:"c3-region",regions:"c3-regions",title:"c3-title",tooltipContainer:"c3-tooltip-container",tooltip:"c3-tooltip",tooltipName:"c3-tooltip-name",shape:"c3-shape",shapes:"c3-shapes",line:"c3-line",lines:"c3-lines",bar:"c3-bar",bars:"c3-bars",circle:"c3-circle",circles:"c3-circles",arc:"c3-arc",arcLabelLine:"c3-arc-label-line",arcs:"c3-arcs",area:"c3-area",areas:"c3-areas",empty:"c3-empty",text:"c3-text",texts:"c3-texts",gaugeValue:"c3-gauge-value",grid:"c3-grid",gridLines:"c3-grid-lines",xgrid:"c3-xgrid",xgrids:"c3-xgrids",xgridLine:"c3-xgrid-line",xgridLines:"c3-xgrid-lines",xgridFocus:"c3-xgrid-focus",ygrid:"c3-ygrid",ygrids:"c3-ygrids",ygridLine:"c3-ygrid-line",ygridLines:"c3-ygrid-lines",axis:"c3-axis",axisX:"c3-axis-x",axisXLabel:"c3-axis-x-label",axisY:"c3-axis-y",axisYLabel:"c3-axis-y-label",axisY2:"c3-axis-y2",axisY2Label:"c3-axis-y2-label",legendBackground:"c3-legend-background",legendItem:"c3-legend-item",legendItemEvent:"c3-legend-item-event",legendItemTile:"c3-legend-item-tile",legendItemHidden:"c3-legend-item-hidden",legendItemFocused:"c3-legend-item-focused",dragarea:"c3-dragarea",EXPANDED:"_expanded_",SELECTED:"_selected_",INCLUDED:"_included_"},s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a=function(t){return Math.ceil(t)+.5},r=function(t){return 10*Math.ceil(t/10)},k=function(t){return t[1]-t[0]},N=function(t,e,i){return D(t[e])?t[e]:i},y=function(t){var e=t.getBoundingClientRect(),i=[t.pathSegList.getItem(0),t.pathSegList.getItem(1)];return{x:i[0].x,y:Math.min(i[0].y,i[1].y),width:e.width,height:e.height}},o=function(t){return Array.isArray(t)},D=function(t){return void 0!==t},u=function(t){return null==t||c(t)&&0===t.length||"object"===(void 0===t?"undefined":s(t))&&0===Object.keys(t).length},h=function(t){return"function"==typeof t},c=function(t){return"string"==typeof t},v=function(t){return void 0===t},P=function(t){return t||0===t},C=function(t){return!u(t)},_=function(t){return"string"==typeof t?t.replace(/</g,"&lt;").replace(/>/g,"&gt;"):t},d=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=e,this.d3=e.d3,this.internal=i};d.prototype.init=function(){var t=this.owner,e=t.config,i=t.main;t.axes.x=i.append("g").attr("class",Y.axis+" "+Y.axisX).attr("clip-path",e.axis_x_inner?"":t.clipPathForXAxis).attr("transform",t.getTranslate("x")).style("visibility",e.axis_x_show?"visible":"hidden"),t.axes.x.append("text").attr("class",Y.axisXLabel).attr("transform",e.axis_rotated?"rotate(-90)":"").style("text-anchor",this.textAnchorForXAxisLabel.bind(this)),t.axes.y=i.append("g").attr("class",Y.axis+" "+Y.axisY).attr("clip-path",e.axis_y_inner?"":t.clipPathForYAxis).attr("transform",t.getTranslate("y")).style("visibility",e.axis_y_show?"visible":"hidden"),t.axes.y.append("text").attr("class",Y.axisYLabel).attr("transform",e.axis_rotated?"":"rotate(-90)").style("text-anchor",this.textAnchorForYAxisLabel.bind(this)),t.axes.y2=i.append("g").attr("class",Y.axis+" "+Y.axisY2).attr("transform",t.getTranslate("y2")).style("visibility",e.axis_y2_show?"visible":"hidden"),t.axes.y2.append("text").attr("class",Y.axisY2Label).attr("transform",e.axis_rotated?"":"rotate(-90)").style("text-anchor",this.textAnchorForY2AxisLabel.bind(this))},d.prototype.getXAxis=function(t,e,i,n,r,a,o){var s=this.owner,c=s.config,d={isCategory:s.isCategorized(),withOuterTick:r,tickMultiline:c.axis_x_tick_multiline,tickMultilineMax:c.axis_x_tick_multiline?Number(c.axis_x_tick_multilineMax):0,tickWidth:c.axis_x_tick_width,tickTextRotate:o?0:c.axis_x_tick_rotate,withoutTransition:a},l=new this.internal(this,d).axis.scale(t).orient(e);return s.isTimeSeries()&&n&&"function"!=typeof n&&(n=n.map(function(t){return s.parseDate(t)})),l.tickFormat(i).tickValues(n),s.isCategorized()&&(l.tickCentered(c.axis_x_tick_centered),u(c.axis_x_tick_culling)&&(c.axis_x_tick_culling=!1)),l},d.prototype.updateXAxisTickValues=function(t,e){var i,n=this.owner,r=n.config;return(r.axis_x_tick_fit||r.axis_x_tick_count)&&(i=this.generateTickValues(n.mapTargetsToUniqueXs(t),r.axis_x_tick_count,n.isTimeSeries())),e?e.tickValues(i):(n.xAxis.tickValues(i),n.subXAxis.tickValues(i)),i},d.prototype.getYAxis=function(t,e,i,n,r,a,o){var s=this.owner,c=s.config,d={withOuterTick:r,withoutTransition:a,tickTextRotate:o?0:c.axis_y_tick_rotate},l=new this.internal(this,d).axis.scale(t).orient(e).tickFormat(i);return s.isTimeSeriesY()?l.ticks(c.axis_y_tick_time_type,c.axis_y_tick_time_interval):l.tickValues(n),l},d.prototype.getId=function(t){var e=this.owner.config;return t in e.data_axes?e.data_axes[t]:"y"},d.prototype.getXAxisTickFormat=function(){var e=this.owner,i=e.config,n=e.isTimeSeries()?e.defaultAxisTimeFormat:e.isCategorized()?e.categoryName:function(t){return t};return i.axis_x_tick_format&&(h(i.axis_x_tick_format)?n=i.axis_x_tick_format:e.isTimeSeries()&&(n=function(t){return t?e.axisTimeFormat(i.axis_x_tick_format)(t):""})),h(n)?function(t){return n.call(e,t)}:n},d.prototype.getTickValues=function(t,e){return t||(e?e.tickValues():void 0)},d.prototype.getXAxisTickValues=function(){return this.getTickValues(this.owner.config.axis_x_tick_values,this.owner.xAxis)},d.prototype.getYAxisTickValues=function(){return this.getTickValues(this.owner.config.axis_y_tick_values,this.owner.yAxis)},d.prototype.getY2AxisTickValues=function(){return this.getTickValues(this.owner.config.axis_y2_tick_values,this.owner.y2Axis)},d.prototype.getLabelOptionByAxisId=function(t){var e,i=this.owner.config;return"y"===t?e=i.axis_y_label:"y2"===t?e=i.axis_y2_label:"x"===t&&(e=i.axis_x_label),e},d.prototype.getLabelText=function(t){var e=this.getLabelOptionByAxisId(t);return c(e)?e:e?e.text:null},d.prototype.setLabelText=function(t,e){var i=this.owner.config,n=this.getLabelOptionByAxisId(t);c(n)?"y"===t?i.axis_y_label=e:"y2"===t?i.axis_y2_label=e:"x"===t&&(i.axis_x_label=e):n&&(n.text=e)},d.prototype.getLabelPosition=function(t,e){var i=this.getLabelOptionByAxisId(t),n=i&&"object"===(void 0===i?"undefined":s(i))&&i.position?i.position:e;return{isInner:0<=n.indexOf("inner"),isOuter:0<=n.indexOf("outer"),isLeft:0<=n.indexOf("left"),isCenter:0<=n.indexOf("center"),isRight:0<=n.indexOf("right"),isTop:0<=n.indexOf("top"),isMiddle:0<=n.indexOf("middle"),isBottom:0<=n.indexOf("bottom")}},d.prototype.getXAxisLabelPosition=function(){return this.getLabelPosition("x",this.owner.config.axis_rotated?"inner-top":"inner-right")},d.prototype.getYAxisLabelPosition=function(){return this.getLabelPosition("y",this.owner.config.axis_rotated?"inner-right":"inner-top")},d.prototype.getY2AxisLabelPosition=function(){return this.getLabelPosition("y2",this.owner.config.axis_rotated?"inner-right":"inner-top")},d.prototype.getLabelPositionById=function(t){return"y2"===t?this.getY2AxisLabelPosition():"y"===t?this.getYAxisLabelPosition():this.getXAxisLabelPosition()},d.prototype.textForXAxisLabel=function(){return this.getLabelText("x")},d.prototype.textForYAxisLabel=function(){return this.getLabelText("y")},d.prototype.textForY2AxisLabel=function(){return this.getLabelText("y2")},d.prototype.xForAxisLabel=function(t,e){var i=this.owner;return t?e.isLeft?0:e.isCenter?i.width/2:i.width:e.isBottom?-i.height:e.isMiddle?-i.height/2:0},d.prototype.dxForAxisLabel=function(t,e){return t?e.isLeft?"0.5em":e.isRight?"-0.5em":"0":e.isTop?"-0.5em":e.isBottom?"0.5em":"0"},d.prototype.textAnchorForAxisLabel=function(t,e){return t?e.isLeft?"start":e.isCenter?"middle":"end":e.isBottom?"start":e.isMiddle?"middle":"end"},d.prototype.xForXAxisLabel=function(){return this.xForAxisLabel(!this.owner.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.xForYAxisLabel=function(){return this.xForAxisLabel(this.owner.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.xForY2AxisLabel=function(){return this.xForAxisLabel(this.owner.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.dxForXAxisLabel=function(){return this.dxForAxisLabel(!this.owner.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.dxForYAxisLabel=function(){return this.dxForAxisLabel(this.owner.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.dxForY2AxisLabel=function(){return this.dxForAxisLabel(this.owner.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.dyForXAxisLabel=function(){var t=this.owner,e=t.config,i=this.getXAxisLabelPosition();return e.axis_rotated?i.isInner?"1.2em":-25-(t.config.axis_x_inner?0:this.getMaxTickWidth("x")):i.isInner?"-0.5em":e.axis_x_height?e.axis_x_height-10:"3em"},d.prototype.dyForYAxisLabel=function(){var t=this.owner,e=this.getYAxisLabelPosition();return t.config.axis_rotated?e.isInner?"-0.5em":"3em":e.isInner?"1.2em":-10-(t.config.axis_y_inner?0:this.getMaxTickWidth("y")+10)},d.prototype.dyForY2AxisLabel=function(){var t=this.owner,e=this.getY2AxisLabelPosition();return t.config.axis_rotated?e.isInner?"1.2em":"-2.2em":e.isInner?"-0.5em":15+(t.config.axis_y2_inner?0:this.getMaxTickWidth("y2")+15)},d.prototype.textAnchorForXAxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(!t.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.textAnchorForYAxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(t.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.textAnchorForY2AxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(t.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.getMaxTickWidth=function(t,e){var i,n,r,a,o=this.owner,s=o.config,c=0;return e&&o.currentMaxTickWidths[t]||(o.svg&&(i=o.filterTargetsToShow(o.data.targets),"y"===t?(n=o.y.copy().domain(o.getYDomain(i,"y")),r=this.getYAxis(n,o.yOrient,s.axis_y_tick_format,o.yAxisTickValues,!1,!0,!0)):"y2"===t?(n=o.y2.copy().domain(o.getYDomain(i,"y2")),r=this.getYAxis(n,o.y2Orient,s.axis_y2_tick_format,o.y2AxisTickValues,!1,!0,!0)):(n=o.x.copy().domain(o.getXDomain(i)),r=this.getXAxis(n,o.xOrient,o.xAxisTickFormat,o.xAxisTickValues,!1,!0,!0),this.updateXAxisTickValues(i,r)),(a=o.d3.select("body").append("div").classed("c3",!0)).append("svg").style("visibility","hidden").style("position","fixed").style("top",0).style("left",0).append("g").call(r).each(function(){o.d3.select(this).selectAll("text").each(function(){var t=this.getBoundingClientRect();c<t.width&&(c=t.width)}),a.remove()})),o.currentMaxTickWidths[t]=c<=0?o.currentMaxTickWidths[t]:c),o.currentMaxTickWidths[t]},d.prototype.updateLabels=function(t){var e=this.owner,i=e.main.select("."+Y.axisX+" ."+Y.axisXLabel),n=e.main.select("."+Y.axisY+" ."+Y.axisYLabel),r=e.main.select("."+Y.axisY2+" ."+Y.axisY2Label);(t?i.transition():i).attr("x",this.xForXAxisLabel.bind(this)).attr("dx",this.dxForXAxisLabel.bind(this)).attr("dy",this.dyForXAxisLabel.bind(this)).text(this.textForXAxisLabel.bind(this)),(t?n.transition():n).attr("x",this.xForYAxisLabel.bind(this)).attr("dx",this.dxForYAxisLabel.bind(this)).attr("dy",this.dyForYAxisLabel.bind(this)).text(this.textForYAxisLabel.bind(this)),(t?r.transition():r).attr("x",this.xForY2AxisLabel.bind(this)).attr("dx",this.dxForY2AxisLabel.bind(this)).attr("dy",this.dyForY2AxisLabel.bind(this)).text(this.textForY2AxisLabel.bind(this))},d.prototype.getPadding=function(t,e,i,n){var r="number"==typeof t?t:t[e];return P(r)?"ratio"===t.unit?t[e]*n:this.convertPixelsToAxisPadding(r,n):i},d.prototype.convertPixelsToAxisPadding=function(t,e){var i=this.owner;return e*(t/(i.config.axis_rotated?i.width:i.height))},d.prototype.generateTickValues=function(t,e,i){var n,r,a,o,s,c,d,l=t;if(e)if(1===(n=h(e)?e():e))l=[t[0]];else if(2===n)l=[t[0],t[t.length-1]];else if(2<n){for(o=n-2,r=t[0],s=((a=t[t.length-1])-r)/(o+1),l=[r],c=0;c<o;c++)d=+r+s*(c+1),l.push(i?new Date(d):d);l.push(a)}return i||(l=l.sort(function(t,e){return t-e})),l},d.prototype.generateTransitions=function(t){var e=this.owner.axes;return{axisX:t?e.x.transition().duration(t):e.x,axisY:t?e.y.transition().duration(t):e.y,axisY2:t?e.y2.transition().duration(t):e.y2,axisSubX:t?e.subx.transition().duration(t):e.subx}},d.prototype.redraw=function(t,e){var i=this.owner,n=t?i.d3.transition().duration(t):null;i.axes.x.style("opacity",e?0:1).call(i.xAxis,n),i.axes.y.style("opacity",e?0:1).call(i.yAxis,n),i.axes.y2.style("opacity",e?0:1).call(i.y2Axis,n),i.axes.subx.style("opacity",e?0:1).call(i.subXAxis,n)};var t={version:"0.6.7",chart:{fn:n.prototype,internal:{fn:l.prototype,axis:{fn:d.prototype,internal:{fn:i.prototype}}}},generate:function(t){return new n(t)}};return l.prototype.beforeInit=function(){},l.prototype.afterInit=function(){},l.prototype.init=function(){var t=this,e=t.config;if(t.initParams(),e.data_url)t.convertUrlToData(e.data_url,e.data_mimeType,e.data_headers,e.data_keys,t.initWithData);else if(e.data_json)t.initWithData(t.convertJsonToData(e.data_json,e.data_keys));else if(e.data_rows)t.initWithData(t.convertRowsToData(e.data_rows));else{if(!e.data_columns)throw Error("url or json or rows or columns is required.");t.initWithData(t.convertColumnsToData(e.data_columns))}},l.prototype.initParams=function(){var t=this,e=t.d3,i=t.config;t.clipId="c3-"+ +new Date+"-clip",t.clipIdForXAxis=t.clipId+"-xaxis",t.clipIdForYAxis=t.clipId+"-yaxis",t.clipIdForGrid=t.clipId+"-grid",t.clipIdForSubchart=t.clipId+"-subchart",t.clipPath=t.getClipPath(t.clipId),t.clipPathForXAxis=t.getClipPath(t.clipIdForXAxis),t.clipPathForYAxis=t.getClipPath(t.clipIdForYAxis),t.clipPathForGrid=t.getClipPath(t.clipIdForGrid),t.clipPathForSubchart=t.getClipPath(t.clipIdForSubchart),t.dragStart=null,t.dragging=!1,t.flowing=!1,t.cancelClick=!1,t.mouseover=!1,t.transiting=!1,t.color=t.generateColor(),t.levelColor=t.generateLevelColor(),t.dataTimeParse=(i.data_xLocaltime?e.timeParse:e.utcParse)(t.config.data_xFormat),t.axisTimeFormat=i.axis_x_localtime?e.timeFormat:e.utcFormat,t.defaultAxisTimeFormat=function(t){return t.getMilliseconds()?e.timeFormat(".%L")(t):t.getSeconds()?e.timeFormat(":%S")(t):t.getMinutes()?e.timeFormat("%I:%M")(t):t.getHours()?e.timeFormat("%I %p")(t):t.getDay()&&1!==t.getDate()?e.timeFormat("%-m/%-d")(t):1!==t.getDate()?e.timeFormat("%-m/%-d")(t):t.getMonth()?e.timeFormat("%-m/%-d")(t):e.timeFormat("%Y/%-m/%-d")(t)},t.hiddenTargetIds=[],t.hiddenLegendIds=[],t.focusedTargetIds=[],t.defocusedTargetIds=[],t.xOrient=i.axis_rotated?i.axis_x_inner?"right":"left":i.axis_x_inner?"top":"bottom",t.yOrient=i.axis_rotated?i.axis_y_inner?"top":"bottom":i.axis_y_inner?"right":"left",t.y2Orient=i.axis_rotated?i.axis_y2_inner?"bottom":"top":i.axis_y2_inner?"left":"right",t.subXOrient=i.axis_rotated?"left":"bottom",t.isLegendRight="right"===i.legend_position,t.isLegendInset="inset"===i.legend_position,t.isLegendTop="top-left"===i.legend_inset_anchor||"top-right"===i.legend_inset_anchor,t.isLegendLeft="top-left"===i.legend_inset_anchor||"bottom-left"===i.legend_inset_anchor,t.legendStep=0,t.legendItemWidth=0,t.legendItemHeight=0,t.currentMaxTickWidths={x:0,y:0,y2:0},t.rotated_padding_left=30,t.rotated_padding_right=i.axis_rotated&&!i.axis_x_show?0:30,t.rotated_padding_top=5,t.withoutFadeIn={},t.intervalForObserveInserted=void 0,t.axes.subx=e.selectAll([])},l.prototype.initChartElements=function(){this.initBar&&this.initBar(),this.initLine&&this.initLine(),this.initArc&&this.initArc(),this.initGauge&&this.initGauge(),this.initText&&this.initText()},l.prototype.initWithData=function(t){var e,i,n=this,r=n.d3,a=n.config,o=!0;n.axis=new d(n),a.bindto?"function"==typeof a.bindto.node?n.selectChart=a.bindto:n.selectChart=r.select(a.bindto):n.selectChart=r.selectAll([]),n.selectChart.empty()&&(n.selectChart=r.select(document.createElement("div")).style("opacity",0),n.observeInserted(n.selectChart),o=!1),n.selectChart.html("").classed("c3",!0),n.data.xs={},n.data.targets=n.convertDataToTargets(t),a.data_filter&&(n.data.targets=n.data.targets.filter(a.data_filter)),a.data_hide&&n.addHiddenTargetIds(!0===a.data_hide?n.mapToIds(n.data.targets):a.data_hide),a.legend_hide&&n.addHiddenLegendIds(!0===a.legend_hide?n.mapToIds(n.data.targets):a.legend_hide),n.updateSizes(),n.updateScales(),n.x.domain(r.extent(n.getXDomain(n.data.targets))),n.y.domain(n.getYDomain(n.data.targets,"y")),n.y2.domain(n.getYDomain(n.data.targets,"y2")),n.subX.domain(n.x.domain()),n.subY.domain(n.y.domain()),n.subY2.domain(n.y2.domain()),n.orgXDomain=n.x.domain(),n.svg=n.selectChart.append("svg").style("overflow","hidden").on("mouseenter",function(){return a.onmouseover.call(n)}).on("mouseleave",function(){return a.onmouseout.call(n)}),n.config.svg_classname&&n.svg.attr("class",n.config.svg_classname),e=n.svg.append("defs"),n.clipChart=n.appendClip(e,n.clipId),n.clipXAxis=n.appendClip(e,n.clipIdForXAxis),n.clipYAxis=n.appendClip(e,n.clipIdForYAxis),n.clipGrid=n.appendClip(e,n.clipIdForGrid),n.clipSubchart=n.appendClip(e,n.clipIdForSubchart),n.updateSvgSize(),i=n.main=n.svg.append("g").attr("transform",n.getTranslate("main")),n.initPie&&n.initPie(),n.initDragZoom&&n.initDragZoom(),n.initSubchart&&n.initSubchart(),n.initTooltip&&n.initTooltip(),n.initLegend&&n.initLegend(),n.initTitle&&n.initTitle(),n.initZoom&&n.initZoom(),n.initSubchartBrush&&n.initSubchartBrush(),i.append("text").attr("class",Y.text+" "+Y.empty).attr("text-anchor","middle").attr("dominant-baseline","middle"),n.initRegion(),n.initGrid(),i.append("g").attr("clip-path",n.clipPath).attr("class",Y.chart),a.grid_lines_front&&n.initGridLines(),n.initEventRect(),n.initChartElements(),n.axis.init(),n.updateTargets(n.data.targets),a.axis_x_selection&&n.brush.selectionAsValue(n.getDefaultSelection()),o&&(n.updateDimension(),n.config.oninit.call(n),n.redraw({withTransition:!1,withTransform:!0,withUpdateXDomain:!0,withUpdateOrgXDomain:!0,withTransitionForAxis:!1})),n.bindResize(),n.api.element=n.selectChart.node()},l.prototype.smoothLines=function(t,e){var a=this;"grid"===e&&t.each(function(){var t=a.d3.select(this),e=t.attr("x1"),i=t.attr("x2"),n=t.attr("y1"),r=t.attr("y2");t.attr({x1:Math.ceil(e),x2:Math.ceil(i),y1:Math.ceil(n),y2:Math.ceil(r)})})},l.prototype.updateSizes=function(){var t=this,e=t.config,i=t.legend?t.getLegendHeight():0,n=t.legend?t.getLegendWidth():0,r=t.isLegendRight||t.isLegendInset?0:i,a=t.hasArcType(),o=e.axis_rotated||a?0:t.getHorizontalAxisHeight("x"),s=e.subchart_show&&!a?e.subchart_size_height+o:0;t.currentWidth=t.getCurrentWidth(),t.currentHeight=t.getCurrentHeight(),t.margin=e.axis_rotated?{top:t.getHorizontalAxisHeight("y2")+t.getCurrentPaddingTop(),right:a?0:t.getCurrentPaddingRight(),bottom:t.getHorizontalAxisHeight("y")+r+t.getCurrentPaddingBottom(),left:s+(a?0:t.getCurrentPaddingLeft())}:{top:4+t.getCurrentPaddingTop(),right:a?0:t.getCurrentPaddingRight(),bottom:o+s+r+t.getCurrentPaddingBottom(),left:a?0:t.getCurrentPaddingLeft()},t.margin2=e.axis_rotated?{top:t.margin.top,right:NaN,bottom:20+r,left:t.rotated_padding_left}:{top:t.currentHeight-s-r,right:NaN,bottom:o+r,left:t.margin.left},t.margin3={top:0,right:NaN,bottom:0,left:0},t.updateSizeForLegend&&t.updateSizeForLegend(i,n),t.width=t.currentWidth-t.margin.left-t.margin.right,t.height=t.currentHeight-t.margin.top-t.margin.bottom,t.width<0&&(t.width=0),t.height<0&&(t.height=0),t.width2=e.axis_rotated?t.margin.left-t.rotated_padding_left-t.rotated_padding_right:t.width,t.height2=e.axis_rotated?t.height:t.currentHeight-t.margin2.top-t.margin2.bottom,t.width2<0&&(t.width2=0),t.height2<0&&(t.height2=0),t.arcWidth=t.width-(t.isLegendRight?n+10:0),t.arcHeight=t.height-(t.isLegendRight?0:10),t.hasType("gauge")&&!e.gauge_fullCircle&&(t.arcHeight+=t.height-t.getGaugeLabelHeight()),t.updateRadius&&t.updateRadius(),t.isLegendRight&&a&&(t.margin3.left=t.arcWidth/2+1.1*t.radiusExpanded)},l.prototype.updateTargets=function(t){var e=this;e.updateTargetsForText(t),e.updateTargetsForBar(t),e.updateTargetsForLine(t),e.hasArcType()&&e.updateTargetsForArc&&e.updateTargetsForArc(t),e.updateTargetsForSubchart&&e.updateTargetsForSubchart(t),e.showTargets()},l.prototype.showTargets=function(){var e=this;e.svg.selectAll("."+Y.target).filter(function(t){return e.isTargetToShow(t.id)}).transition().duration(e.config.transition_duration).style("opacity",1)},l.prototype.redraw=function(t,e){var i,n,r,a,o,s,c,d,l,u,h,g,p,f,_,x,y,m,S,w,v,b,A,T,P,C,L,V,G,E,I,O=this,R=O.main,k=O.d3,D=O.config,F=O.getShapeIndices(O.isAreaType),X=O.getShapeIndices(O.isBarType),M=O.getShapeIndices(O.isLineType),z=O.hasArcType(),H=O.filterTargetsToShow(O.data.targets),B=O.xv.bind(O);if(i=N(t=t||{},"withY",!0),n=N(t,"withSubchart",!0),r=N(t,"withTransition",!0),s=N(t,"withTransform",!1),c=N(t,"withUpdateXDomain",!1),d=N(t,"withUpdateOrgXDomain",!1),l=N(t,"withTrimXDomain",!0),p=N(t,"withUpdateXAxis",c),u=N(t,"withLegend",!1),h=N(t,"withEventRect",!0),g=N(t,"withDimension",!0),a=N(t,"withTransitionForExit",r),o=N(t,"withTransitionForAxis",r),S=r?D.transition_duration:0,w=a?S:0,v=o?S:0,e=e||O.axis.generateTransitions(v),u&&D.legend_show?O.updateLegend(O.mapToIds(O.data.targets),t,e):g&&O.updateDimension(!0),O.isCategorized()&&0===H.length&&O.x.domain([0,O.axes.x.selectAll(".tick").size()]),H.length?(O.updateXDomain(H,c,d,l),D.axis_x_tick_values||(C=O.axis.updateXAxisTickValues(H))):(O.xAxis.tickValues([]),O.subXAxis.tickValues([])),D.zoom_rescale&&!t.flow&&(G=O.x.orgDomain()),O.y.domain(O.getYDomain(H,"y",G)),O.y2.domain(O.getYDomain(H,"y2",G)),!D.axis_y_tick_values&&D.axis_y_tick_count&&O.yAxis.tickValues(O.axis.generateTickValues(O.y.domain(),D.axis_y_tick_count)),!D.axis_y2_tick_values&&D.axis_y2_tick_count&&O.y2Axis.tickValues(O.axis.generateTickValues(O.y2.domain(),D.axis_y2_tick_count)),O.axis.redraw(v,z),O.axis.updateLabels(r),(c||p)&&H.length)if(D.axis_x_tick_culling&&C){for(L=1;L<C.length;L++)if(C.length/L<D.axis_x_tick_culling_max){V=L;break}O.svg.selectAll("."+Y.axisX+" .tick text").each(function(t){var e=C.indexOf(t);0<=e&&k.select(this).style("display",e%V?"none":"block")})}else O.svg.selectAll("."+Y.axisX+" .tick text").style("display","block");f=O.generateDrawArea?O.generateDrawArea(F,!1):void 0,_=O.generateDrawBar?O.generateDrawBar(X):void 0,x=O.generateDrawLine?O.generateDrawLine(M,!1):void 0,y=O.generateXYForText(F,X,M,!0),m=O.generateXYForText(F,X,M,!1),O.updateCircleY(),E=(O.config.axis_rotated?O.circleY:O.circleX).bind(O),I=(O.config.axis_rotated?O.circleX:O.circleY).bind(O),i&&(O.subY.domain(O.getYDomain(H,"y")),O.subY2.domain(O.getYDomain(H,"y2"))),O.updateXgridFocus(),R.select("text."+Y.text+"."+Y.empty).attr("x",O.width/2).attr("y",O.height/2).text(D.data_empty_label_text).transition().style("opacity",H.length?0:1),h&&O.redrawEventRect(),O.updateGrid(S),O.updateRegion(S),O.updateBar(w),O.updateLine(w),O.updateArea(w),O.updateCircle(E,I),O.hasDataLabel()&&O.updateText(y,m,w),O.redrawTitle&&O.redrawTitle(),O.redrawArc&&O.redrawArc(S,w,s),O.redrawSubchart&&O.redrawSubchart(n,e,S,w,F,X,M),R.selectAll("."+Y.selectedCircles).filter(O.isBarType.bind(O)).selectAll("circle").remove(),t.flow&&(T=O.generateFlow({targets:H,flow:t.flow,duration:t.flow.duration,drawBar:_,drawLine:x,drawArea:f,cx:E,cy:I,xv:B,xForText:y,yForText:m})),O.isTabVisible()&&(S?(P=k.transition().duration(S),b=[],[O.redrawBar(_,!0,P),O.redrawLine(x,!0,P),O.redrawArea(f,!0,P),O.redrawCircle(E,I,!0,P),O.redrawText(y,m,t.flow,!0,P),O.redrawRegion(!0,P),O.redrawGrid(!0,P)].forEach(function(t){t.forEach(function(t){b.push(t)})}),A=O.generateWait(),b.forEach(function(t){A.add(t)}),A(function(){T&&T(),D.onrendered&&D.onrendered.call(O)})):(O.redrawBar(_),O.redrawLine(x),O.redrawArea(f),O.redrawCircle(E,I),O.redrawText(y,m,t.flow),O.redrawRegion(),O.redrawGrid(),T&&T(),D.onrendered&&D.onrendered.call(O))),O.mapToIds(O.data.targets).forEach(function(t){O.withoutFadeIn[t]=!0})},l.prototype.updateAndRedraw=function(t){var e,i=this,n=i.config;(t=t||{}).withTransition=N(t,"withTransition",!0),t.withTransform=N(t,"withTransform",!1),t.withLegend=N(t,"withLegend",!1),t.withUpdateXDomain=N(t,"withUpdateXDomain",!0),t.withUpdateOrgXDomain=N(t,"withUpdateOrgXDomain",!0),t.withTransitionForExit=!1,t.withTransitionForTransform=N(t,"withTransitionForTransform",t.withTransition),i.updateSizes(),t.withLegend&&n.legend_show||(e=i.axis.generateTransitions(t.withTransitionForAxis?n.transition_duration:0),i.updateScales(),i.updateSvgSize(),i.transformAll(t.withTransitionForTransform,e)),i.redraw(t,e)},l.prototype.redrawWithoutRescale=function(){this.redraw({withY:!1,withSubchart:!1,withEventRect:!1,withTransitionForAxis:!1})},l.prototype.isTimeSeries=function(){return"timeseries"===this.config.axis_x_type},l.prototype.isCategorized=function(){return 0<=this.config.axis_x_type.indexOf("categor")},l.prototype.isCustomX=function(){var t=this.config;return!this.isTimeSeries()&&(t.data_x||C(t.data_xs))},l.prototype.isTimeSeriesY=function(){return"timeseries"===this.config.axis_y_type},l.prototype.getTranslate=function(t){var e,i,n=this,r=n.config;return"main"===t?(e=a(n.margin.left),i=a(n.margin.top)):"context"===t?(e=a(n.margin2.left),i=a(n.margin2.top)):"legend"===t?(e=n.margin3.left,i=n.margin3.top):"x"===t?(e=0,i=r.axis_rotated?0:n.height):"y"===t?(e=0,i=r.axis_rotated?n.height:0):"y2"===t?(e=r.axis_rotated?0:n.width,i=r.axis_rotated?1:0):"subx"===t?(e=0,i=r.axis_rotated?0:n.height2):"arc"===t&&(e=n.arcWidth/2,i=n.arcHeight/2-(n.hasType("gauge")?6:0)),"translate("+e+","+i+")"},l.prototype.initialOpacity=function(t){return null!==t.value&&this.withoutFadeIn[t.id]?1:0},l.prototype.initialOpacityForCircle=function(t){return null!==t.value&&this.withoutFadeIn[t.id]?this.opacityForCircle(t):0},l.prototype.opacityForCircle=function(t){var e=(h(this.config.point_show)?this.config.point_show(t):this.config.point_show)?1:0;return P(t.value)?this.isScatterType(t)?.5:e:0},l.prototype.opacityForText=function(){return this.hasDataLabel()?1:0},l.prototype.xx=function(t){return t?this.x(t.x):null},l.prototype.xv=function(t){var e=this,i=t.value;return e.isTimeSeries()?i=e.parseDate(t.value):e.isCategorized()&&"string"==typeof t.value&&(i=e.config.axis_x_categories.indexOf(t.value)),Math.ceil(e.x(i))},l.prototype.yv=function(t){var e=t.axis&&"y2"===t.axis?this.y2:this.y;return Math.ceil(e(t.value))},l.prototype.subxx=function(t){return t?this.subX(t.x):null},l.prototype.transformMain=function(t,e){var i,n,r,a=this;e&&e.axisX?i=e.axisX:(i=a.main.select("."+Y.axisX),t&&(i=i.transition())),e&&e.axisY?n=e.axisY:(n=a.main.select("."+Y.axisY),t&&(n=n.transition())),e&&e.axisY2?r=e.axisY2:(r=a.main.select("."+Y.axisY2),t&&(r=r.transition())),(t?a.main.transition():a.main).attr("transform",a.getTranslate("main")),i.attr("transform",a.getTranslate("x")),n.attr("transform",a.getTranslate("y")),r.attr("transform",a.getTranslate("y2")),a.main.select("."+Y.chartArcs).attr("transform",a.getTranslate("arc"))},l.prototype.transformAll=function(t,e){var i=this;i.transformMain(t,e),i.config.subchart_show&&i.transformContext(t,e),i.legend&&i.transformLegend(t)},l.prototype.updateSvgSize=function(){var t=this,e=t.svg.select(".c3-brush .overlay");t.svg.attr("width",t.currentWidth).attr("height",t.currentHeight),t.svg.selectAll(["#"+t.clipId,"#"+t.clipIdForGrid]).select("rect").attr("width",t.width).attr("height",t.height),t.svg.select("#"+t.clipIdForXAxis).select("rect").attr("x",t.getXAxisClipX.bind(t)).attr("y",t.getXAxisClipY.bind(t)).attr("width",t.getXAxisClipWidth.bind(t)).attr("height",t.getXAxisClipHeight.bind(t)),t.svg.select("#"+t.clipIdForYAxis).select("rect").attr("x",t.getYAxisClipX.bind(t)).attr("y",t.getYAxisClipY.bind(t)).attr("width",t.getYAxisClipWidth.bind(t)).attr("height",t.getYAxisClipHeight.bind(t)),t.svg.select("#"+t.clipIdForSubchart).select("rect").attr("width",t.width).attr("height",e.size()?e.attr("height"):0),t.selectChart.style("max-height",t.currentHeight+"px")},l.prototype.updateDimension=function(t){var e=this;t||(e.config.axis_rotated?(e.axes.x.call(e.xAxis),e.axes.subx.call(e.subXAxis)):(e.axes.y.call(e.yAxis),e.axes.y2.call(e.y2Axis))),e.updateSizes(),e.updateScales(),e.updateSvgSize(),e.transformAll(!1)},l.prototype.observeInserted=function(e){var i,n=this;"undefined"!=typeof MutationObserver?(i=new MutationObserver(function(t){t.forEach(function(t){"childList"===t.type&&t.previousSibling&&(i.disconnect(),n.intervalForObserveInserted=window.setInterval(function(){e.node().parentNode&&(window.clearInterval(n.intervalForObserveInserted),n.updateDimension(),n.brush&&n.brush.update(),n.config.oninit.call(n),n.redraw({withTransform:!0,withUpdateXDomain:!0,withUpdateOrgXDomain:!0,withTransition:!1,withTransitionForTransform:!1,withLegend:!0}),e.transition().style("opacity",1))},10))})})).observe(e.node(),{attributes:!0,childList:!0,characterData:!0}):window.console.error("MutationObserver not defined.")},l.prototype.bindResize=function(){var t=this,e=t.config;if(t.resizeFunction=t.generateResize(),t.resizeFunction.add(function(){e.onresize.call(t)}),e.resize_auto&&t.resizeFunction.add(function(){void 0!==t.resizeTimeout&&window.clearTimeout(t.resizeTimeout),t.resizeTimeout=window.setTimeout(function(){delete t.resizeTimeout,t.updateAndRedraw({withUpdateXDomain:!1,withUpdateOrgXDomain:!1,withTransition:!1,withTransitionForTransform:!1,withLegend:!0}),t.brush&&t.brush.update()},100)}),t.resizeFunction.add(function(){e.onresized.call(t)}),t.resizeIfElementDisplayed=function(){null!=t.api&&t.api.element.offsetParent&&t.resizeFunction()},window.attachEvent)window.attachEvent("onresize",t.resizeIfElementDisplayed);else if(window.addEventListener)window.addEventListener("resize",t.resizeIfElementDisplayed,!1);else{var i=window.onresize;i?i.add&&i.remove||(i=t.generateResize()).add(window.onresize):i=t.generateResize(),i.add(t.resizeFunction),window.onresize=function(){t.api.element.offsetParent&&i()}}},l.prototype.generateResize=function(){var i=[];function t(){i.forEach(function(t){t()})}return t.add=function(t){i.push(t)},t.remove=function(t){for(var e=0;e<i.length;e++)if(i[e]===t){i.splice(e,1);break}},t},l.prototype.endall=function(t,e){var i=0;t.each(function(){++i}).on("end",function(){--i||e.apply(this,arguments)})},l.prototype.generateWait=function(){var n=[],t=function(t){var i=setInterval(function(){var e=0;n.forEach(function(t){if(t.empty())e+=1;else try{t.transition()}catch(t){e+=1}}),e===n.length&&(clearInterval(i),t&&t())},50)};return t.add=function(t){n.push(t)},t},l.prototype.parseDate=function(t){var e;return t instanceof Date?e=t:"string"==typeof t?e=this.dataTimeParse(t):"object"===(void 0===t?"undefined":s(t))?e=new Date(+t):"number"!=typeof t||isNaN(t)||(e=new Date(+t)),e&&!isNaN(+e)||window.console.error("Failed to parse x '"+t+"' to Date object"),e},l.prototype.isTabVisible=function(){var t;return void 0!==document.hidden?t="hidden":void 0!==document.mozHidden?t="mozHidden":void 0!==document.msHidden?t="msHidden":void 0!==document.webkitHidden&&(t="webkitHidden"),!document[t]},l.prototype.getPathBox=y,l.prototype.CLASS=Y,Function.prototype.bind||(Function.prototype.bind=function(t){if("function"!=typeof this)throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");var e=Array.prototype.slice.call(arguments,1),i=this,n=function(){},r=function(){return i.apply(this instanceof n?this:t,e.concat(Array.prototype.slice.call(arguments)))};return n.prototype=this.prototype,r.prototype=new n,r}),"SVGPathSeg"in window||(window.SVGPathSeg=function(t,e,i){this.pathSegType=t,this.pathSegTypeAsLetter=e,this._owningPathSegList=i},window.SVGPathSeg.prototype.classname="SVGPathSeg",window.SVGPathSeg.PATHSEG_UNKNOWN=0,window.SVGPathSeg.PATHSEG_CLOSEPATH=1,window.SVGPathSeg.PATHSEG_MOVETO_ABS=2,window.SVGPathSeg.PATHSEG_MOVETO_REL=3,window.SVGPathSeg.PATHSEG_LINETO_ABS=4,window.SVGPathSeg.PATHSEG_LINETO_REL=5,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS=6,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL=7,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS=8,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL=9,window.SVGPathSeg.PATHSEG_ARC_ABS=10,window.SVGPathSeg.PATHSEG_ARC_REL=11,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS=12,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL=13,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS=14,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL=15,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=16,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=17,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=18,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=19,window.SVGPathSeg.prototype._segmentChanged=function(){this._owningPathSegList&&this._owningPathSegList.segmentChanged(this)},window.SVGPathSegClosePath=function(t){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CLOSEPATH,"z",t)},window.SVGPathSegClosePath.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegClosePath.prototype.toString=function(){return"[object SVGPathSegClosePath]"},window.SVGPathSegClosePath.prototype._asPathString=function(){return this.pathSegTypeAsLetter},window.SVGPathSegClosePath.prototype.clone=function(){return new window.SVGPathSegClosePath(void 0)},window.SVGPathSegMovetoAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_MOVETO_ABS,"M",t),this._x=e,this._y=i},window.SVGPathSegMovetoAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegMovetoAbs.prototype.toString=function(){return"[object SVGPathSegMovetoAbs]"},window.SVGPathSegMovetoAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegMovetoAbs.prototype.clone=function(){return new window.SVGPathSegMovetoAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegMovetoAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegMovetoAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegMovetoRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_MOVETO_REL,"m",t),this._x=e,this._y=i},window.SVGPathSegMovetoRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegMovetoRel.prototype.toString=function(){return"[object SVGPathSegMovetoRel]"},window.SVGPathSegMovetoRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegMovetoRel.prototype.clone=function(){return new window.SVGPathSegMovetoRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegMovetoRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegMovetoRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_ABS,"L",t),this._x=e,this._y=i},window.SVGPathSegLinetoAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoAbs.prototype.toString=function(){return"[object SVGPathSegLinetoAbs]"},window.SVGPathSegLinetoAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegLinetoAbs.prototype.clone=function(){return new window.SVGPathSegLinetoAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegLinetoAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegLinetoAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_REL,"l",t),this._x=e,this._y=i},window.SVGPathSegLinetoRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoRel.prototype.toString=function(){return"[object SVGPathSegLinetoRel]"},window.SVGPathSegLinetoRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegLinetoRel.prototype.clone=function(){return new window.SVGPathSegLinetoRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegLinetoRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegLinetoRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicAbs=function(t,e,i,n,r,a,o){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS,"C",t),this._x=e,this._y=i,this._x1=n,this._y1=r,this._x2=a,this._y2=o},window.SVGPathSegCurvetoCubicAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicAbs]"},window.SVGPathSegCurvetoCubicAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicAbs(void 0,this._x,this._y,this._x1,this._y1,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicRel=function(t,e,i,n,r,a,o){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL,"c",t),this._x=e,this._y=i,this._x1=n,this._y1=r,this._x2=a,this._y2=o},window.SVGPathSegCurvetoCubicRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicRel.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicRel]"},window.SVGPathSegCurvetoCubicRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicRel.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicRel(void 0,this._x,this._y,this._x1,this._y1,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticAbs=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS,"Q",t),this._x=e,this._y=i,this._x1=n,this._y1=r},window.SVGPathSegCurvetoQuadraticAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticAbs]"},window.SVGPathSegCurvetoQuadraticAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticAbs(void 0,this._x,this._y,this._x1,this._y1)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticRel=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL,"q",t),this._x=e,this._y=i,this._x1=n,this._y1=r},window.SVGPathSegCurvetoQuadraticRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticRel.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticRel]"},window.SVGPathSegCurvetoQuadraticRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticRel.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticRel(void 0,this._x,this._y,this._x1,this._y1)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegArcAbs=function(t,e,i,n,r,a,o,s){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_ARC_ABS,"A",t),this._x=e,this._y=i,this._r1=n,this._r2=r,this._angle=a,this._largeArcFlag=o,this._sweepFlag=s},window.SVGPathSegArcAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegArcAbs.prototype.toString=function(){return"[object SVGPathSegArcAbs]"},window.SVGPathSegArcAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._r1+" "+this._r2+" "+this._angle+" "+(this._largeArcFlag?"1":"0")+" "+(this._sweepFlag?"1":"0")+" "+this._x+" "+this._y},window.SVGPathSegArcAbs.prototype.clone=function(){return new window.SVGPathSegArcAbs(void 0,this._x,this._y,this._r1,this._r2,this._angle,this._largeArcFlag,this._sweepFlag)},Object.defineProperty(window.SVGPathSegArcAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"r1",{get:function(){return this._r1},set:function(t){this._r1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"r2",{get:function(){return this._r2},set:function(t){this._r2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"angle",{get:function(){return this._angle},set:function(t){this._angle=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"largeArcFlag",{get:function(){return this._largeArcFlag},set:function(t){this._largeArcFlag=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"sweepFlag",{get:function(){return this._sweepFlag},set:function(t){this._sweepFlag=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegArcRel=function(t,e,i,n,r,a,o,s){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_ARC_REL,"a",t),this._x=e,this._y=i,this._r1=n,this._r2=r,this._angle=a,this._largeArcFlag=o,this._sweepFlag=s},window.SVGPathSegArcRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegArcRel.prototype.toString=function(){return"[object SVGPathSegArcRel]"},window.SVGPathSegArcRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._r1+" "+this._r2+" "+this._angle+" "+(this._largeArcFlag?"1":"0")+" "+(this._sweepFlag?"1":"0")+" "+this._x+" "+this._y},window.SVGPathSegArcRel.prototype.clone=function(){return new window.SVGPathSegArcRel(void 0,this._x,this._y,this._r1,this._r2,this._angle,this._largeArcFlag,this._sweepFlag)},Object.defineProperty(window.SVGPathSegArcRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"r1",{get:function(){return this._r1},set:function(t){this._r1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"r2",{get:function(){return this._r2},set:function(t){this._r2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"angle",{get:function(){return this._angle},set:function(t){this._angle=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"largeArcFlag",{get:function(){return this._largeArcFlag},set:function(t){this._largeArcFlag=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"sweepFlag",{get:function(){return this._sweepFlag},set:function(t){this._sweepFlag=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoHorizontalAbs=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS,"H",t),this._x=e},window.SVGPathSegLinetoHorizontalAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoHorizontalAbs.prototype.toString=function(){return"[object SVGPathSegLinetoHorizontalAbs]"},window.SVGPathSegLinetoHorizontalAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x},window.SVGPathSegLinetoHorizontalAbs.prototype.clone=function(){return new window.SVGPathSegLinetoHorizontalAbs(void 0,this._x)},Object.defineProperty(window.SVGPathSegLinetoHorizontalAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoHorizontalRel=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL,"h",t),this._x=e},window.SVGPathSegLinetoHorizontalRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoHorizontalRel.prototype.toString=function(){return"[object SVGPathSegLinetoHorizontalRel]"},window.SVGPathSegLinetoHorizontalRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x},window.SVGPathSegLinetoHorizontalRel.prototype.clone=function(){return new window.SVGPathSegLinetoHorizontalRel(void 0,this._x)},Object.defineProperty(window.SVGPathSegLinetoHorizontalRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoVerticalAbs=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS,"V",t),this._y=e},window.SVGPathSegLinetoVerticalAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoVerticalAbs.prototype.toString=function(){return"[object SVGPathSegLinetoVerticalAbs]"},window.SVGPathSegLinetoVerticalAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._y},window.SVGPathSegLinetoVerticalAbs.prototype.clone=function(){return new window.SVGPathSegLinetoVerticalAbs(void 0,this._y)},Object.defineProperty(window.SVGPathSegLinetoVerticalAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoVerticalRel=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL,"v",t),this._y=e},window.SVGPathSegLinetoVerticalRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoVerticalRel.prototype.toString=function(){return"[object SVGPathSegLinetoVerticalRel]"},window.SVGPathSegLinetoVerticalRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._y},window.SVGPathSegLinetoVerticalRel.prototype.clone=function(){return new window.SVGPathSegLinetoVerticalRel(void 0,this._y)},Object.defineProperty(window.SVGPathSegLinetoVerticalRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicSmoothAbs=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS,"S",t),this._x=e,this._y=i,this._x2=n,this._y2=r},window.SVGPathSegCurvetoCubicSmoothAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicSmoothAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicSmoothAbs]"},window.SVGPathSegCurvetoCubicSmoothAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicSmoothAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicSmoothAbs(void 0,this._x,this._y,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicSmoothRel=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL,"s",t),this._x=e,this._y=i,this._x2=n,this._y2=r},window.SVGPathSegCurvetoCubicSmoothRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicSmoothRel.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicSmoothRel]"},window.SVGPathSegCurvetoCubicSmoothRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicSmoothRel.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicSmoothRel(void 0,this._x,this._y,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticSmoothAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS,"T",t),this._x=e,this._y=i},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticSmoothAbs]"},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticSmoothAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticSmoothRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL,"t",t),this._x=e,this._y=i},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticSmoothRel]"},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticSmoothRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathElement.prototype.createSVGPathSegClosePath=function(){return new window.SVGPathSegClosePath(void 0)},window.SVGPathElement.prototype.createSVGPathSegMovetoAbs=function(t,e){return new window.SVGPathSegMovetoAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegMovetoRel=function(t,e){return new window.SVGPathSegMovetoRel(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegLinetoAbs=function(t,e){return new window.SVGPathSegLinetoAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegLinetoRel=function(t,e){return new window.SVGPathSegLinetoRel(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicAbs=function(t,e,i,n,r,a){return new window.SVGPathSegCurvetoCubicAbs(void 0,t,e,i,n,r,a)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicRel=function(t,e,i,n,r,a){return new window.SVGPathSegCurvetoCubicRel(void 0,t,e,i,n,r,a)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticAbs=function(t,e,i,n){return new window.SVGPathSegCurvetoQuadraticAbs(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticRel=function(t,e,i,n){return new window.SVGPathSegCurvetoQuadraticRel(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegArcAbs=function(t,e,i,n,r,a,o){return new window.SVGPathSegArcAbs(void 0,t,e,i,n,r,a,o)},window.SVGPathElement.prototype.createSVGPathSegArcRel=function(t,e,i,n,r,a,o){return new window.SVGPathSegArcRel(void 0,t,e,i,n,r,a,o)},window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalAbs=function(t){return new window.SVGPathSegLinetoHorizontalAbs(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalRel=function(t){return new window.SVGPathSegLinetoHorizontalRel(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalAbs=function(t){return new window.SVGPathSegLinetoVerticalAbs(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalRel=function(t){return new window.SVGPathSegLinetoVerticalRel(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothAbs=function(t,e,i,n){return new window.SVGPathSegCurvetoCubicSmoothAbs(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothRel=function(t,e,i,n){return new window.SVGPathSegCurvetoCubicSmoothRel(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothAbs=function(t,e){return new window.SVGPathSegCurvetoQuadraticSmoothAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothRel=function(t,e){return new window.SVGPathSegCurvetoQuadraticSmoothRel(void 0,t,e)},"getPathSegAtLength"in window.SVGPathElement.prototype||(window.SVGPathElement.prototype.getPathSegAtLength=function(t){if(void 0===t||!isFinite(t))throw"Invalid arguments.";var e=document.createElementNS("http://www.w3.org/2000/svg","path");e.setAttribute("d",this.getAttribute("d"));var i=e.pathSegList.numberOfItems-1;if(i<=0)return 0;do{if(e.pathSegList.removeItem(i),t>e.getTotalLength())break;i--}while(0<i);return i})),"SVGPathSegList"in window||(window.SVGPathSegList=function(t){this._pathElement=t,this._list=this._parsePath(this._pathElement.getAttribute("d")),this._mutationObserverConfig={attributes:!0,attributeFilter:["d"]},this._pathElementMutationObserver=new MutationObserver(this._updateListFromPathMutations.bind(this)),this._pathElementMutationObserver.observe(this._pathElement,this._mutationObserverConfig)},window.SVGPathSegList.prototype.classname="SVGPathSegList",Object.defineProperty(window.SVGPathSegList.prototype,"numberOfItems",{get:function(){return this._checkPathSynchronizedToList(),this._list.length},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"pathSegList",{get:function(){return this._pathSegList||(this._pathSegList=new window.SVGPathSegList(this)),this._pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"normalizedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"animatedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"animatedNormalizedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),window.SVGPathSegList.prototype._checkPathSynchronizedToList=function(){this._updateListFromPathMutations(this._pathElementMutationObserver.takeRecords())},window.SVGPathSegList.prototype._updateListFromPathMutations=function(t){if(this._pathElement){var e=!1;t.forEach(function(t){"d"==t.attributeName&&(e=!0)}),e&&(this._list=this._parsePath(this._pathElement.getAttribute("d")))}},window.SVGPathSegList.prototype._writeListToPath=function(){this._pathElementMutationObserver.disconnect(),this._pathElement.setAttribute("d",window.SVGPathSegList._pathSegArrayAsString(this._list)),this._pathElementMutationObserver.observe(this._pathElement,this._mutationObserverConfig)},window.SVGPathSegList.prototype.segmentChanged=function(t){this._writeListToPath()},window.SVGPathSegList.prototype.clear=function(){this._checkPathSynchronizedToList(),this._list.forEach(function(t){t._owningPathSegList=null}),this._list=[],this._writeListToPath()},window.SVGPathSegList.prototype.initialize=function(t){return this._checkPathSynchronizedToList(),this._list=[t],(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype._checkValidIndex=function(t){if(isNaN(t)||t<0||t>=this.numberOfItems)throw"INDEX_SIZE_ERR"},window.SVGPathSegList.prototype.getItem=function(t){return this._checkPathSynchronizedToList(),this._checkValidIndex(t),this._list[t]},window.SVGPathSegList.prototype.insertItemBefore=function(t,e){return this._checkPathSynchronizedToList(),e>this.numberOfItems&&(e=this.numberOfItems),t._owningPathSegList&&(t=t.clone()),this._list.splice(e,0,t),(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype.replaceItem=function(t,e){return this._checkPathSynchronizedToList(),t._owningPathSegList&&(t=t.clone()),this._checkValidIndex(e),((this._list[e]=t)._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype.removeItem=function(t){this._checkPathSynchronizedToList(),this._checkValidIndex(t);var e=this._list[t];return this._list.splice(t,1),this._writeListToPath(),e},window.SVGPathSegList.prototype.appendItem=function(t){return this._checkPathSynchronizedToList(),t._owningPathSegList&&(t=t.clone()),this._list.push(t),(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList._pathSegArrayAsString=function(t){var e="",i=!0;return t.forEach(function(t){i?(i=!1,e+=t._asPathString()):e+=" "+t._asPathString()}),e},window.SVGPathSegList.prototype._parsePath=function(t){if(!t||0==t.length)return[];var n=this,e=function(){this.pathSegList=[]};e.prototype.appendSegment=function(t){this.pathSegList.push(t)};var i=function(t){this._string=t,this._currentIndex=0,this._endIndex=this._string.length,this._previousCommand=window.SVGPathSeg.PATHSEG_UNKNOWN,this._skipOptionalSpaces()};i.prototype._isCurrentSpace=function(){var t=this._string[this._currentIndex];return t<=" "&&(" "==t||"\n"==t||"\t"==t||"\r"==t||"\f"==t)},i.prototype._skipOptionalSpaces=function(){for(;this._currentIndex<this._endIndex&&this._isCurrentSpace();)this._currentIndex++;return this._currentIndex<this._endIndex},i.prototype._skipOptionalSpacesOrDelimiter=function(){return!(this._currentIndex<this._endIndex&&!this._isCurrentSpace()&&","!=this._string.charAt(this._currentIndex))&&(this._skipOptionalSpaces()&&this._currentIndex<this._endIndex&&","==this._string.charAt(this._currentIndex)&&(this._currentIndex++,this._skipOptionalSpaces()),this._currentIndex<this._endIndex)},i.prototype.hasMoreData=function(){return this._currentIndex<this._endIndex},i.prototype.peekSegmentType=function(){var t=this._string[this._currentIndex];return this._pathSegTypeFromChar(t)},i.prototype._pathSegTypeFromChar=function(t){switch(t){case"Z":case"z":return window.SVGPathSeg.PATHSEG_CLOSEPATH;case"M":return window.SVGPathSeg.PATHSEG_MOVETO_ABS;case"m":return window.SVGPathSeg.PATHSEG_MOVETO_REL;case"L":return window.SVGPathSeg.PATHSEG_LINETO_ABS;case"l":return window.SVGPathSeg.PATHSEG_LINETO_REL;case"C":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS;case"c":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL;case"Q":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS;case"q":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL;case"A":return window.SVGPathSeg.PATHSEG_ARC_ABS;case"a":return window.SVGPathSeg.PATHSEG_ARC_REL;case"H":return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;case"h":return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL;case"V":return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS;case"v":return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL;case"S":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS;case"s":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL;case"T":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS;case"t":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL;default:return window.SVGPathSeg.PATHSEG_UNKNOWN}},i.prototype._nextCommandHelper=function(t,e){return("+"==t||"-"==t||"."==t||"0"<=t&&t<="9")&&e!=window.SVGPathSeg.PATHSEG_CLOSEPATH?e==window.SVGPathSeg.PATHSEG_MOVETO_ABS?window.SVGPathSeg.PATHSEG_LINETO_ABS:e==window.SVGPathSeg.PATHSEG_MOVETO_REL?window.SVGPathSeg.PATHSEG_LINETO_REL:e:window.SVGPathSeg.PATHSEG_UNKNOWN},i.prototype.initialCommandIsMoveTo=function(){if(!this.hasMoreData())return!0;var t=this.peekSegmentType();return t==window.SVGPathSeg.PATHSEG_MOVETO_ABS||t==window.SVGPathSeg.PATHSEG_MOVETO_REL},i.prototype._parseNumber=function(){var t=0,e=0,i=1,n=0,r=1,a=1,o=this._currentIndex;if(this._skipOptionalSpaces(),this._currentIndex<this._endIndex&&"+"==this._string.charAt(this._currentIndex)?this._currentIndex++:this._currentIndex<this._endIndex&&"-"==this._string.charAt(this._currentIndex)&&(this._currentIndex++,r=-1),!(this._currentIndex==this._endIndex||(this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))&&"."!=this._string.charAt(this._currentIndex))){for(var s=this._currentIndex;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)this._currentIndex++;if(this._currentIndex!=s)for(var c=this._currentIndex-1,d=1;s<=c;)e+=d*(this._string.charAt(c--)-"0"),d*=10;if(this._currentIndex<this._endIndex&&"."==this._string.charAt(this._currentIndex)){if(this._currentIndex++,this._currentIndex>=this._endIndex||this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))return;for(;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)i*=10,n+=(this._string.charAt(this._currentIndex)-"0")/i,this._currentIndex+=1}if(this._currentIndex!=o&&this._currentIndex+1<this._endIndex&&("e"==this._string.charAt(this._currentIndex)||"E"==this._string.charAt(this._currentIndex))&&"x"!=this._string.charAt(this._currentIndex+1)&&"m"!=this._string.charAt(this._currentIndex+1)){if(this._currentIndex++,"+"==this._string.charAt(this._currentIndex)?this._currentIndex++:"-"==this._string.charAt(this._currentIndex)&&(this._currentIndex++,a=-1),this._currentIndex>=this._endIndex||this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))return;for(;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)t*=10,t+=this._string.charAt(this._currentIndex)-"0",this._currentIndex++}var l=e+n;if(l*=r,t&&(l*=Math.pow(10,a*t)),o!=this._currentIndex)return this._skipOptionalSpacesOrDelimiter(),l}},i.prototype._parseArcFlag=function(){if(!(this._currentIndex>=this._endIndex)){var t=!1,e=this._string.charAt(this._currentIndex++);if("0"==e)t=!1;else{if("1"!=e)return;t=!0}return this._skipOptionalSpacesOrDelimiter(),t}},i.prototype.parseSegment=function(){var t=this._string[this._currentIndex],e=this._pathSegTypeFromChar(t);if(e==window.SVGPathSeg.PATHSEG_UNKNOWN){if(this._previousCommand==window.SVGPathSeg.PATHSEG_UNKNOWN)return null;if((e=this._nextCommandHelper(t,this._previousCommand))==window.SVGPathSeg.PATHSEG_UNKNOWN)return null}else this._currentIndex++;switch(this._previousCommand=e){case window.SVGPathSeg.PATHSEG_MOVETO_REL:return new window.SVGPathSegMovetoRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_MOVETO_ABS:return new window.SVGPathSegMovetoAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_REL:return new window.SVGPathSegLinetoRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_ABS:return new window.SVGPathSegLinetoAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:return new window.SVGPathSegLinetoHorizontalRel(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:return new window.SVGPathSegLinetoHorizontalAbs(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:return new window.SVGPathSegLinetoVerticalRel(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:return new window.SVGPathSegLinetoVerticalAbs(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_CLOSEPATH:return this._skipOptionalSpaces(),new window.SVGPathSegClosePath(n);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:var i={x1:this._parseNumber(),y1:this._parseNumber(),x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()};return new window.SVGPathSegCurvetoCubicRel(n,i.x,i.y,i.x1,i.y1,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicAbs(n,i.x,i.y,i.x1,i.y1,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:return i={x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicSmoothRel(n,i.x,i.y,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:return i={x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicSmoothAbs(n,i.x,i.y,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:return i={x1:this._parseNumber(),y1:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoQuadraticRel(n,i.x,i.y,i.x1,i.y1);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoQuadraticAbs(n,i.x,i.y,i.x1,i.y1);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL:return new window.SVGPathSegCurvetoQuadraticSmoothRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS:return new window.SVGPathSegCurvetoQuadraticSmoothAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_ARC_REL:return i={x1:this._parseNumber(),y1:this._parseNumber(),arcAngle:this._parseNumber(),arcLarge:this._parseArcFlag(),arcSweep:this._parseArcFlag(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegArcRel(n,i.x,i.y,i.x1,i.y1,i.arcAngle,i.arcLarge,i.arcSweep);case window.SVGPathSeg.PATHSEG_ARC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),arcAngle:this._parseNumber(),arcLarge:this._parseArcFlag(),arcSweep:this._parseArcFlag(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegArcAbs(n,i.x,i.y,i.x1,i.y1,i.arcAngle,i.arcLarge,i.arcSweep);default:throw"Unknown path seg type."}};var r=new e,a=new i(t);if(!a.initialCommandIsMoveTo())return[];for(;a.hasMoreData();){var o=a.parseSegment();if(!o)return[];r.appendSegment(o)}return r.pathSegList}),String.prototype.padEnd||(String.prototype.padEnd=function(t,e){return t>>=0,e=String(void 0!==e?e:" "),this.length>t?String(this):((t-=this.length)>e.length&&(e+=e.repeat(t/e.length)),String(this)+e.slice(0,t))}),(n.prototype.axis=function(){}).labels=function(e){var i=this.internal;arguments.length&&(Object.keys(e).forEach(function(t){i.axis.setLabelText(t,e[t])}),i.axis.updateLabels())},n.prototype.axis.max=function(t){var e=this.internal,i=e.config;if(!arguments.length)return{x:i.axis_x_max,y:i.axis_y_max,y2:i.axis_y2_max};"object"===(void 0===t?"undefined":s(t))?(P(t.x)&&(i.axis_x_max=t.x),P(t.y)&&(i.axis_y_max=t.y),P(t.y2)&&(i.axis_y2_max=t.y2)):i.axis_y_max=i.axis_y2_max=t,e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})},n.prototype.axis.min=function(t){var e=this.internal,i=e.config;if(!arguments.length)return{x:i.axis_x_min,y:i.axis_y_min,y2:i.axis_y2_min};"object"===(void 0===t?"undefined":s(t))?(P(t.x)&&(i.axis_x_min=t.x),P(t.y)&&(i.axis_y_min=t.y),P(t.y2)&&(i.axis_y2_min=t.y2)):i.axis_y_min=i.axis_y2_min=t,e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})},n.prototype.axis.range=function(t){if(!arguments.length)return{max:this.axis.max(),min:this.axis.min()};D(t.max)&&this.axis.max(t.max),D(t.min)&&this.axis.min(t.min)},n.prototype.category=function(t,e){var i=this.internal,n=i.config;return 1<arguments.length&&(n.axis_x_categories[t]=e,i.redraw()),n.axis_x_categories[t]},n.prototype.categories=function(t){var e=this.internal,i=e.config;return arguments.length&&(i.axis_x_categories=t,e.redraw()),i.axis_x_categories},n.prototype.resize=function(t){var e=this.internal.config;e.size_width=t?t.width:null,e.size_height=t?t.height:null,this.flush()},n.prototype.flush=function(){this.internal.updateAndRedraw({withLegend:!0,withTransition:!1,withTransitionForTransform:!1})},n.prototype.destroy=function(){var e=this.internal;if(window.clearInterval(e.intervalForObserveInserted),void 0!==e.resizeTimeout&&window.clearTimeout(e.resizeTimeout),window.detachEvent)window.detachEvent("onresize",e.resizeIfElementDisplayed);else if(window.removeEventListener)window.removeEventListener("resize",e.resizeIfElementDisplayed);else{var t=window.onresize;t&&t.add&&t.remove&&t.remove(e.resizeFunction)}return e.resizeFunction.remove(),e.selectChart.classed("c3",!1).html(""),Object.keys(e).forEach(function(t){e[t]=null}),null},n.prototype.color=function(t){return this.internal.color(t)},(n.prototype.data=function(e){var t=this.internal.data.targets;return void 0===e?t:t.filter(function(t){return 0<=[].concat(e).indexOf(t.id)})}).shown=function(t){return this.internal.filterTargetsToShow(this.data(t))},n.prototype.data.values=function(t){var e,i=null;return t&&(i=(e=this.data(t))[0]?e[0].values.map(function(t){return t.value}):null),i},n.prototype.data.names=function(t){return this.internal.clearLegendItemTextBoxCache(),this.internal.updateDataAttributes("names",t)},n.prototype.data.colors=function(t){return this.internal.updateDataAttributes("colors",t)},n.prototype.data.axes=function(t){return this.internal.updateDataAttributes("axes",t)},n.prototype.flow=function(t){var r,e,i,n,a,o,s,c=this.internal,d=[],l=c.getMaxDataCount(),u=0,h=0;if(t.json)e=c.convertJsonToData(t.json,t.keys);else if(t.rows)e=c.convertRowsToData(t.rows);else{if(!t.columns)return;e=c.convertColumnsToData(t.columns)}r=c.convertDataToTargets(e,!0),c.data.targets.forEach(function(t){var e,i,n=!1;for(e=0;e<r.length;e++)if(t.id===r[e].id){for(n=!0,t.values[t.values.length-1]&&(h=t.values[t.values.length-1].index+1),u=r[e].values.length,i=0;i<u;i++)r[e].values[i].index=h+i,c.isTimeSeries()||(r[e].values[i].x=h+i);t.values=t.values.concat(r[e].values),r.splice(e,1);break}n||d.push(t.id)}),c.data.targets.forEach(function(t){var e,i;for(e=0;e<d.length;e++)if(t.id===d[e])for(h=t.values[t.values.length-1].index+1,i=0;i<u;i++)t.values.push({id:t.id,index:h+i,x:c.isTimeSeries()?c.getOtherTargetX(h+i):h+i,value:null})}),c.data.targets.length&&r.forEach(function(t){var e,i=[];for(e=c.data.targets[0].values[0].index;e<h;e++)i.push({id:t.id,index:e,x:c.isTimeSeries()?c.getOtherTargetX(e):e,value:null});t.values.forEach(function(t){t.index+=h,c.isTimeSeries()||(t.x+=h)}),t.values=i.concat(t.values)}),c.data.targets=c.data.targets.concat(r),c.getMaxDataCount(),a=(n=c.data.targets[0]).values[0],D(t.to)?(u=0,s=c.isTimeSeries()?c.parseDate(t.to):t.to,n.values.forEach(function(t){t.x<s&&u++})):D(t.length)&&(u=t.length),l?1===l&&c.isTimeSeries()&&(o=(n.values[n.values.length-1].x-a.x)/2,i=[new Date(+a.x-o),new Date(+a.x+o)],c.updateXDomain(null,!0,!0,!1,i)):(o=c.isTimeSeries()?1<n.values.length?n.values[n.values.length-1].x-a.x:a.x-c.getXDomain(c.data.targets)[0]:1,i=[a.x-o,a.x],c.updateXDomain(null,!0,!0,!1,i)),c.updateTargets(c.data.targets),c.redraw({flow:{index:a.index,length:u,duration:P(t.duration)?t.duration:c.config.transition_duration,done:t.done,orgDataCount:l},withLegend:!0,withTransition:1<l,withTrimXDomain:!1,withUpdateXAxis:!0})},l.prototype.generateFlow=function(E){var I=this,O=I.config,R=I.d3;return function(){var t,e,i,n,r,a,o,s,c,d,l,u=E.targets,h=E.flow,g=E.drawBar,p=E.drawLine,f=E.drawArea,_=E.cx,x=E.cy,y=E.xv,m=E.xForText,S=E.yForText,w=E.duration,v=h.index,b=h.length,A=I.getValueOnIndex(I.data.targets[0].values,v),T=I.getValueOnIndex(I.data.targets[0].values,v+b),P=I.x.domain(),C=h.duration||w,L=h.done||function(){},V=I.generateWait();I.flowing=!0,I.data.targets.forEach(function(t){t.values.splice(0,b)}),i=I.updateXDomain(u,!0,!0),I.updateXGrid&&I.updateXGrid(!0),n=I.xgrid||R.selectAll([]),r=I.xgridLines||R.selectAll([]),a=I.mainRegion||R.selectAll([]),o=I.mainText||R.selectAll([]),s=I.mainBar||R.selectAll([]),c=I.mainLine||R.selectAll([]),d=I.mainArea||R.selectAll([]),l=I.mainCircle||R.selectAll([]),h.orgDataCount?t=1===h.orgDataCount||(A&&A.x)===(T&&T.x)?I.x(P[0])-I.x(i[0]):I.isTimeSeries()?I.x(P[0])-I.x(i[0]):I.x(A.x)-I.x(T.x):1!==I.data.targets[0].values.length?t=I.x(P[0])-I.x(i[0]):I.isTimeSeries()?(A=I.getValueOnIndex(I.data.targets[0].values,0),T=I.getValueOnIndex(I.data.targets[0].values,I.data.targets[0].values.length-1),t=I.x(A.x)-I.x(T.x)):t=k(i)/2,e="translate("+t+",0) scale("+k(P)/k(i)+",1)",I.hideXGridFocus();var G=R.transition().ease(R.easeLinear).duration(C);V.add(I.xAxis(I.axes.x,G)),V.add(s.transition(G).attr("transform",e)),V.add(c.transition(G).attr("transform",e)),V.add(d.transition(G).attr("transform",e)),V.add(l.transition(G).attr("transform",e)),V.add(o.transition(G).attr("transform",e)),V.add(a.filter(I.isRegionOnX).transition(G).attr("transform",e)),V.add(n.transition(G).attr("transform",e)),V.add(r.transition(G).attr("transform",e)),V(function(){var t,e=[],i=[];if(b){for(t=0;t<b;t++)e.push("."+Y.shape+"-"+(v+t)),i.push("."+Y.text+"-"+(v+t));I.svg.selectAll("."+Y.shapes).selectAll(e).remove(),I.svg.selectAll("."+Y.texts).selectAll(i).remove(),I.svg.select("."+Y.xgrid).remove()}n.attr("transform",null).attr("x1",I.xgridAttr.x1).attr("x2",I.xgridAttr.x2).attr("y1",I.xgridAttr.y1).attr("y2",I.xgridAttr.y2).style("opacity",I.xgridAttr.opacity),r.attr("transform",null),r.select("line").attr("x1",O.axis_rotated?0:y).attr("x2",O.axis_rotated?I.width:y),r.select("text").attr("x",O.axis_rotated?I.width:0).attr("y",y),s.attr("transform",null).attr("d",g),c.attr("transform",null).attr("d",p),d.attr("transform",null).attr("d",f),l.attr("transform",null).attr("cx",_).attr("cy",x),o.attr("transform",null).attr("x",m).attr("y",S).style("fill-opacity",I.opacityForText.bind(I)),a.attr("transform",null),a.filter(I.isRegionOnX).attr("x",I.regionX.bind(I)).attr("width",I.regionWidth.bind(I)),L(),I.flowing=!1})}},n.prototype.focus=function(e){var t,i=this.internal;e=i.mapToTargetIds(e),t=i.svg.selectAll(i.selectorTargets(e.filter(i.isTargetToShow,i))),this.revert(),this.defocus(),t.classed(Y.focused,!0).classed(Y.defocused,!1),i.hasArcType()&&i.expandArc(e),i.toggleFocusLegend(e,!0),i.focusedTargetIds=e,i.defocusedTargetIds=i.defocusedTargetIds.filter(function(t){return e.indexOf(t)<0})},n.prototype.defocus=function(e){var t=this.internal;e=t.mapToTargetIds(e),t.svg.selectAll(t.selectorTargets(e.filter(t.isTargetToShow,t))).classed(Y.focused,!1).classed(Y.defocused,!0),t.hasArcType()&&t.unexpandArc(e),t.toggleFocusLegend(e,!1),t.focusedTargetIds=t.focusedTargetIds.filter(function(t){return e.indexOf(t)<0}),t.defocusedTargetIds=e},n.prototype.revert=function(t){var e=this.internal;t=e.mapToTargetIds(t),e.svg.selectAll(e.selectorTargets(t)).classed(Y.focused,!1).classed(Y.defocused,!1),e.hasArcType()&&e.unexpandArc(t),e.config.legend_show&&(e.showLegend(t.filter(e.isLegendToShow.bind(e))),e.legend.selectAll(e.selectorLegends(t)).filter(function(){return e.d3.select(this).classed(Y.legendItemFocused)}).classed(Y.legendItemFocused,!1)),e.focusedTargetIds=[],e.defocusedTargetIds=[]},(n.prototype.xgrids=function(t){var e=this.internal,i=e.config;return t&&(i.grid_x_lines=t,e.redrawWithoutRescale()),i.grid_x_lines}).add=function(t){var e=this.internal;return this.xgrids(e.config.grid_x_lines.concat(t||[]))},n.prototype.xgrids.remove=function(t){this.internal.removeGridLines(t,!0)},(n.prototype.ygrids=function(t){var e=this.internal,i=e.config;return t&&(i.grid_y_lines=t,e.redrawWithoutRescale()),i.grid_y_lines}).add=function(t){var e=this.internal;return this.ygrids(e.config.grid_y_lines.concat(t||[]))},n.prototype.ygrids.remove=function(t){this.internal.removeGridLines(t,!1)},n.prototype.groups=function(t){var e=this.internal,i=e.config;return v(t)||(i.data_groups=t,e.redraw()),i.data_groups},(n.prototype.legend=function(){}).show=function(t){var e=this.internal;e.showLegend(e.mapToTargetIds(t)),e.updateAndRedraw({withLegend:!0})},n.prototype.legend.hide=function(t){var e=this.internal;e.hideLegend(e.mapToTargetIds(t)),e.updateAndRedraw({withLegend:!1})},n.prototype.load=function(e){var t=this.internal,i=t.config;e.xs&&t.addXs(e.xs),"names"in e&&n.prototype.data.names.bind(this)(e.names),"classes"in e&&Object.keys(e.classes).forEach(function(t){i.data_classes[t]=e.classes[t]}),"categories"in e&&t.isCategorized()&&(i.axis_x_categories=e.categories),"axes"in e&&Object.keys(e.axes).forEach(function(t){i.data_axes[t]=e.axes[t]}),"colors"in e&&Object.keys(e.colors).forEach(function(t){i.data_colors[t]=e.colors[t]}),"cacheIds"in e&&t.hasCaches(e.cacheIds)?t.load(t.getCaches(e.cacheIds),e.done):"unload"in e?t.unload(t.mapToTargetIds("boolean"==typeof e.unload&&e.unload?null:e.unload),function(){t.loadFromArgs(e)}):t.loadFromArgs(e)},n.prototype.unload=function(t){var e=this.internal;(t=t||{})instanceof Array?t={ids:t}:"string"==typeof t&&(t={ids:[t]}),e.unload(e.mapToTargetIds(t.ids),function(){e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0}),t.done&&t.done()})},(n.prototype.regions=function(t){var e=this.internal,i=e.config;return t&&(i.regions=t,e.redrawWithoutRescale()),i.regions}).add=function(t){var e=this.internal,i=e.config;return t&&(i.regions=i.regions.concat(t),e.redrawWithoutRescale()),i.regions},n.prototype.regions.remove=function(t){var e,i,n,r=this.internal,a=r.config;return t=t||{},e=r.getOption(t,"duration",a.transition_duration),i=r.getOption(t,"classes",[Y.region]),n=r.main.select("."+Y.regions).selectAll(i.map(function(t){return"."+t})),(e?n.transition().duration(e):n).style("opacity",0).remove(),a.regions=a.regions.filter(function(t){var e=!1;return!t.class||(t.class.split(" ").forEach(function(t){0<=i.indexOf(t)&&(e=!0)}),!e)}),a.regions},n.prototype.selected=function(t){var e=this.internal,i=e.d3;return i.merge(e.main.selectAll("."+Y.shapes+e.getTargetSelectorSuffix(t)).selectAll("."+Y.shape).filter(function(){return i.select(this).classed(Y.SELECTED)}).map(function(t){return t.map(function(t){var e=t.__data__;return e.data?e.data:e})}))},n.prototype.select=function(c,d,l){var u=this.internal,h=u.d3,g=u.config;g.data_selection_enabled&&u.main.selectAll("."+Y.shapes).selectAll("."+Y.shape).each(function(t,e){var i=h.select(this),n=t.data?t.data.id:t.id,r=u.getToggle(this,t).bind(u),a=g.data_selection_grouped||!c||0<=c.indexOf(n),o=!d||0<=d.indexOf(e),s=i.classed(Y.SELECTED);i.classed(Y.line)||i.classed(Y.area)||(a&&o?g.data_selection_isselectable(t)&&!s&&r(!0,i.classed(Y.SELECTED,!0),t,e):D(l)&&l&&s&&r(!1,i.classed(Y.SELECTED,!1),t,e))})},n.prototype.unselect=function(c,d){var l=this.internal,u=l.d3,h=l.config;h.data_selection_enabled&&l.main.selectAll("."+Y.shapes).selectAll("."+Y.shape).each(function(t,e){var i=u.select(this),n=t.data?t.data.id:t.id,r=l.getToggle(this,t).bind(l),a=h.data_selection_grouped||!c||0<=c.indexOf(n),o=!d||0<=d.indexOf(e),s=i.classed(Y.SELECTED);i.classed(Y.line)||i.classed(Y.area)||a&&o&&h.data_selection_isselectable(t)&&s&&r(!1,i.classed(Y.SELECTED,!1),t,e)})},n.prototype.show=function(t,e){var i,n=this.internal;t=n.mapToTargetIds(t),e=e||{},n.removeHiddenTargetIds(t),(i=n.svg.selectAll(n.selectorTargets(t))).transition().style("display","initial","important").style("opacity",1,"important").call(n.endall,function(){i.style("opacity",null).style("opacity",1)}),e.withLegend&&n.showLegend(t),n.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0})},n.prototype.hide=function(t,e){var i,n=this.internal;t=n.mapToTargetIds(t),e=e||{},n.addHiddenTargetIds(t),(i=n.svg.selectAll(n.selectorTargets(t))).transition().style("opacity",0,"important").call(n.endall,function(){i.style("opacity",null).style("opacity",0),i.style("display","none")}),e.withLegend&&n.hideLegend(t),n.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0})},n.prototype.toggle=function(t,e){var i=this,n=this.internal;n.mapToTargetIds(t).forEach(function(t){n.isTargetToShow(t)?i.hide(t,e):i.show(t,e)})},(n.prototype.tooltip=function(){}).show=function(e){var t,i,n=this.internal,r={};e.mouse?r=e.mouse:(e.data?i=e.data:void 0!==e.x&&(t=e.id?n.data.targets.filter(function(t){return t.id===e.id}):n.data.targets,i=n.filterByX(t,e.x).slice(0,1)[0]),r=i?n.getMousePosition(i):null),n.dispatchEvent("mousemove",r),n.config.tooltip_onshow.call(n,i)},n.prototype.tooltip.hide=function(){this.internal.dispatchEvent("mouseout",0),this.internal.config.tooltip_onhide.call(this)},n.prototype.transform=function(t,e){var i=this.internal,n=0<=["pie","donut"].indexOf(t)?{withTransform:!0}:null;i.transformTo(e,t,n)},l.prototype.transformTo=function(t,e,i){var n=this,r=!n.hasArcType(),a=i||{withTransitionForAxis:r};a.withTransitionForTransform=!1,n.transiting=!1,n.setTargetType(t,e),n.updateTargets(n.data.targets),n.updateAndRedraw(a)},n.prototype.x=function(t){var e=this.internal;return arguments.length&&(e.updateTargetX(e.data.targets,t),e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})),e.data.xs},n.prototype.xs=function(t){var e=this.internal;return arguments.length&&(e.updateTargetXs(e.data.targets,t),e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})),e.data.xs},(n.prototype.zoom=function(t){var e=this.internal;return t?(e.isTimeSeries()&&(t=t.map(function(t){return e.parseDate(t)})),e.config.subchart_show?e.brush.selectionAsValue(t,!0):(e.updateXDomain(null,!0,!1,!1,t),e.redraw({withY:e.config.zoom_rescale,withSubchart:!1})),e.config.zoom_onzoom.call(this,e.x.orgDomain()),t):e.x.domain()}).enable=function(t){var e=this.internal;e.config.zoom_enabled=t,e.updateAndRedraw()},n.prototype.unzoom=function(){var t=this.internal;t.config.subchart_show?t.brush.clear():(t.updateXDomain(null,!0,!1,!1,t.subX.domain()),t.redraw({withY:t.config.zoom_rescale,withSubchart:!1}))},n.prototype.zoom.max=function(t){var e=this.internal,i=e.config,n=e.d3;if(0!==t&&!t)return i.zoom_x_max;i.zoom_x_max=n.max([e.orgXDomain[1],t])},n.prototype.zoom.min=function(t){var e=this.internal,i=e.config,n=e.d3;if(0!==t&&!t)return i.zoom_x_min;i.zoom_x_min=n.min([e.orgXDomain[0],t])},n.prototype.zoom.range=function(t){if(!arguments.length)return{max:this.domain.max(),min:this.domain.min()};D(t.max)&&this.domain.max(t.max),D(t.min)&&this.domain.min(t.min)},l.prototype.initPie=function(){var t=this,e=t.d3;t.pie=e.pie().value(function(t){return t.values.reduce(function(t,e){return t+e.value},0)});var i=t.getOrderFunction();if(i&&(t.isOrderAsc()||t.isOrderDesc())){var n=i;i=function(t,e){return-1*n(t,e)}}t.pie.sort(i||null)},l.prototype.updateRadius=function(){var t=this,e=t.config,i=e.gauge_width||e.donut_width,n=t.filterTargetsToShow(t.data.targets).length*t.config.gauge_arcs_minWidth;t.radiusExpanded=Math.min(t.arcWidth,t.arcHeight)/2*(t.hasType("gauge")?.85:1),t.radius=.95*t.radiusExpanded,t.innerRadiusRatio=i?(t.radius-i)/t.radius:.6,t.innerRadius=t.hasType("donut")||t.hasType("gauge")?t.radius*t.innerRadiusRatio:0,t.gaugeArcWidth=i||(n<=t.radius-t.innerRadius?t.radius-t.innerRadius:n<=t.radius?n:t.radius)},l.prototype.updateArc=function(){var t=this;t.svgArc=t.getSvgArc(),t.svgArcExpanded=t.getSvgArcExpanded(),t.svgArcExpandedSub=t.getSvgArcExpanded(.98)},l.prototype.updateAngle=function(e){var t,i,n,r,a=this,o=a.config,s=!1,c=0;return o?(a.pie(a.filterTargetsToShow(a.data.targets)).forEach(function(t){s||t.data.id!==e.data.id||(s=!0,(e=t).index=c),c++}),isNaN(e.startAngle)&&(e.startAngle=0),isNaN(e.endAngle)&&(e.endAngle=e.startAngle),a.isGaugeType(e.data)&&(t=o.gauge_min,i=o.gauge_max,n=Math.PI*(o.gauge_fullCircle?2:1)/(i-t),r=e.value<t?0:e.value<i?e.value-t:i-t,e.startAngle=o.gauge_startingAngle,e.endAngle=e.startAngle+n*r),s?e:null):null},l.prototype.getSvgArc=function(){var n=this,e=n.hasType("gauge"),i=n.gaugeArcWidth/n.filterTargetsToShow(n.data.targets).length,r=n.d3.arc().outerRadius(function(t){return e?n.radius-i*t.index:n.radius}).innerRadius(function(t){return e?n.radius-i*(t.index+1):n.innerRadius}),t=function(t,e){var i;return e?r(t):(i=n.updateAngle(t))?r(i):"M 0 0"};return t.centroid=r.centroid,t},l.prototype.getSvgArcExpanded=function(e){e=e||1;var i=this,n=i.hasType("gauge"),r=i.gaugeArcWidth/i.filterTargetsToShow(i.data.targets).length,a=Math.min(i.radiusExpanded*e-i.radius,.8*r-100*(1-e)),o=i.d3.arc().outerRadius(function(t){return n?i.radius-r*t.index+a:i.radiusExpanded*e}).innerRadius(function(t){return n?i.radius-r*(t.index+1):i.innerRadius});return function(t){var e=i.updateAngle(t);return e?o(e):"M 0 0"}},l.prototype.getArc=function(t,e,i){return i||this.isArcType(t.data)?this.svgArc(t,e):"M 0 0"},l.prototype.transformForArcLabel=function(t){var e,i,n,r,a,o=this,s=o.config,c=o.updateAngle(t),d="",l=o.hasType("gauge");if(c&&!l)e=this.svgArc.centroid(c),i=isNaN(e[0])?0:e[0],n=isNaN(e[1])?0:e[1],r=Math.sqrt(i*i+n*n),d="translate("+i*(a=o.hasType("donut")&&s.donut_label_ratio?h(s.donut_label_ratio)?s.donut_label_ratio(t,o.radius,r):s.donut_label_ratio:o.hasType("pie")&&s.pie_label_ratio?h(s.pie_label_ratio)?s.pie_label_ratio(t,o.radius,r):s.pie_label_ratio:o.radius&&r?(.375<36/o.radius?1.175-36/o.radius:.8)*o.radius/r:0)+","+n*a+")";else if(c&&l&&1<o.filterTargetsToShow(o.data.targets).length){var u=Math.sin(c.endAngle-Math.PI/2);d="translate("+(i=Math.cos(c.endAngle-Math.PI/2)*(o.radiusExpanded+25))+","+(n=u*(o.radiusExpanded+15-Math.abs(10*u))+3)+")"}return d},l.prototype.getArcRatio=function(t){var e=this.config,i=Math.PI*(this.hasType("gauge")&&!e.gauge_fullCircle?1:2);return t?(t.endAngle-t.startAngle)/i:null},l.prototype.convertToArcData=function(t){return this.addName({id:t.data.id,value:t.value,ratio:this.getArcRatio(t),index:t.index})},l.prototype.textForArcLabel=function(t){var e,i,n,r,a,o=this;return o.shouldShowArcLabel()?(i=(e=o.updateAngle(t))?e.value:null,n=o.getArcRatio(e),r=t.data.id,o.hasType("gauge")||o.meetsArcLabelThreshold(n)?(a=o.getArcLabelFormat())?a(i,n,r):o.defaultArcValueFormat(i,n):""):""},l.prototype.textForGaugeMinMax=function(t,e){var i=this.getGaugeLabelExtents();return i?i(t,e):t},l.prototype.expandArc=function(t){var e,i=this;i.transiting?e=window.setInterval(function(){i.transiting||(window.clearInterval(e),0<i.legend.selectAll(".c3-legend-item-focused").size()&&i.expandArc(t))},10):(t=i.mapToTargetIds(t),i.svg.selectAll(i.selectorTargets(t,"."+Y.chartArc)).each(function(t){i.shouldExpand(t.data.id)&&i.d3.select(this).selectAll("path").transition().duration(i.expandDuration(t.data.id)).attr("d",i.svgArcExpanded).transition().duration(2*i.expandDuration(t.data.id)).attr("d",i.svgArcExpandedSub).each(function(t){i.isDonutType(t.data)})}))},l.prototype.unexpandArc=function(t){var e=this;e.transiting||(t=e.mapToTargetIds(t),e.svg.selectAll(e.selectorTargets(t,"."+Y.chartArc)).selectAll("path").transition().duration(function(t){return e.expandDuration(t.data.id)}).attr("d",e.svgArc),e.svg.selectAll("."+Y.arc))},l.prototype.expandDuration=function(t){var e=this.config;return this.isDonutType(t)?e.donut_expand_duration:this.isGaugeType(t)?e.gauge_expand_duration:this.isPieType(t)?e.pie_expand_duration:50},l.prototype.shouldExpand=function(t){var e=this.config;return this.isDonutType(t)&&e.donut_expand||this.isGaugeType(t)&&e.gauge_expand||this.isPieType(t)&&e.pie_expand},l.prototype.shouldShowArcLabel=function(){var t=this.config,e=!0;return this.hasType("donut")?e=t.donut_label_show:this.hasType("pie")&&(e=t.pie_label_show),e},l.prototype.meetsArcLabelThreshold=function(t){var e=this.config;return(this.hasType("donut")?e.donut_label_threshold:e.pie_label_threshold)<=t},l.prototype.getArcLabelFormat=function(){var t=this.config,e=t.pie_label_format;return this.hasType("gauge")?e=t.gauge_label_format:this.hasType("donut")&&(e=t.donut_label_format),e},l.prototype.getGaugeLabelExtents=function(){return this.config.gauge_label_extents},l.prototype.getArcTitle=function(){return this.hasType("donut")?this.config.donut_title:""},l.prototype.updateTargetsForArc=function(t){var e,i=this,n=i.main,r=i.classChartArc.bind(i),a=i.classArcs.bind(i),o=i.classFocus.bind(i);(e=n.select("."+Y.chartArcs).selectAll("."+Y.chartArc).data(i.pie(t)).attr("class",function(t){return r(t)+o(t.data)}).enter().append("g").attr("class",r)).append("g").attr("class",a),e.append("text").attr("dy",i.hasType("gauge")?"-.1em":".35em").style("opacity",0).style("text-anchor","middle").style("pointer-events","none")},l.prototype.initArc=function(){var t=this;t.arcs=t.main.select("."+Y.chart).append("g").attr("class",Y.chartArcs).attr("transform",t.getTranslate("arc")),t.arcs.append("text").attr("class",Y.chartArcsTitle).style("text-anchor","middle").text(t.getArcTitle())},l.prototype.redrawArc=function(t,e,i){var n,r,a,o,l=this,u=l.d3,s=l.config,c=l.main,d=l.hasType("gauge");if(r=(n=c.selectAll("."+Y.arcs).selectAll("."+Y.arc).data(l.arcData.bind(l))).enter().append("path").attr("class",l.classArc.bind(l)).style("fill",function(t){return l.color(t.data)}).style("cursor",function(t){return s.interaction_enabled&&s.data_selection_isselectable(t)?"pointer":null}).each(function(t){l.isGaugeType(t.data)&&(t.startAngle=t.endAngle=s.gauge_startingAngle),this._current=t}).merge(n),d&&(o=(a=c.selectAll("."+Y.arcs).selectAll("."+Y.arcLabelLine).data(l.arcData.bind(l))).enter().append("rect").attr("class",function(t){return Y.arcLabelLine+" "+Y.target+" "+Y.target+"-"+t.data.id}).merge(a),1===l.filterTargetsToShow(l.data.targets).length?o.style("display","none"):o.style("fill",function(t){return 0<s.color_pattern.length?l.levelColor(t.data.values[0].value):l.color(t.data)}).style("display",s.gauge_labelLine_show?"":"none").each(function(t){var e=0,i=0,n=0,r="";if(l.hiddenTargetIds.indexOf(t.data.id)<0){var a=l.updateAngle(t),o=l.gaugeArcWidth/l.filterTargetsToShow(l.data.targets).length*(a.index+1),s=a.endAngle-Math.PI/2,c=l.radius-o,d=s-(0===c?0:1/c);e=l.radiusExpanded-l.radius+o,i=Math.cos(d)*c,n=Math.sin(d)*c,r="rotate("+180*s/Math.PI+", "+i+", "+n+")"}u.select(this).attr("x",i).attr("y",n).attr("width",e).attr("height",2).attr("transform",r).style("stroke-dasharray","0, "+(e+2)+", 0")})),r.attr("transform",function(t){return!l.isGaugeType(t.data)&&i?"scale(0)":""}).on("mouseover",s.interaction_enabled?function(t){var e,i;l.transiting||(e=l.updateAngle(t))&&(i=l.convertToArcData(e),l.expandArc(e.data.id),l.api.focus(e.data.id),l.toggleFocusLegend(e.data.id,!0),l.config.data_onmouseover(i,this))}:null).on("mousemove",s.interaction_enabled?function(t){var e,i=l.updateAngle(t);i&&(e=[l.convertToArcData(i)],l.showTooltip(e,this))}:null).on("mouseout",s.interaction_enabled?function(t){var e,i;l.transiting||(e=l.updateAngle(t))&&(i=l.convertToArcData(e),l.unexpandArc(e.data.id),l.api.revert(),l.revertLegend(),l.hideTooltip(),l.config.data_onmouseout(i,this))}:null).on("click",s.interaction_enabled?function(t,e){var i,n=l.updateAngle(t);n&&(i=l.convertToArcData(n),l.toggleShape&&l.toggleShape(this,i,e),l.config.data_onclick.call(l.api,i,this))}:null).each(function(){l.transiting=!0}).transition().duration(t).attrTween("d",function(i){var n,t=l.updateAngle(i);return t?(isNaN(this._current.startAngle)&&(this._current.startAngle=0),isNaN(this._current.endAngle)&&(this._current.endAngle=this._current.startAngle),n=u.interpolate(this._current,t),this._current=n(0),function(t){var e=n(t);return e.data=i.data,l.getArc(e,!0)}):function(){return"M 0 0"}}).attr("transform",i?"scale(1)":"").style("fill",function(t){return l.levelColor?l.levelColor(t.data.values[0].value):l.color(t.data.id)}).call(l.endall,function(){l.transiting=!1}),n.exit().transition().duration(e).style("opacity",0).remove(),c.selectAll("."+Y.chartArc).select("text").style("opacity",0).attr("class",function(t){return l.isGaugeType(t.data)?Y.gaugeValue:""}).text(l.textForArcLabel.bind(l)).attr("transform",l.transformForArcLabel.bind(l)).style("font-size",function(t){return l.isGaugeType(t.data)&&1===l.filterTargetsToShow(l.data.targets).length?Math.round(l.radius/5)+"px":""}).transition().duration(t).style("opacity",function(t){return l.isTargetToShow(t.data.id)&&l.isArcType(t.data)?1:0}),c.select("."+Y.chartArcsTitle).style("opacity",l.hasType("donut")||d?1:0),d){var h=0,g=l.arcs.select("g."+Y.chartArcsBackground).selectAll("path."+Y.chartArcsBackground).data(l.data.targets);g.enter().append("path").attr("class",function(t,e){return Y.chartArcsBackground+" "+Y.chartArcsBackground+"-"+e}).merge(g).attr("d",function(t){if(0<=l.hiddenTargetIds.indexOf(t.id))return"M 0 0";var e={data:[{value:s.gauge_max}],startAngle:s.gauge_startingAngle,endAngle:-1*s.gauge_startingAngle*(s.gauge_fullCircle?Math.PI:1),index:h++};return l.getArc(e,!0,!0)}),g.exit().remove(),l.arcs.select("."+Y.chartArcsGaugeUnit).attr("dy",".75em").text(s.gauge_label_show?s.gauge_units:""),l.arcs.select("."+Y.chartArcsGaugeMin).attr("dx",-1*(l.innerRadius+(l.radius-l.innerRadius)/(s.gauge_fullCircle?1:2))+"px").attr("dy","1.2em").text(s.gauge_label_show?l.textForGaugeMinMax(s.gauge_min,!1):""),l.arcs.select("."+Y.chartArcsGaugeMax).attr("dx",l.innerRadius+(l.radius-l.innerRadius)/(s.gauge_fullCircle?1:2)+"px").attr("dy","1.2em").text(s.gauge_label_show?l.textForGaugeMinMax(s.gauge_max,!0):"")}},l.prototype.initGauge=function(){var t=this.arcs;this.hasType("gauge")&&(t.append("g").attr("class",Y.chartArcsBackground),t.append("text").attr("class",Y.chartArcsGaugeUnit).style("text-anchor","middle").style("pointer-events","none"),t.append("text").attr("class",Y.chartArcsGaugeMin).style("text-anchor","middle").style("pointer-events","none"),t.append("text").attr("class",Y.chartArcsGaugeMax).style("text-anchor","middle").style("pointer-events","none"))},l.prototype.getGaugeLabelHeight=function(){return this.config.gauge_label_show?20:0},l.prototype.hasCaches=function(t){for(var e=0;e<t.length;e++)if(!(t[e]in this.cache))return!1;return!0},l.prototype.addCache=function(t,e){this.cache[t]=this.cloneTarget(e)},l.prototype.getCaches=function(t){var e,i=[];for(e=0;e<t.length;e++)t[e]in this.cache&&i.push(this.cloneTarget(this.cache[t[e]]));return i},l.prototype.categoryName=function(t){var e=this.config;return t<e.axis_x_categories.length?e.axis_x_categories[t]:t},l.prototype.generateTargetClass=function(t){return t||0===t?("-"+t).replace(/\s/g,"-"):""},l.prototype.generateClass=function(t,e){return" "+t+" "+t+this.generateTargetClass(e)},l.prototype.classText=function(t){return this.generateClass(Y.text,t.index)},l.prototype.classTexts=function(t){return this.generateClass(Y.texts,t.id)},l.prototype.classShape=function(t){return this.generateClass(Y.shape,t.index)},l.prototype.classShapes=function(t){return this.generateClass(Y.shapes,t.id)},l.prototype.classLine=function(t){return this.classShape(t)+this.generateClass(Y.line,t.id)},l.prototype.classLines=function(t){return this.classShapes(t)+this.generateClass(Y.lines,t.id)},l.prototype.classCircle=function(t){return this.classShape(t)+this.generateClass(Y.circle,t.index)},l.prototype.classCircles=function(t){return this.classShapes(t)+this.generateClass(Y.circles,t.id)},l.prototype.classBar=function(t){return this.classShape(t)+this.generateClass(Y.bar,t.index)},l.prototype.classBars=function(t){return this.classShapes(t)+this.generateClass(Y.bars,t.id)},l.prototype.classArc=function(t){return this.classShape(t.data)+this.generateClass(Y.arc,t.data.id)},l.prototype.classArcs=function(t){return this.classShapes(t.data)+this.generateClass(Y.arcs,t.data.id)},l.prototype.classArea=function(t){return this.classShape(t)+this.generateClass(Y.area,t.id)},l.prototype.classAreas=function(t){return this.classShapes(t)+this.generateClass(Y.areas,t.id)},l.prototype.classRegion=function(t,e){return this.generateClass(Y.region,e)+" "+("class"in t?t.class:"")},l.prototype.classEvent=function(t){return this.generateClass(Y.eventRect,t.index)},l.prototype.classTarget=function(t){var e=this.config.data_classes[t],i="";return e&&(i=" "+Y.target+"-"+e),this.generateClass(Y.target,t)+i},l.prototype.classFocus=function(t){return this.classFocused(t)+this.classDefocused(t)},l.prototype.classFocused=function(t){return" "+(0<=this.focusedTargetIds.indexOf(t.id)?Y.focused:"")},l.prototype.classDefocused=function(t){return" "+(0<=this.defocusedTargetIds.indexOf(t.id)?Y.defocused:"")},l.prototype.classChartText=function(t){return Y.chartText+this.classTarget(t.id)},l.prototype.classChartLine=function(t){return Y.chartLine+this.classTarget(t.id)},l.prototype.classChartBar=function(t){return Y.chartBar+this.classTarget(t.id)},l.prototype.classChartArc=function(t){return Y.chartArc+this.classTarget(t.data.id)},l.prototype.getTargetSelectorSuffix=function(t){return this.generateTargetClass(t).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g,"\\$1")},l.prototype.selectorTarget=function(t,e){return(e||"")+"."+Y.target+this.getTargetSelectorSuffix(t)},l.prototype.selectorTargets=function(t,e){var i=this;return(t=t||[]).length?t.map(function(t){return i.selectorTarget(t,e)}):null},l.prototype.selectorLegend=function(t){return"."+Y.legendItem+this.getTargetSelectorSuffix(t)},l.prototype.selectorLegends=function(t){var e=this;return t&&t.length?t.map(function(t){return e.selectorLegend(t)}):null},l.prototype.getClipPath=function(t){return"url("+(0<=window.navigator.appVersion.toLowerCase().indexOf("msie 9.")?"":document.URL.split("#")[0])+"#"+t+")"},l.prototype.appendClip=function(t,e){return t.append("clipPath").attr("id",e).append("rect")},l.prototype.getAxisClipX=function(t){var e=Math.max(30,this.margin.left);return t?-(1+e):-(e-1)},l.prototype.getAxisClipY=function(t){return t?-20:-this.margin.top},l.prototype.getXAxisClipX=function(){return this.getAxisClipX(!this.config.axis_rotated)},l.prototype.getXAxisClipY=function(){return this.getAxisClipY(!this.config.axis_rotated)},l.prototype.getYAxisClipX=function(){return this.config.axis_y_inner?-1:this.getAxisClipX(this.config.axis_rotated)},l.prototype.getYAxisClipY=function(){return this.getAxisClipY(this.config.axis_rotated)},l.prototype.getAxisClipWidth=function(t){var e=Math.max(30,this.margin.left),i=Math.max(30,this.margin.right);return t?this.width+2+e+i:this.margin.left+20},l.prototype.getAxisClipHeight=function(t){return(t?this.margin.bottom:this.margin.top+this.height)+20},l.prototype.getXAxisClipWidth=function(){return this.getAxisClipWidth(!this.config.axis_rotated)},l.prototype.getXAxisClipHeight=function(){return this.getAxisClipHeight(!this.config.axis_rotated)},l.prototype.getYAxisClipWidth=function(){return this.getAxisClipWidth(this.config.axis_rotated)+(this.config.axis_y_inner?20:0)},l.prototype.getYAxisClipHeight=function(){return this.getAxisClipHeight(this.config.axis_rotated)},l.prototype.generateColor=function(){var t=this.config,e=this.d3,n=t.data_colors,r=C(t.color_pattern)?t.color_pattern:e.schemeCategory10,a=t.data_color,o=[];return function(t){var e,i=t.id||t.data&&t.data.id||t;return n[i]instanceof Function?e=n[i](t):n[i]?e=n[i]:(o.indexOf(i)<0&&o.push(i),e=r[o.indexOf(i)%r.length],n[i]=e),a instanceof Function?a(e,t):e}},l.prototype.generateLevelColor=function(){var t=this.config,n=t.color_pattern,e=t.color_threshold,r="value"===e.unit,a=e.values&&e.values.length?e.values:[],o=e.max||100;return C(t.color_threshold)?function(t){var e,i=n[n.length-1];for(e=0;e<a.length;e++)if((r?t:100*t/o)<a[e]){i=n[e];break}return i}:null},l.prototype.getDefaultConfig=function(){var e={bindto:"#chart",svg_classname:void 0,size_width:void 0,size_height:void 0,padding_left:void 0,padding_right:void 0,padding_top:void 0,padding_bottom:void 0,resize_auto:!0,zoom_enabled:!1,zoom_initialRange:void 0,zoom_type:"scroll",zoom_disableDefaultBehavior:!1,zoom_privileged:!1,zoom_rescale:!1,zoom_onzoom:function(){},zoom_onzoomstart:function(){},zoom_onzoomend:function(){},zoom_x_min:void 0,zoom_x_max:void 0,interaction_brighten:!0,interaction_enabled:!0,onmouseover:function(){},onmouseout:function(){},onresize:function(){},onresized:function(){},oninit:function(){},onrendered:function(){},transition_duration:350,data_x:void 0,data_xs:{},data_xFormat:"%Y-%m-%d",data_xLocaltime:!0,data_xSort:!0,data_idConverter:function(t){return t},data_names:{},data_classes:{},data_groups:[],data_axes:{},data_type:void 0,data_types:{},data_labels:{},data_order:"desc",data_regions:{},data_color:void 0,data_colors:{},data_hide:!1,data_filter:void 0,data_selection_enabled:!1,data_selection_grouped:!1,data_selection_isselectable:function(){return!0},data_selection_multiple:!0,data_selection_draggable:!1,data_onclick:function(){},data_onmouseover:function(){},data_onmouseout:function(){},data_onselected:function(){},data_onunselected:function(){},data_url:void 0,data_headers:void 0,data_json:void 0,data_rows:void 0,data_columns:void 0,data_mimeType:void 0,data_keys:void 0,data_empty_label_text:"",subchart_show:!1,subchart_size_height:60,subchart_axis_x_show:!0,subchart_onbrush:function(){},color_pattern:[],color_threshold:{},legend_show:!0,legend_hide:!1,legend_position:"bottom",legend_inset_anchor:"top-left",legend_inset_x:10,legend_inset_y:0,legend_inset_step:void 0,legend_item_onclick:void 0,legend_item_onmouseover:void 0,legend_item_onmouseout:void 0,legend_equally:!1,legend_padding:0,legend_item_tile_width:10,legend_item_tile_height:10,axis_rotated:!1,axis_x_show:!0,axis_x_type:"indexed",axis_x_localtime:!0,axis_x_categories:[],axis_x_tick_centered:!1,axis_x_tick_format:void 0,axis_x_tick_culling:{},axis_x_tick_culling_max:10,axis_x_tick_count:void 0,axis_x_tick_fit:!0,axis_x_tick_values:null,axis_x_tick_rotate:0,axis_x_tick_outer:!0,axis_x_tick_multiline:!0,axis_x_tick_multilineMax:0,axis_x_tick_width:null,axis_x_max:void 0,axis_x_min:void 0,axis_x_padding:{},axis_x_height:void 0,axis_x_selection:void 0,axis_x_label:{},axis_x_inner:void 0,axis_y_show:!0,axis_y_type:void 0,axis_y_max:void 0,axis_y_min:void 0,axis_y_inverted:!1,axis_y_center:void 0,axis_y_inner:void 0,axis_y_label:{},axis_y_tick_format:void 0,axis_y_tick_outer:!0,axis_y_tick_values:null,axis_y_tick_rotate:0,axis_y_tick_count:void 0,axis_y_tick_time_type:void 0,axis_y_tick_time_interval:void 0,axis_y_padding:{},axis_y_default:void 0,axis_y2_show:!1,axis_y2_max:void 0,axis_y2_min:void 0,axis_y2_inverted:!1,axis_y2_center:void 0,axis_y2_inner:void 0,axis_y2_label:{},axis_y2_tick_format:void 0,axis_y2_tick_outer:!0,axis_y2_tick_values:null,axis_y2_tick_count:void 0,axis_y2_padding:{},axis_y2_default:void 0,grid_x_show:!1,grid_x_type:"tick",grid_x_lines:[],grid_y_show:!1,grid_y_lines:[],grid_y_ticks:10,grid_focus_show:!0,grid_lines_front:!0,point_show:!0,point_r:2.5,point_sensitivity:10,point_focus_expand_enabled:!0,point_focus_expand_r:void 0,point_select_r:void 0,line_connectNull:!1,line_step_type:"step",bar_width:void 0,bar_width_ratio:.6,bar_width_max:void 0,bar_zerobased:!0,bar_space:0,area_zerobased:!0,area_above:!1,pie_label_show:!0,pie_label_format:void 0,pie_label_threshold:.05,pie_label_ratio:void 0,pie_expand:{},pie_expand_duration:50,gauge_fullCircle:!1,gauge_label_show:!0,gauge_labelLine_show:!0,gauge_label_format:void 0,gauge_min:0,gauge_max:100,gauge_startingAngle:-1*Math.PI/2,gauge_label_extents:void 0,gauge_units:void 0,gauge_width:void 0,gauge_arcs_minWidth:5,gauge_expand:{},gauge_expand_duration:50,donut_label_show:!0,donut_label_format:void 0,donut_label_threshold:.05,donut_label_ratio:void 0,donut_width:void 0,donut_title:"",donut_expand:{},donut_expand_duration:50,spline_interpolation_type:"cardinal",regions:[],tooltip_show:!0,tooltip_grouped:!0,tooltip_order:void 0,tooltip_format_title:void 0,tooltip_format_name:void 0,tooltip_format_value:void 0,tooltip_position:void 0,tooltip_contents:function(t,e,i,n){return this.getTooltipContent?this.getTooltipContent(t,e,i,n):""},tooltip_init_show:!1,tooltip_init_x:0,tooltip_init_position:{top:"0px",left:"50px"},tooltip_onshow:function(){},tooltip_onhide:function(){},title_text:void 0,title_padding:{top:0,right:0,bottom:0,left:0},title_position:"top-center"};return Object.keys(this.additionalConfig).forEach(function(t){e[t]=this.additionalConfig[t]},this),e},l.prototype.additionalConfig={},l.prototype.loadConfig=function(e){var i,n,r,a=this.config;Object.keys(a).forEach(function(t){i=e,n=t.split("_"),r=function t(){var e=n.shift();return e&&i&&"object"===(void 0===i?"undefined":s(i))&&e in i?(i=i[e],t()):e?void 0:i}(),D(r)&&(a[t]=r)})},l.prototype.convertUrlToData=function(t,e,i,n,r){var a,o,s=this,c=e||"csv";"json"===c?(a=s.d3.json,o=s.convertJsonToData):(a="tsv"===c?s.d3.tsv:s.d3.csv,o=s.convertXsvToData),a(t,i).then(function(t){r.call(s,o.call(s,t,n))}).catch(function(t){throw t})},l.prototype.convertXsvToData=function(t){var e=t.columns;return 0===t.length?{keys:e,rows:[e.reduce(function(t,e){return Object.assign(t,(r=null,(n=e)in(i={})?Object.defineProperty(i,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):i[n]=r,i));var i,n,r},{})]}:{keys:e,rows:[].concat(t)}},l.prototype.convertJsonToData=function(e,t){var r,i,a=this,o=[];return t?(t.x?(r=t.value.concat(t.x),a.config.data_x=t.x):r=t.value,o.push(r),e.forEach(function(i){var n=[];r.forEach(function(t){var e=a.findValueInJson(i,t);v(e)&&(e=null),n.push(e)}),o.push(n)}),i=a.convertRowsToData(o)):(Object.keys(e).forEach(function(t){o.push([t].concat(e[t]))}),i=a.convertColumnsToData(o)),i},l.prototype.findValueInJson=function(t,e){for(var i=(e=(e=e.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),n=0;n<i.length;++n){var r=i[n];if(!(r in t))return;t=t[r]}return t},l.prototype.convertRowsToData=function(t){for(var e=[],i=t[0],n=1;n<t.length;n++){for(var r={},a=0;a<t[n].length;a++){if(v(t[n][a]))throw new Error("Source data is missing a component at ("+n+","+a+")!");r[i[a]]=t[n][a]}e.push(r)}return{keys:i,rows:e}},l.prototype.convertColumnsToData=function(t){for(var e=[],i=[],n=0;n<t.length;n++){for(var r=t[n][0],a=1;a<t[n].length;a++){if(v(e[a-1])&&(e[a-1]={}),v(t[n][a]))throw new Error("Source data is missing a component at ("+n+","+a+")!");e[a-1][r]=t[n][a]}i.push(r)}return{keys:i,rows:e}},l.prototype.convertDataToTargets=function(t,n){var e,i,r,a,c=this,d=c.config;return o(t)?a=Object.keys(t[0]):(a=t.keys,t=t.rows),i=a.filter(c.isNotX,c),r=a.filter(c.isX,c),i.forEach(function(i){var e=c.getXKey(i);c.isCustomX()||c.isTimeSeries()?0<=r.indexOf(e)?c.data.xs[i]=(n&&c.data.xs[i]?c.data.xs[i]:[]).concat(t.map(function(t){return t[e]}).filter(P).map(function(t,e){return c.generateTargetX(t,i,e)})):d.data_x?c.data.xs[i]=c.getOtherTargetXs():C(d.data_xs)&&(c.data.xs[i]=c.getXValuesOfXKey(e,c.data.targets)):c.data.xs[i]=t.map(function(t,e){return e})}),i.forEach(function(t){if(!c.data.xs[t])throw new Error('x is not defined for id = "'+t+'".')}),(e=i.map(function(a,o){var s=d.data_idConverter(a);return{id:s,id_org:a,values:t.map(function(t,e){var i,n=t[c.getXKey(a)],r=null===t[a]||isNaN(t[a])?null:+t[a];return c.isCustomX()&&c.isCategorized()&&!v(n)?(0===o&&0===e&&(d.axis_x_categories=[]),-1===(i=d.axis_x_categories.indexOf(n))&&(i=d.axis_x_categories.length,d.axis_x_categories.push(n))):i=c.generateTargetX(n,a,e),(v(t[a])||c.data.xs[a].length<=e)&&(i=void 0),{x:i,value:r,id:s}}).filter(function(t){return D(t.x)})}})).forEach(function(t){var e;d.data_xSort&&(t.values=t.values.sort(function(t,e){return(t.x||0===t.x?t.x:1/0)-(e.x||0===e.x?e.x:1/0)})),e=0,t.values.forEach(function(t){t.index=e++}),c.data.xs[t.id].sort(function(t,e){return t-e})}),c.hasNegativeValue=c.hasNegativeValueInTargets(e),c.hasPositiveValue=c.hasPositiveValueInTargets(e),d.data_type&&c.setTargetType(c.mapToIds(e).filter(function(t){return!(t in d.data_types)}),d.data_type),e.forEach(function(t){c.addCache(t.id_org,t)}),e},l.prototype.isX=function(t){var e,i,n,r=this.config;return r.data_x&&t===r.data_x||C(r.data_xs)&&(e=r.data_xs,i=t,n=!1,Object.keys(e).forEach(function(t){e[t]===i&&(n=!0)}),n)},l.prototype.isNotX=function(t){return!this.isX(t)},l.prototype.getXKey=function(t){var e=this.config;return e.data_x?e.data_x:C(e.data_xs)?e.data_xs[t]:null},l.prototype.getXValuesOfXKey=function(e,t){var i,n=this;return(t&&C(t)?n.mapToIds(t):[]).forEach(function(t){n.getXKey(t)===e&&(i=n.data.xs[t])}),i},l.prototype.getXValue=function(t,e){return t in this.data.xs&&this.data.xs[t]&&P(this.data.xs[t][e])?this.data.xs[t][e]:e},l.prototype.getOtherTargetXs=function(){var t=Object.keys(this.data.xs);return t.length?this.data.xs[t[0]]:null},l.prototype.getOtherTargetX=function(t){var e=this.getOtherTargetXs();return e&&t<e.length?e[t]:null},l.prototype.addXs=function(e){var i=this;Object.keys(e).forEach(function(t){i.config.data_xs[t]=e[t]})},l.prototype.addName=function(t){var e;return t&&(e=this.config.data_names[t.id],t.name=void 0!==e?e:t.id),t},l.prototype.getValueOnIndex=function(t,e){var i=t.filter(function(t){return t.index===e});return i.length?i[0]:null},l.prototype.updateTargetX=function(t,n){var r=this;t.forEach(function(i){i.values.forEach(function(t,e){t.x=r.generateTargetX(n[e],i.id,e)}),r.data.xs[i.id]=n})},l.prototype.updateTargetXs=function(t,e){var i=this;t.forEach(function(t){e[t.id]&&i.updateTargetX([t],e[t.id])})},l.prototype.generateTargetX=function(t,e,i){var n=this;return n.isTimeSeries()?t?n.parseDate(t):n.parseDate(n.getXValue(e,i)):n.isCustomX()&&!n.isCategorized()?P(t)?+t:n.getXValue(e,i):i},l.prototype.cloneTarget=function(t){return{id:t.id,id_org:t.id_org,values:t.values.map(function(t){return{x:t.x,value:t.value,id:t.id}})}},l.prototype.getMaxDataCount=function(){return this.d3.max(this.data.targets,function(t){return t.values.length})},l.prototype.mapToIds=function(t){return t.map(function(t){return t.id})},l.prototype.mapToTargetIds=function(t){return t?[].concat(t):this.mapToIds(this.data.targets)},l.prototype.hasTarget=function(t,e){var i,n=this.mapToIds(t);for(i=0;i<n.length;i++)if(n[i]===e)return!0;return!1},l.prototype.isTargetToShow=function(t){return this.hiddenTargetIds.indexOf(t)<0},l.prototype.isLegendToShow=function(t){return this.hiddenLegendIds.indexOf(t)<0},l.prototype.filterTargetsToShow=function(t){var e=this;return t.filter(function(t){return e.isTargetToShow(t.id)})},l.prototype.mapTargetsToUniqueXs=function(t){var e=this.d3.set(this.d3.merge(t.map(function(t){return t.values.map(function(t){return+t.x})}))).values();return(e=this.isTimeSeries()?e.map(function(t){return new Date(+t)}):e.map(function(t){return+t})).sort(function(t,e){return t<e?-1:e<t?1:e<=t?0:NaN})},l.prototype.addHiddenTargetIds=function(t){t=t instanceof Array?t:new Array(t);for(var e=0;e<t.length;e++)this.hiddenTargetIds.indexOf(t[e])<0&&(this.hiddenTargetIds=this.hiddenTargetIds.concat(t[e]))},l.prototype.removeHiddenTargetIds=function(e){this.hiddenTargetIds=this.hiddenTargetIds.filter(function(t){return e.indexOf(t)<0})},l.prototype.addHiddenLegendIds=function(t){t=t instanceof Array?t:new Array(t);for(var e=0;e<t.length;e++)this.hiddenLegendIds.indexOf(t[e])<0&&(this.hiddenLegendIds=this.hiddenLegendIds.concat(t[e]))},l.prototype.removeHiddenLegendIds=function(e){this.hiddenLegendIds=this.hiddenLegendIds.filter(function(t){return e.indexOf(t)<0})},l.prototype.getValuesAsIdKeyed=function(t){var i={};return t.forEach(function(e){i[e.id]=[],e.values.forEach(function(t){i[e.id].push(t.value)})}),i},l.prototype.checkValueInTargets=function(t,e){var i,n,r,a=Object.keys(t);for(i=0;i<a.length;i++)for(r=t[a[i]].values,n=0;n<r.length;n++)if(e(r[n].value))return!0;return!1},l.prototype.hasNegativeValueInTargets=function(t){return this.checkValueInTargets(t,function(t){return t<0})},l.prototype.hasPositiveValueInTargets=function(t){return this.checkValueInTargets(t,function(t){return 0<t})},l.prototype.isOrderDesc=function(){var t=this.config;return"string"==typeof t.data_order&&"desc"===t.data_order.toLowerCase()},l.prototype.isOrderAsc=function(){var t=this.config;return"string"==typeof t.data_order&&"asc"===t.data_order.toLowerCase()},l.prototype.getOrderFunction=function(){var t=this.config,r=this.isOrderAsc(),e=this.isOrderDesc();if(r||e){var a=function(t,e){return t+Math.abs(e.value)};return function(t,e){var i=t.values.reduce(a,0),n=e.values.reduce(a,0);return r?n-i:i-n}}if(h(t.data_order))return t.data_order;if(o(t.data_order)){var i=t.data_order;return function(t,e){return i.indexOf(t.id)-i.indexOf(e.id)}}},l.prototype.orderTargets=function(t){var e=this.getOrderFunction();return e&&t.sort(e),t},l.prototype.filterByX=function(t,e){return this.d3.merge(t.map(function(t){return t.values})).filter(function(t){return t.x-e==0})},l.prototype.filterRemoveNull=function(t){return t.filter(function(t){return P(t.value)})},l.prototype.filterByXDomain=function(t,e){return t.map(function(t){return{id:t.id,id_org:t.id_org,values:t.values.filter(function(t){return e[0]<=t.x&&t.x<=e[1]})}})},l.prototype.hasDataLabel=function(){var t=this.config;return!("boolean"!=typeof t.data_labels||!t.data_labels)||!("object"!==s(t.data_labels)||!C(t.data_labels))},l.prototype.getDataLabelLength=function(t,e,i){var n=this,r=[0,0];return n.selectChart.select("svg").selectAll(".dummy").data([t,e]).enter().append("text").text(function(t){return n.dataLabelFormat(t.id)(t)}).each(function(t,e){r[e]=1.3*this.getBoundingClientRect()[i]}).remove(),r},l.prototype.isNoneArc=function(t){return this.hasTarget(this.data.targets,t.id)},l.prototype.isArc=function(t){return"data"in t&&this.hasTarget(this.data.targets,t.data.id)},l.prototype.findClosestFromTargets=function(t,e){var i,n=this;return i=t.map(function(t){return n.findClosest(t.values,e)}),n.findClosest(i,e)},l.prototype.findClosest=function(t,i){var n,r=this,a=r.config.point_sensitivity;return t.filter(function(t){return t&&r.isBarType(t.id)}).forEach(function(t){var e=r.main.select("."+Y.bars+r.getTargetSelectorSuffix(t.id)+" ."+Y.bar+"-"+t.index).node();!n&&r.isWithinBar(r.d3.mouse(e),e)&&(n=t)}),t.filter(function(t){return t&&!r.isBarType(t.id)}).forEach(function(t){var e=r.dist(t,i);e<a&&(a=e,n=t)}),n},l.prototype.dist=function(t,e){var i=this.config,n=i.axis_rotated?1:0,r=i.axis_rotated?0:1,a=this.circleY(t,t.index),o=this.x(t.x);return Math.sqrt(Math.pow(o-e[n],2)+Math.pow(a-e[r],2))},l.prototype.convertValuesToStep=function(t){var e,i=[].concat(t);if(!this.isCategorized())return t;for(e=t.length+1;0<e;e--)i[e]=i[e-1];return i[0]={x:i[0].x-1,value:i[0].value,id:i[0].id},i[t.length+1]={x:i[t.length].x+1,value:i[t.length].value,id:i[t.length].id},i},l.prototype.updateDataAttributes=function(t,e){var i=this.config["data_"+t];return void 0===e||(Object.keys(e).forEach(function(t){i[t]=e[t]}),this.redraw({withLegend:!0})),i},l.prototype.load=function(i,n){var r=this;i&&(n.filter&&(i=i.filter(n.filter)),(n.type||n.types)&&i.forEach(function(t){var e=n.types&&n.types[t.id]?n.types[t.id]:n.type;r.setTargetType(t.id,e)}),r.data.targets.forEach(function(t){for(var e=0;e<i.length;e++)if(t.id===i[e].id){t.values=i[e].values,i.splice(e,1);break}}),r.data.targets=r.data.targets.concat(i)),r.updateTargets(r.data.targets),r.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0}),n.done&&n.done()},l.prototype.loadFromArgs=function(e){var i=this;e.data?i.load(i.convertDataToTargets(e.data),e):e.url?i.convertUrlToData(e.url,e.mimeType,e.headers,e.keys,function(t){i.load(i.convertDataToTargets(t),e)}):e.json?i.load(i.convertDataToTargets(i.convertJsonToData(e.json,e.keys)),e):e.rows?i.load(i.convertDataToTargets(i.convertRowsToData(e.rows)),e):e.columns?i.load(i.convertDataToTargets(i.convertColumnsToData(e.columns)),e):i.load(null,e)},l.prototype.unload=function(t,e){var i=this;e||(e=function(){}),(t=t.filter(function(t){return i.hasTarget(i.data.targets,t)}))&&0!==t.length?(i.svg.selectAll(t.map(function(t){return i.selectorTarget(t)})).transition().style("opacity",0).remove().call(i.endall,e),t.forEach(function(e){i.withoutFadeIn[e]=!1,i.legend&&i.legend.selectAll("."+Y.legendItem+i.getTargetSelectorSuffix(e)).remove(),i.data.targets=i.data.targets.filter(function(t){return t.id!==e})})):e()},l.prototype.getYDomainMin=function(t){var e,i,n,r,a,o,s=this,c=s.config,d=s.mapToIds(t),l=s.getValuesAsIdKeyed(t);if(0<c.data_groups.length)for(o=s.hasNegativeValueInTargets(t),e=0;e<c.data_groups.length;e++)if(0!==(r=c.data_groups[e].filter(function(t){return 0<=d.indexOf(t)})).length)for(n=r[0],o&&l[n]&&l[n].forEach(function(t,e){l[n][e]=t<0?t:0}),i=1;i<r.length;i++)a=r[i],l[a]&&l[a].forEach(function(t,e){s.axis.getId(a)!==s.axis.getId(n)||!l[n]||o&&0<+t||(l[n][e]+=+t)});return s.d3.min(Object.keys(l).map(function(t){return s.d3.min(l[t])}))},l.prototype.getYDomainMax=function(t){var e,i,n,r,a,o,s=this,c=s.config,d=s.mapToIds(t),l=s.getValuesAsIdKeyed(t);if(0<c.data_groups.length)for(o=s.hasPositiveValueInTargets(t),e=0;e<c.data_groups.length;e++)if(0!==(r=c.data_groups[e].filter(function(t){return 0<=d.indexOf(t)})).length)for(n=r[0],o&&l[n]&&l[n].forEach(function(t,e){l[n][e]=0<t?t:0}),i=1;i<r.length;i++)a=r[i],l[a]&&l[a].forEach(function(t,e){s.axis.getId(a)!==s.axis.getId(n)||!l[n]||o&&+t<0||(l[n][e]+=+t)});return s.d3.max(Object.keys(l).map(function(t){return s.d3.max(l[t])}))},l.prototype.getYDomain=function(t,e,i){var n,r,a,o,s,c,d,l,u,h,g=this,p=g.config,f=t.filter(function(t){return g.axis.getId(t.id)===e}),_=i?g.filterByXDomain(f,i):f,x="y2"===e?p.axis_y2_min:p.axis_y_min,y="y2"===e?p.axis_y2_max:p.axis_y_max,m=g.getYDomainMin(_),S=g.getYDomainMax(_),w="y2"===e?p.axis_y2_center:p.axis_y_center,v=g.hasType("bar",_)&&p.bar_zerobased||g.hasType("area",_)&&p.area_zerobased,b="y2"===e?p.axis_y2_inverted:p.axis_y_inverted,A=g.hasDataLabel()&&p.axis_rotated,T=g.hasDataLabel()&&!p.axis_rotated;return m=P(x)?x:P(y)?m<y?m:y-10:m,S=P(y)?y:P(x)?x<S?S:x+10:S,0===_.length?"y2"===e?g.y2.domain():g.y.domain():(isNaN(m)&&(m=0),isNaN(S)&&(S=m),m===S&&(m<0?S=0:m=0),u=0<=m&&0<=S,h=m<=0&&S<=0,(P(x)&&u||P(y)&&h)&&(v=!1),v&&(u&&(m=0),h&&(S=0)),a=o=.1*(r=Math.abs(S-m)),void 0!==w&&(S=w+(s=Math.max(Math.abs(m),Math.abs(S))),m=w-s),A?(c=g.getDataLabelLength(m,S,"width"),d=k(g.y.range()),a+=r*((l=[c[0]/d,c[1]/d])[1]/(1-l[0]-l[1])),o+=r*(l[0]/(1-l[0]-l[1]))):T&&(c=g.getDataLabelLength(m,S,"height"),a+=g.axis.convertPixelsToAxisPadding(c[1],r),o+=g.axis.convertPixelsToAxisPadding(c[0],r)),"y"===e&&C(p.axis_y_padding)&&(a=g.axis.getPadding(p.axis_y_padding,"top",a,r),o=g.axis.getPadding(p.axis_y_padding,"bottom",o,r)),"y2"===e&&C(p.axis_y2_padding)&&(a=g.axis.getPadding(p.axis_y2_padding,"top",a,r),o=g.axis.getPadding(p.axis_y2_padding,"bottom",o,r)),v&&(u&&(o=m),h&&(a=-S)),n=[m-o,S+a],b?n.reverse():n)},l.prototype.getXDomainMin=function(t){var e=this,i=e.config;return D(i.axis_x_min)?e.isTimeSeries()?this.parseDate(i.axis_x_min):i.axis_x_min:e.d3.min(t,function(t){return e.d3.min(t.values,function(t){return t.x})})},l.prototype.getXDomainMax=function(t){var e=this,i=e.config;return D(i.axis_x_max)?e.isTimeSeries()?this.parseDate(i.axis_x_max):i.axis_x_max:e.d3.max(t,function(t){return e.d3.max(t.values,function(t){return t.x})})},l.prototype.getXDomainPadding=function(t){var e,i,n,r,a=this.config,o=t[1]-t[0];return i=this.isCategorized()?0:this.hasType("bar")?1<(e=this.getMaxDataCount())?o/(e-1)/2:.5:.01*o,"object"===s(a.axis_x_padding)&&C(a.axis_x_padding)?(n=P(a.axis_x_padding.left)?a.axis_x_padding.left:i,r=P(a.axis_x_padding.right)?a.axis_x_padding.right:i):n=r="number"==typeof a.axis_x_padding?a.axis_x_padding:i,{left:n,right:r}},l.prototype.getXDomain=function(t){var e=this,i=[e.getXDomainMin(t),e.getXDomainMax(t)],n=i[0],r=i[1],a=e.getXDomainPadding(i),o=0,s=0;return n-r!=0||e.isCategorized()||(e.isTimeSeries()?(n=new Date(.5*n.getTime()),r=new Date(1.5*r.getTime())):(n=0===n?1:.5*n,r=0===r?-1:1.5*r)),(n||0===n)&&(o=e.isTimeSeries()?new Date(n.getTime()-a.left):n-a.left),(r||0===r)&&(s=e.isTimeSeries()?new Date(r.getTime()+a.right):r+a.right),[o,s]},l.prototype.updateXDomain=function(t,e,i,n,r){var a=this,o=a.config;return i&&(a.x.domain(r||a.d3.extent(a.getXDomain(t))),a.orgXDomain=a.x.domain(),o.zoom_enabled&&a.zoom.update(),a.subX.domain(a.x.domain()),a.brush&&a.brush.updateScale(a.subX)),e&&a.x.domain(r||(!a.brush||a.brush.empty()?a.orgXDomain:a.brush.selectionAsValue())),n&&a.x.domain(a.trimXDomain(a.x.orgDomain())),a.x.domain()},l.prototype.trimXDomain=function(t){var e=this.getZoomDomain(),i=e[0],n=e[1];return t[0]<=i&&(t[1]=+t[1]+(i-t[0]),t[0]=i),n<=t[1]&&(t[0]=+t[0]-(t[1]-n),t[1]=n),t},l.prototype.drag=function(t){var e,i,n,r,h,g,p,f,_=this,a=_.config,o=_.main,x=_.d3;_.hasArcType()||a.data_selection_enabled&&a.data_selection_multiple&&(e=_.dragStart[0],i=_.dragStart[1],n=t[0],r=t[1],h=Math.min(e,n),g=Math.max(e,n),p=a.data_selection_grouped?_.margin.top:Math.min(i,r),f=a.data_selection_grouped?_.height:Math.max(i,r),o.select("."+Y.dragarea).attr("x",h).attr("y",p).attr("width",g-h).attr("height",f-p),o.selectAll("."+Y.shapes).selectAll("."+Y.shape).filter(function(t){return a.data_selection_isselectable(t)}).each(function(t,e){var i,n,r,a,o,s,c=x.select(this),d=c.classed(Y.SELECTED),l=c.classed(Y.INCLUDED),u=!1;if(c.classed(Y.circle))i=1*c.attr("cx"),n=1*c.attr("cy"),o=_.togglePoint,u=h<i&&i<g&&p<n&&n<f;else{if(!c.classed(Y.bar))return;i=(s=y(this)).x,n=s.y,r=s.width,a=s.height,o=_.togglePath,u=!(g<i||i+r<h||f<n||n+a<p)}u^l&&(c.classed(Y.INCLUDED,!l),c.classed(Y.SELECTED,!d),o.call(_,!d,c,t,e))}))},l.prototype.dragstart=function(t){var e=this,i=e.config;e.hasArcType()||i.data_selection_enabled&&(e.dragStart=t,e.main.select("."+Y.chart).append("rect").attr("class",Y.dragarea).style("opacity",.1),e.dragging=!0)},l.prototype.dragend=function(){var t=this,e=t.config;t.hasArcType()||e.data_selection_enabled&&(t.main.select("."+Y.dragarea).transition().duration(100).style("opacity",0).remove(),t.main.selectAll("."+Y.shape).classed(Y.INCLUDED,!1),t.dragging=!1)},l.prototype.getYFormat=function(t){var n=this,r=t&&!n.hasType("gauge")?n.defaultArcValueFormat:n.yFormat,a=t&&!n.hasType("gauge")?n.defaultArcValueFormat:n.y2Format;return function(t,e,i){return("y2"===n.axis.getId(i)?a:r).call(n,t,e)}},l.prototype.yFormat=function(t){var e=this.config;return(e.axis_y_tick_format?e.axis_y_tick_format:this.defaultValueFormat)(t)},l.prototype.y2Format=function(t){var e=this.config;return(e.axis_y2_tick_format?e.axis_y2_tick_format:this.defaultValueFormat)(t)},l.prototype.defaultValueFormat=function(t){return P(t)?+t:""},l.prototype.defaultArcValueFormat=function(t,e){return(100*e).toFixed(1)+"%"},l.prototype.dataLabelFormat=function(t){var e=this.config.data_labels,i=function(t){return P(t)?+t:""};return"function"==typeof e.format?e.format:"object"===s(e.format)?e.format[t]?!0===e.format[t]?i:e.format[t]:function(){return""}:i},l.prototype.initGrid=function(){var t=this,e=t.config,i=t.d3;t.grid=t.main.append("g").attr("clip-path",t.clipPathForGrid).attr("class",Y.grid),e.grid_x_show&&t.grid.append("g").attr("class",Y.xgrids),e.grid_y_show&&t.grid.append("g").attr("class",Y.ygrids),e.grid_focus_show&&t.grid.append("g").attr("class",Y.xgridFocus).append("line").attr("class",Y.xgridFocus),t.xgrid=i.selectAll([]),e.grid_lines_front||t.initGridLines()},l.prototype.initGridLines=function(){var t=this,e=t.d3;t.gridLines=t.main.append("g").attr("clip-path",t.clipPathForGrid).attr("class",Y.grid+" "+Y.gridLines),t.gridLines.append("g").attr("class",Y.xgridLines),t.gridLines.append("g").attr("class",Y.ygridLines),t.xgridLines=e.selectAll([])},l.prototype.updateXGrid=function(t){var e=this,i=e.config,n=e.d3,r=e.generateGridData(i.grid_x_type,e.x),a=e.isCategorized()?e.xAxis.tickOffset():0;e.xgridAttr=i.axis_rotated?{x1:0,x2:e.width,y1:function(t){return e.x(t)-a},y2:function(t){return e.x(t)-a}}:{x1:function(t){return e.x(t)+a},x2:function(t){return e.x(t)+a},y1:0,y2:e.height},e.xgridAttr.opacity=function(){return+n.select(this).attr(i.axis_rotated?"y1":"x1")===(i.axis_rotated?e.height:0)?0:1};var o=e.main.select("."+Y.xgrids).selectAll("."+Y.xgrid).data(r),s=o.enter().append("line").attr("class",Y.xgrid).attr("x1",e.xgridAttr.x1).attr("x2",e.xgridAttr.x2).attr("y1",e.xgridAttr.y1).attr("y2",e.xgridAttr.y2).style("opacity",0);e.xgrid=s.merge(o),t||e.xgrid.attr("x1",e.xgridAttr.x1).attr("x2",e.xgridAttr.x2).attr("y1",e.xgridAttr.y1).attr("y2",e.xgridAttr.y2).style("opacity",e.xgridAttr.opacity),o.exit().remove()},l.prototype.updateYGrid=function(){var t=this,e=t.config,i=t.yAxis.tickValues()||t.y.ticks(e.grid_y_ticks),n=t.main.select("."+Y.ygrids).selectAll("."+Y.ygrid).data(i),r=n.enter().append("line").attr("class",Y.ygrid);t.ygrid=r.merge(n),t.ygrid.attr("x1",e.axis_rotated?t.y:0).attr("x2",e.axis_rotated?t.y:t.width).attr("y1",e.axis_rotated?0:t.y).attr("y2",e.axis_rotated?t.height:t.y),n.exit().remove(),t.smoothLines(t.ygrid,"grid")},l.prototype.gridTextAnchor=function(t){return t.position?t.position:"end"},l.prototype.gridTextDx=function(t){return"start"===t.position?4:"middle"===t.position?0:-4},l.prototype.xGridTextX=function(t){return"start"===t.position?-this.height:"middle"===t.position?-this.height/2:0},l.prototype.yGridTextX=function(t){return"start"===t.position?0:"middle"===t.position?this.width/2:this.width},l.prototype.updateGrid=function(t){var e,i,n,r,a=this,o=a.main,s=a.config,c=a.xv.bind(a),d=a.yv.bind(a),l=a.xGridTextX.bind(a),u=a.yGridTextX.bind(a);a.grid.style("visibility",a.hasArcType()?"hidden":"visible"),o.select("line."+Y.xgridFocus).style("visibility","hidden"),s.grid_x_show&&a.updateXGrid(),(i=(e=o.select("."+Y.xgridLines).selectAll("."+Y.xgridLine).data(s.grid_x_lines)).enter().append("g").attr("class",function(t){return Y.xgridLine+(t.class?" "+t.class:"")})).append("line").attr("x1",s.axis_rotated?0:c).attr("x2",s.axis_rotated?a.width:c).attr("y1",s.axis_rotated?c:0).attr("y2",s.axis_rotated?c:a.height).style("opacity",0),i.append("text").attr("text-anchor",a.gridTextAnchor).attr("transform",s.axis_rotated?"":"rotate(-90)").attr("x",s.axis_rotated?u:l).attr("y",c).attr("dx",a.gridTextDx).attr("dy",-5).style("opacity",0),a.xgridLines=i.merge(e),e.exit().transition().duration(t).style("opacity",0).remove(),s.grid_y_show&&a.updateYGrid(),(r=(n=o.select("."+Y.ygridLines).selectAll("."+Y.ygridLine).data(s.grid_y_lines)).enter().append("g").attr("class",function(t){return Y.ygridLine+(t.class?" "+t.class:"")})).append("line").attr("x1",s.axis_rotated?d:0).attr("x2",s.axis_rotated?d:a.width).attr("y1",s.axis_rotated?0:d).attr("y2",s.axis_rotated?a.height:d).style("opacity",0),r.append("text").attr("text-anchor",a.gridTextAnchor).attr("transform",s.axis_rotated?"rotate(-90)":"").attr("x",s.axis_rotated?l:u).attr("y",d).attr("dx",a.gridTextDx).attr("dy",-5).style("opacity",0),a.ygridLines=r.merge(n),a.ygridLines.select("line").transition().duration(t).attr("x1",s.axis_rotated?d:0).attr("x2",s.axis_rotated?d:a.width).attr("y1",s.axis_rotated?0:d).attr("y2",s.axis_rotated?a.height:d).style("opacity",1),a.ygridLines.select("text").transition().duration(t).attr("x",s.axis_rotated?a.xGridTextX.bind(a):a.yGridTextX.bind(a)).attr("y",d).text(function(t){return t.text}).style("opacity",1),n.exit().transition().duration(t).style("opacity",0).remove()},l.prototype.redrawGrid=function(t,e){var i=this,n=i.config,r=i.xv.bind(i),a=i.xgridLines.select("line"),o=i.xgridLines.select("text");return[(t?a.transition(e):a).attr("x1",n.axis_rotated?0:r).attr("x2",n.axis_rotated?i.width:r).attr("y1",n.axis_rotated?r:0).attr("y2",n.axis_rotated?r:i.height).style("opacity",1),(t?o.transition(e):o).attr("x",n.axis_rotated?i.yGridTextX.bind(i):i.xGridTextX.bind(i)).attr("y",r).text(function(t){return t.text}).style("opacity",1)]},l.prototype.showXGridFocus=function(t){var e=this,i=e.config,n=t.filter(function(t){return t&&P(t.value)}),r=e.main.selectAll("line."+Y.xgridFocus),a=e.xx.bind(e);i.tooltip_show&&(e.hasType("scatter")||e.hasArcType()||(r.style("visibility","visible").data([n[0]]).attr(i.axis_rotated?"y1":"x1",a).attr(i.axis_rotated?"y2":"x2",a),e.smoothLines(r,"grid")))},l.prototype.hideXGridFocus=function(){this.main.select("line."+Y.xgridFocus).style("visibility","hidden")},l.prototype.updateXgridFocus=function(){var t=this.config;this.main.select("line."+Y.xgridFocus).attr("x1",t.axis_rotated?0:-10).attr("x2",t.axis_rotated?this.width:-10).attr("y1",t.axis_rotated?-10:0).attr("y2",t.axis_rotated?-10:this.height)},l.prototype.generateGridData=function(t,e){var i,n,r,a,o=[],s=this.main.select("."+Y.axisX).selectAll(".tick").size();if("year"===t)for(n=(i=this.getXDomain())[0].getFullYear(),r=i[1].getFullYear(),a=n;a<=r;a++)o.push(new Date(a+"-01-01 00:00:00"));else(o=e.ticks(10)).length>s&&(o=o.filter(function(t){return(""+t).indexOf(".")<0}));return o},l.prototype.getGridFilterToRemove=function(t){return t?function(e){var i=!1;return[].concat(t).forEach(function(t){("value"in t&&e.value===t.value||"class"in t&&e.class===t.class)&&(i=!0)}),i}:function(){return!0}},l.prototype.removeGridLines=function(t,e){var i=this.config,n=this.getGridFilterToRemove(t),r=function(t){return!n(t)},a=e?Y.xgridLines:Y.ygridLines,o=e?Y.xgridLine:Y.ygridLine;this.main.select("."+a).selectAll("."+o).filter(n).transition().duration(i.transition_duration).style("opacity",0).remove(),e?i.grid_x_lines=i.grid_x_lines.filter(r):i.grid_y_lines=i.grid_y_lines.filter(r)},l.prototype.initEventRect=function(){var t=this,e=t.config;t.main.select("."+Y.chart).append("g").attr("class",Y.eventRects).style("fill-opacity",0),t.eventRect=t.main.select("."+Y.eventRects).append("rect").attr("class",Y.eventRect),e.zoom_enabled&&t.zoom&&(t.eventRect.call(t.zoom).on("dblclick.zoom",null),e.zoom_initialRange&&t.eventRect.transition().duration(0).call(t.zoom.transform,t.zoomTransform(e.zoom_initialRange)))},l.prototype.redrawEventRect=function(){var t,e,r=this,a=r.d3,o=r.config;function s(){r.svg.select("."+Y.eventRect).style("cursor",null),r.hideXGridFocus(),r.hideTooltip(),r.unexpandCircles(),r.unexpandBars()}t=r.width,e=r.height,r.main.select("."+Y.eventRects).style("cursor",o.zoom_enabled?o.axis_rotated?"ns-resize":"ew-resize":null),r.eventRect.attr("x",0).attr("y",0).attr("width",t).attr("height",e).on("mouseout",o.interaction_enabled?function(){o&&(r.hasArcType()||s())}:null).on("mousemove",o.interaction_enabled?function(){var t,e,i,n;r.dragging||r.hasArcType(t)||(t=r.filterTargetsToShow(r.data.targets),e=a.mouse(this),i=r.findClosestFromTargets(t,e),!r.mouseover||i&&i.id===r.mouseover.id||(o.data_onmouseout.call(r.api,r.mouseover),r.mouseover=void 0),i?(n=(r.isScatterType(i)||!o.tooltip_grouped?[i]:r.filterByX(t,i.x)).map(function(t){return r.addName(t)}),r.showTooltip(n,this),o.point_focus_expand_enabled&&(r.unexpandCircles(),n.forEach(function(t){r.expandCircles(t.index,t.id,!1)})),r.expandBars(i.index,i.id,!0),r.showXGridFocus(n),(r.isBarType(i.id)||r.dist(i,e)<o.point_sensitivity)&&(r.svg.select("."+Y.eventRect).style("cursor","pointer"),r.mouseover||(o.data_onmouseover.call(r.api,i),r.mouseover=i))):s())}:null).on("click",o.interaction_enabled?function(){var t,e,i;r.hasArcType(t)||(t=r.filterTargetsToShow(r.data.targets),e=a.mouse(this),(i=r.findClosestFromTargets(t,e))&&(r.isBarType(i.id)||r.dist(i,e)<o.point_sensitivity)&&(r.isScatterType(i)||!o.data_selection_grouped?[i]:r.filterByX(t,i.x)).forEach(function(t){r.main.selectAll("."+Y.shapes+r.getTargetSelectorSuffix(t.id)).selectAll("."+Y.shape+"-"+t.index).each(function(){(o.data_selection_grouped||r.isWithinShape(this,t))&&(r.toggleShape(this,t,t.index),o.data_onclick.call(r.api,t,this))})}))}:null).call(o.interaction_enabled&&o.data_selection_draggable&&r.drag?a.drag().on("drag",function(){r.drag(a.mouse(this))}).on("start",function(){r.dragstart(a.mouse(this))}).on("end",function(){r.dragend()}):function(){})},l.prototype.getMousePosition=function(t){return[this.x(t.x),this.getYScale(t.id)(t.value)]},l.prototype.dispatchEvent=function(t,e){var i="."+Y.eventRect,n=this.main.select(i).node(),r=n.getBoundingClientRect(),a=r.left+(e?e[0]:0),o=r.top+(e?e[1]:0),s=document.createEvent("MouseEvents");s.initMouseEvent(t,!0,!0,window,0,a,o,a,o,!1,!1,!1,!1,0,null),n.dispatchEvent(s)},l.prototype.initLegend=function(){var t=this;if(t.legendItemTextBox={},t.legendHasRendered=!1,t.legend=t.svg.append("g").attr("transform",t.getTranslate("legend")),!t.config.legend_show)return t.legend.style("visibility","hidden"),void(t.hiddenLegendIds=t.mapToIds(t.data.targets));t.updateLegendWithDefaults()},l.prototype.updateLegendWithDefaults=function(){this.updateLegend(this.mapToIds(this.data.targets),{withTransform:!1,withTransitionForTransform:!1,withTransition:!1})},l.prototype.updateSizeForLegend=function(t,e){var i=this,n=i.config,r={top:i.isLegendTop?i.getCurrentPaddingTop()+n.legend_inset_y+5.5:i.currentHeight-t-i.getCurrentPaddingBottom()-n.legend_inset_y,left:i.isLegendLeft?i.getCurrentPaddingLeft()+n.legend_inset_x+.5:i.currentWidth-e-i.getCurrentPaddingRight()-n.legend_inset_x+.5};i.margin3={top:i.isLegendRight?0:i.isLegendInset?r.top:i.currentHeight-t,right:NaN,bottom:0,left:i.isLegendRight?i.currentWidth-e:i.isLegendInset?r.left:0}},l.prototype.transformLegend=function(t){(t?this.legend.transition():this.legend).attr("transform",this.getTranslate("legend"))},l.prototype.updateLegendStep=function(t){this.legendStep=t},l.prototype.updateLegendItemWidth=function(t){this.legendItemWidth=t},l.prototype.updateLegendItemHeight=function(t){this.legendItemHeight=t},l.prototype.getLegendWidth=function(){var t=this;return t.config.legend_show?t.isLegendRight||t.isLegendInset?t.legendItemWidth*(t.legendStep+1):t.currentWidth:0},l.prototype.getLegendHeight=function(){var t=this,e=0;return t.config.legend_show&&(e=t.isLegendRight?t.currentHeight:Math.max(20,t.legendItemHeight)*(t.legendStep+1)),e},l.prototype.opacityForLegend=function(t){return t.classed(Y.legendItemHidden)?null:1},l.prototype.opacityForUnfocusedLegend=function(t){return t.classed(Y.legendItemHidden)?null:.3},l.prototype.toggleFocusLegend=function(e,t){var i=this;e=i.mapToTargetIds(e),i.legend.selectAll("."+Y.legendItem).filter(function(t){return 0<=e.indexOf(t)}).classed(Y.legendItemFocused,t).transition().duration(100).style("opacity",function(){return(t?i.opacityForLegend:i.opacityForUnfocusedLegend).call(i,i.d3.select(this))})},l.prototype.revertLegend=function(){var t=this,e=t.d3;t.legend.selectAll("."+Y.legendItem).classed(Y.legendItemFocused,!1).transition().duration(100).style("opacity",function(){return t.opacityForLegend(e.select(this))})},l.prototype.showLegend=function(t){var e=this,i=e.config;i.legend_show||(i.legend_show=!0,e.legend.style("visibility","visible"),e.legendHasRendered||e.updateLegendWithDefaults()),e.removeHiddenLegendIds(t),e.legend.selectAll(e.selectorLegends(t)).style("visibility","visible").transition().style("opacity",function(){return e.opacityForLegend(e.d3.select(this))})},l.prototype.hideLegend=function(t){var e=this,i=e.config;i.legend_show&&u(t)&&(i.legend_show=!1,e.legend.style("visibility","hidden")),e.addHiddenLegendIds(t),e.legend.selectAll(e.selectorLegends(t)).style("opacity",0).style("visibility","hidden")},l.prototype.clearLegendItemTextBoxCache=function(){this.legendItemTextBox={}},l.prototype.updateLegend=function(f,t,e){var i,n,r,a,o,s,c,d,l,u,h,g,p,_,x,y,m=this,S=m.config,w=4,v=10,b=0,A=0,T=10,P=S.legend_item_tile_width+5,C=0,L={},V={},G={},E=[0],I={},O=0;function R(t,e,i){var n,r,a,o,s=0===i,c=i===f.length-1,d=(a=t,o=e,m.legendItemTextBox[o]||(m.legendItemTextBox[o]=m.getTextRect(a.textContent,Y.legendItem,a)),m.legendItemTextBox[o]),l=d.width+P+(!c||m.isLegendRight||m.isLegendInset?v:0)+S.legend_padding,u=d.height+w,h=m.isLegendRight||m.isLegendInset?u:l,g=m.isLegendRight||m.isLegendInset?m.getLegendHeight():m.getLegendWidth();function p(t,e){e||(n=(g-C-h)/2)<T&&(n=(g-h)/2,C=0,O++),I[t]=O,E[O]=m.isLegendInset?10:n,L[t]=C,C+=h}s&&(A=b=O=C=0),!S.legend_show||m.isLegendToShow(e)?(V[e]=l,G[e]=u,(!b||b<=l)&&(b=l),(!A||A<=u)&&(A=u),r=m.isLegendRight||m.isLegendInset?A:b,S.legend_equally?(Object.keys(V).forEach(function(t){V[t]=b}),Object.keys(G).forEach(function(t){G[t]=A}),(n=(g-r*f.length)/2)<T?(O=C=0,f.forEach(function(t){p(t)})):p(e,!0)):p(e)):V[e]=G[e]=I[e]=L[e]=0}f=f.filter(function(t){return!D(S.data_names[t])||null!==S.data_names[t]}),h=N(t=t||{},"withTransition",!0),g=N(t,"withTransitionForTransform",!0),m.isLegendInset&&(O=S.legend_inset_step?S.legend_inset_step:f.length,m.updateLegendStep(O)),m.isLegendRight?(i=function(t){return b*I[t]},a=function(t){return E[I[t]]+L[t]}):m.isLegendInset?(i=function(t){return b*I[t]+10},a=function(t){return E[I[t]]+L[t]}):(i=function(t){return E[I[t]]+L[t]},a=function(t){return A*I[t]}),n=function(t,e){return i(t,e)+4+S.legend_item_tile_width},o=function(t,e){return a(t,e)+9},r=function(t,e){return i(t,e)},s=function(t,e){return a(t,e)-5},c=function(t,e){return i(t,e)-2},d=function(t,e){return i(t,e)-2+S.legend_item_tile_width},l=function(t,e){return a(t,e)+4},(u=m.legend.selectAll("."+Y.legendItem).data(f).enter().append("g").attr("class",function(t){return m.generateClass(Y.legendItem,t)}).style("visibility",function(t){return m.isLegendToShow(t)?"visible":"hidden"}).style("cursor","pointer").on("click",function(t){S.legend_item_onclick?S.legend_item_onclick.call(m,t):m.d3.event.altKey?(m.api.hide(),m.api.show(t)):(m.api.toggle(t),m.isTargetToShow(t)?m.api.focus(t):m.api.revert())}).on("mouseover",function(t){S.legend_item_onmouseover?S.legend_item_onmouseover.call(m,t):(m.d3.select(this).classed(Y.legendItemFocused,!0),!m.transiting&&m.isTargetToShow(t)&&m.api.focus(t))}).on("mouseout",function(t){S.legend_item_onmouseout?S.legend_item_onmouseout.call(m,t):(m.d3.select(this).classed(Y.legendItemFocused,!1),m.api.revert())})).append("text").text(function(t){return D(S.data_names[t])?S.data_names[t]:t}).each(function(t,e){R(this,t,e)}).style("pointer-events","none").attr("x",m.isLegendRight||m.isLegendInset?n:-200).attr("y",m.isLegendRight||m.isLegendInset?-200:o),u.append("rect").attr("class",Y.legendItemEvent).style("fill-opacity",0).attr("x",m.isLegendRight||m.isLegendInset?r:-200).attr("y",m.isLegendRight||m.isLegendInset?-200:s),u.append("line").attr("class",Y.legendItemTile).style("stroke",m.color).style("pointer-events","none").attr("x1",m.isLegendRight||m.isLegendInset?c:-200).attr("y1",m.isLegendRight||m.isLegendInset?-200:l).attr("x2",m.isLegendRight||m.isLegendInset?d:-200).attr("y2",m.isLegendRight||m.isLegendInset?-200:l).attr("stroke-width",S.legend_item_tile_height),y=m.legend.select("."+Y.legendBackground+" rect"),m.isLegendInset&&0<b&&0===y.size()&&(y=m.legend.insert("g","."+Y.legendItem).attr("class",Y.legendBackground).append("rect")),p=m.legend.selectAll("text").data(f).text(function(t){return D(S.data_names[t])?S.data_names[t]:t}).each(function(t,e){R(this,t,e)}),(h?p.transition():p).attr("x",n).attr("y",o),_=m.legend.selectAll("rect."+Y.legendItemEvent).data(f),(h?_.transition():_).attr("width",function(t){return V[t]}).attr("height",function(t){return G[t]}).attr("x",r).attr("y",s),x=m.legend.selectAll("line."+Y.legendItemTile).data(f),(h?x.transition():x).style("stroke",m.levelColor?function(t){return m.levelColor(m.cache[t].values[0].value)}:m.color).attr("x1",c).attr("y1",l).attr("x2",d).attr("y2",l),y&&(h?y.transition():y).attr("height",m.getLegendHeight()-12).attr("width",b*(O+1)+10),m.legend.selectAll("."+Y.legendItem).classed(Y.legendItemHidden,function(t){return!m.isTargetToShow(t)}),m.updateLegendItemWidth(b),m.updateLegendItemHeight(A),m.updateLegendStep(O),m.updateSizes(),m.updateScales(),m.updateSvgSize(),m.transformAll(g,e),m.legendHasRendered=!0},l.prototype.initRegion=function(){this.region=this.main.append("g").attr("clip-path",this.clipPath).attr("class",Y.regions)},l.prototype.updateRegion=function(t){var e=this,i=e.config;e.region.style("visibility",e.hasArcType()?"hidden":"visible");var n=e.main.select("."+Y.regions).selectAll("."+Y.region).data(i.regions),r=n.enter().append("rect").attr("x",e.regionX.bind(e)).attr("y",e.regionY.bind(e)).attr("width",e.regionWidth.bind(e)).attr("height",e.regionHeight.bind(e)).style("fill-opacity",0);e.mainRegion=r.merge(n).attr("class",e.classRegion.bind(e)),n.exit().transition().duration(t).style("opacity",0).remove()},l.prototype.redrawRegion=function(t,e){var i=this,n=i.mainRegion;return[(t?n.transition(e):n).attr("x",i.regionX.bind(i)).attr("y",i.regionY.bind(i)).attr("width",i.regionWidth.bind(i)).attr("height",i.regionHeight.bind(i)).style("fill-opacity",function(t){return P(t.opacity)?t.opacity:.1})]},l.prototype.regionX=function(t){var e=this,i=e.config,n="y"===t.axis?e.y:e.y2;return"y"===t.axis||"y2"===t.axis?i.axis_rotated&&"start"in t?n(t.start):0:i.axis_rotated?0:"start"in t?e.x(e.isTimeSeries()?e.parseDate(t.start):t.start):0},l.prototype.regionY=function(t){var e=this,i=e.config,n="y"===t.axis?e.y:e.y2;return"y"===t.axis||"y2"===t.axis?i.axis_rotated?0:"end"in t?n(t.end):0:i.axis_rotated&&"start"in t?e.x(e.isTimeSeries()?e.parseDate(t.start):t.start):0},l.prototype.regionWidth=function(t){var e,i=this,n=i.config,r=i.regionX(t),a="y"===t.axis?i.y:i.y2;return(e="y"===t.axis||"y2"===t.axis?n.axis_rotated&&"end"in t?a(t.end):i.width:n.axis_rotated?i.width:"end"in t?i.x(i.isTimeSeries()?i.parseDate(t.end):t.end):i.width)<r?0:e-r},l.prototype.regionHeight=function(t){var e,i=this,n=i.config,r=this.regionY(t),a="y"===t.axis?i.y:i.y2;return(e="y"===t.axis||"y2"===t.axis?n.axis_rotated?i.height:"start"in t?a(t.start):i.height:n.axis_rotated&&"end"in t?i.x(i.isTimeSeries()?i.parseDate(t.end):t.end):i.height)<r?0:e-r},l.prototype.isRegionOnX=function(t){return!t.axis||"x"===t.axis},l.prototype.getScale=function(t,e,i){return(i?this.d3.scaleTime():this.d3.scaleLinear()).range([t,e])},l.prototype.getX=function(t,e,i,n){var r,a=this.getScale(t,e,this.isTimeSeries()),o=i?a.domain(i):a;for(r in this.isCategorized()?(n=n||function(){return 0},a=function(t,e){var i=o(t)+n(t);return e?i:Math.ceil(i)}):a=function(t,e){var i=o(t);return e?i:Math.ceil(i)},o)a[r]=o[r];return a.orgDomain=function(){return o.domain()},this.isCategorized()&&(a.domain=function(t){return arguments.length?(o.domain(t),a):[(t=this.orgDomain())[0],t[1]+1]}),a},l.prototype.getY=function(t,e,i){var n=this.getScale(t,e,this.isTimeSeriesY());return i&&n.domain(i),n},l.prototype.getYScale=function(t){return"y2"===this.axis.getId(t)?this.y2:this.y},l.prototype.getSubYScale=function(t){return"y2"===this.axis.getId(t)?this.subY2:this.subY},l.prototype.updateScales=function(){var e=this,t=e.config,i=!e.x;e.xMin=t.axis_rotated?1:0,e.xMax=t.axis_rotated?e.height:e.width,e.yMin=t.axis_rotated?0:e.height,e.yMax=t.axis_rotated?e.width:1,e.subXMin=e.xMin,e.subXMax=e.xMax,e.subYMin=t.axis_rotated?0:e.height2,e.subYMax=t.axis_rotated?e.width2:1,e.x=e.getX(e.xMin,e.xMax,i?void 0:e.x.orgDomain(),function(){return e.xAxis.tickOffset()}),e.y=e.getY(e.yMin,e.yMax,i?t.axis_y_default:e.y.domain()),e.y2=e.getY(e.yMin,e.yMax,i?t.axis_y2_default:e.y2.domain()),e.subX=e.getX(e.xMin,e.xMax,e.orgXDomain,function(t){return t%1?0:e.subXAxis.tickOffset()}),e.subY=e.getY(e.subYMin,e.subYMax,i?t.axis_y_default:e.subY.domain()),e.subY2=e.getY(e.subYMin,e.subYMax,i?t.axis_y2_default:e.subY2.domain()),e.xAxisTickFormat=e.axis.getXAxisTickFormat(),e.xAxisTickValues=e.axis.getXAxisTickValues(),e.yAxisTickValues=e.axis.getYAxisTickValues(),e.y2AxisTickValues=e.axis.getY2AxisTickValues(),e.xAxis=e.axis.getXAxis(e.x,e.xOrient,e.xAxisTickFormat,e.xAxisTickValues,t.axis_x_tick_outer),e.subXAxis=e.axis.getXAxis(e.subX,e.subXOrient,e.xAxisTickFormat,e.xAxisTickValues,t.axis_x_tick_outer),e.yAxis=e.axis.getYAxis(e.y,e.yOrient,t.axis_y_tick_format,e.yAxisTickValues,t.axis_y_tick_outer),e.y2Axis=e.axis.getYAxis(e.y2,e.y2Orient,t.axis_y2_tick_format,e.y2AxisTickValues,t.axis_y2_tick_outer),i||e.brush&&e.brush.updateScale(e.subX),e.updateArc&&e.updateArc()},l.prototype.selectPoint=function(t,e,i){var n=this,r=n.config,a=(r.axis_rotated?n.circleY:n.circleX).bind(n),o=(r.axis_rotated?n.circleX:n.circleY).bind(n),s=n.pointSelectR.bind(n);r.data_onselected.call(n.api,e,t.node()),n.main.select("."+Y.selectedCircles+n.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle+"-"+i).data([e]).enter().append("circle").attr("class",function(){return n.generateClass(Y.selectedCircle,i)}).attr("cx",a).attr("cy",o).attr("stroke",function(){return n.color(e)}).attr("r",function(t){return 1.4*n.pointSelectR(t)}).transition().duration(100).attr("r",s)},l.prototype.unselectPoint=function(t,e,i){this.config.data_onunselected.call(this.api,e,t.node()),this.main.select("."+Y.selectedCircles+this.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle+"-"+i).transition().duration(100).attr("r",0).remove()},l.prototype.togglePoint=function(t,e,i,n){t?this.selectPoint(e,i,n):this.unselectPoint(e,i,n)},l.prototype.selectPath=function(t,e){var i=this;i.config.data_onselected.call(i,e,t.node()),i.config.interaction_brighten&&t.transition().duration(100).style("fill",function(){return i.d3.rgb(i.color(e)).brighter(.75)})},l.prototype.unselectPath=function(t,e){var i=this;i.config.data_onunselected.call(i,e,t.node()),i.config.interaction_brighten&&t.transition().duration(100).style("fill",function(){return i.color(e)})},l.prototype.togglePath=function(t,e,i,n){t?this.selectPath(e,i,n):this.unselectPath(e,i,n)},l.prototype.getToggle=function(t,e){var i;return"circle"===t.nodeName?i=this.isStepType(e)?function(){}:this.togglePoint:"path"===t.nodeName&&(i=this.togglePath),i},l.prototype.toggleShape=function(t,e,i){var n=this,r=n.d3,a=n.config,o=r.select(t),s=o.classed(Y.SELECTED),c=n.getToggle(t,e).bind(n);a.data_selection_enabled&&a.data_selection_isselectable(e)&&(a.data_selection_multiple||n.main.selectAll("."+Y.shapes+(a.data_selection_grouped?n.getTargetSelectorSuffix(e.id):"")).selectAll("."+Y.shape).each(function(t,e){var i=r.select(this);i.classed(Y.SELECTED)&&c(!1,i.classed(Y.SELECTED,!1),t,e)}),o.classed(Y.SELECTED,!s),c(!s,o,e,i))},l.prototype.initBar=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartBars)},l.prototype.updateTargetsForBar=function(t){var e=this,i=e.config,n=e.classChartBar.bind(e),r=e.classBars.bind(e),a=e.classFocus.bind(e);e.main.select("."+Y.chartBars).selectAll("."+Y.chartBar).data(t).attr("class",function(t){return n(t)+a(t)}).enter().append("g").attr("class",n).style("pointer-events","none").append("g").attr("class",r).style("cursor",function(t){return i.data_selection_isselectable(t)?"pointer":null})},l.prototype.updateBar=function(t){var e=this,i=e.barData.bind(e),n=e.classBar.bind(e),r=e.initialOpacity.bind(e),a=function(t){return e.color(t.id)},o=e.main.selectAll("."+Y.bars).selectAll("."+Y.bar).data(i),s=o.enter().append("path").attr("class",n).style("stroke",a).style("fill",a);e.mainBar=s.merge(o).style("opacity",r),o.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawBar=function(t,e,i){return[(e?this.mainBar.transition(i):this.mainBar).attr("d",t).style("stroke",this.color).style("fill",this.color).style("opacity",1)]},l.prototype.getBarW=function(t,e){var i=this.config,n="number"==typeof i.bar_width?i.bar_width:e?t.tickInterval()*i.bar_width_ratio/e:0;return i.bar_width_max&&n>i.bar_width_max?i.bar_width_max:n},l.prototype.getBars=function(t,e){return(e?this.main.selectAll("."+Y.bars+this.getTargetSelectorSuffix(e)):this.main).selectAll("."+Y.bar+(P(t)?"-"+t:""))},l.prototype.expandBars=function(t,e,i){i&&this.unexpandBars(),this.getBars(t,e).classed(Y.EXPANDED,!0)},l.prototype.unexpandBars=function(t){this.getBars(t).classed(Y.EXPANDED,!1)},l.prototype.generateDrawBar=function(t,e){var a=this.config,o=this.generateGetBarPoints(t,e);return function(t,e){var i=o(t,e),n=a.axis_rotated?1:0,r=a.axis_rotated?0:1;return"M "+i[0][n]+","+i[0][r]+" L"+i[1][n]+","+i[1][r]+" L"+i[2][n]+","+i[2][r]+" L"+i[3][n]+","+i[3][r]+" z"}},l.prototype.generateGetBarPoints=function(t,e){var o=this,i=e?o.subXAxis:o.xAxis,n=t.__max__+1,s=o.getBarW(i,n),c=o.getShapeX(s,n,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isBarType,t,!!e),u=s*(o.config.bar_space/2),h=e?o.getSubYScale:o.getYScale;return function(t,e){var i=h.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return o.config.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r+u,n],[r+u,a-(i-n)],[r+s-u,a-(i-n)],[r+s-u,n]]}},l.prototype.isWithinBar=function(t,e){var i=e.getBoundingClientRect(),n=e.pathSegList.getItem(0),r=e.pathSegList.getItem(1),a=Math.min(n.x,r.x),o=Math.min(n.y,r.y),s=a+i.width+2,c=o+i.height+2,d=o-2;return a-2<t[0]&&t[0]<s&&d<t[1]&&t[1]<c},l.prototype.getShapeIndices=function(t){var e,i,n=this.config,r={},a=0;return this.filterTargetsToShow(this.data.targets.filter(t,this)).forEach(function(t){for(e=0;e<n.data_groups.length;e++)if(!(n.data_groups[e].indexOf(t.id)<0))for(i=0;i<n.data_groups[e].length;i++)if(n.data_groups[e][i]in r){r[t.id]=r[n.data_groups[e][i]];break}v(r[t.id])&&(r[t.id]=a++)}),r.__max__=a-1,r},l.prototype.getShapeX=function(i,n,r,t){var a=t?this.subX:this.x;return function(t){var e=t.id in r?r[t.id]:0;return t.x||0===t.x?a(t.x)-i*(n/2-e):0}},l.prototype.getShapeY=function(e){var i=this;return function(t){return(e?i.getSubYScale(t.id):i.getYScale(t.id))(t.value)}},l.prototype.getShapeOffset=function(t,s,e){var c=this,d=c.orderTargets(c.filterTargetsToShow(c.data.targets.filter(t,c))),l=d.map(function(t){return t.id});return function(i,n){var r=e?c.getSubYScale(i.id):c.getYScale(i.id),a=r(0),o=a;return d.forEach(function(t){var e=c.isStepType(i)?c.convertValuesToStep(t.values):t.values;t.id!==i.id&&s[t.id]===s[i.id]&&l.indexOf(t.id)<l.indexOf(i.id)&&(void 0!==e[n]&&+e[n].x==+i.x||(n=-1,e.forEach(function(t,e){t.x===i.x&&(n=e)})),n in e&&0<=e[n].value*i.value&&(o+=r(e[n].value)-a))}),o}},l.prototype.isWithinShape=function(t,e){var i,n=this,r=n.d3.select(t);return n.isTargetToShow(e.id)?"circle"===t.nodeName?i=n.isStepType(e)?n.isWithinStep(t,n.getYScale(e.id)(e.value)):n.isWithinCircle(t,1.5*n.pointSelectR(e)):"path"===t.nodeName&&(i=!r.classed(Y.bar)||n.isWithinBar(n.d3.mouse(t),t)):i=!1,i},l.prototype.getInterpolate=function(t){var e=this,i=e.d3,n={linear:i.curveLinear,"linear-closed":i.curveLinearClosed,basis:i.curveBasis,"basis-open":i.curveBasisOpen,"basis-closed":i.curveBasisClosed,bundle:i.curveBundle,cardinal:i.curveCardinal,"cardinal-open":i.curveCardinalOpen,"cardinal-closed":i.curveCardinalClosed,monotone:i.curveMonotoneX,step:i.curveStep,"step-before":i.curveStepBefore,"step-after":i.curveStepAfter};return e.isSplineType(t)?n[e.config.spline_interpolation_type]||n.cardinal:e.isStepType(t)?n[e.config.line_step_type]:n.linear},l.prototype.initLine=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartLines)},l.prototype.updateTargetsForLine=function(t){var e,i=this,n=i.config,r=i.classChartLine.bind(i),a=i.classLines.bind(i),o=i.classAreas.bind(i),s=i.classCircles.bind(i),c=i.classFocus.bind(i);(e=i.main.select("."+Y.chartLines).selectAll("."+Y.chartLine).data(t).attr("class",function(t){return r(t)+c(t)}).enter().append("g").attr("class",r).style("opacity",0).style("pointer-events","none")).append("g").attr("class",a),e.append("g").attr("class",o),e.append("g").attr("class",function(t){return i.generateClass(Y.selectedCircles,t.id)}),e.append("g").attr("class",s).style("cursor",function(t){return n.data_selection_isselectable(t)?"pointer":null}),t.forEach(function(e){i.main.selectAll("."+Y.selectedCircles+i.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle).each(function(t){t.value=e.values[t.index].value})})},l.prototype.updateLine=function(t){var e=this,i=e.main.selectAll("."+Y.lines).selectAll("."+Y.line).data(e.lineData.bind(e)),n=i.enter().append("path").attr("class",e.classLine.bind(e)).style("stroke",e.color);e.mainLine=n.merge(i).style("opacity",e.initialOpacity.bind(e)).style("shape-rendering",function(t){return e.isStepType(t)?"crispEdges":""}).attr("transform",null),i.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawLine=function(t,e,i){return[(e?this.mainLine.transition(i):this.mainLine).attr("d",t).style("stroke",this.color).style("opacity",1)]},l.prototype.generateDrawLine=function(t,s){var c=this,d=c.config,l=c.d3.line(),i=c.generateGetLinePoints(t,s),u=s?c.getSubYScale:c.getYScale,e=function(t){return(s?c.subxx:c.xx).call(c,t)},n=function(t,e){return 0<d.data_groups.length?i(t,e)[0][1]:u.call(c,t.id)(t.value)};return l=d.axis_rotated?l.x(n).y(e):l.x(e).y(n),d.line_connectNull||(l=l.defined(function(t){return null!=t.value})),function(t){var e,i=d.line_connectNull?c.filterRemoveNull(t.values):t.values,n=s?c.subX:c.x,r=u.call(c,t.id),a=0,o=0;return c.isLineType(t)?d.data_regions[t.id]?e=c.lineWithRegions(i,n,r,d.data_regions[t.id]):(c.isStepType(t)&&(i=c.convertValuesToStep(i)),e=l.curve(c.getInterpolate(t))(i)):(i[0]&&(a=n(i[0].x),o=r(i[0].value)),e=d.axis_rotated?"M "+o+" "+a:"M "+a+" "+o),e||"M 0 0"}},l.prototype.generateGetLinePoints=function(t,e){var o=this,s=o.config,i=t.__max__+1,c=o.getShapeX(0,i,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isLineType,t,!!e),u=e?o.getSubYScale:o.getYScale;return function(t,e){var i=u.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return s.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r,a-(i-n)],[r,a-(i-n)],[r,a-(i-n)],[r,a-(i-n)]]}},l.prototype.lineWithRegions=function(t,c,d,e){var i,n,r,a,l,o,s,u,h,g,p,f=this,_=f.config,x="M",y=f.isCategorized()?.5:0,m=[];function S(t,e){var i;for(i=0;i<e.length;i++)if(e[i].start<t&&t<=e[i].end)return!0;return!1}if(D(e))for(i=0;i<e.length;i++)m[i]={},v(e[i].start)?m[i].start=t[0].x:m[i].start=f.isTimeSeries()?f.parseDate(e[i].start):e[i].start,v(e[i].end)?m[i].end=t[t.length-1].x:m[i].end=f.isTimeSeries()?f.parseDate(e[i].end):e[i].end;function w(t){return"M"+t[0][0]+" "+t[0][1]+" "+t[1][0]+" "+t[1][1]}for(g=_.axis_rotated?function(t){return d(t.value)}:function(t){return c(t.x)},p=_.axis_rotated?function(t){return c(t.x)}:function(t){return d(t.value)},r=f.isTimeSeries()?function(t,e,i,n){var r=t.x.getTime(),a=e.x-t.x,o=new Date(r+a*i),s=new Date(r+a*(i+n));return w(_.axis_rotated?[[d(l(i)),c(o)],[d(l(i+n)),c(s)]]:[[c(o),d(l(i))],[c(s),d(l(i+n))]])}:function(t,e,i,n){return w(_.axis_rotated?[[d(l(i),!0),c(a(i))],[d(l(i+n),!0),c(a(i+n))]]:[[c(a(i),!0),d(l(i))],[c(a(i+n),!0),d(l(i+n))]])},i=0;i<t.length;i++){if(v(m)||!S(t[i].x,m))x+=" "+g(t[i])+" "+p(t[i]);else for(a=f.getScale(t[i-1].x+y,t[i].x+y,f.isTimeSeries()),l=f.getScale(t[i-1].value,t[i].value),o=c(t[i].x)-c(t[i-1].x),s=d(t[i].value)-d(t[i-1].value),h=2*(u=2/Math.sqrt(Math.pow(o,2)+Math.pow(s,2))),n=u;n<=1;n+=h)x+=r(t[i-1],t[i],n,u);t[i].x}return x},l.prototype.updateArea=function(t){var e=this,i=e.d3,n=e.main.selectAll("."+Y.areas).selectAll("."+Y.area).data(e.lineData.bind(e)),r=n.enter().append("path").attr("class",e.classArea.bind(e)).style("fill",e.color).style("opacity",function(){return e.orgAreaOpacity=+i.select(this).style("opacity"),0});e.mainArea=r.merge(n).style("opacity",e.orgAreaOpacity),n.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawArea=function(t,e,i){return[(e?this.mainArea.transition(i):this.mainArea).attr("d",t).style("fill",this.color).style("opacity",this.orgAreaOpacity)]},l.prototype.generateDrawArea=function(t,e){var a=this,o=a.config,s=a.d3.area(),i=a.generateGetAreaPoints(t,e),n=e?a.getSubYScale:a.getYScale,r=function(t){return(e?a.subxx:a.xx).call(a,t)},c=function(t,e){return 0<o.data_groups.length?i(t,e)[0][1]:n.call(a,t.id)(a.getAreaBaseValue(t.id))},d=function(t,e){return 0<o.data_groups.length?i(t,e)[1][1]:n.call(a,t.id)(t.value)};return s=o.axis_rotated?s.x0(c).x1(d).y(r):s.x(r).y0(o.area_above?0:c).y1(d),o.line_connectNull||(s=s.defined(function(t){return null!==t.value})),function(t){var e,i=o.line_connectNull?a.filterRemoveNull(t.values):t.values,n=0,r=0;return a.isAreaType(t)?(a.isStepType(t)&&(i=a.convertValuesToStep(i)),e=s.curve(a.getInterpolate(t))(i)):(i[0]&&(n=a.x(i[0].x),r=a.getYScale(t.id)(i[0].value)),e=o.axis_rotated?"M "+r+" "+n:"M "+n+" "+r),e||"M 0 0"}},l.prototype.getAreaBaseValue=function(){return 0},l.prototype.generateGetAreaPoints=function(t,e){var o=this,s=o.config,i=t.__max__+1,c=o.getShapeX(0,i,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isAreaType,t,!!e),u=e?o.getSubYScale:o.getYScale;return function(t,e){var i=u.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return s.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r,n],[r,a-(i-n)],[r,a-(i-n)],[r,n]]}},l.prototype.updateCircle=function(t,e){var i=this,n=i.main.selectAll("."+Y.circles).selectAll("."+Y.circle).data(i.lineOrScatterData.bind(i)),r=n.enter().append("circle").attr("class",i.classCircle.bind(i)).attr("cx",t).attr("cy",e).attr("r",i.pointR.bind(i)).style("fill",i.color);i.mainCircle=r.merge(n).style("opacity",i.initialOpacityForCircle.bind(i)),n.exit().style("opacity",0)},l.prototype.redrawCircle=function(t,e,i,n){var r=this,a=r.main.selectAll("."+Y.selectedCircle);return[(i?r.mainCircle.transition(n):r.mainCircle).style("opacity",this.opacityForCircle.bind(r)).style("fill",r.color).attr("cx",t).attr("cy",e),(i?a.transition(n):a).attr("cx",t).attr("cy",e)]},l.prototype.circleX=function(t){return t.x||0===t.x?this.x(t.x):null},l.prototype.updateCircleY=function(){var t,i,e=this;0<e.config.data_groups.length?(t=e.getShapeIndices(e.isLineType),i=e.generateGetLinePoints(t),e.circleY=function(t,e){return i(t,e)[0][1]}):e.circleY=function(t){return e.getYScale(t.id)(t.value)}},l.prototype.getCircles=function(t,e){return(e?this.main.selectAll("."+Y.circles+this.getTargetSelectorSuffix(e)):this.main).selectAll("."+Y.circle+(P(t)?"-"+t:""))},l.prototype.expandCircles=function(t,e,i){var n=this.pointExpandedR.bind(this);i&&this.unexpandCircles(),this.getCircles(t,e).classed(Y.EXPANDED,!0).attr("r",n)},l.prototype.unexpandCircles=function(t){var e=this,i=e.pointR.bind(e);e.getCircles(t).filter(function(){return e.d3.select(this).classed(Y.EXPANDED)}).classed(Y.EXPANDED,!1).attr("r",i)},l.prototype.pointR=function(t){var e=this.config;return this.isStepType(t)?0:h(e.point_r)?e.point_r(t):e.point_r},l.prototype.pointExpandedR=function(t){var e=this.config;return e.point_focus_expand_enabled?h(e.point_focus_expand_r)?e.point_focus_expand_r(t):e.point_focus_expand_r?e.point_focus_expand_r:1.75*this.pointR(t):this.pointR(t)},l.prototype.pointSelectR=function(t){var e=this.config;return h(e.point_select_r)?e.point_select_r(t):e.point_select_r?e.point_select_r:4*this.pointR(t)},l.prototype.isWithinCircle=function(t,e){var i=this.d3,n=i.mouse(t),r=i.select(t),a=+r.attr("cx"),o=+r.attr("cy");return Math.sqrt(Math.pow(a-n[0],2)+Math.pow(o-n[1],2))<e},l.prototype.isWithinStep=function(t,e){return Math.abs(e-this.d3.mouse(t)[1])<30},l.prototype.getCurrentWidth=function(){var t=this.config;return t.size_width?t.size_width:this.getParentWidth()},l.prototype.getCurrentHeight=function(){var t=this.config,e=t.size_height?t.size_height:this.getParentHeight();return 0<e?e:320/(this.hasType("gauge")&&!t.gauge_fullCircle?2:1)},l.prototype.getCurrentPaddingTop=function(){var t=this.config,e=P(t.padding_top)?t.padding_top:0;return this.title&&this.title.node()&&(e+=this.getTitlePadding()),e},l.prototype.getCurrentPaddingBottom=function(){var t=this.config;return P(t.padding_bottom)?t.padding_bottom:0},l.prototype.getCurrentPaddingLeft=function(t){var e=this.config;return P(e.padding_left)?e.padding_left:e.axis_rotated?!e.axis_x_show||e.axis_x_inner?1:Math.max(r(this.getAxisWidthByAxisId("x",t)),40):!e.axis_y_show||e.axis_y_inner?this.axis.getYAxisLabelPosition().isOuter?30:1:r(this.getAxisWidthByAxisId("y",t))},l.prototype.getCurrentPaddingRight=function(){var t=this,e=t.config,i=t.isLegendRight?t.getLegendWidth()+20:0;return P(e.padding_right)?e.padding_right+1:e.axis_rotated?10+i:!e.axis_y2_show||e.axis_y2_inner?2+i+(t.axis.getY2AxisLabelPosition().isOuter?20:0):r(t.getAxisWidthByAxisId("y2"))+i},l.prototype.getParentRectValue=function(e){for(var i,n=this.selectChart.node();n&&"BODY"!==n.tagName;){try{i=n.getBoundingClientRect()[e]}catch(t){"width"===e&&(i=n.offsetWidth)}if(i)break;n=n.parentNode}return i},l.prototype.getParentWidth=function(){return this.getParentRectValue("width")},l.prototype.getParentHeight=function(){var t=this.selectChart.style("height");return 0<t.indexOf("px")?+t.replace("px",""):0},l.prototype.getSvgLeft=function(t){var e=this,i=e.config,n=i.axis_rotated||!i.axis_rotated&&!i.axis_y_inner,r=i.axis_rotated?Y.axisX:Y.axisY,a=e.main.select("."+r).node(),o=a&&n?a.getBoundingClientRect():{right:0},s=e.selectChart.node().getBoundingClientRect(),c=e.hasArcType(),d=o.right-s.left-(c?0:e.getCurrentPaddingLeft(t));return 0<d?d:0},l.prototype.getAxisWidthByAxisId=function(t,e){var i=this.axis.getLabelPositionById(t);return this.axis.getMaxTickWidth(t,e)+(i.isInner?20:40)},l.prototype.getHorizontalAxisHeight=function(t){var e=this,i=e.config,n=30;return"x"!==t||i.axis_x_show?"x"===t&&i.axis_x_height?i.axis_x_height:"y"!==t||i.axis_y_show?"y2"!==t||i.axis_y2_show?("x"===t&&!i.axis_rotated&&i.axis_x_tick_rotate&&(n=30+e.axis.getMaxTickWidth(t)*Math.cos(Math.PI*(90-Math.abs(i.axis_x_tick_rotate))/180)),"y"===t&&i.axis_rotated&&i.axis_y_tick_rotate&&(n=30+e.axis.getMaxTickWidth(t)*Math.cos(Math.PI*(90-Math.abs(i.axis_y_tick_rotate))/180)),n+(e.axis.getLabelPositionById(t).isInner?0:10)+("y2"===t?-10:0)):e.rotated_padding_top:!i.legend_show||e.isLegendRight||e.isLegendInset?1:10:8},l.prototype.initBrush=function(t){var r=this,e=r.d3;return r.brush=(r.config.axis_rotated?e.brushY():e.brushX()).on("brush",function(){var t=e.event.sourceEvent;t&&"zoom"===t.type||r.redrawForBrush()}).on("end",function(){var t=e.event.sourceEvent;t&&"zoom"===t.type||r.brush.empty()&&t&&"end"!==t.type&&r.brush.clear()}),r.brush.updateExtent=function(){var t,e=this.scale.range();return t=r.config.axis_rotated?[[0,e[0]],[r.width2,e[1]]]:[[e[0],0],[e[1],r.height2]],this.extent(t),this},r.brush.updateScale=function(t){return this.scale=t,this},r.brush.update=function(t){this.updateScale(t||r.subX).updateExtent(),r.context.select("."+Y.brush).call(this)},r.brush.clear=function(){r.context.select("."+Y.brush).call(r.brush.move,null)},r.brush.selection=function(){return e.brushSelection(r.context.select("."+Y.brush).node())},r.brush.selectionAsValue=function(t,e){var i,n;return t?(r.context&&(i=[this.scale(t[0]),this.scale(t[1])],n=r.context.select("."+Y.brush),e&&(n=n.transition()),r.brush.move(n,i)),[]):(i=r.brush.selection()||[0,0],[this.scale.invert(i[0]),this.scale.invert(i[1])])},r.brush.empty=function(){var t=r.brush.selection();return!t||t[0]===t[1]},r.brush.updateScale(t)},l.prototype.initSubchart=function(){var t=this,e=t.config,i=t.context=t.svg.append("g").attr("transform",t.getTranslate("context")),n=e.subchart_show?"visible":"hidden";i.style("visibility",n),i.append("g").attr("clip-path",t.clipPathForSubchart).attr("class",Y.chart),i.select("."+Y.chart).append("g").attr("class",Y.chartBars),i.select("."+Y.chart).append("g").attr("class",Y.chartLines),i.append("g").attr("clip-path",t.clipPath).attr("class",Y.brush),t.axes.subx=i.append("g").attr("class",Y.axisX).attr("transform",t.getTranslate("subx")).attr("clip-path",e.axis_rotated?"":t.clipPathForXAxis)},l.prototype.initSubchartBrush=function(){this.initBrush(this.subX).updateExtent(),this.context.select("."+Y.brush).call(this.brush)},l.prototype.updateTargetsForSubchart=function(t){var e,i,n,r,a=this,o=a.context,s=a.config,c=a.classChartBar.bind(a),d=a.classBars.bind(a),l=a.classChartLine.bind(a),u=a.classLines.bind(a),h=a.classAreas.bind(a);s.subchart_show&&((n=(r=o.select("."+Y.chartBars).selectAll("."+Y.chartBar).data(t)).enter().append("g").style("opacity",0)).merge(r).attr("class",c),n.append("g").attr("class",d),(e=(i=o.select("."+Y.chartLines).selectAll("."+Y.chartLine).data(t)).enter().append("g").style("opacity",0)).merge(i).attr("class",l),e.append("g").attr("class",u),e.append("g").attr("class",h),o.selectAll("."+Y.brush+" rect").attr(s.axis_rotated?"width":"height",s.axis_rotated?a.width2:a.height2))},l.prototype.updateBarForSubchart=function(t){var e=this,i=e.context.selectAll("."+Y.bars).selectAll("."+Y.bar).data(e.barData.bind(e)),n=i.enter().append("path").attr("class",e.classBar.bind(e)).style("stroke","none").style("fill",e.color);i.exit().transition().duration(t).style("opacity",0).remove(),e.contextBar=n.merge(i).style("opacity",e.initialOpacity.bind(e))},l.prototype.redrawBarForSubchart=function(t,e,i){(e?this.contextBar.transition(Math.random().toString()).duration(i):this.contextBar).attr("d",t).style("opacity",1)},l.prototype.updateLineForSubchart=function(t){var e=this,i=e.context.selectAll("."+Y.lines).selectAll("."+Y.line).data(e.lineData.bind(e)),n=i.enter().append("path").attr("class",e.classLine.bind(e)).style("stroke",e.color);i.exit().transition().duration(t).style("opacity",0).remove(),e.contextLine=n.merge(i).style("opacity",e.initialOpacity.bind(e))},l.prototype.redrawLineForSubchart=function(t,e,i){(e?this.contextLine.transition(Math.random().toString()).duration(i):this.contextLine).attr("d",t).style("opacity",1)},l.prototype.updateAreaForSubchart=function(t){var e=this,i=e.d3,n=e.context.selectAll("."+Y.areas).selectAll("."+Y.area).data(e.lineData.bind(e)),r=n.enter().append("path").attr("class",e.classArea.bind(e)).style("fill",e.color).style("opacity",function(){return e.orgAreaOpacity=+i.select(this).style("opacity"),0});n.exit().transition().duration(t).style("opacity",0).remove(),e.contextArea=r.merge(n).style("opacity",0)},l.prototype.redrawAreaForSubchart=function(t,e,i){(e?this.contextArea.transition(Math.random().toString()).duration(i):this.contextArea).attr("d",t).style("fill",this.color).style("opacity",this.orgAreaOpacity)},l.prototype.redrawSubchart=function(t,e,i,n,r,a,o){var s,c,d,l=this,u=l.d3,h=l.config;l.context.style("visibility",h.subchart_show?"visible":"hidden"),h.subchart_show&&(u.event&&"zoom"===u.event.type&&l.brush.selectionAsValue(l.x.orgDomain()),t&&(l.brush.empty()||l.brush.selectionAsValue(l.x.orgDomain()),s=l.generateDrawArea(r,!0),c=l.generateDrawBar(a,!0),d=l.generateDrawLine(o,!0),l.updateBarForSubchart(i),l.updateLineForSubchart(i),l.updateAreaForSubchart(i),l.redrawBarForSubchart(c,i,i),l.redrawLineForSubchart(d,i,i),l.redrawAreaForSubchart(s,i,i)))},l.prototype.redrawForBrush=function(){var t,e=this,i=e.x,n=e.d3;e.redraw({withTransition:!1,withY:e.config.zoom_rescale,withSubchart:!1,withUpdateXDomain:!0,withEventRect:!1,withDimension:!1}),t=n.event.selection||e.brush.scale.range(),e.main.select("."+Y.eventRect).call(e.zoom.transform,n.zoomIdentity.scale(e.width/(t[1]-t[0])).translate(-t[0],0)),e.config.subchart_onbrush.call(e.api,i.orgDomain())},l.prototype.transformContext=function(t,e){var i;e&&e.axisSubX?i=e.axisSubX:(i=this.context.select("."+Y.axisX),t&&(i=i.transition())),this.context.attr("transform",this.getTranslate("context")),i.attr("transform",this.getTranslate("subx"))},l.prototype.getDefaultSelection=function(){var t=this,e=t.config,i=h(e.axis_x_selection)?e.axis_x_selection(t.getXDomain(t.data.targets)):e.axis_x_selection;return t.isTimeSeries()&&(i=[t.parseDate(i[0]),t.parseDate(i[1])]),i},l.prototype.initText=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartTexts),this.mainText=this.d3.selectAll([])},l.prototype.updateTargetsForText=function(t){var e=this,i=e.classChartText.bind(e),n=e.classTexts.bind(e),r=e.classFocus.bind(e),a=e.main.select("."+Y.chartTexts).selectAll("."+Y.chartText).data(t),o=a.enter().append("g").attr("class",i).style("opacity",0).style("pointer-events","none");o.append("g").attr("class",n),o.merge(a).attr("class",function(t){return i(t)+r(t)})},l.prototype.updateText=function(t,e,i){var n=this,r=n.config,a=n.barOrLineData.bind(n),o=n.classText.bind(n),s=n.main.selectAll("."+Y.texts).selectAll("."+Y.text).data(a),c=s.enter().append("text").attr("class",o).attr("text-anchor",function(t){return r.axis_rotated?t.value<0?"end":"start":"middle"}).style("stroke","none").attr("x",t).attr("y",e).style("fill",function(t){return n.color(t)}).style("fill-opacity",0);n.mainText=c.merge(s).text(function(t,e,i){return n.dataLabelFormat(t.id)(t.value,t.id,e,i)}),s.exit().transition().duration(i).style("fill-opacity",0).remove()},l.prototype.redrawText=function(t,e,i,n,r){return[(n?this.mainText.transition(r):this.mainText).attr("x",t).attr("y",e).style("fill",this.color).style("fill-opacity",i?0:this.opacityForText.bind(this))]},l.prototype.getTextRect=function(t,e,i){var n,r=this.d3.select("body").append("div").classed("c3",!0),a=r.append("svg").style("visibility","hidden").style("position","fixed").style("top",0).style("left",0),o=this.d3.select(i).style("font");return a.selectAll(".dummy").data([t]).enter().append("text").classed(e||"",!0).style("font",o).text(t).each(function(){n=this.getBoundingClientRect()}),r.remove(),n},l.prototype.generateXYForText=function(t,e,i,n){var r=this,a=r.generateGetAreaPoints(t,!1),o=r.generateGetBarPoints(e,!1),s=r.generateGetLinePoints(i,!1),c=n?r.getXForText:r.getYForText;return function(t,e){var i=r.isAreaType(t)?a:r.isBarType(t)?o:s;return c.call(r,i(t,e),t,this)}},l.prototype.getXForText=function(t,e,i){var n,r,a=this,o=i.getBoundingClientRect();return a.config.axis_rotated?(r=a.isBarType(e)?4:6,n=t[2][1]+r*(e.value<0?-1:1)):n=a.hasType("bar")?(t[2][0]+t[0][0])/2:t[0][0],null===e.value&&(n>a.width?n=a.width-o.width:n<0&&(n=4)),n},l.prototype.getYForText=function(t,e,i){var n,r=this,a=i.getBoundingClientRect();return r.config.axis_rotated?n=(t[0][0]+t[2][0]+.6*a.height)/2:(n=t[2][1],e.value<0||0===e.value&&!r.hasPositiveValue?(n+=a.height,r.isBarType(e)&&r.isSafari()?n-=3:!r.isBarType(e)&&r.isChrome()&&(n+=3)):n+=r.isBarType(e)?-3:-6),null!==e.value||r.config.axis_rotated||(n<a.height?n=a.height:n>this.height&&(n=this.height-4)),n},l.prototype.initTitle=function(){this.title=this.svg.append("text").text(this.config.title_text).attr("class",this.CLASS.title)},l.prototype.redrawTitle=function(){var t=this;t.title.attr("x",t.xForTitle.bind(t)).attr("y",t.yForTitle.bind(t))},l.prototype.xForTitle=function(){var t=this,e=t.config,i=e.title_position||"left";return 0<=i.indexOf("right")?t.currentWidth-t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).width-e.title_padding.right:0<=i.indexOf("center")?(t.currentWidth-t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).width)/2:e.title_padding.left},l.prototype.yForTitle=function(){var t=this;return t.config.title_padding.top+t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).height},l.prototype.getTitlePadding=function(){return this.yForTitle()+this.config.title_padding.bottom},l.prototype.initTooltip=function(){var t,e=this,i=e.config;if(e.tooltip=e.selectChart.style("position","relative").append("div").attr("class",Y.tooltipContainer).style("position","absolute").style("pointer-events","none").style("display","none"),i.tooltip_init_show){if(e.isTimeSeries()&&c(i.tooltip_init_x)){for(i.tooltip_init_x=e.parseDate(i.tooltip_init_x),t=0;t<e.data.targets[0].values.length&&e.data.targets[0].values[t].x-i.tooltip_init_x!=0;t++);i.tooltip_init_x=t}e.tooltip.html(i.tooltip_contents.call(e,e.data.targets.map(function(t){return e.addName(t.values[i.tooltip_init_x])}),e.axis.getXAxisTickFormat(),e.getYFormat(e.hasArcType()),e.color)),e.tooltip.style("top",i.tooltip_init_position.top).style("left",i.tooltip_init_position.left).style("display","block")}},l.prototype.getTooltipSortFunction=function(){var t=this,e=t.config;if(0!==e.data_groups.length&&void 0===e.tooltip_order){var i=t.orderTargets(t.data.targets).map(function(t){return t.id});return(t.isOrderAsc()||t.isOrderDesc())&&(i=i.reverse()),function(t,e){return i.indexOf(t.id)-i.indexOf(e.id)}}var n=e.tooltip_order;void 0===n&&(n=e.data_order);var r=function(t){return t?t.value:null};if(c(n)&&"asc"===n.toLowerCase())return function(t,e){return r(t)-r(e)};if(c(n)&&"desc"===n.toLowerCase())return function(t,e){return r(e)-r(t)};if(h(n)){var a=n;return void 0===e.tooltip_order&&(a=function(t,e){return n(t?{id:t.id,values:[t]}:null,e?{id:e.id,values:[e]}:null)}),a}return o(n)?function(t,e){return n.indexOf(t.id)-n.indexOf(e.id)}:void 0},l.prototype.getTooltipContent=function(t,e,i,n){var r,a,o,s,c,d,l=this,u=l.config,h=u.tooltip_format_title||e,g=u.tooltip_format_name||function(t){return t},p=u.tooltip_format_value||i,f=this.getTooltipSortFunction();for(f&&t.sort(f),a=0;a<t.length;a++)if(t[a]&&(t[a].value||0===t[a].value)&&(r||(o=_(h?h(t[a].x):t[a].x),r="<table class='"+l.CLASS.tooltip+"'>"+(o||0===o?"<tr><th colspan='2'>"+o+"</th></tr>":"")),void 0!==(s=_(p(t[a].value,t[a].ratio,t[a].id,t[a].index,t))))){if(null===t[a].name)continue;c=_(g(t[a].name,t[a].ratio,t[a].id,t[a].index)),d=l.levelColor?l.levelColor(t[a].value):n(t[a].id),r+="<tr class='"+l.CLASS.tooltipName+"-"+l.getTargetSelectorSuffix(t[a].id)+"'>",r+="<td class='name'><span style='background-color:"+d+"'></span>"+c+"</td>",r+="<td class='value'>"+s+"</td>",r+="</tr>"}return r+"</table>"},l.prototype.tooltipPosition=function(t,e,i,n){var r,a,o,s,c,d=this,l=d.config,u=d.d3,h=d.hasArcType(),g=u.mouse(n);return h?(a=(d.width-(d.isLegendRight?d.getLegendWidth():0))/2+g[0],s=(d.hasType("gauge")?d.height:d.height/2)+g[1]+20):(r=d.getSvgLeft(!0),l.axis_rotated?(o=(a=r+g[0]+100)+e,c=d.currentWidth-d.getCurrentPaddingRight(),s=d.x(t[0].x)+20):(o=(a=r+d.getCurrentPaddingLeft(!0)+d.x(t[0].x)+20)+e,c=r+d.currentWidth-d.getCurrentPaddingRight(),s=g[1]+15),c<o&&(a-=o-c+20),s+i>d.currentHeight&&(s-=i+30)),s<0&&(s=0),{top:s,left:a}},l.prototype.showTooltip=function(t,e){var i,n,r,a=this,o=a.config,s=a.hasArcType(),c=t.filter(function(t){return t&&P(t.value)}),d=o.tooltip_position||l.prototype.tooltipPosition;0!==c.length&&o.tooltip_show&&(a.tooltip.html(o.tooltip_contents.call(a,t,a.axis.getXAxisTickFormat(),a.getYFormat(s),a.color)).style("display","block"),i=a.tooltip.property("offsetWidth"),n=a.tooltip.property("offsetHeight"),r=d.call(this,c,i,n,e),a.tooltip.style("top",r.top+"px").style("left",r.left+"px"))},l.prototype.hideTooltip=function(){this.tooltip.style("display","none")},l.prototype.setTargetType=function(t,e){var i=this,n=i.config;i.mapToTargetIds(t).forEach(function(t){i.withoutFadeIn[t]=e===n.data_types[t],n.data_types[t]=e}),t||(n.data_type=e)},l.prototype.hasType=function(i,t){var n=this.config.data_types,r=!1;return(t=t||this.data.targets)&&t.length?t.forEach(function(t){var e=n[t.id];(e&&0<=e.indexOf(i)||!e&&"line"===i)&&(r=!0)}):Object.keys(n).length?Object.keys(n).forEach(function(t){n[t]===i&&(r=!0)}):r=this.config.data_type===i,r},l.prototype.hasArcType=function(t){return this.hasType("pie",t)||this.hasType("donut",t)||this.hasType("gauge",t)},l.prototype.isLineType=function(t){var e=this.config,i=c(t)?t:t.id;return!e.data_types[i]||0<=["line","spline","area","area-spline","step","area-step"].indexOf(e.data_types[i])},l.prototype.isStepType=function(t){var e=c(t)?t:t.id;return 0<=["step","area-step"].indexOf(this.config.data_types[e])},l.prototype.isSplineType=function(t){var e=c(t)?t:t.id;return 0<=["spline","area-spline"].indexOf(this.config.data_types[e])},l.prototype.isAreaType=function(t){var e=c(t)?t:t.id;return 0<=["area","area-spline","area-step"].indexOf(this.config.data_types[e])},l.prototype.isBarType=function(t){var e=c(t)?t:t.id;return"bar"===this.config.data_types[e]},l.prototype.isScatterType=function(t){var e=c(t)?t:t.id;return"scatter"===this.config.data_types[e]},l.prototype.isPieType=function(t){var e=c(t)?t:t.id;return"pie"===this.config.data_types[e]},l.prototype.isGaugeType=function(t){var e=c(t)?t:t.id;return"gauge"===this.config.data_types[e]},l.prototype.isDonutType=function(t){var e=c(t)?t:t.id;return"donut"===this.config.data_types[e]},l.prototype.isArcType=function(t){return this.isPieType(t)||this.isDonutType(t)||this.isGaugeType(t)},l.prototype.lineData=function(t){return this.isLineType(t)?[t]:[]},l.prototype.arcData=function(t){return this.isArcType(t.data)?[t]:[]},l.prototype.barData=function(t){return this.isBarType(t)?t.values:[]},l.prototype.lineOrScatterData=function(t){return this.isLineType(t)||this.isScatterType(t)?t.values:[]},l.prototype.barOrLineData=function(t){return this.isBarType(t)||this.isLineType(t)?t.values:[]},l.prototype.isSafari=function(){var t=window.navigator.userAgent;return 0<=t.indexOf("Safari")&&t.indexOf("Chrome")<0},l.prototype.isChrome=function(){return 0<=window.navigator.userAgent.indexOf("Chrome")},l.prototype.initZoom=function(){var e,i=this,n=i.d3,r=i.config;return i.zoom=n.zoom().on("start",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||(e=t,r.zoom_onzoomstart.call(i.api,t))}}).on("zoom",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||(i.redrawForZoom(),r.zoom_onzoom.call(i.api,i.x.orgDomain()))}}).on("end",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||t&&e.clientX===t.clientX&&e.clientY===t.clientY||r.zoom_onzoomend.call(i.api,i.x.orgDomain())}}),i.zoom.updateDomain=function(){return n.event&&n.event.transform&&i.x.domain(n.event.transform.rescaleX(i.subX).domain()),this},i.zoom.updateExtent=function(){return this.scaleExtent([1,1/0]).translateExtent([[0,0],[i.width,i.height]]).extent([[0,0],[i.width,i.height]]),this},i.zoom.update=function(){return this.updateExtent().updateDomain()},i.zoom.updateExtent()},l.prototype.zoomTransform=function(t){var e=[this.x(t[0]),this.x(t[1])];return this.d3.zoomIdentity.scale(this.width/(e[1]-e[0])).translate(-e[0],0)},l.prototype.initDragZoom=function(){var e=this,i=e.d3,n=e.config,t=e.context=e.svg,r=e.margin.left+20.5,a=e.margin.top+.5;if("drag"===n.zoom_type&&n.zoom_enabled){var o=function(t){return t&&t.map(function(t){return e.x.invert(t)})},s=e.dragZoomBrush=i.brushX().on("start",function(){e.api.unzoom(),e.svg.select("."+Y.dragZoom).classed("disabled",!1),n.zoom_onzoomstart.call(e.api,i.event.sourceEvent)}).on("brush",function(){n.zoom_onzoom.call(e.api,o(i.event.selection))}).on("end",function(){if(null!=i.event.selection){var t=o(i.event.selection);n.zoom_disableDefaultBehavior||e.api.zoom(t),e.svg.select("."+Y.dragZoom).classed("disabled",!0),n.zoom_onzoomend.call(e.api,t)}});t.append("g").classed(Y.dragZoom,!0).attr("clip-path",e.clipPath).attr("transform","translate("+r+","+a+")").call(s)}},l.prototype.getZoomDomain=function(){var t=this.config,e=this.d3;return[e.min([this.orgXDomain[0],t.zoom_x_min]),e.max([this.orgXDomain[1],t.zoom_x_max])]},l.prototype.redrawForZoom=function(){var t=this,e=t.d3,i=t.config,n=t.zoom,r=t.x;i.zoom_enabled&&0!==t.filterTargetsToShow(t.data.targets).length&&(n.update(),i.zoom_disableDefaultBehavior||(t.isCategorized()&&r.orgDomain()[0]===t.orgXDomain[0]&&r.domain([t.orgXDomain[0]-1e-10,r.orgDomain()[1]]),t.redraw({withTransition:!1,withY:i.zoom_rescale,withSubchart:!1,withEventRect:!1,withDimension:!1}),e.event.sourceEvent&&"mousemove"===e.event.sourceEvent.type&&(t.cancelClick=!0)))},t});
\ No newline at end of file
+/* @license C3.js v0.6.9 | (c) C3 Team and other contributors | http://c3js.org/ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.c3=e()}(this,function(){"use strict";function s(t){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function l(t){var e=this;e.d3=window.d3?window.d3:"undefined"!=typeof require?require("d3"):void 0,e.api=t,e.config=e.getDefaultConfig(),e.data={},e.cache={},e.axes={}}function n(t){var e=this.internal=new l(this);e.loadConfig(t),e.beforeInit(t),e.init(),e.afterInit(t),function e(i,n,r){Object.keys(i).forEach(function(t){n[t]=i[t].bind(r),0<Object.keys(i[t]).length&&e(i[t],n[t],r)})}(n.prototype,this,this)}function i(t,e){var i=this;i.component=t,i.params=e||{},i.d3=t.d3,i.scale=i.d3.scaleLinear(),i.range,i.orient="bottom",i.innerTickSize=6,i.outerTickSize=this.params.withOuterTick?6:0,i.tickPadding=3,i.tickValues=null,i.tickFormat,i.tickArguments,i.tickOffset=0,i.tickCulling=!0,i.tickCentered,i.tickTextCharSize,i.tickTextRotate=i.params.tickTextRotate,i.tickLength,i.axis=i.generateAxis()}i.prototype.axisX=function(t,e,i){t.attr("transform",function(t){return"translate("+Math.ceil(e(t)+i)+", 0)"})},i.prototype.axisY=function(t,e){t.attr("transform",function(t){return"translate(0,"+Math.ceil(e(t))+")"})},i.prototype.scaleExtent=function(t){var e=t[0],i=t[t.length-1];return e<i?[e,i]:[i,e]},i.prototype.generateTicks=function(t){var e,i,n=[];if(t.ticks)return t.ticks.apply(t,this.tickArguments);for(i=t.domain(),e=Math.ceil(i[0]);e<i[1];e++)n.push(e);return 0<n.length&&0<n[0]&&n.unshift(n[0]-(n[1]-n[0])),n},i.prototype.copyScale=function(){var t,e=this.scale.copy();return this.params.isCategory&&(t=this.scale.domain(),e.domain([t[0],t[1]-1])),e},i.prototype.textFormatted=function(t){var e=this.tickFormat?this.tickFormat(t):t;return void 0!==e?e:""},i.prototype.updateRange=function(){var t=this;return t.range=t.scale.rangeExtent?t.scale.rangeExtent():t.scaleExtent(t.scale.range()),t.range},i.prototype.updateTickTextCharSize=function(t){var a=this;if(a.tickTextCharSize)return a.tickTextCharSize;var o={h:11.5,w:5.5};return t.select("text").text(function(t){return a.textFormatted(t)}).each(function(t){var e=this.getBoundingClientRect(),i=a.textFormatted(t),n=e.height,r=i?e.width/i.length:void 0;n&&r&&(o.h=n,o.w=r)}).text(""),a.tickTextCharSize=o},i.prototype.isVertical=function(){return"left"===this.orient||"right"===this.orient},i.prototype.tspanData=function(t,e,i){var n=this,r=n.params.tickMultiline?n.splitTickText(t,i):[].concat(n.textFormatted(t));return n.params.tickMultiline&&0<n.params.tickMultilineMax&&(r=n.ellipsify(r,n.params.tickMultilineMax)),r.map(function(t){return{index:e,splitted:t,length:r.length}})},i.prototype.splitTickText=function(t,e){var r,a,o,s=this,i=s.textFormatted(t),c=s.params.tickWidth;if("[object Array]"===Object.prototype.toString.call(i))return i;return(!c||c<=0)&&(c=s.isVertical()?95:s.params.isCategory?Math.ceil(e(1)-e(0))-12:110),function t(e,i){a=void 0;for(var n=1;n<i.length;n++)if(" "===i.charAt(n)&&(a=n),r=i.substr(0,n+1),o=s.tickTextCharSize.w*r.length,c<o)return t(e.concat(i.substr(0,a||n)),i.slice(a?a+1:n));return e.concat(i)}([],i+"")},i.prototype.ellipsify=function(t,e){if(t.length<=e)return t;for(var i=t.slice(0,e),n=3,r=e-1;0<=r;r--){var a=i[r].length;if(i[r]=i[r].substr(0,a-n).padEnd(a,"."),(n-=a)<=0)break}return i},i.prototype.updateTickLength=function(){this.tickLength=Math.max(this.innerTickSize,0)+this.tickPadding},i.prototype.lineY2=function(t){var e=this,i=e.scale(t)+(e.tickCentered?0:e.tickOffset);return e.range[0]<i&&i<e.range[1]?e.innerTickSize:0},i.prototype.textY=function(){var t=this.tickTextRotate;return t?11.5-t/15*2.5*(0<t?1:-1):this.tickLength},i.prototype.textTransform=function(){var t=this.tickTextRotate;return t?"rotate("+t+")":""},i.prototype.textTextAnchor=function(){var t=this.tickTextRotate;return t?0<t?"start":"end":"middle"},i.prototype.tspanDx=function(){var t=this.tickTextRotate;return t?8*Math.sin(Math.PI*(t/180)):0},i.prototype.tspanDy=function(t,e){var i=this.tickTextCharSize.h;return 0===e&&(i=this.isVertical()?-((t.length-1)*(this.tickTextCharSize.h/2)-3):".71em"),i},i.prototype.generateAxis=function(){var w=this,v=w.d3,b=w.params;function A(t,m){var S;return t.each(function(){var t,e,i,n=A.g=v.select(this),r=this.__chart__||w.scale,a=this.__chart__=w.copyScale(),o=w.tickValues?w.tickValues:w.generateTicks(a),s=n.selectAll(".tick").data(o,a),c=s.enter().insert("g",".domain").attr("class","tick").style("opacity",1e-6),d=s.exit().remove(),l=s.merge(c);b.isCategory?(w.tickOffset=Math.ceil((a(1)-a(0))/2),e=w.tickCentered?0:w.tickOffset,i=w.tickCentered?w.tickOffset:0):w.tickOffset=e=0,w.updateRange(),w.updateTickLength(),w.updateTickTextCharSize(n.select(".tick"));var u=l.select("line").merge(c.append("line")),h=l.select("text").merge(c.append("text")),g=l.selectAll("text").selectAll("tspan").data(function(t,e){return w.tspanData(t,e,a)}),p=g.enter().append("tspan").merge(g).text(function(t){return t.splitted});g.exit().remove();var f=n.selectAll(".domain").data([0]),_=f.enter().append("path").merge(f).attr("class","domain");switch(w.orient){case"bottom":t=w.axisX,u.attr("x1",e).attr("x2",e).attr("y2",function(t,e){return w.lineY2(t,e)}),h.attr("x",0).attr("y",function(t,e){return w.textY(t,e)}).attr("transform",function(t,e){return w.textTransform(t,e)}).style("text-anchor",function(t,e){return w.textTextAnchor(t,e)}),p.attr("x",0).attr("dy",function(t,e){return w.tspanDy(t,e)}).attr("dx",function(t,e){return w.tspanDx(t,e)}),_.attr("d","M"+w.range[0]+","+w.outerTickSize+"V0H"+w.range[1]+"V"+w.outerTickSize);break;case"top":t=w.axisX,u.attr("x1",e).attr("x2",e).attr("y2",function(t,e){return-1*w.lineY2(t,e)}),h.attr("x",0).attr("y",function(t,e){return-1*w.textY(t,e)-(b.isCategory?2:w.tickLength-2)}).attr("transform",function(t,e){return w.textTransform(t,e)}).style("text-anchor",function(t,e){return w.textTextAnchor(t,e)}),p.attr("x",0).attr("dy",function(t,e){return w.tspanDy(t,e)}).attr("dx",function(t,e){return w.tspanDx(t,e)}),_.attr("d","M"+w.range[0]+","+-w.outerTickSize+"V0H"+w.range[1]+"V"+-w.outerTickSize);break;case"left":t=w.axisY,u.attr("x2",-w.innerTickSize).attr("y1",i).attr("y2",i),h.attr("x",-w.tickLength).attr("y",w.tickOffset).style("text-anchor","end"),p.attr("x",-w.tickLength).attr("dy",function(t,e){return w.tspanDy(t,e)}),_.attr("d","M"+-w.outerTickSize+","+w.range[0]+"H0V"+w.range[1]+"H"+-w.outerTickSize);break;case"right":t=w.axisY,u.attr("x2",w.innerTickSize).attr("y1",i).attr("y2",i),h.attr("x",w.tickLength).attr("y",w.tickOffset).style("text-anchor","start"),p.attr("x",w.tickLength).attr("dy",function(t,e){return w.tspanDy(t,e)}),_.attr("d","M"+w.outerTickSize+","+w.range[0]+"H0V"+w.range[1]+"H"+w.outerTickSize)}if(a.rangeBand){var x=a,y=x.rangeBand()/2;r=a=function(t){return x(t)+y}}else r.rangeBand?r=a:d.call(t,a,w.tickOffset);c.call(t,r,w.tickOffset),S=(m?l.transition(m):l).style("opacity",1).call(t,a,w.tickOffset)}),S}return A.scale=function(t){return arguments.length?(w.scale=t,A):w.scale},A.orient=function(t){return arguments.length?(w.orient=t in{top:1,right:1,bottom:1,left:1}?t+"":"bottom",A):w.orient},A.tickFormat=function(t){return arguments.length?(w.tickFormat=t,A):w.tickFormat},A.tickCentered=function(t){return arguments.length?(w.tickCentered=t,A):w.tickCentered},A.tickOffset=function(){return w.tickOffset},A.tickInterval=function(){var t;return(t=b.isCategory?2*w.tickOffset:(A.g.select("path.domain").node().getTotalLength()-2*w.outerTickSize)/A.g.selectAll("line").size())===1/0?0:t},A.ticks=function(){return arguments.length?(w.tickArguments=arguments,A):w.tickArguments},A.tickCulling=function(t){return arguments.length?(w.tickCulling=t,A):w.tickCulling},A.tickValues=function(t){if("function"==typeof t)w.tickValues=function(){return t(w.scale.domain())};else{if(!arguments.length)return w.tickValues;w.tickValues=t}return A},A};var Y={target:"c3-target",chart:"c3-chart",chartLine:"c3-chart-line",chartLines:"c3-chart-lines",chartBar:"c3-chart-bar",chartBars:"c3-chart-bars",chartText:"c3-chart-text",chartTexts:"c3-chart-texts",chartArc:"c3-chart-arc",chartArcs:"c3-chart-arcs",chartArcsTitle:"c3-chart-arcs-title",chartArcsBackground:"c3-chart-arcs-background",chartArcsGaugeUnit:"c3-chart-arcs-gauge-unit",chartArcsGaugeMax:"c3-chart-arcs-gauge-max",chartArcsGaugeMin:"c3-chart-arcs-gauge-min",selectedCircle:"c3-selected-circle",selectedCircles:"c3-selected-circles",eventRect:"c3-event-rect",eventRects:"c3-event-rects",eventRectsSingle:"c3-event-rects-single",eventRectsMultiple:"c3-event-rects-multiple",zoomRect:"c3-zoom-rect",brush:"c3-brush",dragZoom:"c3-drag-zoom",focused:"c3-focused",defocused:"c3-defocused",region:"c3-region",regions:"c3-regions",title:"c3-title",tooltipContainer:"c3-tooltip-container",tooltip:"c3-tooltip",tooltipName:"c3-tooltip-name",shape:"c3-shape",shapes:"c3-shapes",line:"c3-line",lines:"c3-lines",bar:"c3-bar",bars:"c3-bars",circle:"c3-circle",circles:"c3-circles",arc:"c3-arc",arcLabelLine:"c3-arc-label-line",arcs:"c3-arcs",area:"c3-area",areas:"c3-areas",empty:"c3-empty",text:"c3-text",texts:"c3-texts",gaugeValue:"c3-gauge-value",grid:"c3-grid",gridLines:"c3-grid-lines",xgrid:"c3-xgrid",xgrids:"c3-xgrids",xgridLine:"c3-xgrid-line",xgridLines:"c3-xgrid-lines",xgridFocus:"c3-xgrid-focus",ygrid:"c3-ygrid",ygrids:"c3-ygrids",ygridLine:"c3-ygrid-line",ygridLines:"c3-ygrid-lines",axis:"c3-axis",axisX:"c3-axis-x",axisXLabel:"c3-axis-x-label",axisY:"c3-axis-y",axisYLabel:"c3-axis-y-label",axisY2:"c3-axis-y2",axisY2Label:"c3-axis-y2-label",legendBackground:"c3-legend-background",legendItem:"c3-legend-item",legendItemEvent:"c3-legend-item-event",legendItemTile:"c3-legend-item-tile",legendItemHidden:"c3-legend-item-hidden",legendItemFocused:"c3-legend-item-focused",dragarea:"c3-dragarea",EXPANDED:"_expanded_",SELECTED:"_selected_",INCLUDED:"_included_"},a=function(t){return Math.ceil(t)+.5},r=function(t){return 10*Math.ceil(t/10)},R=function(t){return t[1]-t[0]},N=function(t,e,i){return k(t[e])?t[e]:i},y=function(t){var e=t.getBoundingClientRect(),i=[t.pathSegList.getItem(0),t.pathSegList.getItem(1)];return{x:i[0].x,y:Math.min(i[0].y,i[1].y),width:e.width,height:e.height}},o=function(t){return Array.isArray(t)},k=function(t){return void 0!==t},u=function(t){return null==t||c(t)&&0===t.length||"object"===s(t)&&0===Object.keys(t).length},h=function(t){return"function"==typeof t},c=function(t){return"string"==typeof t},v=function(t){return void 0===t},P=function(t){return t||0===t},L=function(t){return!u(t)},_=function(t){return"string"==typeof t?t.replace(/</g,"&lt;").replace(/>/g,"&gt;"):t},d=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=e,this.d3=e.d3,this.internal=i};d.prototype.init=function(){var t=this.owner,e=t.config,i=t.main;t.axes.x=i.append("g").attr("class",Y.axis+" "+Y.axisX).attr("clip-path",e.axis_x_inner?"":t.clipPathForXAxis).attr("transform",t.getTranslate("x")).style("visibility",e.axis_x_show?"visible":"hidden"),t.axes.x.append("text").attr("class",Y.axisXLabel).attr("transform",e.axis_rotated?"rotate(-90)":"").style("text-anchor",this.textAnchorForXAxisLabel.bind(this)),t.axes.y=i.append("g").attr("class",Y.axis+" "+Y.axisY).attr("clip-path",e.axis_y_inner?"":t.clipPathForYAxis).attr("transform",t.getTranslate("y")).style("visibility",e.axis_y_show?"visible":"hidden"),t.axes.y.append("text").attr("class",Y.axisYLabel).attr("transform",e.axis_rotated?"":"rotate(-90)").style("text-anchor",this.textAnchorForYAxisLabel.bind(this)),t.axes.y2=i.append("g").attr("class",Y.axis+" "+Y.axisY2).attr("transform",t.getTranslate("y2")).style("visibility",e.axis_y2_show?"visible":"hidden"),t.axes.y2.append("text").attr("class",Y.axisY2Label).attr("transform",e.axis_rotated?"":"rotate(-90)").style("text-anchor",this.textAnchorForY2AxisLabel.bind(this))},d.prototype.getXAxis=function(t,e,i,n,r,a,o){var s=this.owner,c=s.config,d={isCategory:s.isCategorized(),withOuterTick:r,tickMultiline:c.axis_x_tick_multiline,tickMultilineMax:c.axis_x_tick_multiline?Number(c.axis_x_tick_multilineMax):0,tickWidth:c.axis_x_tick_width,tickTextRotate:o?0:c.axis_x_tick_rotate,withoutTransition:a},l=new this.internal(this,d).axis.scale(t).orient(e);return s.isTimeSeries()&&n&&"function"!=typeof n&&(n=n.map(function(t){return s.parseDate(t)})),l.tickFormat(i).tickValues(n),s.isCategorized()&&(l.tickCentered(c.axis_x_tick_centered),u(c.axis_x_tick_culling)&&(c.axis_x_tick_culling=!1)),l},d.prototype.updateXAxisTickValues=function(t,e){var i,n=this.owner,r=n.config;return(r.axis_x_tick_fit||r.axis_x_tick_count)&&(i=this.generateTickValues(n.mapTargetsToUniqueXs(t),r.axis_x_tick_count,n.isTimeSeries())),e?e.tickValues(i):(n.xAxis.tickValues(i),n.subXAxis.tickValues(i)),i},d.prototype.getYAxis=function(t,e,i,n,r,a,o){var s=this.owner,c=s.config,d={withOuterTick:r,withoutTransition:a,tickTextRotate:o?0:c.axis_y_tick_rotate},l=new this.internal(this,d).axis.scale(t).orient(e).tickFormat(i);return s.isTimeSeriesY()?l.ticks(c.axis_y_tick_time_type,c.axis_y_tick_time_interval):l.tickValues(n),l},d.prototype.getId=function(t){var e=this.owner.config;return t in e.data_axes?e.data_axes[t]:"y"},d.prototype.getXAxisTickFormat=function(){var e=this.owner,i=e.config,n=e.isTimeSeries()?e.defaultAxisTimeFormat:e.isCategorized()?e.categoryName:function(t){return t};return i.axis_x_tick_format&&(h(i.axis_x_tick_format)?n=i.axis_x_tick_format:e.isTimeSeries()&&(n=function(t){return t?e.axisTimeFormat(i.axis_x_tick_format)(t):""})),h(n)?function(t){return n.call(e,t)}:n},d.prototype.getTickValues=function(t,e){return t||(e?e.tickValues():void 0)},d.prototype.getXAxisTickValues=function(){return this.getTickValues(this.owner.config.axis_x_tick_values,this.owner.xAxis)},d.prototype.getYAxisTickValues=function(){return this.getTickValues(this.owner.config.axis_y_tick_values,this.owner.yAxis)},d.prototype.getY2AxisTickValues=function(){return this.getTickValues(this.owner.config.axis_y2_tick_values,this.owner.y2Axis)},d.prototype.getLabelOptionByAxisId=function(t){var e,i=this.owner.config;return"y"===t?e=i.axis_y_label:"y2"===t?e=i.axis_y2_label:"x"===t&&(e=i.axis_x_label),e},d.prototype.getLabelText=function(t){var e=this.getLabelOptionByAxisId(t);return c(e)?e:e?e.text:null},d.prototype.setLabelText=function(t,e){var i=this.owner.config,n=this.getLabelOptionByAxisId(t);c(n)?"y"===t?i.axis_y_label=e:"y2"===t?i.axis_y2_label=e:"x"===t&&(i.axis_x_label=e):n&&(n.text=e)},d.prototype.getLabelPosition=function(t,e){var i=this.getLabelOptionByAxisId(t),n=i&&"object"===s(i)&&i.position?i.position:e;return{isInner:0<=n.indexOf("inner"),isOuter:0<=n.indexOf("outer"),isLeft:0<=n.indexOf("left"),isCenter:0<=n.indexOf("center"),isRight:0<=n.indexOf("right"),isTop:0<=n.indexOf("top"),isMiddle:0<=n.indexOf("middle"),isBottom:0<=n.indexOf("bottom")}},d.prototype.getXAxisLabelPosition=function(){return this.getLabelPosition("x",this.owner.config.axis_rotated?"inner-top":"inner-right")},d.prototype.getYAxisLabelPosition=function(){return this.getLabelPosition("y",this.owner.config.axis_rotated?"inner-right":"inner-top")},d.prototype.getY2AxisLabelPosition=function(){return this.getLabelPosition("y2",this.owner.config.axis_rotated?"inner-right":"inner-top")},d.prototype.getLabelPositionById=function(t){return"y2"===t?this.getY2AxisLabelPosition():"y"===t?this.getYAxisLabelPosition():this.getXAxisLabelPosition()},d.prototype.textForXAxisLabel=function(){return this.getLabelText("x")},d.prototype.textForYAxisLabel=function(){return this.getLabelText("y")},d.prototype.textForY2AxisLabel=function(){return this.getLabelText("y2")},d.prototype.xForAxisLabel=function(t,e){var i=this.owner;return t?e.isLeft?0:e.isCenter?i.width/2:i.width:e.isBottom?-i.height:e.isMiddle?-i.height/2:0},d.prototype.dxForAxisLabel=function(t,e){return t?e.isLeft?"0.5em":e.isRight?"-0.5em":"0":e.isTop?"-0.5em":e.isBottom?"0.5em":"0"},d.prototype.textAnchorForAxisLabel=function(t,e){return t?e.isLeft?"start":e.isCenter?"middle":"end":e.isBottom?"start":e.isMiddle?"middle":"end"},d.prototype.xForXAxisLabel=function(){return this.xForAxisLabel(!this.owner.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.xForYAxisLabel=function(){return this.xForAxisLabel(this.owner.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.xForY2AxisLabel=function(){return this.xForAxisLabel(this.owner.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.dxForXAxisLabel=function(){return this.dxForAxisLabel(!this.owner.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.dxForYAxisLabel=function(){return this.dxForAxisLabel(this.owner.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.dxForY2AxisLabel=function(){return this.dxForAxisLabel(this.owner.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.dyForXAxisLabel=function(){var t=this.owner,e=t.config,i=this.getXAxisLabelPosition();return e.axis_rotated?i.isInner?"1.2em":-25-(t.config.axis_x_inner?0:this.getMaxTickWidth("x")):i.isInner?"-0.5em":e.axis_x_height?e.axis_x_height-10:"3em"},d.prototype.dyForYAxisLabel=function(){var t=this.owner,e=this.getYAxisLabelPosition();return t.config.axis_rotated?e.isInner?"-0.5em":"3em":e.isInner?"1.2em":-10-(t.config.axis_y_inner?0:this.getMaxTickWidth("y")+10)},d.prototype.dyForY2AxisLabel=function(){var t=this.owner,e=this.getY2AxisLabelPosition();return t.config.axis_rotated?e.isInner?"1.2em":"-2.2em":e.isInner?"-0.5em":15+(t.config.axis_y2_inner?0:this.getMaxTickWidth("y2")+15)},d.prototype.textAnchorForXAxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(!t.config.axis_rotated,this.getXAxisLabelPosition())},d.prototype.textAnchorForYAxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(t.config.axis_rotated,this.getYAxisLabelPosition())},d.prototype.textAnchorForY2AxisLabel=function(){var t=this.owner;return this.textAnchorForAxisLabel(t.config.axis_rotated,this.getY2AxisLabelPosition())},d.prototype.getMaxTickWidth=function(t,e){var i,n,r,a,o=this.owner,s=o.config,c=0;return e&&o.currentMaxTickWidths[t]||(o.svg&&(i=o.filterTargetsToShow(o.data.targets),"y"===t?(n=o.y.copy().domain(o.getYDomain(i,"y")),r=this.getYAxis(n,o.yOrient,s.axis_y_tick_format,o.yAxisTickValues,!1,!0,!0)):"y2"===t?(n=o.y2.copy().domain(o.getYDomain(i,"y2")),r=this.getYAxis(n,o.y2Orient,s.axis_y2_tick_format,o.y2AxisTickValues,!1,!0,!0)):(n=o.x.copy().domain(o.getXDomain(i)),r=this.getXAxis(n,o.xOrient,o.xAxisTickFormat,o.xAxisTickValues,!1,!0,!0),this.updateXAxisTickValues(i,r)),(a=o.d3.select("body").append("div").classed("c3",!0)).append("svg").style("visibility","hidden").style("position","fixed").style("top",0).style("left",0).append("g").call(r).each(function(){o.d3.select(this).selectAll("text").each(function(){var t=this.getBoundingClientRect();c<t.width&&(c=t.width)}),a.remove()})),o.currentMaxTickWidths[t]=c<=0?o.currentMaxTickWidths[t]:c),o.currentMaxTickWidths[t]},d.prototype.updateLabels=function(t){var e=this.owner,i=e.main.select("."+Y.axisX+" ."+Y.axisXLabel),n=e.main.select("."+Y.axisY+" ."+Y.axisYLabel),r=e.main.select("."+Y.axisY2+" ."+Y.axisY2Label);(t?i.transition():i).attr("x",this.xForXAxisLabel.bind(this)).attr("dx",this.dxForXAxisLabel.bind(this)).attr("dy",this.dyForXAxisLabel.bind(this)).text(this.textForXAxisLabel.bind(this)),(t?n.transition():n).attr("x",this.xForYAxisLabel.bind(this)).attr("dx",this.dxForYAxisLabel.bind(this)).attr("dy",this.dyForYAxisLabel.bind(this)).text(this.textForYAxisLabel.bind(this)),(t?r.transition():r).attr("x",this.xForY2AxisLabel.bind(this)).attr("dx",this.dxForY2AxisLabel.bind(this)).attr("dy",this.dyForY2AxisLabel.bind(this)).text(this.textForY2AxisLabel.bind(this))},d.prototype.getPadding=function(t,e,i,n){var r="number"==typeof t?t:t[e];return P(r)?"ratio"===t.unit?t[e]*n:this.convertPixelsToAxisPadding(r,n):i},d.prototype.convertPixelsToAxisPadding=function(t,e){var i=this.owner;return e*(t/(i.config.axis_rotated?i.width:i.height))},d.prototype.generateTickValues=function(t,e,i){var n,r,a,o,s,c,d,l=t;if(e)if(1===(n=h(e)?e():e))l=[t[0]];else if(2===n)l=[t[0],t[t.length-1]];else if(2<n){for(o=n-2,r=t[0],s=((a=t[t.length-1])-r)/(o+1),l=[r],c=0;c<o;c++)d=+r+s*(c+1),l.push(i?new Date(d):d);l.push(a)}return i||(l=l.sort(function(t,e){return t-e})),l},d.prototype.generateTransitions=function(t){var e=this.owner.axes;return{axisX:t?e.x.transition().duration(t):e.x,axisY:t?e.y.transition().duration(t):e.y,axisY2:t?e.y2.transition().duration(t):e.y2,axisSubX:t?e.subx.transition().duration(t):e.subx}},d.prototype.redraw=function(t,e){var i=this.owner,n=t?i.d3.transition().duration(t):null;i.axes.x.style("opacity",e?0:1).call(i.xAxis,n),i.axes.y.style("opacity",e?0:1).call(i.yAxis,n),i.axes.y2.style("opacity",e?0:1).call(i.y2Axis,n),i.axes.subx.style("opacity",e?0:1).call(i.subXAxis,n)};var t={version:"0.6.9",chart:{fn:n.prototype,internal:{fn:l.prototype,axis:{fn:d.prototype,internal:{fn:i.prototype}}}},generate:function(t){return new n(t)}};return l.prototype.beforeInit=function(){},l.prototype.afterInit=function(){},l.prototype.init=function(){var t=this,e=t.config;if(t.initParams(),e.data_url)t.convertUrlToData(e.data_url,e.data_mimeType,e.data_headers,e.data_keys,t.initWithData);else if(e.data_json)t.initWithData(t.convertJsonToData(e.data_json,e.data_keys));else if(e.data_rows)t.initWithData(t.convertRowsToData(e.data_rows));else{if(!e.data_columns)throw Error("url or json or rows or columns is required.");t.initWithData(t.convertColumnsToData(e.data_columns))}},l.prototype.initParams=function(){var t=this,e=t.d3,i=t.config;t.clipId="c3-"+ +new Date+"-clip",t.clipIdForXAxis=t.clipId+"-xaxis",t.clipIdForYAxis=t.clipId+"-yaxis",t.clipIdForGrid=t.clipId+"-grid",t.clipIdForSubchart=t.clipId+"-subchart",t.clipPath=t.getClipPath(t.clipId),t.clipPathForXAxis=t.getClipPath(t.clipIdForXAxis),t.clipPathForYAxis=t.getClipPath(t.clipIdForYAxis),t.clipPathForGrid=t.getClipPath(t.clipIdForGrid),t.clipPathForSubchart=t.getClipPath(t.clipIdForSubchart),t.dragStart=null,t.dragging=!1,t.flowing=!1,t.cancelClick=!1,t.mouseover=!1,t.transiting=!1,t.color=t.generateColor(),t.levelColor=t.generateLevelColor(),t.dataTimeParse=(i.data_xLocaltime?e.timeParse:e.utcParse)(t.config.data_xFormat),t.axisTimeFormat=i.axis_x_localtime?e.timeFormat:e.utcFormat,t.defaultAxisTimeFormat=function(t){return t.getMilliseconds()?e.timeFormat(".%L")(t):t.getSeconds()?e.timeFormat(":%S")(t):t.getMinutes()?e.timeFormat("%I:%M")(t):t.getHours()?e.timeFormat("%I %p")(t):t.getDay()&&1!==t.getDate()?e.timeFormat("%-m/%-d")(t):1!==t.getDate()?e.timeFormat("%-m/%-d")(t):t.getMonth()?e.timeFormat("%-m/%-d")(t):e.timeFormat("%Y/%-m/%-d")(t)},t.hiddenTargetIds=[],t.hiddenLegendIds=[],t.focusedTargetIds=[],t.defocusedTargetIds=[],t.xOrient=i.axis_rotated?i.axis_x_inner?"right":"left":i.axis_x_inner?"top":"bottom",t.yOrient=i.axis_rotated?i.axis_y_inner?"top":"bottom":i.axis_y_inner?"right":"left",t.y2Orient=i.axis_rotated?i.axis_y2_inner?"bottom":"top":i.axis_y2_inner?"left":"right",t.subXOrient=i.axis_rotated?"left":"bottom",t.isLegendRight="right"===i.legend_position,t.isLegendInset="inset"===i.legend_position,t.isLegendTop="top-left"===i.legend_inset_anchor||"top-right"===i.legend_inset_anchor,t.isLegendLeft="top-left"===i.legend_inset_anchor||"bottom-left"===i.legend_inset_anchor,t.legendStep=0,t.legendItemWidth=0,t.legendItemHeight=0,t.currentMaxTickWidths={x:0,y:0,y2:0},t.rotated_padding_left=30,t.rotated_padding_right=i.axis_rotated&&!i.axis_x_show?0:30,t.rotated_padding_top=5,t.withoutFadeIn={},t.intervalForObserveInserted=void 0,t.axes.subx=e.selectAll([])},l.prototype.initChartElements=function(){this.initBar&&this.initBar(),this.initLine&&this.initLine(),this.initArc&&this.initArc(),this.initGauge&&this.initGauge(),this.initText&&this.initText()},l.prototype.initWithData=function(t){var e,i,n=this,r=n.d3,a=n.config,o=!0;n.axis=new d(n),a.bindto?"function"==typeof a.bindto.node?n.selectChart=a.bindto:n.selectChart=r.select(a.bindto):n.selectChart=r.selectAll([]),n.selectChart.empty()&&(n.selectChart=r.select(document.createElement("div")).style("opacity",0),n.observeInserted(n.selectChart),o=!1),n.selectChart.html("").classed("c3",!0),n.data.xs={},n.data.targets=n.convertDataToTargets(t),a.data_filter&&(n.data.targets=n.data.targets.filter(a.data_filter)),a.data_hide&&n.addHiddenTargetIds(!0===a.data_hide?n.mapToIds(n.data.targets):a.data_hide),a.legend_hide&&n.addHiddenLegendIds(!0===a.legend_hide?n.mapToIds(n.data.targets):a.legend_hide),n.updateSizes(),n.updateScales(),n.x.domain(r.extent(n.getXDomain(n.data.targets))),n.y.domain(n.getYDomain(n.data.targets,"y")),n.y2.domain(n.getYDomain(n.data.targets,"y2")),n.subX.domain(n.x.domain()),n.subY.domain(n.y.domain()),n.subY2.domain(n.y2.domain()),n.orgXDomain=n.x.domain(),n.svg=n.selectChart.append("svg").style("overflow","hidden").on("mouseenter",function(){return a.onmouseover.call(n)}).on("mouseleave",function(){return a.onmouseout.call(n)}),n.config.svg_classname&&n.svg.attr("class",n.config.svg_classname),e=n.svg.append("defs"),n.clipChart=n.appendClip(e,n.clipId),n.clipXAxis=n.appendClip(e,n.clipIdForXAxis),n.clipYAxis=n.appendClip(e,n.clipIdForYAxis),n.clipGrid=n.appendClip(e,n.clipIdForGrid),n.clipSubchart=n.appendClip(e,n.clipIdForSubchart),n.updateSvgSize(),i=n.main=n.svg.append("g").attr("transform",n.getTranslate("main")),n.initPie&&n.initPie(),n.initDragZoom&&n.initDragZoom(),n.initSubchart&&n.initSubchart(),n.initTooltip&&n.initTooltip(),n.initLegend&&n.initLegend(),n.initTitle&&n.initTitle(),n.initZoom&&n.initZoom(),n.initSubchartBrush&&n.initSubchartBrush(),i.append("text").attr("class",Y.text+" "+Y.empty).attr("text-anchor","middle").attr("dominant-baseline","middle"),n.initRegion(),n.initGrid(),i.append("g").attr("clip-path",n.clipPath).attr("class",Y.chart),a.grid_lines_front&&n.initGridLines(),n.initEventRect(),n.initChartElements(),n.axis.init(),n.updateTargets(n.data.targets),a.axis_x_selection&&n.brush.selectionAsValue(n.getDefaultSelection()),o&&(n.updateDimension(),n.config.oninit.call(n),n.redraw({withTransition:!1,withTransform:!0,withUpdateXDomain:!0,withUpdateOrgXDomain:!0,withTransitionForAxis:!1})),n.bindResize(),n.bindWindowFocus(),n.api.element=n.selectChart.node()},l.prototype.smoothLines=function(t,e){var a=this;"grid"===e&&t.each(function(){var t=a.d3.select(this),e=t.attr("x1"),i=t.attr("x2"),n=t.attr("y1"),r=t.attr("y2");t.attr({x1:Math.ceil(e),x2:Math.ceil(i),y1:Math.ceil(n),y2:Math.ceil(r)})})},l.prototype.updateSizes=function(){var t=this,e=t.config,i=t.legend?t.getLegendHeight():0,n=t.legend?t.getLegendWidth():0,r=t.isLegendRight||t.isLegendInset?0:i,a=t.hasArcType(),o=e.axis_rotated||a?0:t.getHorizontalAxisHeight("x"),s=e.subchart_show&&!a?e.subchart_size_height+o:0;t.currentWidth=t.getCurrentWidth(),t.currentHeight=t.getCurrentHeight(),t.margin=e.axis_rotated?{top:t.getHorizontalAxisHeight("y2")+t.getCurrentPaddingTop(),right:a?0:t.getCurrentPaddingRight(),bottom:t.getHorizontalAxisHeight("y")+r+t.getCurrentPaddingBottom(),left:s+(a?0:t.getCurrentPaddingLeft())}:{top:4+t.getCurrentPaddingTop(),right:a?0:t.getCurrentPaddingRight(),bottom:o+s+r+t.getCurrentPaddingBottom(),left:a?0:t.getCurrentPaddingLeft()},t.margin2=e.axis_rotated?{top:t.margin.top,right:NaN,bottom:20+r,left:t.rotated_padding_left}:{top:t.currentHeight-s-r,right:NaN,bottom:o+r,left:t.margin.left},t.margin3={top:0,right:NaN,bottom:0,left:0},t.updateSizeForLegend&&t.updateSizeForLegend(i,n),t.width=t.currentWidth-t.margin.left-t.margin.right,t.height=t.currentHeight-t.margin.top-t.margin.bottom,t.width<0&&(t.width=0),t.height<0&&(t.height=0),t.width2=e.axis_rotated?t.margin.left-t.rotated_padding_left-t.rotated_padding_right:t.width,t.height2=e.axis_rotated?t.height:t.currentHeight-t.margin2.top-t.margin2.bottom,t.width2<0&&(t.width2=0),t.height2<0&&(t.height2=0),t.arcWidth=t.width-(t.isLegendRight?n+10:0),t.arcHeight=t.height-(t.isLegendRight?0:10),t.hasType("gauge")&&!e.gauge_fullCircle&&(t.arcHeight+=t.height-t.getGaugeLabelHeight()),t.updateRadius&&t.updateRadius(),t.isLegendRight&&a&&(t.margin3.left=t.arcWidth/2+1.1*t.radiusExpanded)},l.prototype.updateTargets=function(t){var e=this;e.updateTargetsForText(t),e.updateTargetsForBar(t),e.updateTargetsForLine(t),e.hasArcType()&&e.updateTargetsForArc&&e.updateTargetsForArc(t),e.updateTargetsForSubchart&&e.updateTargetsForSubchart(t),e.showTargets()},l.prototype.showTargets=function(){var e=this;e.svg.selectAll("."+Y.target).filter(function(t){return e.isTargetToShow(t.id)}).transition().duration(e.config.transition_duration).style("opacity",1)},l.prototype.redraw=function(t,e){var i,n,r,a,o,s,c,d,l,u,h,g,p,f,_,x,y,m,S,w,v,b,A,T,P,L,C,V,G,E,I,O=this,R=O.main,k=O.d3,D=O.config,F=O.getShapeIndices(O.isAreaType),X=O.getShapeIndices(O.isBarType),M=O.getShapeIndices(O.isLineType),z=O.hasArcType(),H=O.filterTargetsToShow(O.data.targets),B=O.xv.bind(O);if(i=N(t=t||{},"withY",!0),n=N(t,"withSubchart",!0),r=N(t,"withTransition",!0),s=N(t,"withTransform",!1),c=N(t,"withUpdateXDomain",!1),d=N(t,"withUpdateOrgXDomain",!1),l=N(t,"withTrimXDomain",!0),p=N(t,"withUpdateXAxis",c),u=N(t,"withLegend",!1),h=N(t,"withEventRect",!0),g=N(t,"withDimension",!0),a=N(t,"withTransitionForExit",r),o=N(t,"withTransitionForAxis",r),S=r?D.transition_duration:0,w=a?S:0,v=o?S:0,e=e||O.axis.generateTransitions(v),u&&D.legend_show?O.updateLegend(O.mapToIds(O.data.targets),t,e):g&&O.updateDimension(!0),O.isCategorized()&&0===H.length&&O.x.domain([0,O.axes.x.selectAll(".tick").size()]),H.length?(O.updateXDomain(H,c,d,l),D.axis_x_tick_values||(L=O.axis.updateXAxisTickValues(H))):(O.xAxis.tickValues([]),O.subXAxis.tickValues([])),D.zoom_rescale&&!t.flow&&(G=O.x.orgDomain()),O.y.domain(O.getYDomain(H,"y",G)),O.y2.domain(O.getYDomain(H,"y2",G)),!D.axis_y_tick_values&&D.axis_y_tick_count&&O.yAxis.tickValues(O.axis.generateTickValues(O.y.domain(),D.axis_y_tick_count)),!D.axis_y2_tick_values&&D.axis_y2_tick_count&&O.y2Axis.tickValues(O.axis.generateTickValues(O.y2.domain(),D.axis_y2_tick_count)),O.axis.redraw(v,z),O.axis.updateLabels(r),(c||p)&&H.length)if(D.axis_x_tick_culling&&L){for(C=1;C<L.length;C++)if(L.length/C<D.axis_x_tick_culling_max){V=C;break}O.svg.selectAll("."+Y.axisX+" .tick text").each(function(t){var e=L.indexOf(t);0<=e&&k.select(this).style("display",e%V?"none":"block")})}else O.svg.selectAll("."+Y.axisX+" .tick text").style("display","block");f=O.generateDrawArea?O.generateDrawArea(F,!1):void 0,_=O.generateDrawBar?O.generateDrawBar(X):void 0,x=O.generateDrawLine?O.generateDrawLine(M,!1):void 0,y=O.generateXYForText(F,X,M,!0),m=O.generateXYForText(F,X,M,!1),O.updateCircleY(),E=(O.config.axis_rotated?O.circleY:O.circleX).bind(O),I=(O.config.axis_rotated?O.circleX:O.circleY).bind(O),i&&(O.subY.domain(O.getYDomain(H,"y")),O.subY2.domain(O.getYDomain(H,"y2"))),O.updateXgridFocus(),R.select("text."+Y.text+"."+Y.empty).attr("x",O.width/2).attr("y",O.height/2).text(D.data_empty_label_text).transition().style("opacity",H.length?0:1),h&&O.redrawEventRect(),O.updateGrid(S),O.updateRegion(S),O.updateBar(w),O.updateLine(w),O.updateArea(w),O.updateCircle(E,I),O.hasDataLabel()&&O.updateText(y,m,w),O.redrawTitle&&O.redrawTitle(),O.redrawArc&&O.redrawArc(S,w,s),O.redrawSubchart&&O.redrawSubchart(n,e,S,w,F,X,M),R.selectAll("."+Y.selectedCircles).filter(O.isBarType.bind(O)).selectAll("circle").remove(),t.flow&&(T=O.generateFlow({targets:H,flow:t.flow,duration:t.flow.duration,drawBar:_,drawLine:x,drawArea:f,cx:E,cy:I,xv:B,xForText:y,yForText:m})),O.isTabVisible()&&(S?(P=k.transition().duration(S),b=[],[O.redrawBar(_,!0,P),O.redrawLine(x,!0,P),O.redrawArea(f,!0,P),O.redrawCircle(E,I,!0,P),O.redrawText(y,m,t.flow,!0,P),O.redrawRegion(!0,P),O.redrawGrid(!0,P)].forEach(function(t){t.forEach(function(t){b.push(t)})}),A=O.generateWait(),b.forEach(function(t){A.add(t)}),A(function(){T&&T(),D.onrendered&&D.onrendered.call(O)})):(O.redrawBar(_),O.redrawLine(x),O.redrawArea(f),O.redrawCircle(E,I),O.redrawText(y,m,t.flow),O.redrawRegion(),O.redrawGrid(),T&&T(),D.onrendered&&D.onrendered.call(O))),O.mapToIds(O.data.targets).forEach(function(t){O.withoutFadeIn[t]=!0})},l.prototype.updateAndRedraw=function(t){var e,i=this,n=i.config;(t=t||{}).withTransition=N(t,"withTransition",!0),t.withTransform=N(t,"withTransform",!1),t.withLegend=N(t,"withLegend",!1),t.withUpdateXDomain=N(t,"withUpdateXDomain",!0),t.withUpdateOrgXDomain=N(t,"withUpdateOrgXDomain",!0),t.withTransitionForExit=!1,t.withTransitionForTransform=N(t,"withTransitionForTransform",t.withTransition),i.updateSizes(),t.withLegend&&n.legend_show||(e=i.axis.generateTransitions(t.withTransitionForAxis?n.transition_duration:0),i.updateScales(),i.updateSvgSize(),i.transformAll(t.withTransitionForTransform,e)),i.redraw(t,e)},l.prototype.redrawWithoutRescale=function(){this.redraw({withY:!1,withSubchart:!1,withEventRect:!1,withTransitionForAxis:!1})},l.prototype.isTimeSeries=function(){return"timeseries"===this.config.axis_x_type},l.prototype.isCategorized=function(){return 0<=this.config.axis_x_type.indexOf("categor")},l.prototype.isCustomX=function(){var t=this.config;return!this.isTimeSeries()&&(t.data_x||L(t.data_xs))},l.prototype.isTimeSeriesY=function(){return"timeseries"===this.config.axis_y_type},l.prototype.getTranslate=function(t){var e,i,n=this,r=n.config;return"main"===t?(e=a(n.margin.left),i=a(n.margin.top)):"context"===t?(e=a(n.margin2.left),i=a(n.margin2.top)):"legend"===t?(e=n.margin3.left,i=n.margin3.top):"x"===t?(e=0,i=r.axis_rotated?0:n.height):"y"===t?(e=0,i=r.axis_rotated?n.height:0):"y2"===t?(e=r.axis_rotated?0:n.width,i=r.axis_rotated?1:0):"subx"===t?(e=0,i=r.axis_rotated?0:n.height2):"arc"===t&&(e=n.arcWidth/2,i=n.arcHeight/2-(n.hasType("gauge")?6:0)),"translate("+e+","+i+")"},l.prototype.initialOpacity=function(t){return null!==t.value&&this.withoutFadeIn[t.id]?1:0},l.prototype.initialOpacityForCircle=function(t){return null!==t.value&&this.withoutFadeIn[t.id]?this.opacityForCircle(t):0},l.prototype.opacityForCircle=function(t){var e=(h(this.config.point_show)?this.config.point_show(t):this.config.point_show)?1:0;return P(t.value)?this.isScatterType(t)?.5:e:0},l.prototype.opacityForText=function(){return this.hasDataLabel()?1:0},l.prototype.xx=function(t){return t?this.x(t.x):null},l.prototype.xv=function(t){var e=this,i=t.value;return e.isTimeSeries()?i=e.parseDate(t.value):e.isCategorized()&&"string"==typeof t.value&&(i=e.config.axis_x_categories.indexOf(t.value)),Math.ceil(e.x(i))},l.prototype.yv=function(t){var e=t.axis&&"y2"===t.axis?this.y2:this.y;return Math.ceil(e(t.value))},l.prototype.subxx=function(t){return t?this.subX(t.x):null},l.prototype.transformMain=function(t,e){var i,n,r,a=this;e&&e.axisX?i=e.axisX:(i=a.main.select("."+Y.axisX),t&&(i=i.transition())),e&&e.axisY?n=e.axisY:(n=a.main.select("."+Y.axisY),t&&(n=n.transition())),e&&e.axisY2?r=e.axisY2:(r=a.main.select("."+Y.axisY2),t&&(r=r.transition())),(t?a.main.transition():a.main).attr("transform",a.getTranslate("main")),i.attr("transform",a.getTranslate("x")),n.attr("transform",a.getTranslate("y")),r.attr("transform",a.getTranslate("y2")),a.main.select("."+Y.chartArcs).attr("transform",a.getTranslate("arc"))},l.prototype.transformAll=function(t,e){var i=this;i.transformMain(t,e),i.config.subchart_show&&i.transformContext(t,e),i.legend&&i.transformLegend(t)},l.prototype.updateSvgSize=function(){var t=this,e=t.svg.select(".c3-brush .overlay");t.svg.attr("width",t.currentWidth).attr("height",t.currentHeight),t.svg.selectAll(["#"+t.clipId,"#"+t.clipIdForGrid]).select("rect").attr("width",t.width).attr("height",t.height),t.svg.select("#"+t.clipIdForXAxis).select("rect").attr("x",t.getXAxisClipX.bind(t)).attr("y",t.getXAxisClipY.bind(t)).attr("width",t.getXAxisClipWidth.bind(t)).attr("height",t.getXAxisClipHeight.bind(t)),t.svg.select("#"+t.clipIdForYAxis).select("rect").attr("x",t.getYAxisClipX.bind(t)).attr("y",t.getYAxisClipY.bind(t)).attr("width",t.getYAxisClipWidth.bind(t)).attr("height",t.getYAxisClipHeight.bind(t)),t.svg.select("#"+t.clipIdForSubchart).select("rect").attr("width",t.width).attr("height",e.size()?e.attr("height"):0),t.selectChart.style("max-height",t.currentHeight+"px")},l.prototype.updateDimension=function(t){var e=this;t||(e.config.axis_rotated?(e.axes.x.call(e.xAxis),e.axes.subx.call(e.subXAxis)):(e.axes.y.call(e.yAxis),e.axes.y2.call(e.y2Axis))),e.updateSizes(),e.updateScales(),e.updateSvgSize(),e.transformAll(!1)},l.prototype.observeInserted=function(e){var i,n=this;"undefined"!=typeof MutationObserver?(i=new MutationObserver(function(t){t.forEach(function(t){"childList"===t.type&&t.previousSibling&&(i.disconnect(),n.intervalForObserveInserted=window.setInterval(function(){e.node().parentNode&&(window.clearInterval(n.intervalForObserveInserted),n.updateDimension(),n.brush&&n.brush.update(),n.config.oninit.call(n),n.redraw({withTransform:!0,withUpdateXDomain:!0,withUpdateOrgXDomain:!0,withTransition:!1,withTransitionForTransform:!1,withLegend:!0}),e.transition().style("opacity",1))},10))})})).observe(e.node(),{attributes:!0,childList:!0,characterData:!0}):window.console.error("MutationObserver not defined.")},l.prototype.bindResize=function(){var t=this,e=t.config;if(t.resizeFunction=t.generateResize(),t.resizeFunction.add(function(){e.onresize.call(t)}),e.resize_auto&&t.resizeFunction.add(function(){void 0!==t.resizeTimeout&&window.clearTimeout(t.resizeTimeout),t.resizeTimeout=window.setTimeout(function(){delete t.resizeTimeout,t.updateAndRedraw({withUpdateXDomain:!1,withUpdateOrgXDomain:!1,withTransition:!1,withTransitionForTransform:!1,withLegend:!0}),t.brush&&t.brush.update()},100)}),t.resizeFunction.add(function(){e.onresized.call(t)}),t.resizeIfElementDisplayed=function(){null!=t.api&&t.api.element.offsetParent&&t.resizeFunction()},window.attachEvent)window.attachEvent("onresize",t.resizeIfElementDisplayed);else if(window.addEventListener)window.addEventListener("resize",t.resizeIfElementDisplayed,!1);else{var i=window.onresize;i?i.add&&i.remove||(i=t.generateResize()).add(window.onresize):i=t.generateResize(),i.add(t.resizeFunction),window.onresize=function(){t.api.element.offsetParent&&i()}}},l.prototype.bindWindowFocus=function(){var t=this;this.windowFocusHandler||(this.windowFocusHandler=function(){t.redraw()},window.addEventListener("focus",this.windowFocusHandler))},l.prototype.unbindWindowFocus=function(){window.removeEventListener("focus",this.windowFocusHandler),delete this.windowFocusHandler},l.prototype.generateResize=function(){var i=[];function t(){i.forEach(function(t){t()})}return t.add=function(t){i.push(t)},t.remove=function(t){for(var e=0;e<i.length;e++)if(i[e]===t){i.splice(e,1);break}},t},l.prototype.endall=function(t,e){var i=0;t.each(function(){++i}).on("end",function(){--i||e.apply(this,arguments)})},l.prototype.generateWait=function(){var n=[],t=function(t){var i=setInterval(function(){var e=0;n.forEach(function(t){if(t.empty())e+=1;else try{t.transition()}catch(t){e+=1}}),e===n.length&&(clearInterval(i),t&&t())},50)};return t.add=function(t){n.push(t)},t},l.prototype.parseDate=function(t){var e;return t instanceof Date?e=t:"string"==typeof t?e=this.dataTimeParse(t):"object"===s(t)?e=new Date(+t):"number"!=typeof t||isNaN(t)||(e=new Date(+t)),e&&!isNaN(+e)||window.console.error("Failed to parse x '"+t+"' to Date object"),e},l.prototype.isTabVisible=function(){return!document.hidden},l.prototype.getPathBox=y,l.prototype.CLASS=Y,"SVGPathSeg"in window||(window.SVGPathSeg=function(t,e,i){this.pathSegType=t,this.pathSegTypeAsLetter=e,this._owningPathSegList=i},window.SVGPathSeg.prototype.classname="SVGPathSeg",window.SVGPathSeg.PATHSEG_UNKNOWN=0,window.SVGPathSeg.PATHSEG_CLOSEPATH=1,window.SVGPathSeg.PATHSEG_MOVETO_ABS=2,window.SVGPathSeg.PATHSEG_MOVETO_REL=3,window.SVGPathSeg.PATHSEG_LINETO_ABS=4,window.SVGPathSeg.PATHSEG_LINETO_REL=5,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS=6,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL=7,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS=8,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL=9,window.SVGPathSeg.PATHSEG_ARC_ABS=10,window.SVGPathSeg.PATHSEG_ARC_REL=11,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS=12,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL=13,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS=14,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL=15,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=16,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=17,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=18,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=19,window.SVGPathSeg.prototype._segmentChanged=function(){this._owningPathSegList&&this._owningPathSegList.segmentChanged(this)},window.SVGPathSegClosePath=function(t){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CLOSEPATH,"z",t)},window.SVGPathSegClosePath.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegClosePath.prototype.toString=function(){return"[object SVGPathSegClosePath]"},window.SVGPathSegClosePath.prototype._asPathString=function(){return this.pathSegTypeAsLetter},window.SVGPathSegClosePath.prototype.clone=function(){return new window.SVGPathSegClosePath(void 0)},window.SVGPathSegMovetoAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_MOVETO_ABS,"M",t),this._x=e,this._y=i},window.SVGPathSegMovetoAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegMovetoAbs.prototype.toString=function(){return"[object SVGPathSegMovetoAbs]"},window.SVGPathSegMovetoAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegMovetoAbs.prototype.clone=function(){return new window.SVGPathSegMovetoAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegMovetoAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegMovetoAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegMovetoRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_MOVETO_REL,"m",t),this._x=e,this._y=i},window.SVGPathSegMovetoRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegMovetoRel.prototype.toString=function(){return"[object SVGPathSegMovetoRel]"},window.SVGPathSegMovetoRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegMovetoRel.prototype.clone=function(){return new window.SVGPathSegMovetoRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegMovetoRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegMovetoRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_ABS,"L",t),this._x=e,this._y=i},window.SVGPathSegLinetoAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoAbs.prototype.toString=function(){return"[object SVGPathSegLinetoAbs]"},window.SVGPathSegLinetoAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegLinetoAbs.prototype.clone=function(){return new window.SVGPathSegLinetoAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegLinetoAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegLinetoAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_REL,"l",t),this._x=e,this._y=i},window.SVGPathSegLinetoRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoRel.prototype.toString=function(){return"[object SVGPathSegLinetoRel]"},window.SVGPathSegLinetoRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegLinetoRel.prototype.clone=function(){return new window.SVGPathSegLinetoRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegLinetoRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegLinetoRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicAbs=function(t,e,i,n,r,a,o){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS,"C",t),this._x=e,this._y=i,this._x1=n,this._y1=r,this._x2=a,this._y2=o},window.SVGPathSegCurvetoCubicAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicAbs]"},window.SVGPathSegCurvetoCubicAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicAbs(void 0,this._x,this._y,this._x1,this._y1,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicRel=function(t,e,i,n,r,a,o){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL,"c",t),this._x=e,this._y=i,this._x1=n,this._y1=r,this._x2=a,this._y2=o},window.SVGPathSegCurvetoCubicRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicRel.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicRel]"},window.SVGPathSegCurvetoCubicRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicRel.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicRel(void 0,this._x,this._y,this._x1,this._y1,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticAbs=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS,"Q",t),this._x=e,this._y=i,this._x1=n,this._y1=r},window.SVGPathSegCurvetoQuadraticAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticAbs]"},window.SVGPathSegCurvetoQuadraticAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticAbs(void 0,this._x,this._y,this._x1,this._y1)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticRel=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL,"q",t),this._x=e,this._y=i,this._x1=n,this._y1=r},window.SVGPathSegCurvetoQuadraticRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticRel.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticRel]"},window.SVGPathSegCurvetoQuadraticRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x1+" "+this._y1+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticRel.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticRel(void 0,this._x,this._y,this._x1,this._y1)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"x1",{get:function(){return this._x1},set:function(t){this._x1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype,"y1",{get:function(){return this._y1},set:function(t){this._y1=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegArcAbs=function(t,e,i,n,r,a,o,s){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_ARC_ABS,"A",t),this._x=e,this._y=i,this._r1=n,this._r2=r,this._angle=a,this._largeArcFlag=o,this._sweepFlag=s},window.SVGPathSegArcAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegArcAbs.prototype.toString=function(){return"[object SVGPathSegArcAbs]"},window.SVGPathSegArcAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._r1+" "+this._r2+" "+this._angle+" "+(this._largeArcFlag?"1":"0")+" "+(this._sweepFlag?"1":"0")+" "+this._x+" "+this._y},window.SVGPathSegArcAbs.prototype.clone=function(){return new window.SVGPathSegArcAbs(void 0,this._x,this._y,this._r1,this._r2,this._angle,this._largeArcFlag,this._sweepFlag)},Object.defineProperty(window.SVGPathSegArcAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"r1",{get:function(){return this._r1},set:function(t){this._r1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"r2",{get:function(){return this._r2},set:function(t){this._r2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"angle",{get:function(){return this._angle},set:function(t){this._angle=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"largeArcFlag",{get:function(){return this._largeArcFlag},set:function(t){this._largeArcFlag=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcAbs.prototype,"sweepFlag",{get:function(){return this._sweepFlag},set:function(t){this._sweepFlag=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegArcRel=function(t,e,i,n,r,a,o,s){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_ARC_REL,"a",t),this._x=e,this._y=i,this._r1=n,this._r2=r,this._angle=a,this._largeArcFlag=o,this._sweepFlag=s},window.SVGPathSegArcRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegArcRel.prototype.toString=function(){return"[object SVGPathSegArcRel]"},window.SVGPathSegArcRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._r1+" "+this._r2+" "+this._angle+" "+(this._largeArcFlag?"1":"0")+" "+(this._sweepFlag?"1":"0")+" "+this._x+" "+this._y},window.SVGPathSegArcRel.prototype.clone=function(){return new window.SVGPathSegArcRel(void 0,this._x,this._y,this._r1,this._r2,this._angle,this._largeArcFlag,this._sweepFlag)},Object.defineProperty(window.SVGPathSegArcRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"r1",{get:function(){return this._r1},set:function(t){this._r1=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"r2",{get:function(){return this._r2},set:function(t){this._r2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"angle",{get:function(){return this._angle},set:function(t){this._angle=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"largeArcFlag",{get:function(){return this._largeArcFlag},set:function(t){this._largeArcFlag=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegArcRel.prototype,"sweepFlag",{get:function(){return this._sweepFlag},set:function(t){this._sweepFlag=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoHorizontalAbs=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS,"H",t),this._x=e},window.SVGPathSegLinetoHorizontalAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoHorizontalAbs.prototype.toString=function(){return"[object SVGPathSegLinetoHorizontalAbs]"},window.SVGPathSegLinetoHorizontalAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x},window.SVGPathSegLinetoHorizontalAbs.prototype.clone=function(){return new window.SVGPathSegLinetoHorizontalAbs(void 0,this._x)},Object.defineProperty(window.SVGPathSegLinetoHorizontalAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoHorizontalRel=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL,"h",t),this._x=e},window.SVGPathSegLinetoHorizontalRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoHorizontalRel.prototype.toString=function(){return"[object SVGPathSegLinetoHorizontalRel]"},window.SVGPathSegLinetoHorizontalRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x},window.SVGPathSegLinetoHorizontalRel.prototype.clone=function(){return new window.SVGPathSegLinetoHorizontalRel(void 0,this._x)},Object.defineProperty(window.SVGPathSegLinetoHorizontalRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoVerticalAbs=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS,"V",t),this._y=e},window.SVGPathSegLinetoVerticalAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoVerticalAbs.prototype.toString=function(){return"[object SVGPathSegLinetoVerticalAbs]"},window.SVGPathSegLinetoVerticalAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._y},window.SVGPathSegLinetoVerticalAbs.prototype.clone=function(){return new window.SVGPathSegLinetoVerticalAbs(void 0,this._y)},Object.defineProperty(window.SVGPathSegLinetoVerticalAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegLinetoVerticalRel=function(t,e){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL,"v",t),this._y=e},window.SVGPathSegLinetoVerticalRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegLinetoVerticalRel.prototype.toString=function(){return"[object SVGPathSegLinetoVerticalRel]"},window.SVGPathSegLinetoVerticalRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._y},window.SVGPathSegLinetoVerticalRel.prototype.clone=function(){return new window.SVGPathSegLinetoVerticalRel(void 0,this._y)},Object.defineProperty(window.SVGPathSegLinetoVerticalRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicSmoothAbs=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS,"S",t),this._x=e,this._y=i,this._x2=n,this._y2=r},window.SVGPathSegCurvetoCubicSmoothAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicSmoothAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicSmoothAbs]"},window.SVGPathSegCurvetoCubicSmoothAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicSmoothAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicSmoothAbs(void 0,this._x,this._y,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoCubicSmoothRel=function(t,e,i,n,r){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL,"s",t),this._x=e,this._y=i,this._x2=n,this._y2=r},window.SVGPathSegCurvetoCubicSmoothRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoCubicSmoothRel.prototype.toString=function(){return"[object SVGPathSegCurvetoCubicSmoothRel]"},window.SVGPathSegCurvetoCubicSmoothRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x2+" "+this._y2+" "+this._x+" "+this._y},window.SVGPathSegCurvetoCubicSmoothRel.prototype.clone=function(){return new window.SVGPathSegCurvetoCubicSmoothRel(void 0,this._x,this._y,this._x2,this._y2)},Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"x2",{get:function(){return this._x2},set:function(t){this._x2=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype,"y2",{get:function(){return this._y2},set:function(t){this._y2=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticSmoothAbs=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS,"T",t),this._x=e,this._y=i},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticSmoothAbs]"},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticSmoothAbs(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathSegCurvetoQuadraticSmoothRel=function(t,e,i){window.SVGPathSeg.call(this,window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL,"t",t),this._x=e,this._y=i},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype=Object.create(window.SVGPathSeg.prototype),window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.toString=function(){return"[object SVGPathSegCurvetoQuadraticSmoothRel]"},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype._asPathString=function(){return this.pathSegTypeAsLetter+" "+this._x+" "+this._y},window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.clone=function(){return new window.SVGPathSegCurvetoQuadraticSmoothRel(void 0,this._x,this._y)},Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype,"x",{get:function(){return this._x},set:function(t){this._x=t,this._segmentChanged()},enumerable:!0}),Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype,"y",{get:function(){return this._y},set:function(t){this._y=t,this._segmentChanged()},enumerable:!0}),window.SVGPathElement.prototype.createSVGPathSegClosePath=function(){return new window.SVGPathSegClosePath(void 0)},window.SVGPathElement.prototype.createSVGPathSegMovetoAbs=function(t,e){return new window.SVGPathSegMovetoAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegMovetoRel=function(t,e){return new window.SVGPathSegMovetoRel(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegLinetoAbs=function(t,e){return new window.SVGPathSegLinetoAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegLinetoRel=function(t,e){return new window.SVGPathSegLinetoRel(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicAbs=function(t,e,i,n,r,a){return new window.SVGPathSegCurvetoCubicAbs(void 0,t,e,i,n,r,a)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicRel=function(t,e,i,n,r,a){return new window.SVGPathSegCurvetoCubicRel(void 0,t,e,i,n,r,a)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticAbs=function(t,e,i,n){return new window.SVGPathSegCurvetoQuadraticAbs(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticRel=function(t,e,i,n){return new window.SVGPathSegCurvetoQuadraticRel(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegArcAbs=function(t,e,i,n,r,a,o){return new window.SVGPathSegArcAbs(void 0,t,e,i,n,r,a,o)},window.SVGPathElement.prototype.createSVGPathSegArcRel=function(t,e,i,n,r,a,o){return new window.SVGPathSegArcRel(void 0,t,e,i,n,r,a,o)},window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalAbs=function(t){return new window.SVGPathSegLinetoHorizontalAbs(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalRel=function(t){return new window.SVGPathSegLinetoHorizontalRel(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalAbs=function(t){return new window.SVGPathSegLinetoVerticalAbs(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalRel=function(t){return new window.SVGPathSegLinetoVerticalRel(void 0,t)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothAbs=function(t,e,i,n){return new window.SVGPathSegCurvetoCubicSmoothAbs(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothRel=function(t,e,i,n){return new window.SVGPathSegCurvetoCubicSmoothRel(void 0,t,e,i,n)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothAbs=function(t,e){return new window.SVGPathSegCurvetoQuadraticSmoothAbs(void 0,t,e)},window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothRel=function(t,e){return new window.SVGPathSegCurvetoQuadraticSmoothRel(void 0,t,e)},"getPathSegAtLength"in window.SVGPathElement.prototype||(window.SVGPathElement.prototype.getPathSegAtLength=function(t){if(void 0===t||!isFinite(t))throw"Invalid arguments.";var e=document.createElementNS("http://www.w3.org/2000/svg","path");e.setAttribute("d",this.getAttribute("d"));var i=e.pathSegList.numberOfItems-1;if(i<=0)return 0;do{if(e.pathSegList.removeItem(i),t>e.getTotalLength())break;i--}while(0<i);return i})),"SVGPathSegList"in window||(window.SVGPathSegList=function(t){this._pathElement=t,this._list=this._parsePath(this._pathElement.getAttribute("d")),this._mutationObserverConfig={attributes:!0,attributeFilter:["d"]},this._pathElementMutationObserver=new MutationObserver(this._updateListFromPathMutations.bind(this)),this._pathElementMutationObserver.observe(this._pathElement,this._mutationObserverConfig)},window.SVGPathSegList.prototype.classname="SVGPathSegList",Object.defineProperty(window.SVGPathSegList.prototype,"numberOfItems",{get:function(){return this._checkPathSynchronizedToList(),this._list.length},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"pathSegList",{get:function(){return this._pathSegList||(this._pathSegList=new window.SVGPathSegList(this)),this._pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"normalizedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"animatedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),Object.defineProperty(window.SVGPathElement.prototype,"animatedNormalizedPathSegList",{get:function(){return this.pathSegList},enumerable:!0}),window.SVGPathSegList.prototype._checkPathSynchronizedToList=function(){this._updateListFromPathMutations(this._pathElementMutationObserver.takeRecords())},window.SVGPathSegList.prototype._updateListFromPathMutations=function(t){if(this._pathElement){var e=!1;t.forEach(function(t){"d"==t.attributeName&&(e=!0)}),e&&(this._list=this._parsePath(this._pathElement.getAttribute("d")))}},window.SVGPathSegList.prototype._writeListToPath=function(){this._pathElementMutationObserver.disconnect(),this._pathElement.setAttribute("d",window.SVGPathSegList._pathSegArrayAsString(this._list)),this._pathElementMutationObserver.observe(this._pathElement,this._mutationObserverConfig)},window.SVGPathSegList.prototype.segmentChanged=function(t){this._writeListToPath()},window.SVGPathSegList.prototype.clear=function(){this._checkPathSynchronizedToList(),this._list.forEach(function(t){t._owningPathSegList=null}),this._list=[],this._writeListToPath()},window.SVGPathSegList.prototype.initialize=function(t){return this._checkPathSynchronizedToList(),this._list=[t],(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype._checkValidIndex=function(t){if(isNaN(t)||t<0||t>=this.numberOfItems)throw"INDEX_SIZE_ERR"},window.SVGPathSegList.prototype.getItem=function(t){return this._checkPathSynchronizedToList(),this._checkValidIndex(t),this._list[t]},window.SVGPathSegList.prototype.insertItemBefore=function(t,e){return this._checkPathSynchronizedToList(),e>this.numberOfItems&&(e=this.numberOfItems),t._owningPathSegList&&(t=t.clone()),this._list.splice(e,0,t),(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype.replaceItem=function(t,e){return this._checkPathSynchronizedToList(),t._owningPathSegList&&(t=t.clone()),this._checkValidIndex(e),((this._list[e]=t)._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList.prototype.removeItem=function(t){this._checkPathSynchronizedToList(),this._checkValidIndex(t);var e=this._list[t];return this._list.splice(t,1),this._writeListToPath(),e},window.SVGPathSegList.prototype.appendItem=function(t){return this._checkPathSynchronizedToList(),t._owningPathSegList&&(t=t.clone()),this._list.push(t),(t._owningPathSegList=this)._writeListToPath(),t},window.SVGPathSegList._pathSegArrayAsString=function(t){var e="",i=!0;return t.forEach(function(t){i?(i=!1,e+=t._asPathString()):e+=" "+t._asPathString()}),e},window.SVGPathSegList.prototype._parsePath=function(t){if(!t||0==t.length)return[];var n=this,e=function(){this.pathSegList=[]};e.prototype.appendSegment=function(t){this.pathSegList.push(t)};var i=function(t){this._string=t,this._currentIndex=0,this._endIndex=this._string.length,this._previousCommand=window.SVGPathSeg.PATHSEG_UNKNOWN,this._skipOptionalSpaces()};i.prototype._isCurrentSpace=function(){var t=this._string[this._currentIndex];return t<=" "&&(" "==t||"\n"==t||"\t"==t||"\r"==t||"\f"==t)},i.prototype._skipOptionalSpaces=function(){for(;this._currentIndex<this._endIndex&&this._isCurrentSpace();)this._currentIndex++;return this._currentIndex<this._endIndex},i.prototype._skipOptionalSpacesOrDelimiter=function(){return!(this._currentIndex<this._endIndex&&!this._isCurrentSpace()&&","!=this._string.charAt(this._currentIndex))&&(this._skipOptionalSpaces()&&this._currentIndex<this._endIndex&&","==this._string.charAt(this._currentIndex)&&(this._currentIndex++,this._skipOptionalSpaces()),this._currentIndex<this._endIndex)},i.prototype.hasMoreData=function(){return this._currentIndex<this._endIndex},i.prototype.peekSegmentType=function(){var t=this._string[this._currentIndex];return this._pathSegTypeFromChar(t)},i.prototype._pathSegTypeFromChar=function(t){switch(t){case"Z":case"z":return window.SVGPathSeg.PATHSEG_CLOSEPATH;case"M":return window.SVGPathSeg.PATHSEG_MOVETO_ABS;case"m":return window.SVGPathSeg.PATHSEG_MOVETO_REL;case"L":return window.SVGPathSeg.PATHSEG_LINETO_ABS;case"l":return window.SVGPathSeg.PATHSEG_LINETO_REL;case"C":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS;case"c":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL;case"Q":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS;case"q":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL;case"A":return window.SVGPathSeg.PATHSEG_ARC_ABS;case"a":return window.SVGPathSeg.PATHSEG_ARC_REL;case"H":return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;case"h":return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL;case"V":return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS;case"v":return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL;case"S":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS;case"s":return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL;case"T":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS;case"t":return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL;default:return window.SVGPathSeg.PATHSEG_UNKNOWN}},i.prototype._nextCommandHelper=function(t,e){return("+"==t||"-"==t||"."==t||"0"<=t&&t<="9")&&e!=window.SVGPathSeg.PATHSEG_CLOSEPATH?e==window.SVGPathSeg.PATHSEG_MOVETO_ABS?window.SVGPathSeg.PATHSEG_LINETO_ABS:e==window.SVGPathSeg.PATHSEG_MOVETO_REL?window.SVGPathSeg.PATHSEG_LINETO_REL:e:window.SVGPathSeg.PATHSEG_UNKNOWN},i.prototype.initialCommandIsMoveTo=function(){if(!this.hasMoreData())return!0;var t=this.peekSegmentType();return t==window.SVGPathSeg.PATHSEG_MOVETO_ABS||t==window.SVGPathSeg.PATHSEG_MOVETO_REL},i.prototype._parseNumber=function(){var t=0,e=0,i=1,n=0,r=1,a=1,o=this._currentIndex;if(this._skipOptionalSpaces(),this._currentIndex<this._endIndex&&"+"==this._string.charAt(this._currentIndex)?this._currentIndex++:this._currentIndex<this._endIndex&&"-"==this._string.charAt(this._currentIndex)&&(this._currentIndex++,r=-1),!(this._currentIndex==this._endIndex||(this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))&&"."!=this._string.charAt(this._currentIndex))){for(var s=this._currentIndex;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)this._currentIndex++;if(this._currentIndex!=s)for(var c=this._currentIndex-1,d=1;s<=c;)e+=d*(this._string.charAt(c--)-"0"),d*=10;if(this._currentIndex<this._endIndex&&"."==this._string.charAt(this._currentIndex)){if(this._currentIndex++,this._currentIndex>=this._endIndex||this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))return;for(;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)i*=10,n+=(this._string.charAt(this._currentIndex)-"0")/i,this._currentIndex+=1}if(this._currentIndex!=o&&this._currentIndex+1<this._endIndex&&("e"==this._string.charAt(this._currentIndex)||"E"==this._string.charAt(this._currentIndex))&&"x"!=this._string.charAt(this._currentIndex+1)&&"m"!=this._string.charAt(this._currentIndex+1)){if(this._currentIndex++,"+"==this._string.charAt(this._currentIndex)?this._currentIndex++:"-"==this._string.charAt(this._currentIndex)&&(this._currentIndex++,a=-1),this._currentIndex>=this._endIndex||this._string.charAt(this._currentIndex)<"0"||"9"<this._string.charAt(this._currentIndex))return;for(;this._currentIndex<this._endIndex&&"0"<=this._string.charAt(this._currentIndex)&&this._string.charAt(this._currentIndex)<="9";)t*=10,t+=this._string.charAt(this._currentIndex)-"0",this._currentIndex++}var l=e+n;if(l*=r,t&&(l*=Math.pow(10,a*t)),o!=this._currentIndex)return this._skipOptionalSpacesOrDelimiter(),l}},i.prototype._parseArcFlag=function(){if(!(this._currentIndex>=this._endIndex)){var t=!1,e=this._string.charAt(this._currentIndex++);if("0"==e)t=!1;else{if("1"!=e)return;t=!0}return this._skipOptionalSpacesOrDelimiter(),t}},i.prototype.parseSegment=function(){var t=this._string[this._currentIndex],e=this._pathSegTypeFromChar(t);if(e==window.SVGPathSeg.PATHSEG_UNKNOWN){if(this._previousCommand==window.SVGPathSeg.PATHSEG_UNKNOWN)return null;if((e=this._nextCommandHelper(t,this._previousCommand))==window.SVGPathSeg.PATHSEG_UNKNOWN)return null}else this._currentIndex++;switch(this._previousCommand=e){case window.SVGPathSeg.PATHSEG_MOVETO_REL:return new window.SVGPathSegMovetoRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_MOVETO_ABS:return new window.SVGPathSegMovetoAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_REL:return new window.SVGPathSegLinetoRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_ABS:return new window.SVGPathSegLinetoAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:return new window.SVGPathSegLinetoHorizontalRel(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:return new window.SVGPathSegLinetoHorizontalAbs(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:return new window.SVGPathSegLinetoVerticalRel(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:return new window.SVGPathSegLinetoVerticalAbs(n,this._parseNumber());case window.SVGPathSeg.PATHSEG_CLOSEPATH:return this._skipOptionalSpaces(),new window.SVGPathSegClosePath(n);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:var i={x1:this._parseNumber(),y1:this._parseNumber(),x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()};return new window.SVGPathSegCurvetoCubicRel(n,i.x,i.y,i.x1,i.y1,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicAbs(n,i.x,i.y,i.x1,i.y1,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:return i={x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicSmoothRel(n,i.x,i.y,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:return i={x2:this._parseNumber(),y2:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoCubicSmoothAbs(n,i.x,i.y,i.x2,i.y2);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:return i={x1:this._parseNumber(),y1:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoQuadraticRel(n,i.x,i.y,i.x1,i.y1);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegCurvetoQuadraticAbs(n,i.x,i.y,i.x1,i.y1);case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL:return new window.SVGPathSegCurvetoQuadraticSmoothRel(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS:return new window.SVGPathSegCurvetoQuadraticSmoothAbs(n,this._parseNumber(),this._parseNumber());case window.SVGPathSeg.PATHSEG_ARC_REL:return i={x1:this._parseNumber(),y1:this._parseNumber(),arcAngle:this._parseNumber(),arcLarge:this._parseArcFlag(),arcSweep:this._parseArcFlag(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegArcRel(n,i.x,i.y,i.x1,i.y1,i.arcAngle,i.arcLarge,i.arcSweep);case window.SVGPathSeg.PATHSEG_ARC_ABS:return i={x1:this._parseNumber(),y1:this._parseNumber(),arcAngle:this._parseNumber(),arcLarge:this._parseArcFlag(),arcSweep:this._parseArcFlag(),x:this._parseNumber(),y:this._parseNumber()},new window.SVGPathSegArcAbs(n,i.x,i.y,i.x1,i.y1,i.arcAngle,i.arcLarge,i.arcSweep);default:throw"Unknown path seg type."}};var r=new e,a=new i(t);if(!a.initialCommandIsMoveTo())return[];for(;a.hasMoreData();){var o=a.parseSegment();if(!o)return[];r.appendSegment(o)}return r.pathSegList}),String.prototype.padEnd||(String.prototype.padEnd=function(t,e){return t>>=0,e=String(void 0!==e?e:" "),this.length>t?String(this):((t-=this.length)>e.length&&(e+=e.repeat(t/e.length)),String(this)+e.slice(0,t))}),(n.prototype.axis=function(){}).labels=function(e){var i=this.internal;arguments.length&&(Object.keys(e).forEach(function(t){i.axis.setLabelText(t,e[t])}),i.axis.updateLabels())},n.prototype.axis.max=function(t){var e=this.internal,i=e.config;if(!arguments.length)return{x:i.axis_x_max,y:i.axis_y_max,y2:i.axis_y2_max};"object"===s(t)?(P(t.x)&&(i.axis_x_max=t.x),P(t.y)&&(i.axis_y_max=t.y),P(t.y2)&&(i.axis_y2_max=t.y2)):i.axis_y_max=i.axis_y2_max=t,e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})},n.prototype.axis.min=function(t){var e=this.internal,i=e.config;if(!arguments.length)return{x:i.axis_x_min,y:i.axis_y_min,y2:i.axis_y2_min};"object"===s(t)?(P(t.x)&&(i.axis_x_min=t.x),P(t.y)&&(i.axis_y_min=t.y),P(t.y2)&&(i.axis_y2_min=t.y2)):i.axis_y_min=i.axis_y2_min=t,e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})},n.prototype.axis.range=function(t){if(!arguments.length)return{max:this.axis.max(),min:this.axis.min()};k(t.max)&&this.axis.max(t.max),k(t.min)&&this.axis.min(t.min)},n.prototype.category=function(t,e){var i=this.internal,n=i.config;return 1<arguments.length&&(n.axis_x_categories[t]=e,i.redraw()),n.axis_x_categories[t]},n.prototype.categories=function(t){var e=this.internal,i=e.config;return arguments.length&&(i.axis_x_categories=t,e.redraw()),i.axis_x_categories},n.prototype.resize=function(t){var e=this.internal.config;e.size_width=t?t.width:null,e.size_height=t?t.height:null,this.flush()},n.prototype.flush=function(){this.internal.updateAndRedraw({withLegend:!0,withTransition:!1,withTransitionForTransform:!1})},n.prototype.destroy=function(){var e=this.internal;if(window.clearInterval(e.intervalForObserveInserted),void 0!==e.resizeTimeout&&window.clearTimeout(e.resizeTimeout),window.detachEvent)window.detachEvent("onresize",e.resizeIfElementDisplayed);else if(window.removeEventListener)window.removeEventListener("resize",e.resizeIfElementDisplayed);else{var t=window.onresize;t&&t.add&&t.remove&&t.remove(e.resizeFunction)}return e.resizeFunction.remove(),e.unbindWindowFocus(),e.selectChart.classed("c3",!1).html(""),Object.keys(e).forEach(function(t){e[t]=null}),null},n.prototype.color=function(t){return this.internal.color(t)},(n.prototype.data=function(e){var t=this.internal.data.targets;return void 0===e?t:t.filter(function(t){return 0<=[].concat(e).indexOf(t.id)})}).shown=function(t){return this.internal.filterTargetsToShow(this.data(t))},n.prototype.data.values=function(t){var e,i=null;return t&&(i=(e=this.data(t))[0]?e[0].values.map(function(t){return t.value}):null),i},n.prototype.data.names=function(t){return this.internal.clearLegendItemTextBoxCache(),this.internal.updateDataAttributes("names",t)},n.prototype.data.colors=function(t){return this.internal.updateDataAttributes("colors",t)},n.prototype.data.axes=function(t){return this.internal.updateDataAttributes("axes",t)},n.prototype.flow=function(t){var r,e,i,n,a,o,s,c=this.internal,d=[],l=c.getMaxDataCount(),u=0,h=0;if(t.json)e=c.convertJsonToData(t.json,t.keys);else if(t.rows)e=c.convertRowsToData(t.rows);else{if(!t.columns)return;e=c.convertColumnsToData(t.columns)}r=c.convertDataToTargets(e,!0),c.data.targets.forEach(function(t){var e,i,n=!1;for(e=0;e<r.length;e++)if(t.id===r[e].id){for(n=!0,t.values[t.values.length-1]&&(h=t.values[t.values.length-1].index+1),u=r[e].values.length,i=0;i<u;i++)r[e].values[i].index=h+i,c.isTimeSeries()||(r[e].values[i].x=h+i);t.values=t.values.concat(r[e].values),r.splice(e,1);break}n||d.push(t.id)}),c.data.targets.forEach(function(t){var e,i;for(e=0;e<d.length;e++)if(t.id===d[e])for(h=t.values[t.values.length-1].index+1,i=0;i<u;i++)t.values.push({id:t.id,index:h+i,x:c.isTimeSeries()?c.getOtherTargetX(h+i):h+i,value:null})}),c.data.targets.length&&r.forEach(function(t){var e,i=[];for(e=c.data.targets[0].values[0].index;e<h;e++)i.push({id:t.id,index:e,x:c.isTimeSeries()?c.getOtherTargetX(e):e,value:null});t.values.forEach(function(t){t.index+=h,c.isTimeSeries()||(t.x+=h)}),t.values=i.concat(t.values)}),c.data.targets=c.data.targets.concat(r),c.getMaxDataCount(),a=(n=c.data.targets[0]).values[0],k(t.to)?(u=0,s=c.isTimeSeries()?c.parseDate(t.to):t.to,n.values.forEach(function(t){t.x<s&&u++})):k(t.length)&&(u=t.length),l?1===l&&c.isTimeSeries()&&(o=(n.values[n.values.length-1].x-a.x)/2,i=[new Date(+a.x-o),new Date(+a.x+o)],c.updateXDomain(null,!0,!0,!1,i)):(o=c.isTimeSeries()?1<n.values.length?n.values[n.values.length-1].x-a.x:a.x-c.getXDomain(c.data.targets)[0]:1,i=[a.x-o,a.x],c.updateXDomain(null,!0,!0,!1,i)),c.updateTargets(c.data.targets),c.redraw({flow:{index:a.index,length:u,duration:P(t.duration)?t.duration:c.config.transition_duration,done:t.done,orgDataCount:l},withLegend:!0,withTransition:1<l,withTrimXDomain:!1,withUpdateXAxis:!0})},l.prototype.generateFlow=function(G){var E=this,I=E.config,O=E.d3;return function(){var t,e,n,r,a,o,s,c,d,l,i=G.targets,u=G.flow,h=G.drawBar,g=G.drawLine,p=G.drawArea,f=G.cx,_=G.cy,x=G.xv,y=G.xForText,m=G.yForText,S=G.duration,w=u.index,v=u.length,b=E.getValueOnIndex(E.data.targets[0].values,w),A=E.getValueOnIndex(E.data.targets[0].values,w+v),T=E.x.domain(),P=u.duration||S,L=u.done||function(){},C=E.generateWait();E.flowing=!0,E.data.targets.forEach(function(t){t.values.splice(0,v)}),e=E.updateXDomain(i,!0,!0),E.updateXGrid&&E.updateXGrid(!0),n=E.xgrid||O.selectAll([]),r=E.xgridLines||O.selectAll([]),a=E.mainRegion||O.selectAll([]),o=E.mainText||O.selectAll([]),s=E.mainBar||O.selectAll([]),c=E.mainLine||O.selectAll([]),d=E.mainArea||O.selectAll([]),l=E.mainCircle||O.selectAll([]),t="translate("+(u.orgDataCount?1===u.orgDataCount||(b&&b.x)===(A&&A.x)?E.x(T[0])-E.x(e[0]):E.isTimeSeries()?E.x(T[0])-E.x(e[0]):E.x(b.x)-E.x(A.x):1!==E.data.targets[0].values.length?E.x(T[0])-E.x(e[0]):E.isTimeSeries()?(b=E.getValueOnIndex(E.data.targets[0].values,0),A=E.getValueOnIndex(E.data.targets[0].values,E.data.targets[0].values.length-1),E.x(b.x)-E.x(A.x)):R(e)/2)+",0) scale("+R(T)/R(e)+",1)",E.hideXGridFocus();var V=O.transition().ease(O.easeLinear).duration(P);C.add(E.xAxis(E.axes.x,V)),C.add(s.transition(V).attr("transform",t)),C.add(c.transition(V).attr("transform",t)),C.add(d.transition(V).attr("transform",t)),C.add(l.transition(V).attr("transform",t)),C.add(o.transition(V).attr("transform",t)),C.add(a.filter(E.isRegionOnX).transition(V).attr("transform",t)),C.add(n.transition(V).attr("transform",t)),C.add(r.transition(V).attr("transform",t)),C(function(){var t,e=[],i=[];if(v){for(t=0;t<v;t++)e.push("."+Y.shape+"-"+(w+t)),i.push("."+Y.text+"-"+(w+t));E.svg.selectAll("."+Y.shapes).selectAll(e).remove(),E.svg.selectAll("."+Y.texts).selectAll(i).remove(),E.svg.select("."+Y.xgrid).remove()}n.attr("transform",null).attr("x1",E.xgridAttr.x1).attr("x2",E.xgridAttr.x2).attr("y1",E.xgridAttr.y1).attr("y2",E.xgridAttr.y2).style("opacity",E.xgridAttr.opacity),r.attr("transform",null),r.select("line").attr("x1",I.axis_rotated?0:x).attr("x2",I.axis_rotated?E.width:x),r.select("text").attr("x",I.axis_rotated?E.width:0).attr("y",x),s.attr("transform",null).attr("d",h),c.attr("transform",null).attr("d",g),d.attr("transform",null).attr("d",p),l.attr("transform",null).attr("cx",f).attr("cy",_),o.attr("transform",null).attr("x",y).attr("y",m).style("fill-opacity",E.opacityForText.bind(E)),a.attr("transform",null),a.filter(E.isRegionOnX).attr("x",E.regionX.bind(E)).attr("width",E.regionWidth.bind(E)),L(),E.flowing=!1})}},n.prototype.focus=function(e){var t,i=this.internal;e=i.mapToTargetIds(e),t=i.svg.selectAll(i.selectorTargets(e.filter(i.isTargetToShow,i))),this.revert(),this.defocus(),t.classed(Y.focused,!0).classed(Y.defocused,!1),i.hasArcType()&&i.expandArc(e),i.toggleFocusLegend(e,!0),i.focusedTargetIds=e,i.defocusedTargetIds=i.defocusedTargetIds.filter(function(t){return e.indexOf(t)<0})},n.prototype.defocus=function(e){var t=this.internal;e=t.mapToTargetIds(e),t.svg.selectAll(t.selectorTargets(e.filter(t.isTargetToShow,t))).classed(Y.focused,!1).classed(Y.defocused,!0),t.hasArcType()&&t.unexpandArc(e),t.toggleFocusLegend(e,!1),t.focusedTargetIds=t.focusedTargetIds.filter(function(t){return e.indexOf(t)<0}),t.defocusedTargetIds=e},n.prototype.revert=function(t){var e=this.internal;t=e.mapToTargetIds(t),e.svg.selectAll(e.selectorTargets(t)).classed(Y.focused,!1).classed(Y.defocused,!1),e.hasArcType()&&e.unexpandArc(t),e.config.legend_show&&(e.showLegend(t.filter(e.isLegendToShow.bind(e))),e.legend.selectAll(e.selectorLegends(t)).filter(function(){return e.d3.select(this).classed(Y.legendItemFocused)}).classed(Y.legendItemFocused,!1)),e.focusedTargetIds=[],e.defocusedTargetIds=[]},(n.prototype.xgrids=function(t){var e=this.internal,i=e.config;return t&&(i.grid_x_lines=t,e.redrawWithoutRescale()),i.grid_x_lines}).add=function(t){var e=this.internal;return this.xgrids(e.config.grid_x_lines.concat(t||[]))},n.prototype.xgrids.remove=function(t){this.internal.removeGridLines(t,!0)},(n.prototype.ygrids=function(t){var e=this.internal,i=e.config;return t&&(i.grid_y_lines=t,e.redrawWithoutRescale()),i.grid_y_lines}).add=function(t){var e=this.internal;return this.ygrids(e.config.grid_y_lines.concat(t||[]))},n.prototype.ygrids.remove=function(t){this.internal.removeGridLines(t,!1)},n.prototype.groups=function(t){var e=this.internal,i=e.config;return v(t)||(i.data_groups=t,e.redraw()),i.data_groups},(n.prototype.legend=function(){}).show=function(t){var e=this.internal;e.showLegend(e.mapToTargetIds(t)),e.updateAndRedraw({withLegend:!0})},n.prototype.legend.hide=function(t){var e=this.internal;e.hideLegend(e.mapToTargetIds(t)),e.updateAndRedraw({withLegend:!1})},n.prototype.load=function(e){var t=this.internal,i=t.config;e.xs&&t.addXs(e.xs),"names"in e&&n.prototype.data.names.bind(this)(e.names),"classes"in e&&Object.keys(e.classes).forEach(function(t){i.data_classes[t]=e.classes[t]}),"categories"in e&&t.isCategorized()&&(i.axis_x_categories=e.categories),"axes"in e&&Object.keys(e.axes).forEach(function(t){i.data_axes[t]=e.axes[t]}),"colors"in e&&Object.keys(e.colors).forEach(function(t){i.data_colors[t]=e.colors[t]}),"cacheIds"in e&&t.hasCaches(e.cacheIds)?t.load(t.getCaches(e.cacheIds),e.done):"unload"in e?t.unload(t.mapToTargetIds("boolean"==typeof e.unload&&e.unload?null:e.unload),function(){t.loadFromArgs(e)}):t.loadFromArgs(e)},n.prototype.unload=function(t){var e=this.internal;(t=t||{})instanceof Array?t={ids:t}:"string"==typeof t&&(t={ids:[t]}),e.unload(e.mapToTargetIds(t.ids),function(){e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0}),t.done&&t.done()})},(n.prototype.regions=function(t){var e=this.internal,i=e.config;return t&&(i.regions=t,e.redrawWithoutRescale()),i.regions}).add=function(t){var e=this.internal,i=e.config;return t&&(i.regions=i.regions.concat(t),e.redrawWithoutRescale()),i.regions},n.prototype.regions.remove=function(t){var e,i,n,r=this.internal,a=r.config;return e=N(t=t||{},"duration",a.transition_duration),i=N(t,"classes",[Y.region]),n=r.main.select("."+Y.regions).selectAll(i.map(function(t){return"."+t})),(e?n.transition().duration(e):n).style("opacity",0).remove(),a.regions=a.regions.filter(function(t){var e=!1;return!t.class||(t.class.split(" ").forEach(function(t){0<=i.indexOf(t)&&(e=!0)}),!e)}),a.regions},n.prototype.selected=function(t){var e=this.internal,i=e.d3;return i.merge(e.main.selectAll("."+Y.shapes+e.getTargetSelectorSuffix(t)).selectAll("."+Y.shape).filter(function(){return i.select(this).classed(Y.SELECTED)}).map(function(t){return t.map(function(t){var e=t.__data__;return e.data?e.data:e})}))},n.prototype.select=function(c,d,l){var u=this.internal,h=u.d3,g=u.config;g.data_selection_enabled&&u.main.selectAll("."+Y.shapes).selectAll("."+Y.shape).each(function(t,e){var i=h.select(this),n=t.data?t.data.id:t.id,r=u.getToggle(this,t).bind(u),a=g.data_selection_grouped||!c||0<=c.indexOf(n),o=!d||0<=d.indexOf(e),s=i.classed(Y.SELECTED);i.classed(Y.line)||i.classed(Y.area)||(a&&o?g.data_selection_isselectable(t)&&!s&&r(!0,i.classed(Y.SELECTED,!0),t,e):k(l)&&l&&s&&r(!1,i.classed(Y.SELECTED,!1),t,e))})},n.prototype.unselect=function(c,d){var l=this.internal,u=l.d3,h=l.config;h.data_selection_enabled&&l.main.selectAll("."+Y.shapes).selectAll("."+Y.shape).each(function(t,e){var i=u.select(this),n=t.data?t.data.id:t.id,r=l.getToggle(this,t).bind(l),a=h.data_selection_grouped||!c||0<=c.indexOf(n),o=!d||0<=d.indexOf(e),s=i.classed(Y.SELECTED);i.classed(Y.line)||i.classed(Y.area)||a&&o&&h.data_selection_isselectable(t)&&s&&r(!1,i.classed(Y.SELECTED,!1),t,e)})},n.prototype.show=function(t,e){var i,n=this.internal;t=n.mapToTargetIds(t),e=e||{},n.removeHiddenTargetIds(t),(i=n.svg.selectAll(n.selectorTargets(t))).transition().style("display","initial","important").style("opacity",1,"important").call(n.endall,function(){i.style("opacity",null).style("opacity",1)}),e.withLegend&&n.showLegend(t),n.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0})},n.prototype.hide=function(t,e){var i,n=this.internal;t=n.mapToTargetIds(t),e=e||{},n.addHiddenTargetIds(t),(i=n.svg.selectAll(n.selectorTargets(t))).transition().style("opacity",0,"important").call(n.endall,function(){i.style("opacity",null).style("opacity",0),i.style("display","none")}),e.withLegend&&n.hideLegend(t),n.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0})},n.prototype.toggle=function(t,e){var i=this,n=this.internal;n.mapToTargetIds(t).forEach(function(t){n.isTargetToShow(t)?i.hide(t,e):i.show(t,e)})},(n.prototype.tooltip=function(){}).show=function(e){var t,i,n=this.internal,r={};r=e.mouse?e.mouse:(e.data?i=e.data:void 0!==e.x&&(t=e.id?n.data.targets.filter(function(t){return t.id===e.id}):n.data.targets,i=n.filterByX(t,e.x).slice(0,1)[0]),i?n.getMousePosition(i):null),n.dispatchEvent("mousemove",r),n.config.tooltip_onshow.call(n,i)},n.prototype.tooltip.hide=function(){this.internal.dispatchEvent("mouseout",0),this.internal.config.tooltip_onhide.call(this)},n.prototype.transform=function(t,e){var i=this.internal,n=0<=["pie","donut"].indexOf(t)?{withTransform:!0}:null;i.transformTo(e,t,n)},l.prototype.transformTo=function(t,e,i){var n=this,r=!n.hasArcType(),a=i||{withTransitionForAxis:r};a.withTransitionForTransform=!1,n.transiting=!1,n.setTargetType(t,e),n.updateTargets(n.data.targets),n.updateAndRedraw(a)},n.prototype.x=function(t){var e=this.internal;return arguments.length&&(e.updateTargetX(e.data.targets,t),e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})),e.data.xs},n.prototype.xs=function(t){var e=this.internal;return arguments.length&&(e.updateTargetXs(e.data.targets,t),e.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0})),e.data.xs},(n.prototype.zoom=function(t){var e=this.internal;return t?(e.isTimeSeries()&&(t=t.map(function(t){return e.parseDate(t)})),e.config.subchart_show?e.brush.selectionAsValue(t,!0):(e.updateXDomain(null,!0,!1,!1,t),e.redraw({withY:e.config.zoom_rescale,withSubchart:!1})),e.config.zoom_onzoom.call(this,e.x.orgDomain()),t):e.x.domain()}).enable=function(t){var e=this.internal;e.config.zoom_enabled=t,e.updateAndRedraw()},n.prototype.unzoom=function(){var t=this.internal;t.config.subchart_show?t.brush.clear():(t.updateXDomain(null,!0,!1,!1,t.subX.domain()),t.redraw({withY:t.config.zoom_rescale,withSubchart:!1}))},n.prototype.zoom.max=function(t){var e=this.internal,i=e.config,n=e.d3;if(0!==t&&!t)return i.zoom_x_max;i.zoom_x_max=n.max([e.orgXDomain[1],t])},n.prototype.zoom.min=function(t){var e=this.internal,i=e.config,n=e.d3;if(0!==t&&!t)return i.zoom_x_min;i.zoom_x_min=n.min([e.orgXDomain[0],t])},n.prototype.zoom.range=function(t){if(!arguments.length)return{max:this.domain.max(),min:this.domain.min()};k(t.max)&&this.domain.max(t.max),k(t.min)&&this.domain.min(t.min)},l.prototype.initPie=function(){var t=this,e=t.d3;t.pie=e.pie().value(function(t){return t.values.reduce(function(t,e){return t+e.value},0)});var i=t.getOrderFunction();if(i&&(t.isOrderAsc()||t.isOrderDesc())){var n=i;i=function(t,e){return-1*n(t,e)}}t.pie.sort(i||null)},l.prototype.updateRadius=function(){var t=this,e=t.config,i=e.gauge_width||e.donut_width,n=t.filterTargetsToShow(t.data.targets).length*t.config.gauge_arcs_minWidth;t.radiusExpanded=Math.min(t.arcWidth,t.arcHeight)/2*(t.hasType("gauge")?.85:1),t.radius=.95*t.radiusExpanded,t.innerRadiusRatio=i?(t.radius-i)/t.radius:.6,t.innerRadius=t.hasType("donut")||t.hasType("gauge")?t.radius*t.innerRadiusRatio:0,t.gaugeArcWidth=i||(n<=t.radius-t.innerRadius?t.radius-t.innerRadius:n<=t.radius?n:t.radius)},l.prototype.updateArc=function(){var t=this;t.svgArc=t.getSvgArc(),t.svgArcExpanded=t.getSvgArcExpanded(),t.svgArcExpandedSub=t.getSvgArcExpanded(.98)},l.prototype.updateAngle=function(e){var t,i,n,r,a=this,o=a.config,s=!1,c=0;return o?(a.pie(a.filterTargetsToShow(a.data.targets)).forEach(function(t){s||t.data.id!==e.data.id||(s=!0,(e=t).index=c),c++}),isNaN(e.startAngle)&&(e.startAngle=0),isNaN(e.endAngle)&&(e.endAngle=e.startAngle),a.isGaugeType(e.data)&&(t=o.gauge_min,i=o.gauge_max,n=Math.PI*(o.gauge_fullCircle?2:1)/(i-t),r=e.value<t?0:e.value<i?e.value-t:i-t,e.startAngle=o.gauge_startingAngle,e.endAngle=e.startAngle+n*r),s?e:null):null},l.prototype.getSvgArc=function(){var n=this,e=n.hasType("gauge"),i=n.gaugeArcWidth/n.filterTargetsToShow(n.data.targets).length,r=n.d3.arc().outerRadius(function(t){return e?n.radius-i*t.index:n.radius}).innerRadius(function(t){return e?n.radius-i*(t.index+1):n.innerRadius}),t=function(t,e){var i;return e?r(t):(i=n.updateAngle(t))?r(i):"M 0 0"};return t.centroid=r.centroid,t},l.prototype.getSvgArcExpanded=function(e){e=e||1;var i=this,n=i.hasType("gauge"),r=i.gaugeArcWidth/i.filterTargetsToShow(i.data.targets).length,a=Math.min(i.radiusExpanded*e-i.radius,.8*r-100*(1-e)),o=i.d3.arc().outerRadius(function(t){return n?i.radius-r*t.index+a:i.radiusExpanded*e}).innerRadius(function(t){return n?i.radius-r*(t.index+1):i.innerRadius});return function(t){var e=i.updateAngle(t);return e?o(e):"M 0 0"}},l.prototype.getArc=function(t,e,i){return i||this.isArcType(t.data)?this.svgArc(t,e):"M 0 0"},l.prototype.transformForArcLabel=function(t){var e,i,n,r,a,o=this,s=o.config,c=o.updateAngle(t),d="",l=o.hasType("gauge");if(c&&!l)e=this.svgArc.centroid(c),i=isNaN(e[0])?0:e[0],n=isNaN(e[1])?0:e[1],r=Math.sqrt(i*i+n*n),d="translate("+i*(a=o.hasType("donut")&&s.donut_label_ratio?h(s.donut_label_ratio)?s.donut_label_ratio(t,o.radius,r):s.donut_label_ratio:o.hasType("pie")&&s.pie_label_ratio?h(s.pie_label_ratio)?s.pie_label_ratio(t,o.radius,r):s.pie_label_ratio:o.radius&&r?(.375<36/o.radius?1.175-36/o.radius:.8)*o.radius/r:0)+","+n*a+")";else if(c&&l&&1<o.filterTargetsToShow(o.data.targets).length){var u=Math.sin(c.endAngle-Math.PI/2);d="translate("+(i=Math.cos(c.endAngle-Math.PI/2)*(o.radiusExpanded+25))+","+(n=u*(o.radiusExpanded+15-Math.abs(10*u))+3)+")"}return d},l.prototype.getArcRatio=function(t){var e=this.config,i=Math.PI*(this.hasType("gauge")&&!e.gauge_fullCircle?1:2);return t?(t.endAngle-t.startAngle)/i:null},l.prototype.convertToArcData=function(t){return this.addName({id:t.data.id,value:t.value,ratio:this.getArcRatio(t),index:t.index})},l.prototype.textForArcLabel=function(t){var e,i,n,r,a,o=this;return o.shouldShowArcLabel()?(i=(e=o.updateAngle(t))?e.value:null,n=o.getArcRatio(e),r=t.data.id,o.hasType("gauge")||o.meetsArcLabelThreshold(n)?(a=o.getArcLabelFormat())?a(i,n,r):o.defaultArcValueFormat(i,n):""):""},l.prototype.textForGaugeMinMax=function(t,e){var i=this.getGaugeLabelExtents();return i?i(t,e):t},l.prototype.expandArc=function(t){var e,i=this;i.transiting?e=window.setInterval(function(){i.transiting||(window.clearInterval(e),0<i.legend.selectAll(".c3-legend-item-focused").size()&&i.expandArc(t))},10):(t=i.mapToTargetIds(t),i.svg.selectAll(i.selectorTargets(t,"."+Y.chartArc)).each(function(t){i.shouldExpand(t.data.id)&&i.d3.select(this).selectAll("path").transition().duration(i.expandDuration(t.data.id)).attr("d",i.svgArcExpanded).transition().duration(2*i.expandDuration(t.data.id)).attr("d",i.svgArcExpandedSub).each(function(t){i.isDonutType(t.data)})}))},l.prototype.unexpandArc=function(t){var e=this;e.transiting||(t=e.mapToTargetIds(t),e.svg.selectAll(e.selectorTargets(t,"."+Y.chartArc)).selectAll("path").transition().duration(function(t){return e.expandDuration(t.data.id)}).attr("d",e.svgArc),e.svg.selectAll("."+Y.arc))},l.prototype.expandDuration=function(t){var e=this.config;return this.isDonutType(t)?e.donut_expand_duration:this.isGaugeType(t)?e.gauge_expand_duration:this.isPieType(t)?e.pie_expand_duration:50},l.prototype.shouldExpand=function(t){var e=this.config;return this.isDonutType(t)&&e.donut_expand||this.isGaugeType(t)&&e.gauge_expand||this.isPieType(t)&&e.pie_expand},l.prototype.shouldShowArcLabel=function(){var t=this.config,e=!0;return this.hasType("donut")?e=t.donut_label_show:this.hasType("pie")&&(e=t.pie_label_show),e},l.prototype.meetsArcLabelThreshold=function(t){var e=this.config;return(this.hasType("donut")?e.donut_label_threshold:e.pie_label_threshold)<=t},l.prototype.getArcLabelFormat=function(){var t=this.config,e=t.pie_label_format;return this.hasType("gauge")?e=t.gauge_label_format:this.hasType("donut")&&(e=t.donut_label_format),e},l.prototype.getGaugeLabelExtents=function(){return this.config.gauge_label_extents},l.prototype.getArcTitle=function(){return this.hasType("donut")?this.config.donut_title:""},l.prototype.updateTargetsForArc=function(t){var e,i=this,n=i.main,r=i.classChartArc.bind(i),a=i.classArcs.bind(i),o=i.classFocus.bind(i);(e=n.select("."+Y.chartArcs).selectAll("."+Y.chartArc).data(i.pie(t)).attr("class",function(t){return r(t)+o(t.data)}).enter().append("g").attr("class",r)).append("g").attr("class",a),e.append("text").attr("dy",i.hasType("gauge")?"-.1em":".35em").style("opacity",0).style("text-anchor","middle").style("pointer-events","none")},l.prototype.initArc=function(){var t=this;t.arcs=t.main.select("."+Y.chart).append("g").attr("class",Y.chartArcs).attr("transform",t.getTranslate("arc")),t.arcs.append("text").attr("class",Y.chartArcsTitle).style("text-anchor","middle").text(t.getArcTitle())},l.prototype.redrawArc=function(t,e,i){var n,r,a,o,l=this,u=l.d3,s=l.config,c=l.main,d=l.hasType("gauge");if(r=(n=c.selectAll("."+Y.arcs).selectAll("."+Y.arc).data(l.arcData.bind(l))).enter().append("path").attr("class",l.classArc.bind(l)).style("fill",function(t){return l.color(t.data)}).style("cursor",function(t){return s.interaction_enabled&&s.data_selection_isselectable(t)?"pointer":null}).each(function(t){l.isGaugeType(t.data)&&(t.startAngle=t.endAngle=s.gauge_startingAngle),this._current=t}).merge(n),d&&(o=(a=c.selectAll("."+Y.arcs).selectAll("."+Y.arcLabelLine).data(l.arcData.bind(l))).enter().append("rect").attr("class",function(t){return Y.arcLabelLine+" "+Y.target+" "+Y.target+"-"+t.data.id}).merge(a),1===l.filterTargetsToShow(l.data.targets).length?o.style("display","none"):o.style("fill",function(t){return 0<s.color_pattern.length?l.levelColor(t.data.values[0].value):l.color(t.data)}).style("display",s.gauge_labelLine_show?"":"none").each(function(t){var e=0,i=0,n=0,r="";if(l.hiddenTargetIds.indexOf(t.data.id)<0){var a=l.updateAngle(t),o=l.gaugeArcWidth/l.filterTargetsToShow(l.data.targets).length*(a.index+1),s=a.endAngle-Math.PI/2,c=l.radius-o,d=s-(0===c?0:1/c);e=l.radiusExpanded-l.radius+o,i=Math.cos(d)*c,n=Math.sin(d)*c,r="rotate("+180*s/Math.PI+", "+i+", "+n+")"}u.select(this).attr("x",i).attr("y",n).attr("width",e).attr("height",2).attr("transform",r).style("stroke-dasharray","0, "+(e+2)+", 0")})),r.attr("transform",function(t){return!l.isGaugeType(t.data)&&i?"scale(0)":""}).on("mouseover",s.interaction_enabled?function(t){var e,i;l.transiting||(e=l.updateAngle(t))&&(i=l.convertToArcData(e),l.expandArc(e.data.id),l.api.focus(e.data.id),l.toggleFocusLegend(e.data.id,!0),l.config.data_onmouseover(i,this))}:null).on("mousemove",s.interaction_enabled?function(t){var e,i=l.updateAngle(t);i&&(e=[l.convertToArcData(i)],l.showTooltip(e,this))}:null).on("mouseout",s.interaction_enabled?function(t){var e,i;l.transiting||(e=l.updateAngle(t))&&(i=l.convertToArcData(e),l.unexpandArc(e.data.id),l.api.revert(),l.revertLegend(),l.hideTooltip(),l.config.data_onmouseout(i,this))}:null).on("click",s.interaction_enabled?function(t,e){var i,n=l.updateAngle(t);n&&(i=l.convertToArcData(n),l.toggleShape&&l.toggleShape(this,i,e),l.config.data_onclick.call(l.api,i,this))}:null).each(function(){l.transiting=!0}).transition().duration(t).attrTween("d",function(i){var n,t=l.updateAngle(i);return t?(isNaN(this._current.startAngle)&&(this._current.startAngle=0),isNaN(this._current.endAngle)&&(this._current.endAngle=this._current.startAngle),n=u.interpolate(this._current,t),this._current=n(0),function(t){var e=n(t);return e.data=i.data,l.getArc(e,!0)}):function(){return"M 0 0"}}).attr("transform",i?"scale(1)":"").style("fill",function(t){return l.levelColor?l.levelColor(t.data.values[0].value):l.color(t.data.id)}).call(l.endall,function(){l.transiting=!1}),n.exit().transition().duration(e).style("opacity",0).remove(),c.selectAll("."+Y.chartArc).select("text").style("opacity",0).attr("class",function(t){return l.isGaugeType(t.data)?Y.gaugeValue:""}).text(l.textForArcLabel.bind(l)).attr("transform",l.transformForArcLabel.bind(l)).style("font-size",function(t){return l.isGaugeType(t.data)&&1===l.filterTargetsToShow(l.data.targets).length?Math.round(l.radius/5)+"px":""}).transition().duration(t).style("opacity",function(t){return l.isTargetToShow(t.data.id)&&l.isArcType(t.data)?1:0}),c.select("."+Y.chartArcsTitle).style("opacity",l.hasType("donut")||d?1:0),d){var h=0,g=l.arcs.select("g."+Y.chartArcsBackground).selectAll("path."+Y.chartArcsBackground).data(l.data.targets);g.enter().append("path").attr("class",function(t,e){return Y.chartArcsBackground+" "+Y.chartArcsBackground+"-"+e}).merge(g).attr("d",function(t){if(0<=l.hiddenTargetIds.indexOf(t.id))return"M 0 0";var e={data:[{value:s.gauge_max}],startAngle:s.gauge_startingAngle,endAngle:-1*s.gauge_startingAngle*(s.gauge_fullCircle?Math.PI:1),index:h++};return l.getArc(e,!0,!0)}),g.exit().remove(),l.arcs.select("."+Y.chartArcsGaugeUnit).attr("dy",".75em").text(s.gauge_label_show?s.gauge_units:""),l.arcs.select("."+Y.chartArcsGaugeMin).attr("dx",-1*(l.innerRadius+(l.radius-l.innerRadius)/(s.gauge_fullCircle?1:2))+"px").attr("dy","1.2em").text(s.gauge_label_show?l.textForGaugeMinMax(s.gauge_min,!1):""),l.arcs.select("."+Y.chartArcsGaugeMax).attr("dx",l.innerRadius+(l.radius-l.innerRadius)/(s.gauge_fullCircle?1:2)+"px").attr("dy","1.2em").text(s.gauge_label_show?l.textForGaugeMinMax(s.gauge_max,!0):"")}},l.prototype.initGauge=function(){var t=this.arcs;this.hasType("gauge")&&(t.append("g").attr("class",Y.chartArcsBackground),t.append("text").attr("class",Y.chartArcsGaugeUnit).style("text-anchor","middle").style("pointer-events","none"),t.append("text").attr("class",Y.chartArcsGaugeMin).style("text-anchor","middle").style("pointer-events","none"),t.append("text").attr("class",Y.chartArcsGaugeMax).style("text-anchor","middle").style("pointer-events","none"))},l.prototype.getGaugeLabelHeight=function(){return this.config.gauge_label_show?20:0},l.prototype.hasCaches=function(t){for(var e=0;e<t.length;e++)if(!(t[e]in this.cache))return!1;return!0},l.prototype.addCache=function(t,e){this.cache[t]=this.cloneTarget(e)},l.prototype.getCaches=function(t){var e,i=[];for(e=0;e<t.length;e++)t[e]in this.cache&&i.push(this.cloneTarget(this.cache[t[e]]));return i},l.prototype.categoryName=function(t){var e=this.config;return t<e.axis_x_categories.length?e.axis_x_categories[t]:t},l.prototype.generateTargetClass=function(t){return t||0===t?("-"+t).replace(/\s/g,"-"):""},l.prototype.generateClass=function(t,e){return" "+t+" "+t+this.generateTargetClass(e)},l.prototype.classText=function(t){return this.generateClass(Y.text,t.index)},l.prototype.classTexts=function(t){return this.generateClass(Y.texts,t.id)},l.prototype.classShape=function(t){return this.generateClass(Y.shape,t.index)},l.prototype.classShapes=function(t){return this.generateClass(Y.shapes,t.id)},l.prototype.classLine=function(t){return this.classShape(t)+this.generateClass(Y.line,t.id)},l.prototype.classLines=function(t){return this.classShapes(t)+this.generateClass(Y.lines,t.id)},l.prototype.classCircle=function(t){return this.classShape(t)+this.generateClass(Y.circle,t.index)},l.prototype.classCircles=function(t){return this.classShapes(t)+this.generateClass(Y.circles,t.id)},l.prototype.classBar=function(t){return this.classShape(t)+this.generateClass(Y.bar,t.index)},l.prototype.classBars=function(t){return this.classShapes(t)+this.generateClass(Y.bars,t.id)},l.prototype.classArc=function(t){return this.classShape(t.data)+this.generateClass(Y.arc,t.data.id)},l.prototype.classArcs=function(t){return this.classShapes(t.data)+this.generateClass(Y.arcs,t.data.id)},l.prototype.classArea=function(t){return this.classShape(t)+this.generateClass(Y.area,t.id)},l.prototype.classAreas=function(t){return this.classShapes(t)+this.generateClass(Y.areas,t.id)},l.prototype.classRegion=function(t,e){return this.generateClass(Y.region,e)+" "+("class"in t?t.class:"")},l.prototype.classEvent=function(t){return this.generateClass(Y.eventRect,t.index)},l.prototype.classTarget=function(t){var e=this.config.data_classes[t],i="";return e&&(i=" "+Y.target+"-"+e),this.generateClass(Y.target,t)+i},l.prototype.classFocus=function(t){return this.classFocused(t)+this.classDefocused(t)},l.prototype.classFocused=function(t){return" "+(0<=this.focusedTargetIds.indexOf(t.id)?Y.focused:"")},l.prototype.classDefocused=function(t){return" "+(0<=this.defocusedTargetIds.indexOf(t.id)?Y.defocused:"")},l.prototype.classChartText=function(t){return Y.chartText+this.classTarget(t.id)},l.prototype.classChartLine=function(t){return Y.chartLine+this.classTarget(t.id)},l.prototype.classChartBar=function(t){return Y.chartBar+this.classTarget(t.id)},l.prototype.classChartArc=function(t){return Y.chartArc+this.classTarget(t.data.id)},l.prototype.getTargetSelectorSuffix=function(t){return this.generateTargetClass(t).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g,"\\$1")},l.prototype.selectorTarget=function(t,e){return(e||"")+"."+Y.target+this.getTargetSelectorSuffix(t)},l.prototype.selectorTargets=function(t,e){var i=this;return(t=t||[]).length?t.map(function(t){return i.selectorTarget(t,e)}):null},l.prototype.selectorLegend=function(t){return"."+Y.legendItem+this.getTargetSelectorSuffix(t)},l.prototype.selectorLegends=function(t){var e=this;return t&&t.length?t.map(function(t){return e.selectorLegend(t)}):null},l.prototype.getClipPath=function(t){return"url("+(0<=window.navigator.appVersion.toLowerCase().indexOf("msie 9.")?"":document.URL.split("#")[0])+"#"+t+")"},l.prototype.appendClip=function(t,e){return t.append("clipPath").attr("id",e).append("rect")},l.prototype.getAxisClipX=function(t){var e=Math.max(30,this.margin.left);return t?-(1+e):-(e-1)},l.prototype.getAxisClipY=function(t){return t?-20:-this.margin.top},l.prototype.getXAxisClipX=function(){return this.getAxisClipX(!this.config.axis_rotated)},l.prototype.getXAxisClipY=function(){return this.getAxisClipY(!this.config.axis_rotated)},l.prototype.getYAxisClipX=function(){return this.config.axis_y_inner?-1:this.getAxisClipX(this.config.axis_rotated)},l.prototype.getYAxisClipY=function(){return this.getAxisClipY(this.config.axis_rotated)},l.prototype.getAxisClipWidth=function(t){var e=Math.max(30,this.margin.left),i=Math.max(30,this.margin.right);return t?this.width+2+e+i:this.margin.left+20},l.prototype.getAxisClipHeight=function(t){return(t?this.margin.bottom:this.margin.top+this.height)+20},l.prototype.getXAxisClipWidth=function(){return this.getAxisClipWidth(!this.config.axis_rotated)},l.prototype.getXAxisClipHeight=function(){return this.getAxisClipHeight(!this.config.axis_rotated)},l.prototype.getYAxisClipWidth=function(){return this.getAxisClipWidth(this.config.axis_rotated)+(this.config.axis_y_inner?20:0)},l.prototype.getYAxisClipHeight=function(){return this.getAxisClipHeight(this.config.axis_rotated)},l.prototype.generateColor=function(){var t=this.config,e=this.d3,n=t.data_colors,r=L(t.color_pattern)?t.color_pattern:e.schemeCategory10,a=t.data_color,o=[];return function(t){var e,i=t.id||t.data&&t.data.id||t;return n[i]instanceof Function?e=n[i](t):n[i]?e=n[i]:(o.indexOf(i)<0&&o.push(i),e=r[o.indexOf(i)%r.length],n[i]=e),a instanceof Function?a(e,t):e}},l.prototype.generateLevelColor=function(){var t=this.config,n=t.color_pattern,e=t.color_threshold,r="value"===e.unit,a=e.values&&e.values.length?e.values:[],o=e.max||100;return L(t.color_threshold)?function(t){var e,i=n[n.length-1];for(e=0;e<a.length;e++)if((r?t:100*t/o)<a[e]){i=n[e];break}return i}:null},l.prototype.getDefaultConfig=function(){var e={bindto:"#chart",svg_classname:void 0,size_width:void 0,size_height:void 0,padding_left:void 0,padding_right:void 0,padding_top:void 0,padding_bottom:void 0,resize_auto:!0,zoom_enabled:!1,zoom_initialRange:void 0,zoom_type:"scroll",zoom_disableDefaultBehavior:!1,zoom_privileged:!1,zoom_rescale:!1,zoom_onzoom:function(){},zoom_onzoomstart:function(){},zoom_onzoomend:function(){},zoom_x_min:void 0,zoom_x_max:void 0,interaction_brighten:!0,interaction_enabled:!0,onmouseover:function(){},onmouseout:function(){},onresize:function(){},onresized:function(){},oninit:function(){},onrendered:function(){},transition_duration:350,data_x:void 0,data_xs:{},data_xFormat:"%Y-%m-%d",data_xLocaltime:!0,data_xSort:!0,data_idConverter:function(t){return t},data_names:{},data_classes:{},data_groups:[],data_axes:{},data_type:void 0,data_types:{},data_labels:{},data_order:"desc",data_regions:{},data_color:void 0,data_colors:{},data_hide:!1,data_filter:void 0,data_selection_enabled:!1,data_selection_grouped:!1,data_selection_isselectable:function(){return!0},data_selection_multiple:!0,data_selection_draggable:!1,data_onclick:function(){},data_onmouseover:function(){},data_onmouseout:function(){},data_onselected:function(){},data_onunselected:function(){},data_url:void 0,data_headers:void 0,data_json:void 0,data_rows:void 0,data_columns:void 0,data_mimeType:void 0,data_keys:void 0,data_empty_label_text:"",subchart_show:!1,subchart_size_height:60,subchart_axis_x_show:!0,subchart_onbrush:function(){},color_pattern:[],color_threshold:{},legend_show:!0,legend_hide:!1,legend_position:"bottom",legend_inset_anchor:"top-left",legend_inset_x:10,legend_inset_y:0,legend_inset_step:void 0,legend_item_onclick:void 0,legend_item_onmouseover:void 0,legend_item_onmouseout:void 0,legend_equally:!1,legend_padding:0,legend_item_tile_width:10,legend_item_tile_height:10,axis_rotated:!1,axis_x_show:!0,axis_x_type:"indexed",axis_x_localtime:!0,axis_x_categories:[],axis_x_tick_centered:!1,axis_x_tick_format:void 0,axis_x_tick_culling:{},axis_x_tick_culling_max:10,axis_x_tick_count:void 0,axis_x_tick_fit:!0,axis_x_tick_values:null,axis_x_tick_rotate:0,axis_x_tick_outer:!0,axis_x_tick_multiline:!0,axis_x_tick_multilineMax:0,axis_x_tick_width:null,axis_x_max:void 0,axis_x_min:void 0,axis_x_padding:{},axis_x_height:void 0,axis_x_selection:void 0,axis_x_label:{},axis_x_inner:void 0,axis_y_show:!0,axis_y_type:void 0,axis_y_max:void 0,axis_y_min:void 0,axis_y_inverted:!1,axis_y_center:void 0,axis_y_inner:void 0,axis_y_label:{},axis_y_tick_format:void 0,axis_y_tick_outer:!0,axis_y_tick_values:null,axis_y_tick_rotate:0,axis_y_tick_count:void 0,axis_y_tick_time_type:void 0,axis_y_tick_time_interval:void 0,axis_y_padding:{},axis_y_default:void 0,axis_y2_show:!1,axis_y2_max:void 0,axis_y2_min:void 0,axis_y2_inverted:!1,axis_y2_center:void 0,axis_y2_inner:void 0,axis_y2_label:{},axis_y2_tick_format:void 0,axis_y2_tick_outer:!0,axis_y2_tick_values:null,axis_y2_tick_count:void 0,axis_y2_padding:{},axis_y2_default:void 0,grid_x_show:!1,grid_x_type:"tick",grid_x_lines:[],grid_y_show:!1,grid_y_lines:[],grid_y_ticks:10,grid_focus_show:!0,grid_lines_front:!0,point_show:!0,point_r:2.5,point_sensitivity:10,point_focus_expand_enabled:!0,point_focus_expand_r:void 0,point_select_r:void 0,line_connectNull:!1,line_step_type:"step",bar_width:void 0,bar_width_ratio:.6,bar_width_max:void 0,bar_zerobased:!0,bar_space:0,area_zerobased:!0,area_above:!1,pie_label_show:!0,pie_label_format:void 0,pie_label_threshold:.05,pie_label_ratio:void 0,pie_expand:{},pie_expand_duration:50,gauge_fullCircle:!1,gauge_label_show:!0,gauge_labelLine_show:!0,gauge_label_format:void 0,gauge_min:0,gauge_max:100,gauge_startingAngle:-1*Math.PI/2,gauge_label_extents:void 0,gauge_units:void 0,gauge_width:void 0,gauge_arcs_minWidth:5,gauge_expand:{},gauge_expand_duration:50,donut_label_show:!0,donut_label_format:void 0,donut_label_threshold:.05,donut_label_ratio:void 0,donut_width:void 0,donut_title:"",donut_expand:{},donut_expand_duration:50,spline_interpolation_type:"cardinal",regions:[],tooltip_show:!0,tooltip_grouped:!0,tooltip_order:void 0,tooltip_format_title:void 0,tooltip_format_name:void 0,tooltip_format_value:void 0,tooltip_position:void 0,tooltip_contents:function(t,e,i,n){return this.getTooltipContent?this.getTooltipContent(t,e,i,n):""},tooltip_init_show:!1,tooltip_init_x:0,tooltip_init_position:{top:"0px",left:"50px"},tooltip_onshow:function(){},tooltip_onhide:function(){},title_text:void 0,title_padding:{top:0,right:0,bottom:0,left:0},title_position:"top-center"};return Object.keys(this.additionalConfig).forEach(function(t){e[t]=this.additionalConfig[t]},this),e},l.prototype.additionalConfig={},l.prototype.loadConfig=function(e){var i,n,r,a=this.config;Object.keys(a).forEach(function(t){i=e,n=t.split("_"),r=function t(){var e=n.shift();return e&&i&&"object"===s(i)&&e in i?(i=i[e],t()):e?void 0:i}(),k(r)&&(a[t]=r)})},l.prototype.convertUrlToData=function(t,e,i,n,r){var a,o,s=this,c=e||"csv";o="json"===c?(a=s.d3.json,s.convertJsonToData):(a="tsv"===c?s.d3.tsv:s.d3.csv,s.convertXsvToData),a(t,i).then(function(t){r.call(s,o.call(s,t,n))}).catch(function(t){throw t})},l.prototype.convertXsvToData=function(t){var e=t.columns;return 0===t.length?{keys:e,rows:[e.reduce(function(t,e){return Object.assign(t,(r=null,(n=e)in(i={})?Object.defineProperty(i,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):i[n]=r,i));var i,n,r},{})]}:{keys:e,rows:[].concat(t)}},l.prototype.convertJsonToData=function(e,t){var r,a=this,o=[];return t?(t.x?(r=t.value.concat(t.x),a.config.data_x=t.x):r=t.value,o.push(r),e.forEach(function(i){var n=[];r.forEach(function(t){var e=a.findValueInJson(i,t);v(e)&&(e=null),n.push(e)}),o.push(n)}),a.convertRowsToData(o)):(Object.keys(e).forEach(function(t){o.push([t].concat(e[t]))}),a.convertColumnsToData(o))},l.prototype.findValueInJson=function(t,e){for(var i=(e=(e=e.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),n=0;n<i.length;++n){var r=i[n];if(!(r in t))return;t=t[r]}return t},l.prototype.convertRowsToData=function(t){for(var e=[],i=t[0],n=1;n<t.length;n++){for(var r={},a=0;a<t[n].length;a++){if(v(t[n][a]))throw new Error("Source data is missing a component at ("+n+","+a+")!");r[i[a]]=t[n][a]}e.push(r)}return{keys:i,rows:e}},l.prototype.convertColumnsToData=function(t){for(var e=[],i=[],n=0;n<t.length;n++){for(var r=t[n][0],a=1;a<t[n].length;a++){if(v(e[a-1])&&(e[a-1]={}),v(t[n][a]))throw new Error("Source data is missing a component at ("+n+","+a+")!");e[a-1][r]=t[n][a]}i.push(r)}return{keys:i,rows:e}},l.prototype.convertDataToTargets=function(t,n){var e,i,r,a,c=this,d=c.config;return o(t)?a=Object.keys(t[0]):(a=t.keys,t=t.rows),i=a.filter(c.isNotX,c),r=a.filter(c.isX,c),i.forEach(function(i){var e=c.getXKey(i);c.isCustomX()||c.isTimeSeries()?0<=r.indexOf(e)?c.data.xs[i]=(n&&c.data.xs[i]?c.data.xs[i]:[]).concat(t.map(function(t){return t[e]}).filter(P).map(function(t,e){return c.generateTargetX(t,i,e)})):d.data_x?c.data.xs[i]=c.getOtherTargetXs():L(d.data_xs)&&(c.data.xs[i]=c.getXValuesOfXKey(e,c.data.targets)):c.data.xs[i]=t.map(function(t,e){return e})}),i.forEach(function(t){if(!c.data.xs[t])throw new Error('x is not defined for id = "'+t+'".')}),(e=i.map(function(a,o){var s=d.data_idConverter(a);return{id:s,id_org:a,values:t.map(function(t,e){var i,n=t[c.getXKey(a)],r=null===t[a]||isNaN(t[a])?null:+t[a];return c.isCustomX()&&c.isCategorized()&&!v(n)?(0===o&&0===e&&(d.axis_x_categories=[]),-1===(i=d.axis_x_categories.indexOf(n))&&(i=d.axis_x_categories.length,d.axis_x_categories.push(n))):i=c.generateTargetX(n,a,e),(v(t[a])||c.data.xs[a].length<=e)&&(i=void 0),{x:i,value:r,id:s}}).filter(function(t){return k(t.x)})}})).forEach(function(t){var e;d.data_xSort&&(t.values=t.values.sort(function(t,e){return(t.x||0===t.x?t.x:1/0)-(e.x||0===e.x?e.x:1/0)})),e=0,t.values.forEach(function(t){t.index=e++}),c.data.xs[t.id].sort(function(t,e){return t-e})}),c.hasNegativeValue=c.hasNegativeValueInTargets(e),c.hasPositiveValue=c.hasPositiveValueInTargets(e),d.data_type&&c.setTargetType(c.mapToIds(e).filter(function(t){return!(t in d.data_types)}),d.data_type),e.forEach(function(t){c.addCache(t.id_org,t)}),e},l.prototype.isX=function(t){var e,i,n,r=this.config;return r.data_x&&t===r.data_x||L(r.data_xs)&&(e=r.data_xs,i=t,n=!1,Object.keys(e).forEach(function(t){e[t]===i&&(n=!0)}),n)},l.prototype.isNotX=function(t){return!this.isX(t)},l.prototype.getXKey=function(t){var e=this.config;return e.data_x?e.data_x:L(e.data_xs)?e.data_xs[t]:null},l.prototype.getXValuesOfXKey=function(e,t){var i,n=this;return(t&&L(t)?n.mapToIds(t):[]).forEach(function(t){n.getXKey(t)===e&&(i=n.data.xs[t])}),i},l.prototype.getXValue=function(t,e){return t in this.data.xs&&this.data.xs[t]&&P(this.data.xs[t][e])?this.data.xs[t][e]:e},l.prototype.getOtherTargetXs=function(){var t=Object.keys(this.data.xs);return t.length?this.data.xs[t[0]]:null},l.prototype.getOtherTargetX=function(t){var e=this.getOtherTargetXs();return e&&t<e.length?e[t]:null},l.prototype.addXs=function(e){var i=this;Object.keys(e).forEach(function(t){i.config.data_xs[t]=e[t]})},l.prototype.addName=function(t){var e;return t&&(e=this.config.data_names[t.id],t.name=void 0!==e?e:t.id),t},l.prototype.getValueOnIndex=function(t,e){var i=t.filter(function(t){return t.index===e});return i.length?i[0]:null},l.prototype.updateTargetX=function(t,n){var r=this;t.forEach(function(i){i.values.forEach(function(t,e){t.x=r.generateTargetX(n[e],i.id,e)}),r.data.xs[i.id]=n})},l.prototype.updateTargetXs=function(t,e){var i=this;t.forEach(function(t){e[t.id]&&i.updateTargetX([t],e[t.id])})},l.prototype.generateTargetX=function(t,e,i){var n=this;return n.isTimeSeries()?t?n.parseDate(t):n.parseDate(n.getXValue(e,i)):n.isCustomX()&&!n.isCategorized()?P(t)?+t:n.getXValue(e,i):i},l.prototype.cloneTarget=function(t){return{id:t.id,id_org:t.id_org,values:t.values.map(function(t){return{x:t.x,value:t.value,id:t.id}})}},l.prototype.getMaxDataCount=function(){return this.d3.max(this.data.targets,function(t){return t.values.length})},l.prototype.mapToIds=function(t){return t.map(function(t){return t.id})},l.prototype.mapToTargetIds=function(t){return t?[].concat(t):this.mapToIds(this.data.targets)},l.prototype.hasTarget=function(t,e){var i,n=this.mapToIds(t);for(i=0;i<n.length;i++)if(n[i]===e)return!0;return!1},l.prototype.isTargetToShow=function(t){return this.hiddenTargetIds.indexOf(t)<0},l.prototype.isLegendToShow=function(t){return this.hiddenLegendIds.indexOf(t)<0},l.prototype.filterTargetsToShow=function(t){var e=this;return t.filter(function(t){return e.isTargetToShow(t.id)})},l.prototype.mapTargetsToUniqueXs=function(t){var e=this.d3.set(this.d3.merge(t.map(function(t){return t.values.map(function(t){return+t.x})}))).values();return(e=this.isTimeSeries()?e.map(function(t){return new Date(+t)}):e.map(function(t){return+t})).sort(function(t,e){return t<e?-1:e<t?1:e<=t?0:NaN})},l.prototype.addHiddenTargetIds=function(t){t=t instanceof Array?t:new Array(t);for(var e=0;e<t.length;e++)this.hiddenTargetIds.indexOf(t[e])<0&&(this.hiddenTargetIds=this.hiddenTargetIds.concat(t[e]))},l.prototype.removeHiddenTargetIds=function(e){this.hiddenTargetIds=this.hiddenTargetIds.filter(function(t){return e.indexOf(t)<0})},l.prototype.addHiddenLegendIds=function(t){t=t instanceof Array?t:new Array(t);for(var e=0;e<t.length;e++)this.hiddenLegendIds.indexOf(t[e])<0&&(this.hiddenLegendIds=this.hiddenLegendIds.concat(t[e]))},l.prototype.removeHiddenLegendIds=function(e){this.hiddenLegendIds=this.hiddenLegendIds.filter(function(t){return e.indexOf(t)<0})},l.prototype.getValuesAsIdKeyed=function(t){var i={};return t.forEach(function(e){i[e.id]=[],e.values.forEach(function(t){i[e.id].push(t.value)})}),i},l.prototype.checkValueInTargets=function(t,e){var i,n,r,a=Object.keys(t);for(i=0;i<a.length;i++)for(r=t[a[i]].values,n=0;n<r.length;n++)if(e(r[n].value))return!0;return!1},l.prototype.hasNegativeValueInTargets=function(t){return this.checkValueInTargets(t,function(t){return t<0})},l.prototype.hasPositiveValueInTargets=function(t){return this.checkValueInTargets(t,function(t){return 0<t})},l.prototype.isOrderDesc=function(){var t=this.config;return"string"==typeof t.data_order&&"desc"===t.data_order.toLowerCase()},l.prototype.isOrderAsc=function(){var t=this.config;return"string"==typeof t.data_order&&"asc"===t.data_order.toLowerCase()},l.prototype.getOrderFunction=function(){var t=this.config,r=this.isOrderAsc(),e=this.isOrderDesc();if(r||e){var a=function(t,e){return t+Math.abs(e.value)};return function(t,e){var i=t.values.reduce(a,0),n=e.values.reduce(a,0);return r?n-i:i-n}}if(h(t.data_order))return t.data_order;if(o(t.data_order)){var i=t.data_order;return function(t,e){return i.indexOf(t.id)-i.indexOf(e.id)}}},l.prototype.orderTargets=function(t){var e=this.getOrderFunction();return e&&t.sort(e),t},l.prototype.filterByX=function(t,e){return this.d3.merge(t.map(function(t){return t.values})).filter(function(t){return t.x-e==0})},l.prototype.filterRemoveNull=function(t){return t.filter(function(t){return P(t.value)})},l.prototype.filterByXDomain=function(t,e){return t.map(function(t){return{id:t.id,id_org:t.id_org,values:t.values.filter(function(t){return e[0]<=t.x&&t.x<=e[1]})}})},l.prototype.hasDataLabel=function(){var t=this.config;return!("boolean"!=typeof t.data_labels||!t.data_labels)||!("object"!==s(t.data_labels)||!L(t.data_labels))},l.prototype.getDataLabelLength=function(t,e,i){var n=this,r=[0,0];return n.selectChart.select("svg").selectAll(".dummy").data([t,e]).enter().append("text").text(function(t){return n.dataLabelFormat(t.id)(t)}).each(function(t,e){r[e]=1.3*this.getBoundingClientRect()[i]}).remove(),r},l.prototype.isNoneArc=function(t){return this.hasTarget(this.data.targets,t.id)},l.prototype.isArc=function(t){return"data"in t&&this.hasTarget(this.data.targets,t.data.id)},l.prototype.findClosestFromTargets=function(t,e){var i,n=this;return i=t.map(function(t){return n.findClosest(t.values,e)}),n.findClosest(i,e)},l.prototype.findClosest=function(t,i){var n,r=this,a=r.config.point_sensitivity;return t.filter(function(t){return t&&r.isBarType(t.id)}).forEach(function(t){var e=r.main.select("."+Y.bars+r.getTargetSelectorSuffix(t.id)+" ."+Y.bar+"-"+t.index).node();!n&&r.isWithinBar(r.d3.mouse(e),e)&&(n=t)}),t.filter(function(t){return t&&!r.isBarType(t.id)}).forEach(function(t){var e=r.dist(t,i);e<a&&(a=e,n=t)}),n},l.prototype.dist=function(t,e){var i=this.config,n=i.axis_rotated?1:0,r=i.axis_rotated?0:1,a=this.circleY(t,t.index),o=this.x(t.x);return Math.sqrt(Math.pow(o-e[n],2)+Math.pow(a-e[r],2))},l.prototype.convertValuesToStep=function(t){var e,i=[].concat(t);if(!this.isCategorized())return t;for(e=t.length+1;0<e;e--)i[e]=i[e-1];return i[0]={x:i[0].x-1,value:i[0].value,id:i[0].id},i[t.length+1]={x:i[t.length].x+1,value:i[t.length].value,id:i[t.length].id},i},l.prototype.updateDataAttributes=function(t,e){var i=this.config["data_"+t];return void 0===e||(Object.keys(e).forEach(function(t){i[t]=e[t]}),this.redraw({withLegend:!0})),i},l.prototype.load=function(i,n){var r=this;i&&(n.filter&&(i=i.filter(n.filter)),(n.type||n.types)&&i.forEach(function(t){var e=n.types&&n.types[t.id]?n.types[t.id]:n.type;r.setTargetType(t.id,e)}),r.data.targets.forEach(function(t){for(var e=0;e<i.length;e++)if(t.id===i[e].id){t.values=i[e].values,i.splice(e,1);break}}),r.data.targets=r.data.targets.concat(i)),r.updateTargets(r.data.targets),r.redraw({withUpdateOrgXDomain:!0,withUpdateXDomain:!0,withLegend:!0}),n.done&&n.done()},l.prototype.loadFromArgs=function(e){var i=this;e.data?i.load(i.convertDataToTargets(e.data),e):e.url?i.convertUrlToData(e.url,e.mimeType,e.headers,e.keys,function(t){i.load(i.convertDataToTargets(t),e)}):e.json?i.load(i.convertDataToTargets(i.convertJsonToData(e.json,e.keys)),e):e.rows?i.load(i.convertDataToTargets(i.convertRowsToData(e.rows)),e):e.columns?i.load(i.convertDataToTargets(i.convertColumnsToData(e.columns)),e):i.load(null,e)},l.prototype.unload=function(t,e){var i=this;e||(e=function(){}),(t=t.filter(function(t){return i.hasTarget(i.data.targets,t)}))&&0!==t.length?(i.svg.selectAll(t.map(function(t){return i.selectorTarget(t)})).transition().style("opacity",0).remove().call(i.endall,e),t.forEach(function(e){i.withoutFadeIn[e]=!1,i.legend&&i.legend.selectAll("."+Y.legendItem+i.getTargetSelectorSuffix(e)).remove(),i.data.targets=i.data.targets.filter(function(t){return t.id!==e})})):e()},l.prototype.getYDomainMin=function(t){var e,i,n,r,a,o,s=this,c=s.config,d=s.mapToIds(t),l=s.getValuesAsIdKeyed(t);if(0<c.data_groups.length)for(o=s.hasNegativeValueInTargets(t),e=0;e<c.data_groups.length;e++)if(0!==(r=c.data_groups[e].filter(function(t){return 0<=d.indexOf(t)})).length)for(n=r[0],o&&l[n]&&l[n].forEach(function(t,e){l[n][e]=t<0?t:0}),i=1;i<r.length;i++)a=r[i],l[a]&&l[a].forEach(function(t,e){s.axis.getId(a)!==s.axis.getId(n)||!l[n]||o&&0<+t||(l[n][e]+=+t)});return s.d3.min(Object.keys(l).map(function(t){return s.d3.min(l[t])}))},l.prototype.getYDomainMax=function(t){var e,i,n,r,a,o,s=this,c=s.config,d=s.mapToIds(t),l=s.getValuesAsIdKeyed(t);if(0<c.data_groups.length)for(o=s.hasPositiveValueInTargets(t),e=0;e<c.data_groups.length;e++)if(0!==(r=c.data_groups[e].filter(function(t){return 0<=d.indexOf(t)})).length)for(n=r[0],o&&l[n]&&l[n].forEach(function(t,e){l[n][e]=0<t?t:0}),i=1;i<r.length;i++)a=r[i],l[a]&&l[a].forEach(function(t,e){s.axis.getId(a)!==s.axis.getId(n)||!l[n]||o&&+t<0||(l[n][e]+=+t)});return s.d3.max(Object.keys(l).map(function(t){return s.d3.max(l[t])}))},l.prototype.getYDomain=function(t,e,i){var n,r,a,o,s,c,d,l,u,h,g=this,p=g.config,f=t.filter(function(t){return g.axis.getId(t.id)===e}),_=i?g.filterByXDomain(f,i):f,x="y2"===e?p.axis_y2_min:p.axis_y_min,y="y2"===e?p.axis_y2_max:p.axis_y_max,m=g.getYDomainMin(_),S=g.getYDomainMax(_),w="y2"===e?p.axis_y2_center:p.axis_y_center,v=g.hasType("bar",_)&&p.bar_zerobased||g.hasType("area",_)&&p.area_zerobased,b="y2"===e?p.axis_y2_inverted:p.axis_y_inverted,A=g.hasDataLabel()&&p.axis_rotated,T=g.hasDataLabel()&&!p.axis_rotated;return m=P(x)?x:P(y)?m<y?m:y-10:m,S=P(y)?y:P(x)?x<S?S:x+10:S,0===_.length?"y2"===e?g.y2.domain():g.y.domain():(isNaN(m)&&(m=0),isNaN(S)&&(S=m),m===S&&(m<0?S=0:m=0),u=0<=m&&0<=S,h=m<=0&&S<=0,(P(x)&&u||P(y)&&h)&&(v=!1),v&&(u&&(m=0),h&&(S=0)),a=o=.1*(r=Math.abs(S-m)),void 0!==w&&(S=w+(s=Math.max(Math.abs(m),Math.abs(S))),m=w-s),A?(c=g.getDataLabelLength(m,S,"width"),d=R(g.y.range()),a+=r*((l=[c[0]/d,c[1]/d])[1]/(1-l[0]-l[1])),o+=r*(l[0]/(1-l[0]-l[1]))):T&&(c=g.getDataLabelLength(m,S,"height"),a+=g.axis.convertPixelsToAxisPadding(c[1],r),o+=g.axis.convertPixelsToAxisPadding(c[0],r)),"y"===e&&L(p.axis_y_padding)&&(a=g.axis.getPadding(p.axis_y_padding,"top",a,r),o=g.axis.getPadding(p.axis_y_padding,"bottom",o,r)),"y2"===e&&L(p.axis_y2_padding)&&(a=g.axis.getPadding(p.axis_y2_padding,"top",a,r),o=g.axis.getPadding(p.axis_y2_padding,"bottom",o,r)),v&&(u&&(o=m),h&&(a=-S)),n=[m-o,S+a],b?n.reverse():n)},l.prototype.getXDomainMin=function(t){var e=this,i=e.config;return k(i.axis_x_min)?e.isTimeSeries()?this.parseDate(i.axis_x_min):i.axis_x_min:e.d3.min(t,function(t){return e.d3.min(t.values,function(t){return t.x})})},l.prototype.getXDomainMax=function(t){var e=this,i=e.config;return k(i.axis_x_max)?e.isTimeSeries()?this.parseDate(i.axis_x_max):i.axis_x_max:e.d3.max(t,function(t){return e.d3.max(t.values,function(t){return t.x})})},l.prototype.getXDomainPadding=function(t){var e,i,n,r,a=this.config,o=t[1]-t[0];return i=this.isCategorized()?0:this.hasType("bar")?1<(e=this.getMaxDataCount())?o/(e-1)/2:.5:.01*o,"object"===s(a.axis_x_padding)&&L(a.axis_x_padding)?(n=P(a.axis_x_padding.left)?a.axis_x_padding.left:i,r=P(a.axis_x_padding.right)?a.axis_x_padding.right:i):n=r="number"==typeof a.axis_x_padding?a.axis_x_padding:i,{left:n,right:r}},l.prototype.getXDomain=function(t){var e=this,i=[e.getXDomainMin(t),e.getXDomainMax(t)],n=i[0],r=i[1],a=e.getXDomainPadding(i),o=0,s=0;return n-r!=0||e.isCategorized()||(r=e.isTimeSeries()?(n=new Date(.5*n.getTime()),new Date(1.5*r.getTime())):(n=0===n?1:.5*n,0===r?-1:1.5*r)),(n||0===n)&&(o=e.isTimeSeries()?new Date(n.getTime()-a.left):n-a.left),(r||0===r)&&(s=e.isTimeSeries()?new Date(r.getTime()+a.right):r+a.right),[o,s]},l.prototype.updateXDomain=function(t,e,i,n,r){var a=this,o=a.config;return i&&(a.x.domain(r||a.d3.extent(a.getXDomain(t))),a.orgXDomain=a.x.domain(),o.zoom_enabled&&a.zoom.update(),a.subX.domain(a.x.domain()),a.brush&&a.brush.updateScale(a.subX)),e&&a.x.domain(r||(!a.brush||a.brush.empty()?a.orgXDomain:a.brush.selectionAsValue())),n&&a.x.domain(a.trimXDomain(a.x.orgDomain())),a.x.domain()},l.prototype.trimXDomain=function(t){var e=this.getZoomDomain(),i=e[0],n=e[1];return t[0]<=i&&(t[1]=+t[1]+(i-t[0]),t[0]=i),n<=t[1]&&(t[0]=+t[0]-(t[1]-n),t[1]=n),t},l.prototype.drag=function(t){var e,i,n,r,h,g,p,f,_=this,a=_.config,o=_.main,x=_.d3;_.hasArcType()||a.data_selection_enabled&&a.data_selection_multiple&&(e=_.dragStart[0],i=_.dragStart[1],n=t[0],r=t[1],h=Math.min(e,n),g=Math.max(e,n),p=a.data_selection_grouped?_.margin.top:Math.min(i,r),f=a.data_selection_grouped?_.height:Math.max(i,r),o.select("."+Y.dragarea).attr("x",h).attr("y",p).attr("width",g-h).attr("height",f-p),o.selectAll("."+Y.shapes).selectAll("."+Y.shape).filter(function(t){return a.data_selection_isselectable(t)}).each(function(t,e){var i,n,r,a,o,s,c=x.select(this),d=c.classed(Y.SELECTED),l=c.classed(Y.INCLUDED),u=!1;if(c.classed(Y.circle))i=1*c.attr("cx"),n=1*c.attr("cy"),o=_.togglePoint,u=h<i&&i<g&&p<n&&n<f;else{if(!c.classed(Y.bar))return;i=(s=y(this)).x,n=s.y,r=s.width,a=s.height,o=_.togglePath,u=!(g<i||i+r<h||f<n||n+a<p)}u^l&&(c.classed(Y.INCLUDED,!l),c.classed(Y.SELECTED,!d),o.call(_,!d,c,t,e))}))},l.prototype.dragstart=function(t){var e=this,i=e.config;e.hasArcType()||i.data_selection_enabled&&(e.dragStart=t,e.main.select("."+Y.chart).append("rect").attr("class",Y.dragarea).style("opacity",.1),e.dragging=!0)},l.prototype.dragend=function(){var t=this,e=t.config;t.hasArcType()||e.data_selection_enabled&&(t.main.select("."+Y.dragarea).transition().duration(100).style("opacity",0).remove(),t.main.selectAll("."+Y.shape).classed(Y.INCLUDED,!1),t.dragging=!1)},l.prototype.getYFormat=function(t){var n=this,r=t&&!n.hasType("gauge")?n.defaultArcValueFormat:n.yFormat,a=t&&!n.hasType("gauge")?n.defaultArcValueFormat:n.y2Format;return function(t,e,i){return("y2"===n.axis.getId(i)?a:r).call(n,t,e)}},l.prototype.yFormat=function(t){var e=this.config;return(e.axis_y_tick_format?e.axis_y_tick_format:this.defaultValueFormat)(t)},l.prototype.y2Format=function(t){var e=this.config;return(e.axis_y2_tick_format?e.axis_y2_tick_format:this.defaultValueFormat)(t)},l.prototype.defaultValueFormat=function(t){return P(t)?+t:""},l.prototype.defaultArcValueFormat=function(t,e){return(100*e).toFixed(1)+"%"},l.prototype.dataLabelFormat=function(t){var e=this.config.data_labels,i=function(t){return P(t)?+t:""};return"function"==typeof e.format?e.format:"object"===s(e.format)?e.format[t]?!0===e.format[t]?i:e.format[t]:function(){return""}:i},l.prototype.initGrid=function(){var t=this,e=t.config,i=t.d3;t.grid=t.main.append("g").attr("clip-path",t.clipPathForGrid).attr("class",Y.grid),e.grid_x_show&&t.grid.append("g").attr("class",Y.xgrids),e.grid_y_show&&t.grid.append("g").attr("class",Y.ygrids),e.grid_focus_show&&t.grid.append("g").attr("class",Y.xgridFocus).append("line").attr("class",Y.xgridFocus),t.xgrid=i.selectAll([]),e.grid_lines_front||t.initGridLines()},l.prototype.initGridLines=function(){var t=this,e=t.d3;t.gridLines=t.main.append("g").attr("clip-path",t.clipPathForGrid).attr("class",Y.grid+" "+Y.gridLines),t.gridLines.append("g").attr("class",Y.xgridLines),t.gridLines.append("g").attr("class",Y.ygridLines),t.xgridLines=e.selectAll([])},l.prototype.updateXGrid=function(t){var e=this,i=e.config,n=e.d3,r=e.generateGridData(i.grid_x_type,e.x),a=e.isCategorized()?e.xAxis.tickOffset():0;e.xgridAttr=i.axis_rotated?{x1:0,x2:e.width,y1:function(t){return e.x(t)-a},y2:function(t){return e.x(t)-a}}:{x1:function(t){return e.x(t)+a},x2:function(t){return e.x(t)+a},y1:0,y2:e.height},e.xgridAttr.opacity=function(){return+n.select(this).attr(i.axis_rotated?"y1":"x1")===(i.axis_rotated?e.height:0)?0:1};var o=e.main.select("."+Y.xgrids).selectAll("."+Y.xgrid).data(r),s=o.enter().append("line").attr("class",Y.xgrid).attr("x1",e.xgridAttr.x1).attr("x2",e.xgridAttr.x2).attr("y1",e.xgridAttr.y1).attr("y2",e.xgridAttr.y2).style("opacity",0);e.xgrid=s.merge(o),t||e.xgrid.attr("x1",e.xgridAttr.x1).attr("x2",e.xgridAttr.x2).attr("y1",e.xgridAttr.y1).attr("y2",e.xgridAttr.y2).style("opacity",e.xgridAttr.opacity),o.exit().remove()},l.prototype.updateYGrid=function(){var t=this,e=t.config,i=t.yAxis.tickValues()||t.y.ticks(e.grid_y_ticks),n=t.main.select("."+Y.ygrids).selectAll("."+Y.ygrid).data(i),r=n.enter().append("line").attr("class",Y.ygrid);t.ygrid=r.merge(n),t.ygrid.attr("x1",e.axis_rotated?t.y:0).attr("x2",e.axis_rotated?t.y:t.width).attr("y1",e.axis_rotated?0:t.y).attr("y2",e.axis_rotated?t.height:t.y),n.exit().remove(),t.smoothLines(t.ygrid,"grid")},l.prototype.gridTextAnchor=function(t){return t.position?t.position:"end"},l.prototype.gridTextDx=function(t){return"start"===t.position?4:"middle"===t.position?0:-4},l.prototype.xGridTextX=function(t){return"start"===t.position?-this.height:"middle"===t.position?-this.height/2:0},l.prototype.yGridTextX=function(t){return"start"===t.position?0:"middle"===t.position?this.width/2:this.width},l.prototype.updateGrid=function(t){var e,i,n,r,a=this,o=a.main,s=a.config,c=a.xv.bind(a),d=a.yv.bind(a),l=a.xGridTextX.bind(a),u=a.yGridTextX.bind(a);a.grid.style("visibility",a.hasArcType()?"hidden":"visible"),o.select("line."+Y.xgridFocus).style("visibility","hidden"),s.grid_x_show&&a.updateXGrid(),(i=(e=o.select("."+Y.xgridLines).selectAll("."+Y.xgridLine).data(s.grid_x_lines)).enter().append("g").attr("class",function(t){return Y.xgridLine+(t.class?" "+t.class:"")})).append("line").attr("x1",s.axis_rotated?0:c).attr("x2",s.axis_rotated?a.width:c).attr("y1",s.axis_rotated?c:0).attr("y2",s.axis_rotated?c:a.height).style("opacity",0),i.append("text").attr("text-anchor",a.gridTextAnchor).attr("transform",s.axis_rotated?"":"rotate(-90)").attr("x",s.axis_rotated?u:l).attr("y",c).attr("dx",a.gridTextDx).attr("dy",-5).style("opacity",0),a.xgridLines=i.merge(e),e.exit().transition().duration(t).style("opacity",0).remove(),s.grid_y_show&&a.updateYGrid(),(r=(n=o.select("."+Y.ygridLines).selectAll("."+Y.ygridLine).data(s.grid_y_lines)).enter().append("g").attr("class",function(t){return Y.ygridLine+(t.class?" "+t.class:"")})).append("line").attr("x1",s.axis_rotated?d:0).attr("x2",s.axis_rotated?d:a.width).attr("y1",s.axis_rotated?0:d).attr("y2",s.axis_rotated?a.height:d).style("opacity",0),r.append("text").attr("text-anchor",a.gridTextAnchor).attr("transform",s.axis_rotated?"rotate(-90)":"").attr("x",s.axis_rotated?l:u).attr("y",d).attr("dx",a.gridTextDx).attr("dy",-5).style("opacity",0),a.ygridLines=r.merge(n),a.ygridLines.select("line").transition().duration(t).attr("x1",s.axis_rotated?d:0).attr("x2",s.axis_rotated?d:a.width).attr("y1",s.axis_rotated?0:d).attr("y2",s.axis_rotated?a.height:d).style("opacity",1),a.ygridLines.select("text").transition().duration(t).attr("x",s.axis_rotated?a.xGridTextX.bind(a):a.yGridTextX.bind(a)).attr("y",d).text(function(t){return t.text}).style("opacity",1),n.exit().transition().duration(t).style("opacity",0).remove()},l.prototype.redrawGrid=function(t,e){var i=this,n=i.config,r=i.xv.bind(i),a=i.xgridLines.select("line"),o=i.xgridLines.select("text");return[(t?a.transition(e):a).attr("x1",n.axis_rotated?0:r).attr("x2",n.axis_rotated?i.width:r).attr("y1",n.axis_rotated?r:0).attr("y2",n.axis_rotated?r:i.height).style("opacity",1),(t?o.transition(e):o).attr("x",n.axis_rotated?i.yGridTextX.bind(i):i.xGridTextX.bind(i)).attr("y",r).text(function(t){return t.text}).style("opacity",1)]},l.prototype.showXGridFocus=function(t){var e=this,i=e.config,n=t.filter(function(t){return t&&P(t.value)}),r=e.main.selectAll("line."+Y.xgridFocus),a=e.xx.bind(e);i.tooltip_show&&(e.hasType("scatter")||e.hasArcType()||(r.style("visibility","visible").data([n[0]]).attr(i.axis_rotated?"y1":"x1",a).attr(i.axis_rotated?"y2":"x2",a),e.smoothLines(r,"grid")))},l.prototype.hideXGridFocus=function(){this.main.select("line."+Y.xgridFocus).style("visibility","hidden")},l.prototype.updateXgridFocus=function(){var t=this.config;this.main.select("line."+Y.xgridFocus).attr("x1",t.axis_rotated?0:-10).attr("x2",t.axis_rotated?this.width:-10).attr("y1",t.axis_rotated?-10:0).attr("y2",t.axis_rotated?-10:this.height)},l.prototype.generateGridData=function(t,e){var i,n,r,a,o=[],s=this.main.select("."+Y.axisX).selectAll(".tick").size();if("year"===t)for(n=(i=this.getXDomain())[0].getFullYear(),r=i[1].getFullYear(),a=n;a<=r;a++)o.push(new Date(a+"-01-01 00:00:00"));else(o=e.ticks(10)).length>s&&(o=o.filter(function(t){return(""+t).indexOf(".")<0}));return o},l.prototype.getGridFilterToRemove=function(t){return t?function(e){var i=!1;return[].concat(t).forEach(function(t){("value"in t&&e.value===t.value||"class"in t&&e.class===t.class)&&(i=!0)}),i}:function(){return!0}},l.prototype.removeGridLines=function(t,e){var i=this.config,n=this.getGridFilterToRemove(t),r=function(t){return!n(t)},a=e?Y.xgridLines:Y.ygridLines,o=e?Y.xgridLine:Y.ygridLine;this.main.select("."+a).selectAll("."+o).filter(n).transition().duration(i.transition_duration).style("opacity",0).remove(),e?i.grid_x_lines=i.grid_x_lines.filter(r):i.grid_y_lines=i.grid_y_lines.filter(r)},l.prototype.initEventRect=function(){var t=this,e=t.config;t.main.select("."+Y.chart).append("g").attr("class",Y.eventRects).style("fill-opacity",0),t.eventRect=t.main.select("."+Y.eventRects).append("rect").attr("class",Y.eventRect),e.zoom_enabled&&t.zoom&&(t.eventRect.call(t.zoom).on("dblclick.zoom",null),e.zoom_initialRange&&t.eventRect.transition().duration(0).call(t.zoom.transform,t.zoomTransform(e.zoom_initialRange)))},l.prototype.redrawEventRect=function(){var t,e,r=this,a=r.d3,o=r.config;function s(){r.svg.select("."+Y.eventRect).style("cursor",null),r.hideXGridFocus(),r.hideTooltip(),r.unexpandCircles(),r.unexpandBars()}t=r.width,e=r.height,r.main.select("."+Y.eventRects).style("cursor",o.zoom_enabled?o.axis_rotated?"ns-resize":"ew-resize":null),r.eventRect.attr("x",0).attr("y",0).attr("width",t).attr("height",e).on("mouseout",o.interaction_enabled?function(){o&&(r.hasArcType()||s())}:null).on("mousemove",o.interaction_enabled?function(){var t,e,i,n;r.dragging||r.hasArcType(t)||(t=r.filterTargetsToShow(r.data.targets),e=a.mouse(this),i=r.findClosestFromTargets(t,e),!r.mouseover||i&&i.id===r.mouseover.id||(o.data_onmouseout.call(r.api,r.mouseover),r.mouseover=void 0),i?(n=(r.isScatterType(i)||!o.tooltip_grouped?[i]:r.filterByX(t,i.x)).map(function(t){return r.addName(t)}),r.showTooltip(n,this),o.point_focus_expand_enabled&&(r.unexpandCircles(),n.forEach(function(t){r.expandCircles(t.index,t.id,!1)})),r.expandBars(i.index,i.id,!0),r.showXGridFocus(n),(r.isBarType(i.id)||r.dist(i,e)<o.point_sensitivity)&&(r.svg.select("."+Y.eventRect).style("cursor","pointer"),r.mouseover||(o.data_onmouseover.call(r.api,i),r.mouseover=i))):s())}:null).on("click",o.interaction_enabled?function(){var t,e,i;r.hasArcType(t)||(t=r.filterTargetsToShow(r.data.targets),e=a.mouse(this),(i=r.findClosestFromTargets(t,e))&&(r.isBarType(i.id)||r.dist(i,e)<o.point_sensitivity)&&(r.isScatterType(i)||!o.data_selection_grouped?[i]:r.filterByX(t,i.x)).forEach(function(t){r.main.selectAll("."+Y.shapes+r.getTargetSelectorSuffix(t.id)).selectAll("."+Y.shape+"-"+t.index).each(function(){(o.data_selection_grouped||r.isWithinShape(this,t))&&(r.toggleShape(this,t,t.index),o.data_onclick.call(r.api,t,this))})}))}:null).call(o.interaction_enabled&&o.data_selection_draggable&&r.drag?a.drag().on("drag",function(){r.drag(a.mouse(this))}).on("start",function(){r.dragstart(a.mouse(this))}).on("end",function(){r.dragend()}):function(){})},l.prototype.getMousePosition=function(t){return[this.x(t.x),this.getYScale(t.id)(t.value)]},l.prototype.dispatchEvent=function(t,e){var i="."+Y.eventRect,n=this.main.select(i).node(),r=n.getBoundingClientRect(),a=r.left+(e?e[0]:0),o=r.top+(e?e[1]:0),s=document.createEvent("MouseEvents");s.initMouseEvent(t,!0,!0,window,0,a,o,a,o,!1,!1,!1,!1,0,null),n.dispatchEvent(s)},l.prototype.initLegend=function(){var t=this;if(t.legendItemTextBox={},t.legendHasRendered=!1,t.legend=t.svg.append("g").attr("transform",t.getTranslate("legend")),!t.config.legend_show)return t.legend.style("visibility","hidden"),void(t.hiddenLegendIds=t.mapToIds(t.data.targets));t.updateLegendWithDefaults()},l.prototype.updateLegendWithDefaults=function(){this.updateLegend(this.mapToIds(this.data.targets),{withTransform:!1,withTransitionForTransform:!1,withTransition:!1})},l.prototype.updateSizeForLegend=function(t,e){var i=this,n=i.config,r={top:i.isLegendTop?i.getCurrentPaddingTop()+n.legend_inset_y+5.5:i.currentHeight-t-i.getCurrentPaddingBottom()-n.legend_inset_y,left:i.isLegendLeft?i.getCurrentPaddingLeft()+n.legend_inset_x+.5:i.currentWidth-e-i.getCurrentPaddingRight()-n.legend_inset_x+.5};i.margin3={top:i.isLegendRight?0:i.isLegendInset?r.top:i.currentHeight-t,right:NaN,bottom:0,left:i.isLegendRight?i.currentWidth-e:i.isLegendInset?r.left:0}},l.prototype.transformLegend=function(t){(t?this.legend.transition():this.legend).attr("transform",this.getTranslate("legend"))},l.prototype.updateLegendStep=function(t){this.legendStep=t},l.prototype.updateLegendItemWidth=function(t){this.legendItemWidth=t},l.prototype.updateLegendItemHeight=function(t){this.legendItemHeight=t},l.prototype.getLegendWidth=function(){var t=this;return t.config.legend_show?t.isLegendRight||t.isLegendInset?t.legendItemWidth*(t.legendStep+1):t.currentWidth:0},l.prototype.getLegendHeight=function(){var t=this,e=0;return t.config.legend_show&&(e=t.isLegendRight?t.currentHeight:Math.max(20,t.legendItemHeight)*(t.legendStep+1)),e},l.prototype.opacityForLegend=function(t){return t.classed(Y.legendItemHidden)?null:1},l.prototype.opacityForUnfocusedLegend=function(t){return t.classed(Y.legendItemHidden)?null:.3},l.prototype.toggleFocusLegend=function(e,t){var i=this;e=i.mapToTargetIds(e),i.legend.selectAll("."+Y.legendItem).filter(function(t){return 0<=e.indexOf(t)}).classed(Y.legendItemFocused,t).transition().duration(100).style("opacity",function(){return(t?i.opacityForLegend:i.opacityForUnfocusedLegend).call(i,i.d3.select(this))})},l.prototype.revertLegend=function(){var t=this,e=t.d3;t.legend.selectAll("."+Y.legendItem).classed(Y.legendItemFocused,!1).transition().duration(100).style("opacity",function(){return t.opacityForLegend(e.select(this))})},l.prototype.showLegend=function(t){var e=this,i=e.config;i.legend_show||(i.legend_show=!0,e.legend.style("visibility","visible"),e.legendHasRendered||e.updateLegendWithDefaults()),e.removeHiddenLegendIds(t),e.legend.selectAll(e.selectorLegends(t)).style("visibility","visible").transition().style("opacity",function(){return e.opacityForLegend(e.d3.select(this))})},l.prototype.hideLegend=function(t){var e=this,i=e.config;i.legend_show&&u(t)&&(i.legend_show=!1,e.legend.style("visibility","hidden")),e.addHiddenLegendIds(t),e.legend.selectAll(e.selectorLegends(t)).style("opacity",0).style("visibility","hidden")},l.prototype.clearLegendItemTextBoxCache=function(){this.legendItemTextBox={}},l.prototype.updateLegend=function(f,t,e){var i,n,r,a,o,s,c,d,l,u,h,g,p,_,x,y,m=this,S=m.config,w=4,v=10,b=0,A=0,T=10,P=S.legend_item_tile_width+5,L=0,C={},V={},G={},E=[0],I={},O=0;function R(t,e,i){var n,r,a,o,s=0===i,c=i===f.length-1,d=(a=t,o=e,m.legendItemTextBox[o]||(m.legendItemTextBox[o]=m.getTextRect(a.textContent,Y.legendItem,a)),m.legendItemTextBox[o]),l=d.width+P+(!c||m.isLegendRight||m.isLegendInset?v:0)+S.legend_padding,u=d.height+w,h=m.isLegendRight||m.isLegendInset?u:l,g=m.isLegendRight||m.isLegendInset?m.getLegendHeight():m.getLegendWidth();function p(t,e){e||(n=(g-L-h)/2)<T&&(n=(g-h)/2,L=0,O++),I[t]=O,E[O]=m.isLegendInset?10:n,C[t]=L,L+=h}s&&(A=b=O=L=0),!S.legend_show||m.isLegendToShow(e)?(V[e]=l,G[e]=u,(!b||b<=l)&&(b=l),(!A||A<=u)&&(A=u),r=m.isLegendRight||m.isLegendInset?A:b,S.legend_equally?(Object.keys(V).forEach(function(t){V[t]=b}),Object.keys(G).forEach(function(t){G[t]=A}),(n=(g-r*f.length)/2)<T?(O=L=0,f.forEach(function(t){p(t)})):p(e,!0)):p(e)):V[e]=G[e]=I[e]=C[e]=0}f=f.filter(function(t){return!k(S.data_names[t])||null!==S.data_names[t]}),h=N(t=t||{},"withTransition",!0),g=N(t,"withTransitionForTransform",!0),m.isLegendInset&&(O=S.legend_inset_step?S.legend_inset_step:f.length,m.updateLegendStep(O)),a=m.isLegendRight?(i=function(t){return b*I[t]},function(t){return E[I[t]]+C[t]}):m.isLegendInset?(i=function(t){return b*I[t]+10},function(t){return E[I[t]]+C[t]}):(i=function(t){return E[I[t]]+C[t]},function(t){return A*I[t]}),n=function(t,e){return i(t,e)+4+S.legend_item_tile_width},o=function(t,e){return a(t,e)+9},r=function(t,e){return i(t,e)},s=function(t,e){return a(t,e)-5},c=function(t,e){return i(t,e)-2},d=function(t,e){return i(t,e)-2+S.legend_item_tile_width},l=function(t,e){return a(t,e)+4},(u=m.legend.selectAll("."+Y.legendItem).data(f).enter().append("g").attr("class",function(t){return m.generateClass(Y.legendItem,t)}).style("visibility",function(t){return m.isLegendToShow(t)?"visible":"hidden"}).style("cursor","pointer").on("click",function(t){S.legend_item_onclick?S.legend_item_onclick.call(m,t):m.d3.event.altKey?(m.api.hide(),m.api.show(t)):(m.api.toggle(t),m.isTargetToShow(t)?m.api.focus(t):m.api.revert())}).on("mouseover",function(t){S.legend_item_onmouseover?S.legend_item_onmouseover.call(m,t):(m.d3.select(this).classed(Y.legendItemFocused,!0),!m.transiting&&m.isTargetToShow(t)&&m.api.focus(t))}).on("mouseout",function(t){S.legend_item_onmouseout?S.legend_item_onmouseout.call(m,t):(m.d3.select(this).classed(Y.legendItemFocused,!1),m.api.revert())})).append("text").text(function(t){return k(S.data_names[t])?S.data_names[t]:t}).each(function(t,e){R(this,t,e)}).style("pointer-events","none").attr("x",m.isLegendRight||m.isLegendInset?n:-200).attr("y",m.isLegendRight||m.isLegendInset?-200:o),u.append("rect").attr("class",Y.legendItemEvent).style("fill-opacity",0).attr("x",m.isLegendRight||m.isLegendInset?r:-200).attr("y",m.isLegendRight||m.isLegendInset?-200:s),u.append("line").attr("class",Y.legendItemTile).style("stroke",m.color).style("pointer-events","none").attr("x1",m.isLegendRight||m.isLegendInset?c:-200).attr("y1",m.isLegendRight||m.isLegendInset?-200:l).attr("x2",m.isLegendRight||m.isLegendInset?d:-200).attr("y2",m.isLegendRight||m.isLegendInset?-200:l).attr("stroke-width",S.legend_item_tile_height),y=m.legend.select("."+Y.legendBackground+" rect"),m.isLegendInset&&0<b&&0===y.size()&&(y=m.legend.insert("g","."+Y.legendItem).attr("class",Y.legendBackground).append("rect")),p=m.legend.selectAll("text").data(f).text(function(t){return k(S.data_names[t])?S.data_names[t]:t}).each(function(t,e){R(this,t,e)}),(h?p.transition():p).attr("x",n).attr("y",o),_=m.legend.selectAll("rect."+Y.legendItemEvent).data(f),(h?_.transition():_).attr("width",function(t){return V[t]}).attr("height",function(t){return G[t]}).attr("x",r).attr("y",s),x=m.legend.selectAll("line."+Y.legendItemTile).data(f),(h?x.transition():x).style("stroke",m.levelColor?function(t){return m.levelColor(m.cache[t].values[0].value)}:m.color).attr("x1",c).attr("y1",l).attr("x2",d).attr("y2",l),y&&(h?y.transition():y).attr("height",m.getLegendHeight()-12).attr("width",b*(O+1)+10),m.legend.selectAll("."+Y.legendItem).classed(Y.legendItemHidden,function(t){return!m.isTargetToShow(t)}),m.updateLegendItemWidth(b),m.updateLegendItemHeight(A),m.updateLegendStep(O),m.updateSizes(),m.updateScales(),m.updateSvgSize(),m.transformAll(g,e),m.legendHasRendered=!0},l.prototype.initRegion=function(){this.region=this.main.append("g").attr("clip-path",this.clipPath).attr("class",Y.regions)},l.prototype.updateRegion=function(t){var e=this,i=e.config;e.region.style("visibility",e.hasArcType()?"hidden":"visible");var n=e.main.select("."+Y.regions).selectAll("."+Y.region).data(i.regions),r=n.enter().append("rect").attr("x",e.regionX.bind(e)).attr("y",e.regionY.bind(e)).attr("width",e.regionWidth.bind(e)).attr("height",e.regionHeight.bind(e)).style("fill-opacity",0);e.mainRegion=r.merge(n).attr("class",e.classRegion.bind(e)),n.exit().transition().duration(t).style("opacity",0).remove()},l.prototype.redrawRegion=function(t,e){var i=this,n=i.mainRegion;return[(t?n.transition(e):n).attr("x",i.regionX.bind(i)).attr("y",i.regionY.bind(i)).attr("width",i.regionWidth.bind(i)).attr("height",i.regionHeight.bind(i)).style("fill-opacity",function(t){return P(t.opacity)?t.opacity:.1})]},l.prototype.regionX=function(t){var e=this,i=e.config,n="y"===t.axis?e.y:e.y2;return"y"===t.axis||"y2"===t.axis?i.axis_rotated&&"start"in t?n(t.start):0:i.axis_rotated?0:"start"in t?e.x(e.isTimeSeries()?e.parseDate(t.start):t.start):0},l.prototype.regionY=function(t){var e=this,i=e.config,n="y"===t.axis?e.y:e.y2;return"y"===t.axis||"y2"===t.axis?i.axis_rotated?0:"end"in t?n(t.end):0:i.axis_rotated&&"start"in t?e.x(e.isTimeSeries()?e.parseDate(t.start):t.start):0},l.prototype.regionWidth=function(t){var e,i=this,n=i.config,r=i.regionX(t),a="y"===t.axis?i.y:i.y2;return(e="y"===t.axis||"y2"===t.axis?n.axis_rotated&&"end"in t?a(t.end):i.width:n.axis_rotated?i.width:"end"in t?i.x(i.isTimeSeries()?i.parseDate(t.end):t.end):i.width)<r?0:e-r},l.prototype.regionHeight=function(t){var e,i=this,n=i.config,r=this.regionY(t),a="y"===t.axis?i.y:i.y2;return(e="y"===t.axis||"y2"===t.axis?n.axis_rotated?i.height:"start"in t?a(t.start):i.height:n.axis_rotated&&"end"in t?i.x(i.isTimeSeries()?i.parseDate(t.end):t.end):i.height)<r?0:e-r},l.prototype.isRegionOnX=function(t){return!t.axis||"x"===t.axis},l.prototype.getScale=function(t,e,i){return(i?this.d3.scaleTime():this.d3.scaleLinear()).range([t,e])},l.prototype.getX=function(t,e,i,n){var r,a=this.getScale(t,e,this.isTimeSeries()),o=i?a.domain(i):a;for(r in a=this.isCategorized()?(n=n||function(){return 0},function(t,e){var i=o(t)+n(t);return e?i:Math.ceil(i)}):function(t,e){var i=o(t);return e?i:Math.ceil(i)},o)a[r]=o[r];return a.orgDomain=function(){return o.domain()},this.isCategorized()&&(a.domain=function(t){return arguments.length?(o.domain(t),a):[(t=this.orgDomain())[0],t[1]+1]}),a},l.prototype.getY=function(t,e,i){var n=this.getScale(t,e,this.isTimeSeriesY());return i&&n.domain(i),n},l.prototype.getYScale=function(t){return"y2"===this.axis.getId(t)?this.y2:this.y},l.prototype.getSubYScale=function(t){return"y2"===this.axis.getId(t)?this.subY2:this.subY},l.prototype.updateScales=function(){var e=this,t=e.config,i=!e.x;e.xMin=t.axis_rotated?1:0,e.xMax=t.axis_rotated?e.height:e.width,e.yMin=t.axis_rotated?0:e.height,e.yMax=t.axis_rotated?e.width:1,e.subXMin=e.xMin,e.subXMax=e.xMax,e.subYMin=t.axis_rotated?0:e.height2,e.subYMax=t.axis_rotated?e.width2:1,e.x=e.getX(e.xMin,e.xMax,i?void 0:e.x.orgDomain(),function(){return e.xAxis.tickOffset()}),e.y=e.getY(e.yMin,e.yMax,i?t.axis_y_default:e.y.domain()),e.y2=e.getY(e.yMin,e.yMax,i?t.axis_y2_default:e.y2.domain()),e.subX=e.getX(e.xMin,e.xMax,e.orgXDomain,function(t){return t%1?0:e.subXAxis.tickOffset()}),e.subY=e.getY(e.subYMin,e.subYMax,i?t.axis_y_default:e.subY.domain()),e.subY2=e.getY(e.subYMin,e.subYMax,i?t.axis_y2_default:e.subY2.domain()),e.xAxisTickFormat=e.axis.getXAxisTickFormat(),e.xAxisTickValues=e.axis.getXAxisTickValues(),e.yAxisTickValues=e.axis.getYAxisTickValues(),e.y2AxisTickValues=e.axis.getY2AxisTickValues(),e.xAxis=e.axis.getXAxis(e.x,e.xOrient,e.xAxisTickFormat,e.xAxisTickValues,t.axis_x_tick_outer),e.subXAxis=e.axis.getXAxis(e.subX,e.subXOrient,e.xAxisTickFormat,e.xAxisTickValues,t.axis_x_tick_outer),e.yAxis=e.axis.getYAxis(e.y,e.yOrient,t.axis_y_tick_format,e.yAxisTickValues,t.axis_y_tick_outer),e.y2Axis=e.axis.getYAxis(e.y2,e.y2Orient,t.axis_y2_tick_format,e.y2AxisTickValues,t.axis_y2_tick_outer),i||e.brush&&e.brush.updateScale(e.subX),e.updateArc&&e.updateArc()},l.prototype.selectPoint=function(t,e,i){var n=this,r=n.config,a=(r.axis_rotated?n.circleY:n.circleX).bind(n),o=(r.axis_rotated?n.circleX:n.circleY).bind(n),s=n.pointSelectR.bind(n);r.data_onselected.call(n.api,e,t.node()),n.main.select("."+Y.selectedCircles+n.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle+"-"+i).data([e]).enter().append("circle").attr("class",function(){return n.generateClass(Y.selectedCircle,i)}).attr("cx",a).attr("cy",o).attr("stroke",function(){return n.color(e)}).attr("r",function(t){return 1.4*n.pointSelectR(t)}).transition().duration(100).attr("r",s)},l.prototype.unselectPoint=function(t,e,i){this.config.data_onunselected.call(this.api,e,t.node()),this.main.select("."+Y.selectedCircles+this.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle+"-"+i).transition().duration(100).attr("r",0).remove()},l.prototype.togglePoint=function(t,e,i,n){t?this.selectPoint(e,i,n):this.unselectPoint(e,i,n)},l.prototype.selectPath=function(t,e){var i=this;i.config.data_onselected.call(i,e,t.node()),i.config.interaction_brighten&&t.transition().duration(100).style("fill",function(){return i.d3.rgb(i.color(e)).brighter(.75)})},l.prototype.unselectPath=function(t,e){var i=this;i.config.data_onunselected.call(i,e,t.node()),i.config.interaction_brighten&&t.transition().duration(100).style("fill",function(){return i.color(e)})},l.prototype.togglePath=function(t,e,i,n){t?this.selectPath(e,i,n):this.unselectPath(e,i,n)},l.prototype.getToggle=function(t,e){var i;return"circle"===t.nodeName?i=this.isStepType(e)?function(){}:this.togglePoint:"path"===t.nodeName&&(i=this.togglePath),i},l.prototype.toggleShape=function(t,e,i){var n=this,r=n.d3,a=n.config,o=r.select(t),s=o.classed(Y.SELECTED),c=n.getToggle(t,e).bind(n);a.data_selection_enabled&&a.data_selection_isselectable(e)&&(a.data_selection_multiple||n.main.selectAll("."+Y.shapes+(a.data_selection_grouped?n.getTargetSelectorSuffix(e.id):"")).selectAll("."+Y.shape).each(function(t,e){var i=r.select(this);i.classed(Y.SELECTED)&&c(!1,i.classed(Y.SELECTED,!1),t,e)}),o.classed(Y.SELECTED,!s),c(!s,o,e,i))},l.prototype.initBar=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartBars)},l.prototype.updateTargetsForBar=function(t){var e=this,i=e.config,n=e.classChartBar.bind(e),r=e.classBars.bind(e),a=e.classFocus.bind(e);e.main.select("."+Y.chartBars).selectAll("."+Y.chartBar).data(t).attr("class",function(t){return n(t)+a(t)}).enter().append("g").attr("class",n).style("pointer-events","none").append("g").attr("class",r).style("cursor",function(t){return i.data_selection_isselectable(t)?"pointer":null})},l.prototype.updateBar=function(t){var e=this,i=e.barData.bind(e),n=e.classBar.bind(e),r=e.initialOpacity.bind(e),a=function(t){return e.color(t.id)},o=e.main.selectAll("."+Y.bars).selectAll("."+Y.bar).data(i),s=o.enter().append("path").attr("class",n).style("stroke",a).style("fill",a);e.mainBar=s.merge(o).style("opacity",r),o.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawBar=function(t,e,i){return[(e?this.mainBar.transition(i):this.mainBar).attr("d",t).style("stroke",this.color).style("fill",this.color).style("opacity",1)]},l.prototype.getBarW=function(t,e){var i=this.config,n="number"==typeof i.bar_width?i.bar_width:e?t.tickInterval()*i.bar_width_ratio/e:0;return i.bar_width_max&&n>i.bar_width_max?i.bar_width_max:n},l.prototype.getBars=function(t,e){return(e?this.main.selectAll("."+Y.bars+this.getTargetSelectorSuffix(e)):this.main).selectAll("."+Y.bar+(P(t)?"-"+t:""))},l.prototype.expandBars=function(t,e,i){i&&this.unexpandBars(),this.getBars(t,e).classed(Y.EXPANDED,!0)},l.prototype.unexpandBars=function(t){this.getBars(t).classed(Y.EXPANDED,!1)},l.prototype.generateDrawBar=function(t,e){var a=this.config,o=this.generateGetBarPoints(t,e);return function(t,e){var i=o(t,e),n=a.axis_rotated?1:0,r=a.axis_rotated?0:1;return"M "+i[0][n]+","+i[0][r]+" L"+i[1][n]+","+i[1][r]+" L"+i[2][n]+","+i[2][r]+" L"+i[3][n]+","+i[3][r]+" z"}},l.prototype.generateGetBarPoints=function(t,e){var o=this,i=e?o.subXAxis:o.xAxis,n=t.__max__+1,s=o.getBarW(i,n),c=o.getShapeX(s,n,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isBarType,t,!!e),u=s*(o.config.bar_space/2),h=e?o.getSubYScale:o.getYScale;return function(t,e){var i=h.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return o.config.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r+u,n],[r+u,a-(i-n)],[r+s-u,a-(i-n)],[r+s-u,n]]}},l.prototype.isWithinBar=function(t,e){var i=e.getBoundingClientRect(),n=e.pathSegList.getItem(0),r=e.pathSegList.getItem(1),a=Math.min(n.x,r.x),o=Math.min(n.y,r.y),s=a+i.width+2,c=o+i.height+2,d=o-2;return a-2<t[0]&&t[0]<s&&d<t[1]&&t[1]<c},l.prototype.getShapeIndices=function(t){var e,i,n=this.config,r={},a=0;return this.filterTargetsToShow(this.data.targets.filter(t,this)).forEach(function(t){for(e=0;e<n.data_groups.length;e++)if(!(n.data_groups[e].indexOf(t.id)<0))for(i=0;i<n.data_groups[e].length;i++)if(n.data_groups[e][i]in r){r[t.id]=r[n.data_groups[e][i]];break}v(r[t.id])&&(r[t.id]=a++)}),r.__max__=a-1,r},l.prototype.getShapeX=function(i,n,r,t){var a=t?this.subX:this.x;return function(t){var e=t.id in r?r[t.id]:0;return t.x||0===t.x?a(t.x)-i*(n/2-e):0}},l.prototype.getShapeY=function(e){var i=this;return function(t){return(e?i.getSubYScale(t.id):i.getYScale(t.id))(t.value)}},l.prototype.getShapeOffset=function(t,s,e){var c=this,d=c.orderTargets(c.filterTargetsToShow(c.data.targets.filter(t,c))),l=d.map(function(t){return t.id});return function(i,n){var r=e?c.getSubYScale(i.id):c.getYScale(i.id),a=r(0),o=a;return d.forEach(function(t){var e=c.isStepType(i)?c.convertValuesToStep(t.values):t.values;t.id!==i.id&&s[t.id]===s[i.id]&&l.indexOf(t.id)<l.indexOf(i.id)&&(void 0!==e[n]&&+e[n].x==+i.x||(n=-1,e.forEach(function(t,e){t.x===i.x&&(n=e)})),n in e&&0<=e[n].value*i.value&&(o+=r(e[n].value)-a))}),o}},l.prototype.isWithinShape=function(t,e){var i,n=this,r=n.d3.select(t);return n.isTargetToShow(e.id)?"circle"===t.nodeName?i=n.isStepType(e)?n.isWithinStep(t,n.getYScale(e.id)(e.value)):n.isWithinCircle(t,1.5*n.pointSelectR(e)):"path"===t.nodeName&&(i=!r.classed(Y.bar)||n.isWithinBar(n.d3.mouse(t),t)):i=!1,i},l.prototype.getInterpolate=function(t){var e=this,i=e.d3,n={linear:i.curveLinear,"linear-closed":i.curveLinearClosed,basis:i.curveBasis,"basis-open":i.curveBasisOpen,"basis-closed":i.curveBasisClosed,bundle:i.curveBundle,cardinal:i.curveCardinal,"cardinal-open":i.curveCardinalOpen,"cardinal-closed":i.curveCardinalClosed,monotone:i.curveMonotoneX,step:i.curveStep,"step-before":i.curveStepBefore,"step-after":i.curveStepAfter};return e.isSplineType(t)?n[e.config.spline_interpolation_type]||n.cardinal:e.isStepType(t)?n[e.config.line_step_type]:n.linear},l.prototype.initLine=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartLines)},l.prototype.updateTargetsForLine=function(t){var e,i=this,n=i.config,r=i.classChartLine.bind(i),a=i.classLines.bind(i),o=i.classAreas.bind(i),s=i.classCircles.bind(i),c=i.classFocus.bind(i);(e=i.main.select("."+Y.chartLines).selectAll("."+Y.chartLine).data(t).attr("class",function(t){return r(t)+c(t)}).enter().append("g").attr("class",r).style("opacity",0).style("pointer-events","none")).append("g").attr("class",a),e.append("g").attr("class",o),e.append("g").attr("class",function(t){return i.generateClass(Y.selectedCircles,t.id)}),e.append("g").attr("class",s).style("cursor",function(t){return n.data_selection_isselectable(t)?"pointer":null}),t.forEach(function(e){i.main.selectAll("."+Y.selectedCircles+i.getTargetSelectorSuffix(e.id)).selectAll("."+Y.selectedCircle).each(function(t){t.value=e.values[t.index].value})})},l.prototype.updateLine=function(t){var e=this,i=e.main.selectAll("."+Y.lines).selectAll("."+Y.line).data(e.lineData.bind(e)),n=i.enter().append("path").attr("class",e.classLine.bind(e)).style("stroke",e.color);e.mainLine=n.merge(i).style("opacity",e.initialOpacity.bind(e)).style("shape-rendering",function(t){return e.isStepType(t)?"crispEdges":""}).attr("transform",null),i.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawLine=function(t,e,i){return[(e?this.mainLine.transition(i):this.mainLine).attr("d",t).style("stroke",this.color).style("opacity",1)]},l.prototype.generateDrawLine=function(t,o){var s=this,c=s.config,d=s.d3.line(),i=s.generateGetLinePoints(t,o),l=o?s.getSubYScale:s.getYScale,e=function(t){return(o?s.subxx:s.xx).call(s,t)},n=function(t,e){return 0<c.data_groups.length?i(t,e)[0][1]:l.call(s,t.id)(t.value)};return d=c.axis_rotated?d.x(n).y(e):d.x(e).y(n),c.line_connectNull||(d=d.defined(function(t){return null!=t.value})),function(t){var e=c.line_connectNull?s.filterRemoveNull(t.values):t.values,i=o?s.subX:s.x,n=l.call(s,t.id),r=0,a=0;return(s.isLineType(t)?c.data_regions[t.id]?s.lineWithRegions(e,i,n,c.data_regions[t.id]):(s.isStepType(t)&&(e=s.convertValuesToStep(e)),d.curve(s.getInterpolate(t))(e)):(e[0]&&(r=i(e[0].x),a=n(e[0].value)),c.axis_rotated?"M "+a+" "+r:"M "+r+" "+a))||"M 0 0"}},l.prototype.generateGetLinePoints=function(t,e){var o=this,s=o.config,i=t.__max__+1,c=o.getShapeX(0,i,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isLineType,t,!!e),u=e?o.getSubYScale:o.getYScale;return function(t,e){var i=u.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return s.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r,a-(i-n)],[r,a-(i-n)],[r,a-(i-n)],[r,a-(i-n)]]}},l.prototype.lineWithRegions=function(t,c,d,e){var i,n,r,a,l,o,s,u,h,g,p,f=this,_=f.config,x="M",y=f.isCategorized()?.5:0,m=[];function S(t,e){var i;for(i=0;i<e.length;i++)if(e[i].start<t&&t<=e[i].end)return!0;return!1}if(k(e))for(i=0;i<e.length;i++)m[i]={},v(e[i].start)?m[i].start=t[0].x:m[i].start=f.isTimeSeries()?f.parseDate(e[i].start):e[i].start,v(e[i].end)?m[i].end=t[t.length-1].x:m[i].end=f.isTimeSeries()?f.parseDate(e[i].end):e[i].end;function w(t){return"M"+t[0][0]+" "+t[0][1]+" "+t[1][0]+" "+t[1][1]}for(g=_.axis_rotated?function(t){return d(t.value)}:function(t){return c(t.x)},p=_.axis_rotated?function(t){return c(t.x)}:function(t){return d(t.value)},r=f.isTimeSeries()?function(t,e,i,n){var r=t.x.getTime(),a=e.x-t.x,o=new Date(r+a*i),s=new Date(r+a*(i+n));return w(_.axis_rotated?[[d(l(i)),c(o)],[d(l(i+n)),c(s)]]:[[c(o),d(l(i))],[c(s),d(l(i+n))]])}:function(t,e,i,n){return w(_.axis_rotated?[[d(l(i),!0),c(a(i))],[d(l(i+n),!0),c(a(i+n))]]:[[c(a(i),!0),d(l(i))],[c(a(i+n),!0),d(l(i+n))]])},i=0;i<t.length;i++){if(v(m)||!S(t[i].x,m))x+=" "+g(t[i])+" "+p(t[i]);else for(a=f.getScale(t[i-1].x+y,t[i].x+y,f.isTimeSeries()),l=f.getScale(t[i-1].value,t[i].value),o=c(t[i].x)-c(t[i-1].x),s=d(t[i].value)-d(t[i-1].value),h=2*(u=2/Math.sqrt(Math.pow(o,2)+Math.pow(s,2))),n=u;n<=1;n+=h)x+=r(t[i-1],t[i],n,u);t[i].x}return x},l.prototype.updateArea=function(t){var e=this,i=e.d3,n=e.main.selectAll("."+Y.areas).selectAll("."+Y.area).data(e.lineData.bind(e)),r=n.enter().append("path").attr("class",e.classArea.bind(e)).style("fill",e.color).style("opacity",function(){return e.orgAreaOpacity=+i.select(this).style("opacity"),0});e.mainArea=r.merge(n).style("opacity",e.orgAreaOpacity),n.exit().transition().duration(t).style("opacity",0)},l.prototype.redrawArea=function(t,e,i){return[(e?this.mainArea.transition(i):this.mainArea).attr("d",t).style("fill",this.color).style("opacity",this.orgAreaOpacity)]},l.prototype.generateDrawArea=function(t,e){var r=this,a=r.config,o=r.d3.area(),i=r.generateGetAreaPoints(t,e),n=e?r.getSubYScale:r.getYScale,s=function(t){return(e?r.subxx:r.xx).call(r,t)},c=function(t,e){return 0<a.data_groups.length?i(t,e)[0][1]:n.call(r,t.id)(r.getAreaBaseValue(t.id))},d=function(t,e){return 0<a.data_groups.length?i(t,e)[1][1]:n.call(r,t.id)(t.value)};return o=a.axis_rotated?o.x0(c).x1(d).y(s):o.x(s).y0(a.area_above?0:c).y1(d),a.line_connectNull||(o=o.defined(function(t){return null!==t.value})),function(t){var e=a.line_connectNull?r.filterRemoveNull(t.values):t.values,i=0,n=0;return(r.isAreaType(t)?(r.isStepType(t)&&(e=r.convertValuesToStep(e)),o.curve(r.getInterpolate(t))(e)):(e[0]&&(i=r.x(e[0].x),n=r.getYScale(t.id)(e[0].value)),a.axis_rotated?"M "+n+" "+i:"M "+i+" "+n))||"M 0 0"}},l.prototype.getAreaBaseValue=function(){return 0},l.prototype.generateGetAreaPoints=function(t,e){var o=this,s=o.config,i=t.__max__+1,c=o.getShapeX(0,i,t,!!e),d=o.getShapeY(!!e),l=o.getShapeOffset(o.isAreaType,t,!!e),u=e?o.getSubYScale:o.getYScale;return function(t,e){var i=u.call(o,t.id)(0),n=l(t,e)||i,r=c(t),a=d(t);return s.axis_rotated&&(0<t.value&&a<i||t.value<0&&i<a)&&(a=i),[[r,n],[r,a-(i-n)],[r,a-(i-n)],[r,n]]}},l.prototype.updateCircle=function(t,e){var i=this,n=i.main.selectAll("."+Y.circles).selectAll("."+Y.circle).data(i.lineOrScatterData.bind(i)),r=n.enter().append("circle").attr("class",i.classCircle.bind(i)).attr("cx",t).attr("cy",e).attr("r",i.pointR.bind(i)).style("fill",i.color);i.mainCircle=r.merge(n).style("opacity",i.initialOpacityForCircle.bind(i)),n.exit().style("opacity",0)},l.prototype.redrawCircle=function(t,e,i,n){var r=this,a=r.main.selectAll("."+Y.selectedCircle);return[(i?r.mainCircle.transition(n):r.mainCircle).style("opacity",this.opacityForCircle.bind(r)).style("fill",r.color).attr("cx",t).attr("cy",e),(i?a.transition(n):a).attr("cx",t).attr("cy",e)]},l.prototype.circleX=function(t){return t.x||0===t.x?this.x(t.x):null},l.prototype.updateCircleY=function(){var t,i,e=this;0<e.config.data_groups.length?(t=e.getShapeIndices(e.isLineType),i=e.generateGetLinePoints(t),e.circleY=function(t,e){return i(t,e)[0][1]}):e.circleY=function(t){return e.getYScale(t.id)(t.value)}},l.prototype.getCircles=function(t,e){return(e?this.main.selectAll("."+Y.circles+this.getTargetSelectorSuffix(e)):this.main).selectAll("."+Y.circle+(P(t)?"-"+t:""))},l.prototype.expandCircles=function(t,e,i){var n=this.pointExpandedR.bind(this);i&&this.unexpandCircles(),this.getCircles(t,e).classed(Y.EXPANDED,!0).attr("r",n)},l.prototype.unexpandCircles=function(t){var e=this,i=e.pointR.bind(e);e.getCircles(t).filter(function(){return e.d3.select(this).classed(Y.EXPANDED)}).classed(Y.EXPANDED,!1).attr("r",i)},l.prototype.pointR=function(t){var e=this.config;return this.isStepType(t)?0:h(e.point_r)?e.point_r(t):e.point_r},l.prototype.pointExpandedR=function(t){var e=this.config;return e.point_focus_expand_enabled?h(e.point_focus_expand_r)?e.point_focus_expand_r(t):e.point_focus_expand_r?e.point_focus_expand_r:1.75*this.pointR(t):this.pointR(t)},l.prototype.pointSelectR=function(t){var e=this.config;return h(e.point_select_r)?e.point_select_r(t):e.point_select_r?e.point_select_r:4*this.pointR(t)},l.prototype.isWithinCircle=function(t,e){var i=this.d3,n=i.mouse(t),r=i.select(t),a=+r.attr("cx"),o=+r.attr("cy");return Math.sqrt(Math.pow(a-n[0],2)+Math.pow(o-n[1],2))<e},l.prototype.isWithinStep=function(t,e){return Math.abs(e-this.d3.mouse(t)[1])<30},l.prototype.getCurrentWidth=function(){var t=this.config;return t.size_width?t.size_width:this.getParentWidth()},l.prototype.getCurrentHeight=function(){var t=this.config,e=t.size_height?t.size_height:this.getParentHeight();return 0<e?e:320/(this.hasType("gauge")&&!t.gauge_fullCircle?2:1)},l.prototype.getCurrentPaddingTop=function(){var t=this.config,e=P(t.padding_top)?t.padding_top:0;return this.title&&this.title.node()&&(e+=this.getTitlePadding()),e},l.prototype.getCurrentPaddingBottom=function(){var t=this.config;return P(t.padding_bottom)?t.padding_bottom:0},l.prototype.getCurrentPaddingLeft=function(t){var e=this.config;return P(e.padding_left)?e.padding_left:e.axis_rotated?!e.axis_x_show||e.axis_x_inner?1:Math.max(r(this.getAxisWidthByAxisId("x",t)),40):!e.axis_y_show||e.axis_y_inner?this.axis.getYAxisLabelPosition().isOuter?30:1:r(this.getAxisWidthByAxisId("y",t))},l.prototype.getCurrentPaddingRight=function(){var t=this,e=t.config,i=t.isLegendRight?t.getLegendWidth()+20:0;return P(e.padding_right)?e.padding_right+1:e.axis_rotated?10+i:!e.axis_y2_show||e.axis_y2_inner?2+i+(t.axis.getY2AxisLabelPosition().isOuter?20:0):r(t.getAxisWidthByAxisId("y2"))+i},l.prototype.getParentRectValue=function(e){for(var i,n=this.selectChart.node();n&&"BODY"!==n.tagName;){try{i=n.getBoundingClientRect()[e]}catch(t){"width"===e&&(i=n.offsetWidth)}if(i)break;n=n.parentNode}return i},l.prototype.getParentWidth=function(){return this.getParentRectValue("width")},l.prototype.getParentHeight=function(){var t=this.selectChart.style("height");return 0<t.indexOf("px")?+t.replace("px",""):0},l.prototype.getSvgLeft=function(t){var e=this,i=e.config,n=i.axis_rotated||!i.axis_rotated&&!i.axis_y_inner,r=i.axis_rotated?Y.axisX:Y.axisY,a=e.main.select("."+r).node(),o=a&&n?a.getBoundingClientRect():{right:0},s=e.selectChart.node().getBoundingClientRect(),c=e.hasArcType(),d=o.right-s.left-(c?0:e.getCurrentPaddingLeft(t));return 0<d?d:0},l.prototype.getAxisWidthByAxisId=function(t,e){var i=this.axis.getLabelPositionById(t);return this.axis.getMaxTickWidth(t,e)+(i.isInner?20:40)},l.prototype.getHorizontalAxisHeight=function(t){var e=this,i=e.config,n=30;return"x"!==t||i.axis_x_show?"x"===t&&i.axis_x_height?i.axis_x_height:"y"!==t||i.axis_y_show?"y2"!==t||i.axis_y2_show?("x"===t&&!i.axis_rotated&&i.axis_x_tick_rotate&&(n=30+e.axis.getMaxTickWidth(t)*Math.cos(Math.PI*(90-Math.abs(i.axis_x_tick_rotate))/180)),"y"===t&&i.axis_rotated&&i.axis_y_tick_rotate&&(n=30+e.axis.getMaxTickWidth(t)*Math.cos(Math.PI*(90-Math.abs(i.axis_y_tick_rotate))/180)),n+(e.axis.getLabelPositionById(t).isInner?0:10)+("y2"===t?-10:0)):e.rotated_padding_top:!i.legend_show||e.isLegendRight||e.isLegendInset?1:10:8},l.prototype.initBrush=function(t){var r=this,e=r.d3;return r.brush=(r.config.axis_rotated?e.brushY():e.brushX()).on("brush",function(){var t=e.event.sourceEvent;t&&"zoom"===t.type||r.redrawForBrush()}).on("end",function(){var t=e.event.sourceEvent;t&&"zoom"===t.type||r.brush.empty()&&t&&"end"!==t.type&&r.brush.clear()}),r.brush.updateExtent=function(){var t,e=this.scale.range();return t=r.config.axis_rotated?[[0,e[0]],[r.width2,e[1]]]:[[e[0],0],[e[1],r.height2]],this.extent(t),this},r.brush.updateScale=function(t){return this.scale=t,this},r.brush.update=function(t){this.updateScale(t||r.subX).updateExtent(),r.context.select("."+Y.brush).call(this)},r.brush.clear=function(){r.context.select("."+Y.brush).call(r.brush.move,null)},r.brush.selection=function(){return e.brushSelection(r.context.select("."+Y.brush).node())},r.brush.selectionAsValue=function(t,e){var i,n;return t?(r.context&&(i=[this.scale(t[0]),this.scale(t[1])],n=r.context.select("."+Y.brush),e&&(n=n.transition()),r.brush.move(n,i)),[]):(i=r.brush.selection()||[0,0],[this.scale.invert(i[0]),this.scale.invert(i[1])])},r.brush.empty=function(){var t=r.brush.selection();return!t||t[0]===t[1]},r.brush.updateScale(t)},l.prototype.initSubchart=function(){var t=this,e=t.config,i=t.context=t.svg.append("g").attr("transform",t.getTranslate("context")),n=e.subchart_show?"visible":"hidden";i.style("visibility",n),i.append("g").attr("clip-path",t.clipPathForSubchart).attr("class",Y.chart),i.select("."+Y.chart).append("g").attr("class",Y.chartBars),i.select("."+Y.chart).append("g").attr("class",Y.chartLines),i.append("g").attr("clip-path",t.clipPath).attr("class",Y.brush),t.axes.subx=i.append("g").attr("class",Y.axisX).attr("transform",t.getTranslate("subx")).attr("clip-path",e.axis_rotated?"":t.clipPathForXAxis)},l.prototype.initSubchartBrush=function(){this.initBrush(this.subX).updateExtent(),this.context.select("."+Y.brush).call(this.brush)},l.prototype.updateTargetsForSubchart=function(t){var e,i,n,r,a=this,o=a.context,s=a.config,c=a.classChartBar.bind(a),d=a.classBars.bind(a),l=a.classChartLine.bind(a),u=a.classLines.bind(a),h=a.classAreas.bind(a);s.subchart_show&&((n=(r=o.select("."+Y.chartBars).selectAll("."+Y.chartBar).data(t)).enter().append("g").style("opacity",0)).merge(r).attr("class",c),n.append("g").attr("class",d),(e=(i=o.select("."+Y.chartLines).selectAll("."+Y.chartLine).data(t)).enter().append("g").style("opacity",0)).merge(i).attr("class",l),e.append("g").attr("class",u),e.append("g").attr("class",h),o.selectAll("."+Y.brush+" rect").attr(s.axis_rotated?"width":"height",s.axis_rotated?a.width2:a.height2))},l.prototype.updateBarForSubchart=function(t){var e=this,i=e.context.selectAll("."+Y.bars).selectAll("."+Y.bar).data(e.barData.bind(e)),n=i.enter().append("path").attr("class",e.classBar.bind(e)).style("stroke","none").style("fill",e.color);i.exit().transition().duration(t).style("opacity",0).remove(),e.contextBar=n.merge(i).style("opacity",e.initialOpacity.bind(e))},l.prototype.redrawBarForSubchart=function(t,e,i){(e?this.contextBar.transition(Math.random().toString()).duration(i):this.contextBar).attr("d",t).style("opacity",1)},l.prototype.updateLineForSubchart=function(t){var e=this,i=e.context.selectAll("."+Y.lines).selectAll("."+Y.line).data(e.lineData.bind(e)),n=i.enter().append("path").attr("class",e.classLine.bind(e)).style("stroke",e.color);i.exit().transition().duration(t).style("opacity",0).remove(),e.contextLine=n.merge(i).style("opacity",e.initialOpacity.bind(e))},l.prototype.redrawLineForSubchart=function(t,e,i){(e?this.contextLine.transition(Math.random().toString()).duration(i):this.contextLine).attr("d",t).style("opacity",1)},l.prototype.updateAreaForSubchart=function(t){var e=this,i=e.d3,n=e.context.selectAll("."+Y.areas).selectAll("."+Y.area).data(e.lineData.bind(e)),r=n.enter().append("path").attr("class",e.classArea.bind(e)).style("fill",e.color).style("opacity",function(){return e.orgAreaOpacity=+i.select(this).style("opacity"),0});n.exit().transition().duration(t).style("opacity",0).remove(),e.contextArea=r.merge(n).style("opacity",0)},l.prototype.redrawAreaForSubchart=function(t,e,i){(e?this.contextArea.transition(Math.random().toString()).duration(i):this.contextArea).attr("d",t).style("fill",this.color).style("opacity",this.orgAreaOpacity)},l.prototype.redrawSubchart=function(t,e,i,n,r,a,o){var s,c,d,l=this,u=l.d3,h=l.config;l.context.style("visibility",h.subchart_show?"visible":"hidden"),h.subchart_show&&(u.event&&"zoom"===u.event.type&&l.brush.selectionAsValue(l.x.orgDomain()),t&&(l.brush.empty()||l.brush.selectionAsValue(l.x.orgDomain()),s=l.generateDrawArea(r,!0),c=l.generateDrawBar(a,!0),d=l.generateDrawLine(o,!0),l.updateBarForSubchart(i),l.updateLineForSubchart(i),l.updateAreaForSubchart(i),l.redrawBarForSubchart(c,i,i),l.redrawLineForSubchart(d,i,i),l.redrawAreaForSubchart(s,i,i)))},l.prototype.redrawForBrush=function(){var t,e=this,i=e.x,n=e.d3;e.redraw({withTransition:!1,withY:e.config.zoom_rescale,withSubchart:!1,withUpdateXDomain:!0,withEventRect:!1,withDimension:!1}),t=n.event.selection||e.brush.scale.range(),e.main.select("."+Y.eventRect).call(e.zoom.transform,n.zoomIdentity.scale(e.width/(t[1]-t[0])).translate(-t[0],0)),e.config.subchart_onbrush.call(e.api,i.orgDomain())},l.prototype.transformContext=function(t,e){var i;e&&e.axisSubX?i=e.axisSubX:(i=this.context.select("."+Y.axisX),t&&(i=i.transition())),this.context.attr("transform",this.getTranslate("context")),i.attr("transform",this.getTranslate("subx"))},l.prototype.getDefaultSelection=function(){var t=this,e=t.config,i=h(e.axis_x_selection)?e.axis_x_selection(t.getXDomain(t.data.targets)):e.axis_x_selection;return t.isTimeSeries()&&(i=[t.parseDate(i[0]),t.parseDate(i[1])]),i},l.prototype.initText=function(){this.main.select("."+Y.chart).append("g").attr("class",Y.chartTexts),this.mainText=this.d3.selectAll([])},l.prototype.updateTargetsForText=function(t){var e=this,i=e.classChartText.bind(e),n=e.classTexts.bind(e),r=e.classFocus.bind(e),a=e.main.select("."+Y.chartTexts).selectAll("."+Y.chartText).data(t),o=a.enter().append("g").attr("class",i).style("opacity",0).style("pointer-events","none");o.append("g").attr("class",n),o.merge(a).attr("class",function(t){return i(t)+r(t)})},l.prototype.updateText=function(t,e,i){var n=this,r=n.config,a=n.barOrLineData.bind(n),o=n.classText.bind(n),s=n.main.selectAll("."+Y.texts).selectAll("."+Y.text).data(a),c=s.enter().append("text").attr("class",o).attr("text-anchor",function(t){return r.axis_rotated?t.value<0?"end":"start":"middle"}).style("stroke","none").attr("x",t).attr("y",e).style("fill",function(t){return n.color(t)}).style("fill-opacity",0);n.mainText=c.merge(s).text(function(t,e,i){return n.dataLabelFormat(t.id)(t.value,t.id,e,i)}),s.exit().transition().duration(i).style("fill-opacity",0).remove()},l.prototype.redrawText=function(t,e,i,n,r){return[(n?this.mainText.transition(r):this.mainText).attr("x",t).attr("y",e).style("fill",this.color).style("fill-opacity",i?0:this.opacityForText.bind(this))]},l.prototype.getTextRect=function(t,e,i){var n,r=this.d3.select("body").append("div").classed("c3",!0),a=r.append("svg").style("visibility","hidden").style("position","fixed").style("top",0).style("left",0),o=this.d3.select(i).style("font");return a.selectAll(".dummy").data([t]).enter().append("text").classed(e||"",!0).style("font",o).text(t).each(function(){n=this.getBoundingClientRect()}),r.remove(),n},l.prototype.generateXYForText=function(t,e,i,n){var r=this,a=r.generateGetAreaPoints(t,!1),o=r.generateGetBarPoints(e,!1),s=r.generateGetLinePoints(i,!1),c=n?r.getXForText:r.getYForText;return function(t,e){var i=r.isAreaType(t)?a:r.isBarType(t)?o:s;return c.call(r,i(t,e),t,this)}},l.prototype.getXForText=function(t,e,i){var n,r,a=this,o=i.getBoundingClientRect();return n=a.config.axis_rotated?(r=a.isBarType(e)?4:6,t[2][1]+r*(e.value<0?-1:1)):a.hasType("bar")?(t[2][0]+t[0][0])/2:t[0][0],null===e.value&&(n>a.width?n=a.width-o.width:n<0&&(n=4)),n},l.prototype.getYForText=function(t,e,i){var n,r=this,a=i.getBoundingClientRect();return r.config.axis_rotated?n=(t[0][0]+t[2][0]+.6*a.height)/2:(n=t[2][1],e.value<0||0===e.value&&!r.hasPositiveValue?(n+=a.height,r.isBarType(e)&&r.isSafari()?n-=3:!r.isBarType(e)&&r.isChrome()&&(n+=3)):n+=r.isBarType(e)?-3:-6),null!==e.value||r.config.axis_rotated||(n<a.height?n=a.height:n>this.height&&(n=this.height-4)),n},l.prototype.initTitle=function(){this.title=this.svg.append("text").text(this.config.title_text).attr("class",this.CLASS.title)},l.prototype.redrawTitle=function(){var t=this;t.title.attr("x",t.xForTitle.bind(t)).attr("y",t.yForTitle.bind(t))},l.prototype.xForTitle=function(){var t=this,e=t.config,i=e.title_position||"left";return 0<=i.indexOf("right")?t.currentWidth-t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).width-e.title_padding.right:0<=i.indexOf("center")?(t.currentWidth-t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).width)/2:e.title_padding.left},l.prototype.yForTitle=function(){var t=this;return t.config.title_padding.top+t.getTextRect(t.title.node().textContent,t.CLASS.title,t.title.node()).height},l.prototype.getTitlePadding=function(){return this.yForTitle()+this.config.title_padding.bottom},l.prototype.initTooltip=function(){var t,e=this,i=e.config;if(e.tooltip=e.selectChart.style("position","relative").append("div").attr("class",Y.tooltipContainer).style("position","absolute").style("pointer-events","none").style("display","none"),i.tooltip_init_show){if(e.isTimeSeries()&&c(i.tooltip_init_x)){for(i.tooltip_init_x=e.parseDate(i.tooltip_init_x),t=0;t<e.data.targets[0].values.length&&e.data.targets[0].values[t].x-i.tooltip_init_x!=0;t++);i.tooltip_init_x=t}e.tooltip.html(i.tooltip_contents.call(e,e.data.targets.map(function(t){return e.addName(t.values[i.tooltip_init_x])}),e.axis.getXAxisTickFormat(),e.getYFormat(e.hasArcType()),e.color)),e.tooltip.style("top",i.tooltip_init_position.top).style("left",i.tooltip_init_position.left).style("display","block")}},l.prototype.getTooltipSortFunction=function(){var t=this,e=t.config;if(0!==e.data_groups.length&&void 0===e.tooltip_order){var i=t.orderTargets(t.data.targets).map(function(t){return t.id});return(t.isOrderAsc()||t.isOrderDesc())&&(i=i.reverse()),function(t,e){return i.indexOf(t.id)-i.indexOf(e.id)}}var n=e.tooltip_order;void 0===n&&(n=e.data_order);var r=function(t){return t?t.value:null};if(c(n)&&"asc"===n.toLowerCase())return function(t,e){return r(t)-r(e)};if(c(n)&&"desc"===n.toLowerCase())return function(t,e){return r(e)-r(t)};if(h(n)){var a=n;return void 0===e.tooltip_order&&(a=function(t,e){return n(t?{id:t.id,values:[t]}:null,e?{id:e.id,values:[e]}:null)}),a}return o(n)?function(t,e){return n.indexOf(t.id)-n.indexOf(e.id)}:void 0},l.prototype.getTooltipContent=function(t,e,i,n){var r,a,o,s,c,d,l=this,u=l.config,h=u.tooltip_format_title||e,g=u.tooltip_format_name||function(t){return t},p=u.tooltip_format_value||i,f=this.getTooltipSortFunction();for(f&&t.sort(f),a=0;a<t.length;a++)if(t[a]&&(t[a].value||0===t[a].value)&&(r||(o=_(h?h(t[a].x):t[a].x),r="<table class='"+l.CLASS.tooltip+"'>"+(o||0===o?"<tr><th colspan='2'>"+o+"</th></tr>":"")),void 0!==(s=_(p(t[a].value,t[a].ratio,t[a].id,t[a].index,t))))){if(null===t[a].name)continue;c=_(g(t[a].name,t[a].ratio,t[a].id,t[a].index)),d=l.levelColor?l.levelColor(t[a].value):n(t[a].id),r+="<tr class='"+l.CLASS.tooltipName+"-"+l.getTargetSelectorSuffix(t[a].id)+"'>",r+="<td class='name'><span style='background-color:"+d+"'></span>"+c+"</td>",r+="<td class='value'>"+s+"</td>",r+="</tr>"}return r+"</table>"},l.prototype.tooltipPosition=function(t,e,i,n){var r,a,o,s,c,d=this,l=d.config,u=d.d3,h=d.hasArcType(),g=u.mouse(n);return h?(a=(d.width-(d.isLegendRight?d.getLegendWidth():0))/2+g[0],s=(d.hasType("gauge")?d.height:d.height/2)+g[1]+20):(r=d.getSvgLeft(!0),s=l.axis_rotated?(o=(a=r+g[0]+100)+e,c=d.currentWidth-d.getCurrentPaddingRight(),d.x(t[0].x)+20):(o=(a=r+d.getCurrentPaddingLeft(!0)+d.x(t[0].x)+20)+e,c=r+d.currentWidth-d.getCurrentPaddingRight(),g[1]+15),c<o&&(a-=o-c+20),s+i>d.currentHeight&&(s-=i+30)),s<0&&(s=0),{top:s,left:a}},l.prototype.showTooltip=function(t,e){var i,n,r,a=this,o=a.config,s=a.hasArcType(),c=t.filter(function(t){return t&&P(t.value)}),d=o.tooltip_position||l.prototype.tooltipPosition;0!==c.length&&o.tooltip_show&&(a.tooltip.html(o.tooltip_contents.call(a,t,a.axis.getXAxisTickFormat(),a.getYFormat(s),a.color)).style("display","block"),i=a.tooltip.property("offsetWidth"),n=a.tooltip.property("offsetHeight"),r=d.call(this,c,i,n,e),a.tooltip.style("top",r.top+"px").style("left",r.left+"px"))},l.prototype.hideTooltip=function(){this.tooltip.style("display","none")},l.prototype.setTargetType=function(t,e){var i=this,n=i.config;i.mapToTargetIds(t).forEach(function(t){i.withoutFadeIn[t]=e===n.data_types[t],n.data_types[t]=e}),t||(n.data_type=e)},l.prototype.hasType=function(i,t){var n=this.config.data_types,r=!1;return(t=t||this.data.targets)&&t.length?t.forEach(function(t){var e=n[t.id];(e&&0<=e.indexOf(i)||!e&&"line"===i)&&(r=!0)}):Object.keys(n).length?Object.keys(n).forEach(function(t){n[t]===i&&(r=!0)}):r=this.config.data_type===i,r},l.prototype.hasArcType=function(t){return this.hasType("pie",t)||this.hasType("donut",t)||this.hasType("gauge",t)},l.prototype.isLineType=function(t){var e=this.config,i=c(t)?t:t.id;return!e.data_types[i]||0<=["line","spline","area","area-spline","step","area-step"].indexOf(e.data_types[i])},l.prototype.isStepType=function(t){var e=c(t)?t:t.id;return 0<=["step","area-step"].indexOf(this.config.data_types[e])},l.prototype.isSplineType=function(t){var e=c(t)?t:t.id;return 0<=["spline","area-spline"].indexOf(this.config.data_types[e])},l.prototype.isAreaType=function(t){var e=c(t)?t:t.id;return 0<=["area","area-spline","area-step"].indexOf(this.config.data_types[e])},l.prototype.isBarType=function(t){var e=c(t)?t:t.id;return"bar"===this.config.data_types[e]},l.prototype.isScatterType=function(t){var e=c(t)?t:t.id;return"scatter"===this.config.data_types[e]},l.prototype.isPieType=function(t){var e=c(t)?t:t.id;return"pie"===this.config.data_types[e]},l.prototype.isGaugeType=function(t){var e=c(t)?t:t.id;return"gauge"===this.config.data_types[e]},l.prototype.isDonutType=function(t){var e=c(t)?t:t.id;return"donut"===this.config.data_types[e]},l.prototype.isArcType=function(t){return this.isPieType(t)||this.isDonutType(t)||this.isGaugeType(t)},l.prototype.lineData=function(t){return this.isLineType(t)?[t]:[]},l.prototype.arcData=function(t){return this.isArcType(t.data)?[t]:[]},l.prototype.barData=function(t){return this.isBarType(t)?t.values:[]},l.prototype.lineOrScatterData=function(t){return this.isLineType(t)||this.isScatterType(t)?t.values:[]},l.prototype.barOrLineData=function(t){return this.isBarType(t)||this.isLineType(t)?t.values:[]},l.prototype.isSafari=function(){var t=window.navigator.userAgent;return 0<=t.indexOf("Safari")&&t.indexOf("Chrome")<0},l.prototype.isChrome=function(){return 0<=window.navigator.userAgent.indexOf("Chrome")},l.prototype.initZoom=function(){var e,i=this,n=i.d3,r=i.config;return i.zoom=n.zoom().on("start",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||(e=t,r.zoom_onzoomstart.call(i.api,t))}}).on("zoom",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||(i.redrawForZoom(),r.zoom_onzoom.call(i.api,i.x.orgDomain()))}}).on("end",function(){if("scroll"===r.zoom_type){var t=n.event.sourceEvent;t&&"brush"===t.type||t&&e.clientX===t.clientX&&e.clientY===t.clientY||r.zoom_onzoomend.call(i.api,i.x.orgDomain())}}),i.zoom.updateDomain=function(){return n.event&&n.event.transform&&i.x.domain(n.event.transform.rescaleX(i.subX).domain()),this},i.zoom.updateExtent=function(){return this.scaleExtent([1,1/0]).translateExtent([[0,0],[i.width,i.height]]).extent([[0,0],[i.width,i.height]]),this},i.zoom.update=function(){return this.updateExtent().updateDomain()},i.zoom.updateExtent()},l.prototype.zoomTransform=function(t){var e=[this.x(t[0]),this.x(t[1])];return this.d3.zoomIdentity.scale(this.width/(e[1]-e[0])).translate(-e[0],0)},l.prototype.initDragZoom=function(){var e=this,i=e.d3,n=e.config,t=e.context=e.svg,r=e.margin.left+20.5,a=e.margin.top+.5;if("drag"===n.zoom_type&&n.zoom_enabled){var o=function(t){return t&&t.map(function(t){return e.x.invert(t)})},s=e.dragZoomBrush=i.brushX().on("start",function(){e.api.unzoom(),e.svg.select("."+Y.dragZoom).classed("disabled",!1),n.zoom_onzoomstart.call(e.api,i.event.sourceEvent)}).on("brush",function(){n.zoom_onzoom.call(e.api,o(i.event.selection))}).on("end",function(){if(null!=i.event.selection){var t=o(i.event.selection);n.zoom_disableDefaultBehavior||e.api.zoom(t),e.svg.select("."+Y.dragZoom).classed("disabled",!0),n.zoom_onzoomend.call(e.api,t)}});t.append("g").classed(Y.dragZoom,!0).attr("clip-path",e.clipPath).attr("transform","translate("+r+","+a+")").call(s)}},l.prototype.getZoomDomain=function(){var t=this.config,e=this.d3;return[e.min([this.orgXDomain[0],t.zoom_x_min]),e.max([this.orgXDomain[1],t.zoom_x_max])]},l.prototype.redrawForZoom=function(){var t=this,e=t.d3,i=t.config,n=t.zoom,r=t.x;i.zoom_enabled&&0!==t.filterTargetsToShow(t.data.targets).length&&(n.update(),i.zoom_disableDefaultBehavior||(t.isCategorized()&&r.orgDomain()[0]===t.orgXDomain[0]&&r.domain([t.orgXDomain[0]-1e-10,r.orgDomain()[1]]),t.redraw({withTransition:!1,withY:i.zoom_rescale,withSubchart:!1,withEventRect:!1,withDimension:!1}),e.event.sourceEvent&&"mousemove"===e.event.sourceEvent.type&&(t.cancelClick=!0)))},t});
\ No newline at end of file
index e6e7e302ebb099da4fdd34b18fe9b2c64cb31541..9af5650cd6ebe48c1b17c10e2141a644303ebb85 100644 (file)
@@ -1,11 +1,11 @@
-// https://d3js.org Version 5.5.0. Copyright 2018 Mike Bostock.
+// https://d3js.org v5.7.0 Copyright 2018 Mike Bostock
 (function (global, factory) {
 (function (global, factory) {
-       typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
-       typeof define === 'function' && define.amd ? define(['exports'], factory) :
-       (factory((global.d3 = global.d3 || {})));
+typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
+typeof define === 'function' && define.amd ? define(['exports'], factory) :
+(factory((global.d3 = global.d3 || {})));
 }(this, (function (exports) { 'use strict';
 
 }(this, (function (exports) { 'use strict';
 
-var version = "5.5.0";
+var version = "5.7.0";
 
 function ascending(a, b) {
   return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
 
 function ascending(a, b) {
   return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
@@ -269,7 +269,7 @@ function histogram() {
     // Convert number of thresholds into uniform thresholds.
     if (!Array.isArray(tz)) {
       tz = tickStep(x0, x1, tz);
     // Convert number of thresholds into uniform thresholds.
     if (!Array.isArray(tz)) {
       tz = tickStep(x0, x1, tz);
-      tz = sequence(Math.ceil(x0 / tz) * tz, Math.floor(x1 / tz) * tz, tz); // exclusive
+      tz = sequence(Math.ceil(x0 / tz) * tz, x1, tz); // exclusive
     }
 
     // Remove any thresholds outside the domain.
     }
 
     // Remove any thresholds outside the domain.
@@ -622,16 +622,16 @@ function axis(orient, scale) {
 
     path = path.merge(path.enter().insert("path", ".tick")
         .attr("class", "domain")
 
     path = path.merge(path.enter().insert("path", ".tick")
         .attr("class", "domain")
-        .attr("stroke", "#000"));
+        .attr("stroke", "currentColor"));
 
     tick = tick.merge(tickEnter);
 
     line = line.merge(tickEnter.append("line")
 
     tick = tick.merge(tickEnter);
 
     line = line.merge(tickEnter.append("line")
-        .attr("stroke", "#000")
+        .attr("stroke", "currentColor")
         .attr(x + "2", k * tickSizeInner));
 
     text = text.merge(tickEnter.append("text")
         .attr(x + "2", k * tickSizeInner));
 
     text = text.merge(tickEnter.append("text")
-        .attr("fill", "#000")
+        .attr("fill", "currentColor")
         .attr(x, k * spacing)
         .attr("dy", orient === top ? "0em" : orient === bottom ? "0.71em" : "0.32em"));
 
         .attr(x, k * spacing)
         .attr("dy", orient === top ? "0em" : orient === bottom ? "0.71em" : "0.32em"));
 
@@ -654,8 +654,8 @@ function axis(orient, scale) {
 
     path
         .attr("d", orient === left || orient == right
 
     path
         .attr("d", orient === left || orient == right
-            ? "M" + k * tickSizeOuter + "," + range0 + "H0.5V" + range1 + "H" + k * tickSizeOuter
-            : "M" + range0 + "," + k * tickSizeOuter + "V0.5H" + range1 + "V" + k * tickSizeOuter);
+            ? (tickSizeOuter ? "M" + k * tickSizeOuter + "," + range0 + "H0.5V" + range1 + "H" + k * tickSizeOuter : "M0.5," + range0 + "V" + range1)
+            : (tickSizeOuter ? "M" + range0 + "," + k * tickSizeOuter + "V0.5H" + range1 + "V" + k * tickSizeOuter : "M" + range0 + ",0.5H" + range1));
 
     tick
         .attr("opacity", 1)
 
     tick
         .attr("opacity", 1)
@@ -2672,7 +2672,7 @@ function date(a, b) {
   };
 }
 
   };
 }
 
-function reinterpolate(a, b) {
+function interpolateNumber(a, b) {
   return a = +a, b -= a, function(t) {
     return a + b * t;
   };
   return a = +a, b -= a, function(t) {
     return a + b * t;
   };
@@ -2740,7 +2740,7 @@ function interpolateString(a, b) {
       else s[++i] = bm;
     } else { // interpolate non-matching numbers
       s[++i] = null;
       else s[++i] = bm;
     } else { // interpolate non-matching numbers
       s[++i] = null;
-      q.push({i: i, x: reinterpolate(am, bm)});
+      q.push({i: i, x: interpolateNumber(am, bm)});
     }
     bi = reB.lastIndex;
   }
     }
     bi = reB.lastIndex;
   }
@@ -2766,13 +2766,28 @@ function interpolateString(a, b) {
 function interpolateValue(a, b) {
   var t = typeof b, c;
   return b == null || t === "boolean" ? constant$3(b)
 function interpolateValue(a, b) {
   var t = typeof b, c;
   return b == null || t === "boolean" ? constant$3(b)
-      : (t === "number" ? reinterpolate
+      : (t === "number" ? interpolateNumber
       : t === "string" ? ((c = color(b)) ? (b = c, interpolateRgb) : interpolateString)
       : b instanceof color ? interpolateRgb
       : b instanceof Date ? date
       : Array.isArray(b) ? array$1
       : typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object
       : t === "string" ? ((c = color(b)) ? (b = c, interpolateRgb) : interpolateString)
       : b instanceof color ? interpolateRgb
       : b instanceof Date ? date
       : Array.isArray(b) ? array$1
       : typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object
-      : reinterpolate)(a, b);
+      : interpolateNumber)(a, b);
+}
+
+function discrete(range) {
+  var n = range.length;
+  return function(t) {
+    return range[Math.max(0, Math.min(n - 1, Math.floor(t * n)))];
+  };
+}
+
+function hue$1(a, b) {
+  var i = hue(+a, +b);
+  return function(t) {
+    var x = i(t);
+    return x - 360 * Math.floor(x / 360);
+  };
 }
 
 function interpolateRound(a, b) {
 }
 
 function interpolateRound(a, b) {
@@ -2841,7 +2856,7 @@ function interpolateTransform(parse, pxComma, pxParen, degParen) {
   function translate(xa, ya, xb, yb, s, q) {
     if (xa !== xb || ya !== yb) {
       var i = s.push("translate(", null, pxComma, null, pxParen);
   function translate(xa, ya, xb, yb, s, q) {
     if (xa !== xb || ya !== yb) {
       var i = s.push("translate(", null, pxComma, null, pxParen);
-      q.push({i: i - 4, x: reinterpolate(xa, xb)}, {i: i - 2, x: reinterpolate(ya, yb)});
+      q.push({i: i - 4, x: interpolateNumber(xa, xb)}, {i: i - 2, x: interpolateNumber(ya, yb)});
     } else if (xb || yb) {
       s.push("translate(" + xb + pxComma + yb + pxParen);
     }
     } else if (xb || yb) {
       s.push("translate(" + xb + pxComma + yb + pxParen);
     }
@@ -2850,7 +2865,7 @@ function interpolateTransform(parse, pxComma, pxParen, degParen) {
   function rotate(a, b, s, q) {
     if (a !== b) {
       if (a - b > 180) b += 360; else if (b - a > 180) a += 360; // shortest path
   function rotate(a, b, s, q) {
     if (a !== b) {
       if (a - b > 180) b += 360; else if (b - a > 180) a += 360; // shortest path
-      q.push({i: s.push(pop(s) + "rotate(", null, degParen) - 2, x: reinterpolate(a, b)});
+      q.push({i: s.push(pop(s) + "rotate(", null, degParen) - 2, x: interpolateNumber(a, b)});
     } else if (b) {
       s.push(pop(s) + "rotate(" + b + degParen);
     }
     } else if (b) {
       s.push(pop(s) + "rotate(" + b + degParen);
     }
@@ -2858,7 +2873,7 @@ function interpolateTransform(parse, pxComma, pxParen, degParen) {
 
   function skewX(a, b, s, q) {
     if (a !== b) {
 
   function skewX(a, b, s, q) {
     if (a !== b) {
-      q.push({i: s.push(pop(s) + "skewX(", null, degParen) - 2, x: reinterpolate(a, b)});
+      q.push({i: s.push(pop(s) + "skewX(", null, degParen) - 2, x: interpolateNumber(a, b)});
     } else if (b) {
       s.push(pop(s) + "skewX(" + b + degParen);
     }
     } else if (b) {
       s.push(pop(s) + "skewX(" + b + degParen);
     }
@@ -2867,7 +2882,7 @@ function interpolateTransform(parse, pxComma, pxParen, degParen) {
   function scale(xa, ya, xb, yb, s, q) {
     if (xa !== xb || ya !== yb) {
       var i = s.push(pop(s) + "scale(", null, ",", null, ")");
   function scale(xa, ya, xb, yb, s, q) {
     if (xa !== xb || ya !== yb) {
       var i = s.push(pop(s) + "scale(", null, ",", null, ")");
-      q.push({i: i - 4, x: reinterpolate(xa, xb)}, {i: i - 2, x: reinterpolate(ya, yb)});
+      q.push({i: i - 4, x: interpolateNumber(xa, xb)}, {i: i - 2, x: interpolateNumber(ya, yb)});
     } else if (xb !== 1 || yb !== 1) {
       s.push(pop(s) + "scale(" + xb + "," + yb + ")");
     }
     } else if (xb !== 1 || yb !== 1) {
       s.push(pop(s) + "scale(" + xb + "," + yb + ")");
     }
@@ -3449,7 +3464,7 @@ function tweenValue(transition, name, value) {
 
 function interpolate(a, b) {
   var c;
 
 function interpolate(a, b) {
   var c;
-  return (typeof b === "number" ? reinterpolate
+  return (typeof b === "number" ? interpolateNumber
       : b instanceof color ? interpolateRgb
       : (c = color(b)) ? (b = c, interpolateRgb)
       : interpolateString)(a, b);
       : b instanceof color ? interpolateRgb
       : (c = color(b)) ? (b = c, interpolateRgb)
       : interpolateString)(a, b);
@@ -4909,7 +4924,7 @@ Path.prototype = path.prototype = {
     }
 
     // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.
     }
 
     // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.
-    else if (!(l01_2 > epsilon$1)) {}
+    else if (!(l01_2 > epsilon$1));
 
     // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?
     // Equivalently, is (x1,y1) coincident with (x2,y2)?
 
     // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?
     // Equivalently, is (x1,y1) coincident with (x2,y2)?
@@ -5061,7 +5076,7 @@ function ribbon() {
   };
 
   ribbon.context = function(_) {
   };
 
   ribbon.context = function(_) {
-    return arguments.length ? (context = _ == null ? null : _, ribbon) : context;
+    return arguments.length ? ((context = _ == null ? null : _), ribbon) : context;
   };
 
   return ribbon;
   };
 
   return ribbon;
@@ -5565,9 +5580,14 @@ function defaultY(d) {
   return d[1];
 }
 
   return d[1];
 }
 
+function defaultWeight() {
+  return 1;
+}
+
 function density() {
   var x = defaultX,
       y = defaultY,
 function density() {
   var x = defaultX,
       y = defaultY,
+      weight = defaultWeight,
       dx = 960,
       dy = 500,
       r = 20, // blur radius
       dx = 960,
       dy = 500,
       r = 20, // blur radius
@@ -5582,10 +5602,11 @@ function density() {
         values1 = new Float32Array(n * m);
 
     data.forEach(function(d, i, data) {
         values1 = new Float32Array(n * m);
 
     data.forEach(function(d, i, data) {
-      var xi = (x(d, i, data) + o) >> k,
-          yi = (y(d, i, data) + o) >> k;
+      var xi = (+x(d, i, data) + o) >> k,
+          yi = (+y(d, i, data) + o) >> k,
+          wi = +weight(d, i, data);
       if (xi >= 0 && xi < n && yi >= 0 && yi < m) {
       if (xi >= 0 && xi < n && yi >= 0 && yi < m) {
-        ++values0[xi + yi * n];
+        values0[xi + yi * n] += wi;
       }
     });
 
       }
     });
 
@@ -5649,6 +5670,10 @@ function density() {
     return arguments.length ? (y = typeof _ === "function" ? _ : constant$6(+_), density) : y;
   };
 
     return arguments.length ? (y = typeof _ === "function" ? _ : constant$6(+_), density) : y;
   };
 
+  density.weight = function(_) {
+    return arguments.length ? (weight = typeof _ === "function" ? _ : constant$6(+_), density) : weight;
+  };
+
   density.size = function(_) {
     if (!arguments.length) return [dx, dy];
     var _0 = Math.ceil(_[0]), _1 = Math.ceil(_[1]);
   density.size = function(_) {
     if (!arguments.length) return [dx, dy];
     var _0 = Math.ceil(_[0]), _1 = Math.ceil(_[1]);
@@ -6219,7 +6244,7 @@ function tree_remove(d) {
   if (next = node.next) delete node.next;
 
   // If there are multiple coincident points, remove just the point.
   if (next = node.next) delete node.next;
 
   // If there are multiple coincident points, remove just the point.
-  if (previous) return next ? previous.next = next : delete previous.next, this;
+  if (previous) return (next ? previous.next = next : delete previous.next), this;
 
   // If this is the root point, remove it.
   if (!parent) return this._root = next, this;
 
   // If this is the root point, remove it.
   if (!parent) return this._root = next, this;
@@ -6683,7 +6708,7 @@ function simulation(nodes) {
     },
 
     force: function(name, _) {
     },
 
     force: function(name, _) {
-      return arguments.length > 1 ? (_ == null ? forces.remove(name) : forces.set(name, initializeForce(_)), simulation) : forces.get(name);
+      return arguments.length > 1 ? ((_ == null ? forces.remove(name) : forces.set(name, initializeForce(_))), simulation) : forces.get(name);
     },
 
     find: function(x, y, radius) {
     },
 
     find: function(x, y, radius) {
@@ -7008,7 +7033,7 @@ function formatNumerals(numerals) {
 }
 
 // [[fill]align][sign][symbol][0][width][,][.precision][~][type]
 }
 
 // [[fill]align][sign][symbol][0][width][,][.precision][~][type]
-var re = /^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;
+var re = /^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;
 
 function formatSpecifier(specifier) {
   return new FormatSpecifier(specifier);
 
 function formatSpecifier(specifier) {
   return new FormatSpecifier(specifier);
@@ -9875,7 +9900,8 @@ function albersUsa() {
 
   function albersUsa(coordinates) {
     var x = coordinates[0], y = coordinates[1];
 
   function albersUsa(coordinates) {
     var x = coordinates[0], y = coordinates[1];
-    return point = null, (lower48Point.point(x, y), point)
+    return point = null,
+        (lower48Point.point(x, y), point)
         || (alaskaPoint.point(x, y), point)
         || (hawaiiPoint.point(x, y), point);
   }
         || (alaskaPoint.point(x, y), point)
         || (hawaiiPoint.point(x, y), point);
   }
@@ -10039,7 +10065,7 @@ function mercatorProjection(project) {
   };
 
   m.clipExtent = function(_) {
   };
 
   m.clipExtent = function(_) {
-    return arguments.length ? (_ == null ? x0 = y0 = x1 = y1 = null : (x0 = +_[0][0], y0 = +_[0][1], x1 = +_[1][0], y1 = +_[1][1]), reclip()) : x0 == null ? null : [[x0, y0], [x1, y1]];
+    return arguments.length ? ((_ == null ? x0 = y0 = x1 = y1 = null : (x0 = +_[0][0], y0 = +_[0][1], x1 = +_[1][0], y1 = +_[1][1])), reclip()) : x0 == null ? null : [[x0, y0], [x1, y1]];
   };
 
   function reclip() {
   };
 
   function reclip() {
@@ -10123,6 +10149,40 @@ function conicEquidistant() {
       .center([0, 13.9389]);
 }
 
       .center([0, 13.9389]);
 }
 
+var A1 = 1.340264,
+    A2 = -0.081106,
+    A3 = 0.000893,
+    A4 = 0.003796,
+    M = sqrt(3) / 2,
+    iterations = 12;
+
+function equalEarthRaw(lambda, phi) {
+  var l = asin(M * sin$1(phi)), l2 = l * l, l6 = l2 * l2 * l2;
+  return [
+    lambda * cos$1(l) / (M * (A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2))),
+    l * (A1 + A2 * l2 + l6 * (A3 + A4 * l2))
+  ];
+}
+
+equalEarthRaw.invert = function(x, y) {
+  var l = y, l2 = l * l, l6 = l2 * l2 * l2;
+  for (var i = 0, delta, fy, fpy; i < iterations; ++i) {
+    fy = l * (A1 + A2 * l2 + l6 * (A3 + A4 * l2)) - y;
+    fpy = A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2);
+    l -= delta = fy / fpy, l2 = l * l, l6 = l2 * l2 * l2;
+    if (abs(delta) < epsilon2$1) break;
+  }
+  return [
+    M * x * (A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2)) / cos$1(l),
+    asin(sin$1(l) / M)
+  ];
+};
+
+function equalEarth() {
+  return projection(equalEarthRaw)
+      .scale(177.158);
+}
+
 function gnomonicRaw(x, y) {
   var cy = cos$1(y), k = cos$1(x) * cy;
   return [cy * sin$1(x) / k, sin$1(y) / k];
 function gnomonicRaw(x, y) {
   var cy = cos$1(y), k = cos$1(x) * cy;
   return [cy * sin$1(x) / k, sin$1(y) / k];
@@ -11916,7 +11976,7 @@ function point$1() {
   return pointish(band().paddingInner(1));
 }
 
   return pointish(band().paddingInner(1));
 }
 
-function constant$10(x) {
+function constant$a(x) {
   return function() {
     return x;
   };
   return function() {
     return x;
   };
@@ -11931,7 +11991,7 @@ var unit = [0, 1];
 function deinterpolateLinear(a, b) {
   return (b -= (a = +a))
       ? function(x) { return (x - a) / b; }
 function deinterpolateLinear(a, b) {
   return (b -= (a = +a))
       ? function(x) { return (x - a) / b; }
-      : constant$10(b);
+      : constant$a(b);
 }
 
 function deinterpolateClamp(deinterpolate) {
 }
 
 function deinterpolateClamp(deinterpolate) {
@@ -11941,21 +12001,21 @@ function deinterpolateClamp(deinterpolate) {
   };
 }
 
   };
 }
 
-function reinterpolateClamp(reinterpolate$$1) {
+function reinterpolateClamp(reinterpolate) {
   return function(a, b) {
   return function(a, b) {
-    var r = reinterpolate$$1(a = +a, b = +b);
+    var r = reinterpolate(a = +a, b = +b);
     return function(t) { return t <= 0 ? a : t >= 1 ? b : r(t); };
   };
 }
 
     return function(t) { return t <= 0 ? a : t >= 1 ? b : r(t); };
   };
 }
 
-function bimap(domain, range, deinterpolate, reinterpolate$$1) {
+function bimap(domain, range, deinterpolate, reinterpolate) {
   var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1];
   var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1];
-  if (d1 < d0) d0 = deinterpolate(d1, d0), r0 = reinterpolate$$1(r1, r0);
-  else d0 = deinterpolate(d0, d1), r0 = reinterpolate$$1(r0, r1);
+  if (d1 < d0) d0 = deinterpolate(d1, d0), r0 = reinterpolate(r1, r0);
+  else d0 = deinterpolate(d0, d1), r0 = reinterpolate(r0, r1);
   return function(x) { return r0(d0(x)); };
 }
 
   return function(x) { return r0(d0(x)); };
 }
 
-function polymap(domain, range, deinterpolate, reinterpolate$$1) {
+function polymap(domain, range, deinterpolate, reinterpolate) {
   var j = Math.min(domain.length, range.length) - 1,
       d = new Array(j),
       r = new Array(j),
   var j = Math.min(domain.length, range.length) - 1,
       d = new Array(j),
       r = new Array(j),
@@ -11969,7 +12029,7 @@ function polymap(domain, range, deinterpolate, reinterpolate$$1) {
 
   while (++i < j) {
     d[i] = deinterpolate(domain[i], domain[i + 1]);
 
   while (++i < j) {
     d[i] = deinterpolate(domain[i], domain[i + 1]);
-    r[i] = reinterpolate$$1(range[i], range[i + 1]);
+    r[i] = reinterpolate(range[i], range[i + 1]);
   }
 
   return function(x) {
   }
 
   return function(x) {
@@ -11988,7 +12048,7 @@ function copy(source, target) {
 
 // deinterpolate(a, b)(x) takes a domain value x in [a,b] and returns the corresponding parameter t in [0,1].
 // reinterpolate(a, b)(t) takes a parameter t in [0,1] and returns the corresponding domain value x in [a,b].
 
 // deinterpolate(a, b)(x) takes a domain value x in [a,b] and returns the corresponding parameter t in [0,1].
 // reinterpolate(a, b)(t) takes a parameter t in [0,1] and returns the corresponding domain value x in [a,b].
-function continuous(deinterpolate, reinterpolate$$1) {
+function continuous(deinterpolate, reinterpolate) {
   var domain = unit,
       range = unit,
       interpolate$$1 = interpolateValue,
   var domain = unit,
       range = unit,
       interpolate$$1 = interpolateValue,
@@ -12008,7 +12068,7 @@ function continuous(deinterpolate, reinterpolate$$1) {
   }
 
   scale.invert = function(y) {
   }
 
   scale.invert = function(y) {
-    return (input || (input = piecewise$$1(range, domain, deinterpolateLinear, clamp ? reinterpolateClamp(reinterpolate$$1) : reinterpolate$$1)))(+y);
+    return (input || (input = piecewise$$1(range, domain, deinterpolateLinear, clamp ? reinterpolateClamp(reinterpolate) : reinterpolate)))(+y);
   };
 
   scale.domain = function(_) {
   };
 
   scale.domain = function(_) {
@@ -12119,7 +12179,7 @@ function linearish(scale) {
 }
 
 function linear$2() {
 }
 
 function linear$2() {
-  var scale = continuous(deinterpolateLinear, reinterpolate);
+  var scale = continuous(deinterpolateLinear, interpolateNumber);
 
   scale.copy = function() {
     return copy(scale, linear$2());
 
   scale.copy = function() {
     return copy(scale, linear$2());
@@ -12170,10 +12230,10 @@ function nice(domain, interval) {
 function deinterpolate(a, b) {
   return (b = Math.log(b / a))
       ? function(x) { return Math.log(x / a) / b; }
 function deinterpolate(a, b) {
   return (b = Math.log(b / a))
       ? function(x) { return Math.log(x / a) / b; }
-      : constant$10(b);
+      : constant$a(b);
 }
 
 }
 
-function reinterpolate$1(a, b) {
+function reinterpolate(a, b) {
   return a < 0
       ? function(t) { return -Math.pow(-b, t) * Math.pow(-a, 1 - t); }
       : function(t) { return Math.pow(b, t) * Math.pow(a, 1 - t); };
   return a < 0
       ? function(t) { return -Math.pow(-b, t) * Math.pow(-a, 1 - t); }
       : function(t) { return Math.pow(b, t) * Math.pow(a, 1 - t); };
@@ -12203,7 +12263,7 @@ function reflect(f) {
 }
 
 function log$1() {
 }
 
 function log$1() {
-  var scale = continuous(deinterpolate, reinterpolate$1).domain([1, 10]),
+  var scale = continuous(deinterpolate, reinterpolate).domain([1, 10]),
       domain = scale.domain,
       base = 10,
       logs = logp(10),
       domain = scale.domain,
       base = 10,
       logs = logp(10),
@@ -12302,7 +12362,7 @@ function pow$1() {
   function deinterpolate(a, b) {
     return (b = raise$1(b, exponent) - (a = raise$1(a, exponent)))
         ? function(x) { return (raise$1(x, exponent) - a) / b; }
   function deinterpolate(a, b) {
     return (b = raise$1(b, exponent) - (a = raise$1(a, exponent)))
         ? function(x) { return (raise$1(x, exponent) - a) / b; }
-        : constant$10(b);
+        : constant$a(b);
   }
 
   function reinterpolate(a, b) {
   }
 
   function reinterpolate(a, b) {
@@ -13435,7 +13495,7 @@ function number$3(t) {
 }
 
 function calendar(year$$1, month$$1, week, day$$1, hour$$1, minute$$1, second$$1, millisecond$$1, format) {
 }
 
 function calendar(year$$1, month$$1, week, day$$1, hour$$1, minute$$1, second$$1, millisecond$$1, format) {
-  var scale = continuous(deinterpolateLinear, reinterpolate),
+  var scale = continuous(deinterpolateLinear, interpolateNumber),
       invert = scale.invert,
       domain = scale.domain;
 
       invert = scale.invert,
       domain = scale.domain;
 
@@ -13778,7 +13838,7 @@ var scheme$9 = new Array(3).concat(
 
 var BuGn = ramp(scheme$9);
 
 
 var BuGn = ramp(scheme$9);
 
-var scheme$10 = new Array(3).concat(
+var scheme$a = new Array(3).concat(
   "e0ecf49ebcda8856a7",
   "edf8fbb3cde38c96c688419d",
   "edf8fbb3cde38c96c68856a7810f7c",
   "e0ecf49ebcda8856a7",
   "edf8fbb3cde38c96c688419d",
   "edf8fbb3cde38c96c68856a7810f7c",
@@ -13788,9 +13848,9 @@ var scheme$10 = new Array(3).concat(
   "f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b"
 ).map(colors);
 
   "f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b"
 ).map(colors);
 
-var BuPu = ramp(scheme$10);
+var BuPu = ramp(scheme$a);
 
 
-var scheme$11 = new Array(3).concat(
+var scheme$b = new Array(3).concat(
   "e0f3dba8ddb543a2ca",
   "f0f9e8bae4bc7bccc42b8cbe",
   "f0f9e8bae4bc7bccc443a2ca0868ac",
   "e0f3dba8ddb543a2ca",
   "f0f9e8bae4bc7bccc42b8cbe",
   "f0f9e8bae4bc7bccc443a2ca0868ac",
@@ -13800,9 +13860,9 @@ var scheme$11 = new Array(3).concat(
   "f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081"
 ).map(colors);
 
   "f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081"
 ).map(colors);
 
-var GnBu = ramp(scheme$11);
+var GnBu = ramp(scheme$b);
 
 
-var scheme$12 = new Array(3).concat(
+var scheme$c = new Array(3).concat(
   "fee8c8fdbb84e34a33",
   "fef0d9fdcc8afc8d59d7301f",
   "fef0d9fdcc8afc8d59e34a33b30000",
   "fee8c8fdbb84e34a33",
   "fef0d9fdcc8afc8d59d7301f",
   "fef0d9fdcc8afc8d59e34a33b30000",
@@ -13812,9 +13872,9 @@ var scheme$12 = new Array(3).concat(
   "fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000"
 ).map(colors);
 
   "fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000"
 ).map(colors);
 
-var OrRd = ramp(scheme$12);
+var OrRd = ramp(scheme$c);
 
 
-var scheme$13 = new Array(3).concat(
+var scheme$d = new Array(3).concat(
   "ece2f0a6bddb1c9099",
   "f6eff7bdc9e167a9cf02818a",
   "f6eff7bdc9e167a9cf1c9099016c59",
   "ece2f0a6bddb1c9099",
   "f6eff7bdc9e167a9cf02818a",
   "f6eff7bdc9e167a9cf1c9099016c59",
@@ -13824,9 +13884,9 @@ var scheme$13 = new Array(3).concat(
   "fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636"
 ).map(colors);
 
   "fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636"
 ).map(colors);
 
-var PuBuGn = ramp(scheme$13);
+var PuBuGn = ramp(scheme$d);
 
 
-var scheme$14 = new Array(3).concat(
+var scheme$e = new Array(3).concat(
   "ece7f2a6bddb2b8cbe",
   "f1eef6bdc9e174a9cf0570b0",
   "f1eef6bdc9e174a9cf2b8cbe045a8d",
   "ece7f2a6bddb2b8cbe",
   "f1eef6bdc9e174a9cf0570b0",
   "f1eef6bdc9e174a9cf2b8cbe045a8d",
@@ -13836,9 +13896,9 @@ var scheme$14 = new Array(3).concat(
   "fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858"
 ).map(colors);
 
   "fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858"
 ).map(colors);
 
-var PuBu = ramp(scheme$14);
+var PuBu = ramp(scheme$e);
 
 
-var scheme$15 = new Array(3).concat(
+var scheme$f = new Array(3).concat(
   "e7e1efc994c7dd1c77",
   "f1eef6d7b5d8df65b0ce1256",
   "f1eef6d7b5d8df65b0dd1c77980043",
   "e7e1efc994c7dd1c77",
   "f1eef6d7b5d8df65b0ce1256",
   "f1eef6d7b5d8df65b0dd1c77980043",
@@ -13848,9 +13908,9 @@ var scheme$15 = new Array(3).concat(
   "f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f"
 ).map(colors);
 
   "f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f"
 ).map(colors);
 
-var PuRd = ramp(scheme$15);
+var PuRd = ramp(scheme$f);
 
 
-var scheme$16 = new Array(3).concat(
+var scheme$g = new Array(3).concat(
   "fde0ddfa9fb5c51b8a",
   "feebe2fbb4b9f768a1ae017e",
   "feebe2fbb4b9f768a1c51b8a7a0177",
   "fde0ddfa9fb5c51b8a",
   "feebe2fbb4b9f768a1ae017e",
   "feebe2fbb4b9f768a1c51b8a7a0177",
@@ -13860,9 +13920,9 @@ var scheme$16 = new Array(3).concat(
   "fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a"
 ).map(colors);
 
   "fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a"
 ).map(colors);
 
-var RdPu = ramp(scheme$16);
+var RdPu = ramp(scheme$g);
 
 
-var scheme$17 = new Array(3).concat(
+var scheme$h = new Array(3).concat(
   "edf8b17fcdbb2c7fb8",
   "ffffcca1dab441b6c4225ea8",
   "ffffcca1dab441b6c42c7fb8253494",
   "edf8b17fcdbb2c7fb8",
   "ffffcca1dab441b6c4225ea8",
   "ffffcca1dab441b6c42c7fb8253494",
@@ -13872,9 +13932,9 @@ var scheme$17 = new Array(3).concat(
   "ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58"
 ).map(colors);
 
   "ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58"
 ).map(colors);
 
-var YlGnBu = ramp(scheme$17);
+var YlGnBu = ramp(scheme$h);
 
 
-var scheme$18 = new Array(3).concat(
+var scheme$i = new Array(3).concat(
   "f7fcb9addd8e31a354",
   "ffffccc2e69978c679238443",
   "ffffccc2e69978c67931a354006837",
   "f7fcb9addd8e31a354",
   "ffffccc2e69978c679238443",
   "ffffccc2e69978c67931a354006837",
@@ -13884,9 +13944,9 @@ var scheme$18 = new Array(3).concat(
   "ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529"
 ).map(colors);
 
   "ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529"
 ).map(colors);
 
-var YlGn = ramp(scheme$18);
+var YlGn = ramp(scheme$i);
 
 
-var scheme$19 = new Array(3).concat(
+var scheme$j = new Array(3).concat(
   "fff7bcfec44fd95f0e",
   "ffffd4fed98efe9929cc4c02",
   "ffffd4fed98efe9929d95f0e993404",
   "fff7bcfec44fd95f0e",
   "ffffd4fed98efe9929cc4c02",
   "ffffd4fed98efe9929d95f0e993404",
@@ -13896,9 +13956,9 @@ var scheme$19 = new Array(3).concat(
   "ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506"
 ).map(colors);
 
   "ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506"
 ).map(colors);
 
-var YlOrBr = ramp(scheme$19);
+var YlOrBr = ramp(scheme$j);
 
 
-var scheme$20 = new Array(3).concat(
+var scheme$k = new Array(3).concat(
   "ffeda0feb24cf03b20",
   "ffffb2fecc5cfd8d3ce31a1c",
   "ffffb2fecc5cfd8d3cf03b20bd0026",
   "ffeda0feb24cf03b20",
   "ffffb2fecc5cfd8d3ce31a1c",
   "ffffb2fecc5cfd8d3cf03b20bd0026",
@@ -13908,9 +13968,9 @@ var scheme$20 = new Array(3).concat(
   "ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026"
 ).map(colors);
 
   "ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026"
 ).map(colors);
 
-var YlOrRd = ramp(scheme$20);
+var YlOrRd = ramp(scheme$k);
 
 
-var scheme$21 = new Array(3).concat(
+var scheme$l = new Array(3).concat(
   "deebf79ecae13182bd",
   "eff3ffbdd7e76baed62171b5",
   "eff3ffbdd7e76baed63182bd08519c",
   "deebf79ecae13182bd",
   "eff3ffbdd7e76baed62171b5",
   "eff3ffbdd7e76baed63182bd08519c",
@@ -13920,9 +13980,9 @@ var scheme$21 = new Array(3).concat(
   "f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b"
 ).map(colors);
 
   "f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b"
 ).map(colors);
 
-var Blues = ramp(scheme$21);
+var Blues = ramp(scheme$l);
 
 
-var scheme$22 = new Array(3).concat(
+var scheme$m = new Array(3).concat(
   "e5f5e0a1d99b31a354",
   "edf8e9bae4b374c476238b45",
   "edf8e9bae4b374c47631a354006d2c",
   "e5f5e0a1d99b31a354",
   "edf8e9bae4b374c476238b45",
   "edf8e9bae4b374c47631a354006d2c",
@@ -13932,9 +13992,9 @@ var scheme$22 = new Array(3).concat(
   "f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b"
 ).map(colors);
 
   "f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b"
 ).map(colors);
 
-var Greens = ramp(scheme$22);
+var Greens = ramp(scheme$m);
 
 
-var scheme$23 = new Array(3).concat(
+var scheme$n = new Array(3).concat(
   "f0f0f0bdbdbd636363",
   "f7f7f7cccccc969696525252",
   "f7f7f7cccccc969696636363252525",
   "f0f0f0bdbdbd636363",
   "f7f7f7cccccc969696525252",
   "f7f7f7cccccc969696636363252525",
@@ -13944,9 +14004,9 @@ var scheme$23 = new Array(3).concat(
   "fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000"
 ).map(colors);
 
   "fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000"
 ).map(colors);
 
-var Greys = ramp(scheme$23);
+var Greys = ramp(scheme$n);
 
 
-var scheme$24 = new Array(3).concat(
+var scheme$o = new Array(3).concat(
   "efedf5bcbddc756bb1",
   "f2f0f7cbc9e29e9ac86a51a3",
   "f2f0f7cbc9e29e9ac8756bb154278f",
   "efedf5bcbddc756bb1",
   "f2f0f7cbc9e29e9ac86a51a3",
   "f2f0f7cbc9e29e9ac8756bb154278f",
@@ -13956,9 +14016,9 @@ var scheme$24 = new Array(3).concat(
   "fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d"
 ).map(colors);
 
   "fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d"
 ).map(colors);
 
-var Purples = ramp(scheme$24);
+var Purples = ramp(scheme$o);
 
 
-var scheme$25 = new Array(3).concat(
+var scheme$p = new Array(3).concat(
   "fee0d2fc9272de2d26",
   "fee5d9fcae91fb6a4acb181d",
   "fee5d9fcae91fb6a4ade2d26a50f15",
   "fee0d2fc9272de2d26",
   "fee5d9fcae91fb6a4acb181d",
   "fee5d9fcae91fb6a4ade2d26a50f15",
@@ -13968,9 +14028,9 @@ var scheme$25 = new Array(3).concat(
   "fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d"
 ).map(colors);
 
   "fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d"
 ).map(colors);
 
-var Reds = ramp(scheme$25);
+var Reds = ramp(scheme$p);
 
 
-var scheme$26 = new Array(3).concat(
+var scheme$q = new Array(3).concat(
   "fee6cefdae6be6550d",
   "feeddefdbe85fd8d3cd94701",
   "feeddefdbe85fd8d3ce6550da63603",
   "fee6cefdae6be6550d",
   "feeddefdbe85fd8d3cd94701",
   "feeddefdbe85fd8d3ce6550da63603",
@@ -13980,7 +14040,7 @@ var scheme$26 = new Array(3).concat(
   "fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704"
 ).map(colors);
 
   "fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704"
 ).map(colors);
 
-var Oranges = ramp(scheme$26);
+var Oranges = ramp(scheme$q);
 
 var cubehelix$3 = cubehelixLong(cubehelix(300, 0.5, 0.0), cubehelix(-240, 0.5, 1.0));
 
 
 var cubehelix$3 = cubehelixLong(cubehelix(300, 0.5, 0.0), cubehelix(-240, 0.5, 1.0));
 
@@ -14027,7 +14087,7 @@ var inferno = ramp$1(colors("00000401000501010601010802010a02020c02020e030210040
 
 var plasma = ramp$1(colors("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));
 
 
 var plasma = ramp$1(colors("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));
 
-function constant$11(x) {
+function constant$b(x) {
   return function constant() {
     return x;
   };
   return function constant() {
     return x;
   };
@@ -14127,7 +14187,7 @@ function cornerTangents(x0, y0, x1, y1, r1, rc, cw) {
 function arc() {
   var innerRadius = arcInnerRadius,
       outerRadius = arcOuterRadius,
 function arc() {
   var innerRadius = arcInnerRadius,
       outerRadius = arcOuterRadius,
-      cornerRadius = constant$11(0),
+      cornerRadius = constant$b(0),
       padRadius = null,
       startAngle = arcStartAngle,
       endAngle = arcEndAngle,
       padRadius = null,
       startAngle = arcStartAngle,
       endAngle = arcEndAngle,
@@ -14276,35 +14336,35 @@ function arc() {
   };
 
   arc.innerRadius = function(_) {
   };
 
   arc.innerRadius = function(_) {
-    return arguments.length ? (innerRadius = typeof _ === "function" ? _ : constant$11(+_), arc) : innerRadius;
+    return arguments.length ? (innerRadius = typeof _ === "function" ? _ : constant$b(+_), arc) : innerRadius;
   };
 
   arc.outerRadius = function(_) {
   };
 
   arc.outerRadius = function(_) {
-    return arguments.length ? (outerRadius = typeof _ === "function" ? _ : constant$11(+_), arc) : outerRadius;
+    return arguments.length ? (outerRadius = typeof _ === "function" ? _ : constant$b(+_), arc) : outerRadius;
   };
 
   arc.cornerRadius = function(_) {
   };
 
   arc.cornerRadius = function(_) {
-    return arguments.length ? (cornerRadius = typeof _ === "function" ? _ : constant$11(+_), arc) : cornerRadius;
+    return arguments.length ? (cornerRadius = typeof _ === "function" ? _ : constant$b(+_), arc) : cornerRadius;
   };
 
   arc.padRadius = function(_) {
   };
 
   arc.padRadius = function(_) {
-    return arguments.length ? (padRadius = _ == null ? null : typeof _ === "function" ? _ : constant$11(+_), arc) : padRadius;
+    return arguments.length ? (padRadius = _ == null ? null : typeof _ === "function" ? _ : constant$b(+_), arc) : padRadius;
   };
 
   arc.startAngle = function(_) {
   };
 
   arc.startAngle = function(_) {
-    return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$11(+_), arc) : startAngle;
+    return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$b(+_), arc) : startAngle;
   };
 
   arc.endAngle = function(_) {
   };
 
   arc.endAngle = function(_) {
-    return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$11(+_), arc) : endAngle;
+    return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$b(+_), arc) : endAngle;
   };
 
   arc.padAngle = function(_) {
   };
 
   arc.padAngle = function(_) {
-    return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$11(+_), arc) : padAngle;
+    return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$b(+_), arc) : padAngle;
   };
 
   arc.context = function(_) {
   };
 
   arc.context = function(_) {
-    return arguments.length ? (context = _ == null ? null : _, arc) : context;
+    return arguments.length ? ((context = _ == null ? null : _), arc) : context;
   };
 
   return arc;
   };
 
   return arc;
@@ -14353,7 +14413,7 @@ function y$3(p) {
 function line() {
   var x$$1 = x$3,
       y$$1 = y$3,
 function line() {
   var x$$1 = x$3,
       y$$1 = y$3,
-      defined = constant$11(true),
+      defined = constant$b(true),
       context = null,
       curve = curveLinear,
       output = null;
       context = null,
       curve = curveLinear,
       output = null;
@@ -14379,15 +14439,15 @@ function line() {
   }
 
   line.x = function(_) {
   }
 
   line.x = function(_) {
-    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$11(+_), line) : x$$1;
+    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$b(+_), line) : x$$1;
   };
 
   line.y = function(_) {
   };
 
   line.y = function(_) {
-    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$11(+_), line) : y$$1;
+    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$b(+_), line) : y$$1;
   };
 
   line.defined = function(_) {
   };
 
   line.defined = function(_) {
-    return arguments.length ? (defined = typeof _ === "function" ? _ : constant$11(!!_), line) : defined;
+    return arguments.length ? (defined = typeof _ === "function" ? _ : constant$b(!!_), line) : defined;
   };
 
   line.curve = function(_) {
   };
 
   line.curve = function(_) {
@@ -14404,9 +14464,9 @@ function line() {
 function area$3() {
   var x0 = x$3,
       x1 = null,
 function area$3() {
   var x0 = x$3,
       x1 = null,
-      y0 = constant$11(0),
+      y0 = constant$b(0),
       y1 = y$3,
       y1 = y$3,
-      defined = constant$11(true),
+      defined = constant$b(true),
       context = null,
       curve = curveLinear,
       output = null;
       context = null,
       curve = curveLinear,
       output = null;
@@ -14454,27 +14514,27 @@ function area$3() {
   }
 
   area.x = function(_) {
   }
 
   area.x = function(_) {
-    return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$11(+_), x1 = null, area) : x0;
+    return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$b(+_), x1 = null, area) : x0;
   };
 
   area.x0 = function(_) {
   };
 
   area.x0 = function(_) {
-    return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$11(+_), area) : x0;
+    return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$b(+_), area) : x0;
   };
 
   area.x1 = function(_) {
   };
 
   area.x1 = function(_) {
-    return arguments.length ? (x1 = _ == null ? null : typeof _ === "function" ? _ : constant$11(+_), area) : x1;
+    return arguments.length ? (x1 = _ == null ? null : typeof _ === "function" ? _ : constant$b(+_), area) : x1;
   };
 
   area.y = function(_) {
   };
 
   area.y = function(_) {
-    return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$11(+_), y1 = null, area) : y0;
+    return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$b(+_), y1 = null, area) : y0;
   };
 
   area.y0 = function(_) {
   };
 
   area.y0 = function(_) {
-    return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$11(+_), area) : y0;
+    return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$b(+_), area) : y0;
   };
 
   area.y1 = function(_) {
   };
 
   area.y1 = function(_) {
-    return arguments.length ? (y1 = _ == null ? null : typeof _ === "function" ? _ : constant$11(+_), area) : y1;
+    return arguments.length ? (y1 = _ == null ? null : typeof _ === "function" ? _ : constant$b(+_), area) : y1;
   };
 
   area.lineX0 =
   };
 
   area.lineX0 =
@@ -14491,7 +14551,7 @@ function area$3() {
   };
 
   area.defined = function(_) {
   };
 
   area.defined = function(_) {
-    return arguments.length ? (defined = typeof _ === "function" ? _ : constant$11(!!_), area) : defined;
+    return arguments.length ? (defined = typeof _ === "function" ? _ : constant$b(!!_), area) : defined;
   };
 
   area.curve = function(_) {
   };
 
   area.curve = function(_) {
@@ -14517,9 +14577,9 @@ function pie() {
   var value = identity$7,
       sortValues = descending$1,
       sort = null,
   var value = identity$7,
       sortValues = descending$1,
       sort = null,
-      startAngle = constant$11(0),
-      endAngle = constant$11(tau$4),
-      padAngle = constant$11(0);
+      startAngle = constant$b(0),
+      endAngle = constant$b(tau$4),
+      padAngle = constant$b(0);
 
   function pie(data) {
     var i,
 
   function pie(data) {
     var i,
@@ -14562,7 +14622,7 @@ function pie() {
   }
 
   pie.value = function(_) {
   }
 
   pie.value = function(_) {
-    return arguments.length ? (value = typeof _ === "function" ? _ : constant$11(+_), pie) : value;
+    return arguments.length ? (value = typeof _ === "function" ? _ : constant$b(+_), pie) : value;
   };
 
   pie.sortValues = function(_) {
   };
 
   pie.sortValues = function(_) {
@@ -14574,15 +14634,15 @@ function pie() {
   };
 
   pie.startAngle = function(_) {
   };
 
   pie.startAngle = function(_) {
-    return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$11(+_), pie) : startAngle;
+    return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$b(+_), pie) : startAngle;
   };
 
   pie.endAngle = function(_) {
   };
 
   pie.endAngle = function(_) {
-    return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$11(+_), pie) : endAngle;
+    return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$b(+_), pie) : endAngle;
   };
 
   pie.padAngle = function(_) {
   };
 
   pie.padAngle = function(_) {
-    return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$11(+_), pie) : padAngle;
+    return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$b(+_), pie) : padAngle;
   };
 
   return pie;
   };
 
   return pie;
@@ -14703,15 +14763,15 @@ function link$2(curve) {
   };
 
   link.x = function(_) {
   };
 
   link.x = function(_) {
-    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$11(+_), link) : x$$1;
+    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$b(+_), link) : x$$1;
   };
 
   link.y = function(_) {
   };
 
   link.y = function(_) {
-    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$11(+_), link) : y$$1;
+    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$b(+_), link) : y$$1;
   };
 
   link.context = function(_) {
   };
 
   link.context = function(_) {
-    return arguments.length ? (context = _ == null ? null : _, link) : context;
+    return arguments.length ? ((context = _ == null ? null : _), link) : context;
   };
 
   return link;
   };
 
   return link;
@@ -14874,8 +14934,8 @@ var symbols = [
 ];
 
 function symbol() {
 ];
 
 function symbol() {
-  var type = constant$11(circle$2),
-      size = constant$11(64),
+  var type = constant$b(circle$2),
+      size = constant$b(64),
       context = null;
 
   function symbol() {
       context = null;
 
   function symbol() {
@@ -14886,11 +14946,11 @@ function symbol() {
   }
 
   symbol.type = function(_) {
   }
 
   symbol.type = function(_) {
-    return arguments.length ? (type = typeof _ === "function" ? _ : constant$11(_), symbol) : type;
+    return arguments.length ? (type = typeof _ === "function" ? _ : constant$b(_), symbol) : type;
   };
 
   symbol.size = function(_) {
   };
 
   symbol.size = function(_) {
-    return arguments.length ? (size = typeof _ === "function" ? _ : constant$11(+_), symbol) : size;
+    return arguments.length ? (size = typeof _ === "function" ? _ : constant$b(+_), symbol) : size;
   };
 
   symbol.context = function(_) {
   };
 
   symbol.context = function(_) {
@@ -15753,7 +15813,7 @@ function stackValue(d, key) {
 }
 
 function stack() {
 }
 
 function stack() {
-  var keys = constant$11([]),
+  var keys = constant$b([]),
       order = none$2,
       offset = none$1,
       value = stackValue;
       order = none$2,
       offset = none$1,
       value = stackValue;
@@ -15783,15 +15843,15 @@ function stack() {
   }
 
   stack.keys = function(_) {
   }
 
   stack.keys = function(_) {
-    return arguments.length ? (keys = typeof _ === "function" ? _ : constant$11(slice$6.call(_)), stack) : keys;
+    return arguments.length ? (keys = typeof _ === "function" ? _ : constant$b(slice$6.call(_)), stack) : keys;
   };
 
   stack.value = function(_) {
   };
 
   stack.value = function(_) {
-    return arguments.length ? (value = typeof _ === "function" ? _ : constant$11(+_), stack) : value;
+    return arguments.length ? (value = typeof _ === "function" ? _ : constant$b(+_), stack) : value;
   };
 
   stack.order = function(_) {
   };
 
   stack.order = function(_) {
-    return arguments.length ? (order = _ == null ? none$2 : typeof _ === "function" ? _ : constant$11(slice$6.call(_)), stack) : order;
+    return arguments.length ? (order = _ == null ? none$2 : typeof _ === "function" ? _ : constant$b(slice$6.call(_)), stack) : order;
   };
 
   stack.offset = function(_) {
   };
 
   stack.offset = function(_) {
@@ -15901,7 +15961,7 @@ function reverse(series) {
   return none$2(series).reverse();
 }
 
   return none$2(series).reverse();
 }
 
-function constant$12(x) {
+function constant$c(x) {
   return function() {
     return x;
   };
   return function() {
     return x;
   };
@@ -16870,11 +16930,11 @@ function voronoi() {
   };
 
   voronoi.x = function(_) {
   };
 
   voronoi.x = function(_) {
-    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$12(+_), voronoi) : x$$1;
+    return arguments.length ? (x$$1 = typeof _ === "function" ? _ : constant$c(+_), voronoi) : x$$1;
   };
 
   voronoi.y = function(_) {
   };
 
   voronoi.y = function(_) {
-    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$12(+_), voronoi) : y$$1;
+    return arguments.length ? (y$$1 = typeof _ === "function" ? _ : constant$c(+_), voronoi) : y$$1;
   };
 
   voronoi.extent = function(_) {
   };
 
   voronoi.extent = function(_) {
@@ -16888,7 +16948,7 @@ function voronoi() {
   return voronoi;
 }
 
   return voronoi;
 }
 
-function constant$13(x) {
+function constant$d(x) {
   return function() {
     return x;
   };
   return function() {
     return x;
   };
@@ -17329,19 +17389,19 @@ function zoom() {
   }
 
   zoom.wheelDelta = function(_) {
   }
 
   zoom.wheelDelta = function(_) {
-    return arguments.length ? (wheelDelta = typeof _ === "function" ? _ : constant$13(+_), zoom) : wheelDelta;
+    return arguments.length ? (wheelDelta = typeof _ === "function" ? _ : constant$d(+_), zoom) : wheelDelta;
   };
 
   zoom.filter = function(_) {
   };
 
   zoom.filter = function(_) {
-    return arguments.length ? (filter = typeof _ === "function" ? _ : constant$13(!!_), zoom) : filter;
+    return arguments.length ? (filter = typeof _ === "function" ? _ : constant$d(!!_), zoom) : filter;
   };
 
   zoom.touchable = function(_) {
   };
 
   zoom.touchable = function(_) {
-    return arguments.length ? (touchable = typeof _ === "function" ? _ : constant$13(!!_), zoom) : touchable;
+    return arguments.length ? (touchable = typeof _ === "function" ? _ : constant$d(!!_), zoom) : touchable;
   };
 
   zoom.extent = function(_) {
   };
 
   zoom.extent = function(_) {
-    return arguments.length ? (extent = typeof _ === "function" ? _ : constant$13([[+_[0][0], +_[0][1]], [+_[1][0], +_[1][1]]]), zoom) : extent;
+    return arguments.length ? (extent = typeof _ === "function" ? _ : constant$d([[+_[0][0], +_[0][1]], [+_[1][0], +_[1][1]]]), zoom) : extent;
   };
 
   zoom.scaleExtent = function(_) {
   };
 
   zoom.scaleExtent = function(_) {
@@ -17536,6 +17596,8 @@ exports.geoConicEqualArea = conicEqualArea;
 exports.geoConicEqualAreaRaw = conicEqualAreaRaw;
 exports.geoConicEquidistant = conicEquidistant;
 exports.geoConicEquidistantRaw = conicEquidistantRaw;
 exports.geoConicEqualAreaRaw = conicEqualAreaRaw;
 exports.geoConicEquidistant = conicEquidistant;
 exports.geoConicEquidistantRaw = conicEquidistantRaw;
+exports.geoEqualEarth = equalEarth;
+exports.geoEqualEarthRaw = equalEarthRaw;
 exports.geoEquirectangular = equirectangular;
 exports.geoEquirectangularRaw = equirectangularRaw;
 exports.geoGnomonic = gnomonic;
 exports.geoEquirectangular = equirectangular;
 exports.geoEquirectangularRaw = equirectangularRaw;
 exports.geoGnomonic = gnomonic;
@@ -17576,7 +17638,9 @@ exports.interpolateArray = array$1;
 exports.interpolateBasis = basis$1;
 exports.interpolateBasisClosed = basisClosed;
 exports.interpolateDate = date;
 exports.interpolateBasis = basis$1;
 exports.interpolateBasisClosed = basisClosed;
 exports.interpolateDate = date;
-exports.interpolateNumber = reinterpolate;
+exports.interpolateDiscrete = discrete;
+exports.interpolateHue = hue$1;
+exports.interpolateNumber = interpolateNumber;
 exports.interpolateObject = object;
 exports.interpolateRound = interpolateRound;
 exports.interpolateString = interpolateString;
 exports.interpolateObject = object;
 exports.interpolateRound = interpolateRound;
 exports.interpolateString = interpolateString;
@@ -17654,39 +17718,39 @@ exports.schemeSpectral = scheme$8;
 exports.interpolateBuGn = BuGn;
 exports.schemeBuGn = scheme$9;
 exports.interpolateBuPu = BuPu;
 exports.interpolateBuGn = BuGn;
 exports.schemeBuGn = scheme$9;
 exports.interpolateBuPu = BuPu;
-exports.schemeBuPu = scheme$10;
+exports.schemeBuPu = scheme$a;
 exports.interpolateGnBu = GnBu;
 exports.interpolateGnBu = GnBu;
-exports.schemeGnBu = scheme$11;
+exports.schemeGnBu = scheme$b;
 exports.interpolateOrRd = OrRd;
 exports.interpolateOrRd = OrRd;
-exports.schemeOrRd = scheme$12;
+exports.schemeOrRd = scheme$c;
 exports.interpolatePuBuGn = PuBuGn;
 exports.interpolatePuBuGn = PuBuGn;
-exports.schemePuBuGn = scheme$13;
+exports.schemePuBuGn = scheme$d;
 exports.interpolatePuBu = PuBu;
 exports.interpolatePuBu = PuBu;
-exports.schemePuBu = scheme$14;
+exports.schemePuBu = scheme$e;
 exports.interpolatePuRd = PuRd;
 exports.interpolatePuRd = PuRd;
-exports.schemePuRd = scheme$15;
+exports.schemePuRd = scheme$f;
 exports.interpolateRdPu = RdPu;
 exports.interpolateRdPu = RdPu;
-exports.schemeRdPu = scheme$16;
+exports.schemeRdPu = scheme$g;
 exports.interpolateYlGnBu = YlGnBu;
 exports.interpolateYlGnBu = YlGnBu;
-exports.schemeYlGnBu = scheme$17;
+exports.schemeYlGnBu = scheme$h;
 exports.interpolateYlGn = YlGn;
 exports.interpolateYlGn = YlGn;
-exports.schemeYlGn = scheme$18;
+exports.schemeYlGn = scheme$i;
 exports.interpolateYlOrBr = YlOrBr;
 exports.interpolateYlOrBr = YlOrBr;
-exports.schemeYlOrBr = scheme$19;
+exports.schemeYlOrBr = scheme$j;
 exports.interpolateYlOrRd = YlOrRd;
 exports.interpolateYlOrRd = YlOrRd;
-exports.schemeYlOrRd = scheme$20;
+exports.schemeYlOrRd = scheme$k;
 exports.interpolateBlues = Blues;
 exports.interpolateBlues = Blues;
-exports.schemeBlues = scheme$21;
+exports.schemeBlues = scheme$l;
 exports.interpolateGreens = Greens;
 exports.interpolateGreens = Greens;
-exports.schemeGreens = scheme$22;
+exports.schemeGreens = scheme$m;
 exports.interpolateGreys = Greys;
 exports.interpolateGreys = Greys;
-exports.schemeGreys = scheme$23;
+exports.schemeGreys = scheme$n;
 exports.interpolatePurples = Purples;
 exports.interpolatePurples = Purples;
-exports.schemePurples = scheme$24;
+exports.schemePurples = scheme$o;
 exports.interpolateReds = Reds;
 exports.interpolateReds = Reds;
-exports.schemeReds = scheme$25;
+exports.schemeReds = scheme$p;
 exports.interpolateOranges = Oranges;
 exports.interpolateOranges = Oranges;
-exports.schemeOranges = scheme$26;
+exports.schemeOranges = scheme$q;
 exports.interpolateCubehelixDefault = cubehelix$3;
 exports.interpolateRainbow = rainbow;
 exports.interpolateWarm = warm;
 exports.interpolateCubehelixDefault = cubehelix$3;
 exports.interpolateRainbow = rainbow;
 exports.interpolateWarm = warm;
index 018c862fa43b514633d1031e03584bb8e2566637..2a54e0404988d7315ccf186016b44506a091ac62 100644 (file)
@@ -1,2 +1,2 @@
-// https://d3js.org Version 5.5.0. Copyright 2018 Mike Bostock.
-(function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})})(this,function(t){"use strict";function n(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function e(t){return 1===t.length&&(t=function(t){return function(e,r){return n(t(e),r)}}(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}function r(t,n){return[t,n]}function i(t){return null===t?NaN:+t}function o(t,n){var e,r,o=t.length,a=0,u=-1,f=0,c=0;if(null==n)for(;++u<o;)isNaN(e=i(t[u]))||(c+=(r=e-f)*(e-(f+=r/++a)));else for(;++u<o;)isNaN(e=i(n(t[u],u,t)))||(c+=(r=e-f)*(e-(f+=r/++a)));if(a>1)return c/(a-1)}function a(t,n){var e=o(t,n);return e?Math.sqrt(e):e}function u(t,n){var e,r,i,o=t.length,a=-1;if(null==n){for(;++a<o;)if(null!=(e=t[a])&&e>=e)for(r=i=e;++a<o;)null!=(e=t[a])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++a<o;)if(null!=(e=n(t[a],a,t))&&e>=e)for(r=i=e;++a<o;)null!=(e=n(t[a],a,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]}function f(t){return function(){return t}}function c(t){return t}function s(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o}function l(t,n,e){var r,i,o,a,u=-1;if(n=+n,t=+t,e=+e,t===n&&e>0)return[t];if((r=n<t)&&(i=t,t=n,n=i),0===(a=h(t,n,e))||!isFinite(a))return[];if(a>0)for(t=Math.ceil(t/a),n=Math.floor(n/a),o=new Array(i=Math.ceil(n-t+1));++u<i;)o[u]=(t+u)*a;else for(t=Math.floor(t*a),n=Math.ceil(n*a),o=new Array(i=Math.ceil(t-n+1));++u<i;)o[u]=(t-u)/a;return r&&o.reverse(),o}function h(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=is?10:o>=os?5:o>=as?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=is?10:o>=os?5:o>=as?2:1)}function d(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=is?i*=10:o>=os?i*=5:o>=as&&(i*=2),n<t?-i:i}function p(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function v(t,n,e){if(null==e&&(e=i),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,o=(r-1)*n,a=Math.floor(o),u=+e(t[a],a,t);return u+(+e(t[a+1],a+1,t)-u)*(o-a)}}function g(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r}function y(t){for(var n,e,r,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(e=new Array(a);--i>=0;)for(n=(r=t[i]).length;--n>=0;)e[--a]=r[n];return e}function _(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r}function b(t){if(!(i=t.length))return[];for(var n=-1,e=_(t,m),r=new Array(e);++n<e;)for(var i,o=-1,a=r[n]=new Array(i);++o<i;)a[o]=t[o][n];return r}function m(t){return t.length}function x(t){return t}function w(t){return"translate("+(t+.5)+",0)"}function M(t){return"translate(0,"+(t+.5)+")"}function A(){return!this.__axis}function T(t,n){function e(e){var h=null==i?n.ticks?n.ticks.apply(n,r):n.domain():i,d=null==o?n.tickFormat?n.tickFormat.apply(n,r):x:o,p=Math.max(a,0)+f,v=n.range(),g=+v[0]+.5,y=+v[v.length-1]+.5,_=(n.bandwidth?function(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return+t(e)+n}}:function(t){return function(n){return+t(n)}})(n.copy()),b=e.selection?e.selection():e,m=b.selectAll(".domain").data([null]),w=b.selectAll(".tick").data(h,n).order(),M=w.exit(),T=w.enter().append("g").attr("class","tick"),N=w.select("line"),S=w.select("text");m=m.merge(m.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),w=w.merge(T),N=N.merge(T.append("line").attr("stroke","#000").attr(s+"2",c*a)),S=S.merge(T.append("text").attr("fill","#000").attr(s,c*p).attr("dy",t===fs?"0em":t===ss?"0.71em":"0.32em")),e!==b&&(m=m.transition(e),w=w.transition(e),N=N.transition(e),S=S.transition(e),M=M.transition(e).attr("opacity",hs).attr("transform",function(t){return isFinite(t=_(t))?l(t):this.getAttribute("transform")}),T.attr("opacity",hs).attr("transform",function(t){var n=this.parentNode.__axis;return l(n&&isFinite(n=n(t))?n:_(t))})),M.remove(),m.attr("d",t===ls||t==cs?"M"+c*u+","+g+"H0.5V"+y+"H"+c*u:"M"+g+","+c*u+"V0.5H"+y+"V"+c*u),w.attr("opacity",1).attr("transform",function(t){return l(_(t))}),N.attr(s+"2",c*a),S.attr(s,c*p).text(d),b.filter(A).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===cs?"start":t===ls?"end":"middle"),b.each(function(){this.__axis=_})}var r=[],i=null,o=null,a=6,u=6,f=3,c=t===fs||t===ls?-1:1,s=t===ls||t===cs?"x":"y",l=t===fs||t===ss?w:M;return e.scale=function(t){return arguments.length?(n=t,e):n},e.ticks=function(){return r=us.call(arguments),e},e.tickArguments=function(t){return arguments.length?(r=null==t?[]:us.call(t),e):r.slice()},e.tickValues=function(t){return arguments.length?(i=null==t?null:us.call(t),e):i&&i.slice()},e.tickFormat=function(t){return arguments.length?(o=t,e):o},e.tickSize=function(t){return arguments.length?(a=u=+t,e):a},e.tickSizeInner=function(t){return arguments.length?(a=+t,e):a},e.tickSizeOuter=function(t){return arguments.length?(u=+t,e):u},e.tickPadding=function(t){return arguments.length?(f=+t,e):f},e}function N(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new S(r)}function S(t){this._=t}function E(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=ds,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}function k(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),vs.hasOwnProperty(n)?{space:vs[n],local:t}:t}function C(t){var n=k(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===ps&&n.documentElement.namespaceURI===ps?n.createElement(t):n.createElementNS(e,t)}})(n)}function P(){}function z(t){return null==t?P:function(){return this.querySelector(t)}}function R(){return[]}function L(t){return null==t?R:function(){return this.querySelectorAll(t)}}function D(t){return new Array(t.length)}function U(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function q(t,n,e,r,i,o){for(var a,u=0,f=n.length,c=o.length;u<c;++u)(a=n[u])?(a.__data__=o[u],r[u]=a):e[u]=new U(t,o[u]);for(;u<f;++u)(a=n[u])&&(i[u]=a)}function O(t,n,e,r,i,o,a){var u,f,c,s={},l=n.length,h=o.length,d=new Array(l);for(u=0;u<l;++u)(f=n[u])&&(d[u]=c=ms+a.call(f,f.__data__,u,n),c in s?i[u]=f:s[c]=f);for(u=0;u<h;++u)(f=s[c=ms+a.call(t,o[u],u,o)])?(r[u]=f,f.__data__=o[u],s[c]=null):e[u]=new U(t,o[u]);for(u=0;u<l;++u)(f=n[u])&&s[d[u]]===f&&(i[u]=f)}function Y(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function B(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function F(t,n){return t.style.getPropertyValue(n)||B(t).getComputedStyle(t,null).getPropertyValue(n)}function I(t){return t.trim().split(/^|\s+/)}function j(t){return t.classList||new H(t)}function H(t){this._node=t,this._names=I(t.getAttribute("class")||"")}function X(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function G(t,n){for(var e=j(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function V(){this.textContent=""}function $(){this.innerHTML=""}function W(){this.nextSibling&&this.parentNode.appendChild(this)}function Z(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Q(){return null}function J(){var t=this.parentNode;t&&t.removeChild(this)}function K(){return this.parentNode.insertBefore(this.cloneNode(!1),this.nextSibling)}function tt(){return this.parentNode.insertBefore(this.cloneNode(!0),this.nextSibling)}function nt(t,n,e){return t=et(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function et(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function rt(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function it(t,n,e){var r=xs.hasOwnProperty(t.type)?nt:et;return function(i,o,a){var u,f=this.__on,c=r(n,o,a);if(f)for(var s=0,l=f.length;s<l;++s)if((u=f[s]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=c,u.capture=e),void(u.value=n);this.addEventListener(t.type,c,e),u={type:t.type,name:t.name,value:n,listener:c,capture:e},f?f.push(u):this.__on=[u]}}function ot(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function at(t,n,e){var r=B(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}function ut(t,n){this._groups=t,this._parents=n}function ft(){return new ut([[document.documentElement]],ws)}function ct(t){return"string"==typeof t?new ut([[document.querySelector(t)]],[document.documentElement]):new ut([[t]],ws)}function st(){return new lt}function lt(){this._="@"+(++Ms).toString(36)}function ht(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e}function dt(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]}function pt(t){var n=ht();return n.changedTouches&&(n=n.changedTouches[0]),dt(t,n)}function vt(t,n,e){arguments.length<3&&(e=n,n=ht().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return dt(t,r);return null}function gt(){t.event.stopImmediatePropagation()}function yt(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function _t(t){var n=t.document.documentElement,e=ct(t).on("dragstart.drag",yt,!0);"onselectstart"in n?e.on("selectstart.drag",yt,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")}function bt(t,n){var e=t.document.documentElement,r=ct(t).on("dragstart.drag",null);n&&(r.on("click.drag",yt,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function mt(t){return function(){return t}}function xt(t,n,e,r,i,o,a,u,f,c){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=a,this.dx=u,this.dy=f,this._=c}function wt(){return!t.event.button}function Mt(){return this.parentNode}function At(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Tt(){return"ontouchstart"in this}function Nt(t,n,e){t.prototype=n.prototype=e,e.constructor=t}function St(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function Et(){}function kt(t){var n;return t=(t+"").trim().toLowerCase(),(n=Ss.exec(t))?(n=parseInt(n[1],16),new Lt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=Es.exec(t))?Ct(parseInt(n[1],16)):(n=ks.exec(t))?new Lt(n[1],n[2],n[3],1):(n=Cs.exec(t))?new Lt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=Ps.exec(t))?Pt(n[1],n[2],n[3],n[4]):(n=zs.exec(t))?Pt(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=Rs.exec(t))?Ut(n[1],n[2]/100,n[3]/100,1):(n=Ls.exec(t))?Ut(n[1],n[2]/100,n[3]/100,n[4]):Ds.hasOwnProperty(t)?Ct(Ds[t]):"transparent"===t?new Lt(NaN,NaN,NaN,0):null}function Ct(t){return new Lt(t>>16&255,t>>8&255,255&t,1)}function Pt(t,n,e,r){return r<=0&&(t=n=e=NaN),new Lt(t,n,e,r)}function zt(t){return t instanceof Et||(t=kt(t)),t?(t=t.rgb(),new Lt(t.r,t.g,t.b,t.opacity)):new Lt}function Rt(t,n,e,r){return 1===arguments.length?zt(t):new Lt(t,n,e,null==r?1:r)}function Lt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Dt(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Ut(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Ot(t,n,e,r)}function qt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Ot)return new Ot(t.h,t.s,t.l,t.opacity);if(t instanceof Et||(t=kt(t)),!t)return new Ot;if(t instanceof Ot)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),a=NaN,u=o-i,f=(o+i)/2;return u?(a=n===o?(e-r)/u+6*(e<r):e===o?(r-n)/u+2:(n-e)/u+4,u/=f<.5?o+i:2-o-i,a*=60):u=f>0&&f<1?0:a,new Ot(a,u,f,t.opacity)}(t):new Ot(t,n,e,null==r?1:r)}function Ot(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Yt(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Bt(t){if(t instanceof It)return new It(t.l,t.a,t.b,t.opacity);if(t instanceof Wt){if(isNaN(t.h))return new It(t.l,0,0,t.opacity);var n=t.h*Us;return new It(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof Lt||(t=zt(t));var e,r,i=Gt(t.r),o=Gt(t.g),a=Gt(t.b),u=jt((.2225045*i+.7168786*o+.0606169*a)/Ys);return i===o&&o===a?e=r=u:(e=jt((.4360747*i+.3850649*o+.1430804*a)/Os),r=jt((.0139322*i+.0971045*o+.7141733*a)/Bs)),new It(116*u-16,500*(e-u),200*(u-r),t.opacity)}function Ft(t,n,e,r){return 1===arguments.length?Bt(t):new It(t,n,e,null==r?1:r)}function It(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function jt(t){return t>Hs?Math.pow(t,1/3):t/js+Fs}function Ht(t){return t>Is?t*t*t:js*(t-Fs)}function Xt(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Gt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Vt(t){if(t instanceof Wt)return new Wt(t.h,t.c,t.l,t.opacity);if(t instanceof It||(t=Bt(t)),0===t.a&&0===t.b)return new Wt(NaN,0,t.l,t.opacity);var n=Math.atan2(t.b,t.a)*qs;return new Wt(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function $t(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(t,n,e,null==r?1:r)}function Wt(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function Zt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Qt)return new Qt(t.h,t.s,t.l,t.opacity);t instanceof Lt||(t=zt(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Zs*r+$s*n-Ws*e)/(Zs+$s-Ws),o=r-i,a=(Vs*(e-i)-Xs*o)/Gs,u=Math.sqrt(a*a+o*o)/(Vs*i*(1-i)),f=u?Math.atan2(a,o)*qs-120:NaN;return new Qt(f<0?f+360:f,u,i,t.opacity)}(t):new Qt(t,n,e,null==r?1:r)}function Qt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Jt(t,n,e,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*n+(4-6*o+3*a)*e+(1+3*t+3*o-3*a)*r+a*i)/6}function Kt(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,u=r<n-1?t[r+2]:2*o-i;return Jt((e-r/n)*n,a,i,o,u)}}function tn(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],a=t[(r+1)%n],u=t[(r+2)%n];return Jt((e-r/n)*n,i,o,a,u)}}function nn(t){return function(){return t}}function en(t,n){return function(e){return t+e*n}}function rn(t,n){var e=n-t;return e?en(t,e>180||e<-180?e-360*Math.round(e/360):e):nn(isNaN(t)?n:t)}function on(t){return 1==(t=+t)?an:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):nn(isNaN(n)?e:n)}}function an(t,n){var e=n-t;return e?en(t,e):nn(isNaN(t)?n:t)}function un(t){return function(n){var e,r,i=n.length,o=new Array(i),a=new Array(i),u=new Array(i);for(e=0;e<i;++e)r=Rt(n[e]),o[e]=r.r||0,a[e]=r.g||0,u[e]=r.b||0;return o=t(o),a=t(a),u=t(u),r.opacity=1,function(t){return r.r=o(t),r.g=a(t),r.b=u(t),r+""}}}function fn(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(i),a=new Array(r);for(e=0;e<i;++e)o[e]=dn(t[e],n[e]);for(;e<r;++e)a[e]=n[e];return function(t){for(e=0;e<i;++e)a[e]=o[e](t);return a}}function cn(t,n){var e=new Date;return t=+t,n-=t,function(r){return e.setTime(t+n*r),e}}function sn(t,n){return t=+t,n-=t,function(e){return t+n*e}}function ln(t,n){var e,r={},i={};null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={});for(e in n)e in t?r[e]=dn(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}}function hn(t,n){var e,r,i,o=al.lastIndex=ul.lastIndex=0,a=-1,u=[],f=[];for(t+="",n+="";(e=al.exec(t))&&(r=ul.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),u[a]?u[a]+=i:u[++a]=i),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,f.push({i:a,x:sn(e,r)})),o=ul.lastIndex;return o<n.length&&(i=n.slice(o),u[a]?u[a]+=i:u[++a]=i),u.length<2?f[0]?function(t){return function(n){return t(n)+""}}(f[0].x):function(t){return function(){return t}}(n):(n=f.length,function(t){for(var e,r=0;r<n;++r)u[(e=f[r]).i]=e.x(t);return u.join("")})}function dn(t,n){var e,r=typeof n;return null==n||"boolean"===r?nn(n):("number"===r?sn:"string"===r?(e=kt(n))?(n=e,rl):hn:n instanceof kt?rl:n instanceof Date?cn:Array.isArray(n)?fn:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?ln:sn)(t,n)}function pn(t,n){return t=+t,n-=t,function(e){return Math.round(t+n*e)}}function vn(t,n,e,r,i,o){var a,u,f;return(a=Math.sqrt(t*t+n*n))&&(t/=a,n/=a),(f=t*e+n*r)&&(e-=t*f,r-=n*f),(u=Math.sqrt(e*e+r*r))&&(e/=u,r/=u,f/=u),t*r<n*e&&(t=-t,n=-n,f=-f,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*fl,skewX:Math.atan(f)*fl,scaleX:a,scaleY:u}}function gn(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}return function(o,a){var u=[],f=[];return o=t(o),a=t(a),function(t,r,i,o,a,u){if(t!==i||r!==o){var f=a.push("translate(",null,n,null,e);u.push({i:f-4,x:sn(t,i)},{i:f-2,x:sn(r,o)})}else(i||o)&&a.push("translate("+i+n+o+e)}(o.translateX,o.translateY,a.translateX,a.translateY,u,f),function(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:sn(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,f),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:sn(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,f),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:sn(t,e)},{i:u-2,x:sn(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,f),o=a=null,function(t){for(var n,e=-1,r=f.length;++e<r;)u[(n=f[e]).i]=n.x(t);return u.join("")}}}function yn(t){return((t=Math.exp(t))+1/t)/2}function _n(t,n){var e,r,i=t[0],o=t[1],a=t[2],u=n[0],f=n[1],c=n[2],s=u-i,l=f-o,h=s*s+l*l;if(h<vl)r=Math.log(c/a)/hl,e=function(t){return[i+t*s,o+t*l,a*Math.exp(hl*t*r)]};else{var d=Math.sqrt(h),p=(c*c-a*a+pl*h)/(2*a*dl*d),v=(c*c-a*a-pl*h)/(2*c*dl*d),g=Math.log(Math.sqrt(p*p+1)-p),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-g)/hl,e=function(t){var n=t*r,e=yn(g),u=a/(dl*d)*(e*function(t){return((t=Math.exp(2*t))-1)/(t+1)}(hl*n+g)-function(t){return((t=Math.exp(t))-1/t)/2}(g));return[i+u*s,o+u*l,a*e/yn(hl*n+g)]}}return e.duration=1e3*r,e}function bn(t){return function(n,e){var r=t((n=qt(n)).h,(e=qt(e)).h),i=an(n.s,e.s),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function mn(t){return function(n,e){var r=t((n=$t(n)).h,(e=$t(e)).h),i=an(n.c,e.c),o=an(n.l,e.l),a=an(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=a(t),n+""}}}function xn(t){return function n(e){function r(n,r){var i=t((n=Zt(n)).h,(r=Zt(r)).h),o=an(n.s,r.s),a=an(n.l,r.l),u=an(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=a(Math.pow(t,e)),n.opacity=u(t),n+""}}return e=+e,r.gamma=n,r}(1)}function wn(){return Sl||(Cl(Mn),Sl=kl.now()+El)}function Mn(){Sl=0}function An(){this._call=this._time=this._next=null}function Tn(t,n,e){var r=new An;return r.restart(t,n,e),r}function Nn(){wn(),++wl;for(var t,n=nl;n;)(t=Sl-n._time)>=0&&n._call.call(null,t),n=n._next;--wl}function Sn(){Sl=(Nl=kl.now())+El,wl=Ml=0;try{Nn()}finally{wl=0,function(){var t,n,e=nl,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:nl=n);el=t,kn(r)}(),Sl=0}}function En(){var t=kl.now(),n=t-Nl;n>Tl&&(El-=n,Nl=t)}function kn(t){if(!wl){Ml&&(Ml=clearTimeout(Ml));t-Sl>24?(t<1/0&&(Ml=setTimeout(Sn,t-kl.now()-El)),Al&&(Al=clearInterval(Al))):(Al||(Nl=kl.now(),Al=setInterval(En,Tl)),wl=1,Cl(Sn))}}function Cn(t,n,e){var r=new An;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}function Pn(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};(function(t,n,e){function r(f){var c,s,l,h;if(e.state!==Ll)return o();for(c in u)if((h=u[c]).name===e.name){if(h.state===Ul)return Cn(r);h.state===ql?(h.state=Yl,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete u[c]):+c<n&&(h.state=Yl,h.timer.stop(),delete u[c])}if(Cn(function(){e.state===Ul&&(e.state=ql,e.timer.restart(i,e.delay,e.time),i(f))}),e.state=Dl,e.on.call("start",t,t.__data__,e.index,e.group),e.state===Dl){for(e.state=Ul,a=new Array(l=e.tween.length),c=0,s=-1;c<l;++c)(h=e.tween[c].value.call(t,t.__data__,e.index,e.group))&&(a[++s]=h);a.length=s+1}}function i(n){for(var r=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(o),e.state=Ol,1),i=-1,u=a.length;++i<u;)a[i].call(null,r);e.state===Ol&&(e.on.call("end",t,t.__data__,e.index,e.group),o())}function o(){e.state=Yl,e.timer.stop(),delete u[n];for(var r in u)return;delete t.__transition}var a,u=t.__transition;u[n]=e,e.timer=Tn(function(t){e.state=Ll,e.timer.restart(r,e.delay,e.time),e.delay<=t&&r(t-e.delay)},0,e.time)})(t,e,{name:n,index:r,group:i,on:Pl,tween:zl,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Rl})}function zn(t,n){var e=Ln(t,n);if(e.state>Rl)throw new Error("too late; already scheduled");return e}function Rn(t,n){var e=Ln(t,n);if(e.state>Dl)throw new Error("too late; already started");return e}function Ln(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Dn(t,n){var e,r,i,o=t.__transition,a=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>Dl&&e.state<Ol,e.state=Yl,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):a=!1;a&&delete t.__transition}}function Un(t,n,e){var r=t._id;return t.each(function(){var t=Rn(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return Ln(t,r).value[n]}}function qn(t,n){var e;return("number"==typeof n?sn:n instanceof kt?rl:(e=kt(n))?(n=e,rl):hn)(t,n)}function On(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function Yn(t){return ft().transition(t)}function Bn(){return++Fl}function Fn(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function In(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function jn(t){return(1-Math.cos(Gl*t))/2}function Hn(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function Xn(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function Gn(t){return(t=+t)<$l?rh*t*t:t<Zl?rh*(t-=Wl)*t+Ql:t<Kl?rh*(t-=Jl)*t+th:rh*(t-=nh)*t+eh}function Vn(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return lh.time=wn(),lh;return e}function $n(t){return function(){return t}}function Wn(){t.event.stopImmediatePropagation()}function Zn(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Qn(t){return{type:t}}function Jn(){return!t.event.button}function Kn(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function te(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function ne(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function ee(n){function e(t){var e=t.property("__brush",u).selectAll(".overlay").data([Qn("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",mh.overlay).merge(e).each(function(){var t=te(this).extent;ct(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([Qn("selection")]).enter().append("rect").attr("class","selection").attr("cursor",mh.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var i=t.selectAll(".handle").data(n.handles,function(t){return t.type});i.exit().remove(),i.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return mh[t.type]}),t.each(r).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",a)}function r(){var t=ct(this),n=te(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-h/2:n[0][0]-h/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-h/2:n[0][1]-h/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+h:h}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+h:h})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function i(t,n){return t.__brush.emitter||new o(t,n)}function o(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function a(){function e(){var t=pt(w);!L||m||x||(Math.abs(t[0]-U[0])>Math.abs(t[1]-U[1])?x=!0:m=!0),U=t,b=!0,Zn(),o()}function o(){var t;switch(y=U[0]-D[0],_=U[1]-D[1],A){case ph:case dh:T&&(y=Math.max(C-u,Math.min(z-d,y)),c=u+y,p=d+y),N&&(_=Math.max(P-l,Math.min(R-v,_)),h=l+_,g=v+_);break;case vh:T<0?(y=Math.max(C-u,Math.min(z-u,y)),c=u+y,p=d):T>0&&(y=Math.max(C-d,Math.min(z-d,y)),c=u,p=d+y),N<0?(_=Math.max(P-l,Math.min(R-l,_)),h=l+_,g=v):N>0&&(_=Math.max(P-v,Math.min(R-v,_)),h=l,g=v+_);break;case gh:T&&(c=Math.max(C,Math.min(z,u-y*T)),p=Math.max(C,Math.min(z,d+y*T))),N&&(h=Math.max(P,Math.min(R,l-_*N)),g=Math.max(P,Math.min(R,v+_*N)))}p<c&&(T*=-1,t=u,u=d,d=t,t=c,c=p,p=t,M in xh&&Y.attr("cursor",mh[M=xh[M]])),g<h&&(N*=-1,t=l,l=v,v=t,t=h,h=g,g=t,M in wh&&Y.attr("cursor",mh[M=wh[M]])),S.selection&&(k=S.selection),m&&(c=k[0][0],p=k[1][0]),x&&(h=k[0][1],g=k[1][1]),k[0][0]===c&&k[0][1]===h&&k[1][0]===p&&k[1][1]===g||(S.selection=[[c,h],[p,g]],r.call(w),q.brush())}function a(){if(Wn(),t.event.touches){if(t.event.touches.length)return;f&&clearTimeout(f),f=setTimeout(function(){f=null},500),O.on("touchmove.brush touchend.brush touchcancel.brush",null)}else bt(t.event.view,b),B.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);O.attr("pointer-events","all"),Y.attr("cursor",mh.overlay),S.selection&&(k=S.selection),ne(k)&&(S.selection=null,r.call(w)),q.end()}if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return Zn()}else if(f)return;if(s.apply(this,arguments)){var u,c,l,h,d,p,v,g,y,_,b,m,x,w=this,M=t.event.target.__data__.type,A="selection"===(t.event.metaKey?M="overlay":M)?dh:t.event.altKey?gh:vh,T=n===_h?null:Mh[M],N=n===yh?null:Ah[M],S=te(w),E=S.extent,k=S.selection,C=E[0][0],P=E[0][1],z=E[1][0],R=E[1][1],L=T&&N&&t.event.shiftKey,D=pt(w),U=D,q=i(w,arguments).beforestart();"overlay"===M?S.selection=k=[[u=n===_h?C:D[0],l=n===yh?P:D[1]],[d=n===_h?z:u,v=n===yh?R:l]]:(u=k[0][0],l=k[0][1],d=k[1][0],v=k[1][1]),c=u,h=l,p=d,g=v;var O=ct(w).attr("pointer-events","none"),Y=O.selectAll(".overlay").attr("cursor",mh[M]);if(t.event.touches)O.on("touchmove.brush",e,!0).on("touchend.brush touchcancel.brush",a,!0);else{var B=ct(t.event.view).on("keydown.brush",function(){switch(t.event.keyCode){case 16:L=T&&N;break;case 18:A===vh&&(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=gh,o());break;case 32:A!==vh&&A!==gh||(T<0?d=p-y:T>0&&(u=c-y),N<0?v=g-_:N>0&&(l=h-_),A=ph,Y.attr("cursor",mh.selection),o());break;default:return}Zn()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:L&&(m=x=L=!1,o());break;case 18:A===gh&&(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=vh,o());break;case 32:A===ph&&(t.event.altKey?(T&&(d=p-y*T,u=c+y*T),N&&(v=g-_*N,l=h+_*N),A=gh):(T<0?d=p:T>0&&(u=c),N<0?v=g:N>0&&(l=h),A=vh),Y.attr("cursor",mh[M]),o());break;default:return}Zn()},!0).on("mousemove.brush",e,!0).on("mouseup.brush",a,!0);_t(t.event.view)}Wn(),Dn(w),r.call(w),q.start()}}function u(){var t=this.__brush||{selection:null};return t.extent=c.apply(this,arguments),t.dim=n,t}var f,c=Kn,s=Jn,l=N(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){a.selection=1===t&&ne(c)?null:s(t),r.call(o),u.brush()}var o=this,a=o.__brush,u=i(o,arguments),f=a.selection,c=n.input("function"==typeof e?e.apply(this,arguments):e,a.extent),s=dn(f,c);return f&&c?t:t(1)}):t.each(function(){var t=arguments,o=this.__brush,a=n.input("function"==typeof e?e.apply(this,t):e,o.extent),u=i(this,t).beforestart();Dn(this),o.selection=null==a||ne(a)?null:a,r.call(this),u.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.selection=e}(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(c="function"==typeof t?t:$n([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):c},e.filter=function(t){return arguments.length?(s="function"==typeof t?t:$n(!!t),e):s},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function re(t){return function(){return t}}function ie(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function oe(){return new ie}function ae(t){return t.source}function ue(t){return t.target}function fe(t){return t.radius}function ce(t){return t.startAngle}function se(t){return t.endAngle}function le(){}function he(t,n){var e=new le;if(t instanceof le)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var a in t)e.set(a,t[a]);return e}function de(){return{}}function pe(t,n,e){t[n]=e}function ve(){return he()}function ge(t,n,e){t.set(n,e)}function ye(){}function _e(t,n){var e=new ye;if(t instanceof ye)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}function be(t,n){return t-n}function me(t){return function(){return t}}function xe(t,n){for(var e,r=-1,i=n.length;++r<i;)if(e=function(t,n){for(var e=n[0],r=n[1],i=-1,o=0,a=t.length,u=a-1;o<a;u=o++){var f=t[o],c=f[0],s=f[1],l=t[u],h=l[0],d=l[1];if(function(t,n,e){var r;return function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])==(e[0]-t[0])*(n[1]-t[1])}(t,n,e)&&function(t,n,e){return t<=n&&n<=e||e<=n&&n<=t}(t[r=+(t[0]===n[0])],e[r],n[r])}(f,l,n))return 0;s>r!=d>r&&e<(h-c)*(r-s)/(d-s)+c&&(i=-i)}return i}(t,n[r]))return e;return 0}function we(){}function Me(){function t(t){var e=a(t);if(Array.isArray(e))e=e.slice().sort(be);else{var r=u(t),i=r[0],o=r[1];e=d(i,o,e),e=s(Math.floor(i/e)*e,Math.floor(o/e)*e,e)}return e.map(function(e){return n(t,e)})}function n(t,n){var r=[],a=[];return function(t,n,r){function a(t){var n,i,o=[t[0][0]+u,t[0][1]+f],a=[t[1][0]+u,t[1][1]+f],c=e(o),s=e(a);(n=p[c])?(i=d[s])?(delete p[n.end],delete d[i.start],n===i?(n.ring.push(a),r(n.ring)):d[n.start]=p[i.end]={start:n.start,end:i.end,ring:n.ring.concat(i.ring)}):(delete p[n.end],n.ring.push(a),p[n.end=s]=n):(n=d[s])?(i=p[c])?(delete d[n.start],delete p[i.end],n===i?(n.ring.push(a),r(n.ring)):d[i.start]=p[n.end]={start:i.start,end:n.end,ring:i.ring.concat(n.ring)}):(delete d[n.start],n.ring.unshift(o),d[n.start=c]=n):d[c]=p[s]={start:c,end:s,ring:[o,a]}}var u,f,c,s,l,h,d=new Array,p=new Array;u=f=-1,s=t[0]>=n,qh[s<<1].forEach(a);for(;++u<i-1;)c=s,s=t[u+1]>=n,qh[c|s<<1].forEach(a);qh[s<<0].forEach(a);for(;++f<o-1;){for(u=-1,s=t[f*i+i]>=n,l=t[f*i]>=n,qh[s<<1|l<<2].forEach(a);++u<i-1;)c=s,s=t[f*i+i+u+1]>=n,h=l,l=t[f*i+u+1]>=n,qh[c|s<<1|l<<2|h<<3].forEach(a);qh[s|l<<3].forEach(a)}u=-1,l=t[f*i]>=n,qh[l<<2].forEach(a);for(;++u<i-1;)h=l,l=t[f*i+u+1]>=n,qh[l<<2|h<<3].forEach(a);qh[l<<3].forEach(a)}(t,n,function(e){f(e,t,n),function(t){for(var n=0,e=t.length,r=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++n<e;)r+=t[n-1][1]*t[n][0]-t[n-1][0]*t[n][1];return r}(e)>0?r.push([e]):a.push(e)}),a.forEach(function(t){for(var n,e=0,i=r.length;e<i;++e)if(-1!==xe((n=r[e])[0],t))return void n.push(t)}),{type:"MultiPolygon",value:n,coordinates:r}}function e(t){return 2*t[0]+t[1]*(i+1)*4}function r(t,n,e){t.forEach(function(t){var r,a=t[0],u=t[1],f=0|a,c=0|u,s=n[c*i+f];a>0&&a<i&&f===a&&(r=n[c*i+f-1],t[0]=a+(e-r)/(s-r)-.5),u>0&&u<o&&c===u&&(r=n[(c-1)*i+f],t[1]=u+(e-r)/(s-r)-.5)})}var i=1,o=1,a=p,f=r;return t.contour=n,t.size=function(n){if(!arguments.length)return[i,o];var e=Math.ceil(n[0]),r=Math.ceil(n[1]);if(!(e>0&&r>0))throw new Error("invalid size");return i=e,o=r,t},t.thresholds=function(n){return arguments.length?(a="function"==typeof n?n:Array.isArray(n)?me(Uh.call(n)):me(n),t):a},t.smooth=function(n){return arguments.length?(f=n?r:we,t):f===r},t}function Ae(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<i;++a)for(var u=0,f=0;u<r+e;++u)u<r&&(f+=t.data[u+a*r]),u>=e&&(u>=o&&(f-=t.data[u-o+a*r]),n.data[u-e+a*r]=f/Math.min(u+1,r-1+o-u,o))}function Te(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<r;++a)for(var u=0,f=0;u<i+e;++u)u<i&&(f+=t.data[a+u*r]),u>=e&&(u>=o&&(f-=t.data[a+(u-o)*r]),n.data[a+(u-e)*r]=f/Math.min(u+1,i-1+o-u,o))}function Ne(t){return t[0]}function Se(t){return t[1]}function Ee(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function ke(t){function n(t,n){function e(){if(c)return Yh;if(s)return s=!1,Oh;var n,e,r=u;if(t.charCodeAt(r)===Bh){for(;u++<a&&t.charCodeAt(u)!==Bh||t.charCodeAt(++u)===Bh;);return(n=u)>=a?c=!0:(e=t.charCodeAt(u++))===Fh?s=!0:e===Ih&&(s=!0,t.charCodeAt(u)===Fh&&++u),t.slice(r+1,n-1).replace(/""/g,'"')}for(;u<a;){if((e=t.charCodeAt(n=u++))===Fh)s=!0;else if(e===Ih)s=!0,t.charCodeAt(u)===Fh&&++u;else if(e!==o)continue;return t.slice(r,n)}return c=!0,t.slice(r,a)}var r,i=[],a=t.length,u=0,f=0,c=a<=0,s=!1;for(t.charCodeAt(a-1)===Fh&&--a,t.charCodeAt(a-1)===Ih&&--a;(r=e())!==Yh;){for(var l=[];r!==Oh&&r!==Yh;)l.push(r),r=e();n&&null==(l=n(l,f++))||i.push(l)}return i}function e(n){return n.map(r).join(t)}function r(t){return null==t?"":i.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}var i=new RegExp('["'+t+"\n\r]"),o=t.charCodeAt(0);return{parse:function(t,e){var r,i,o=n(t,function(t,n){if(r)return r(t,n-1);i=t,r=e?function(t,n){var e=Ee(t);return function(r,i){return n(e(r),i,t)}}(t,e):Ee(t)});return o.columns=i||[],o},parseRows:n,format:function(n,e){return null==e&&(e=function(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}(n)),[e.map(r).join(t)].concat(n.map(function(n){return e.map(function(t){return r(n[t])}).join(t)})).join("\n")},formatRows:function(t){return t.map(e).join("\n")}}}function Ce(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function Pe(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function ze(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function Re(t,n){return fetch(t,n).then(ze)}function Le(t){return function(n,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=void 0),Re(n,e).then(function(n){return t(n,r)})}}function De(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.json()}function Ue(t){return function(n,e){return Re(n,e).then(function(n){return(new DOMParser).parseFromString(n,t)})}}function qe(t){return function(){return t}}function Oe(){return 1e-6*(Math.random()-.5)}function Ye(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,a,u,f,c,s,l,h,d=t._root,p={data:r},v=t._x0,g=t._y0,y=t._x1,_=t._y1;if(!d)return t._root=p,t;for(;d.length;)if((c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a,i=d,!(d=d[l=s<<1|c]))return i[l]=p,t;if(u=+t._x.call(null,d.data),f=+t._y.call(null,d.data),n===u&&e===f)return p.next=d,i?i[l]=p:t._root=p,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a}while((l=s<<1|c)==(h=(f>=a)<<1|u>=o));return i[h]=d,i[l]=p,t}function Be(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function Fe(t){return t[0]}function Ie(t){return t[1]}function je(t,n,e){var r=new He(null==n?Fe:n,null==e?Ie:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function He(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function Xe(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function Ge(t){return t.x+t.vx}function Ve(t){return t.y+t.vy}function $e(t){return t.index}function We(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function Ze(t){return t.x}function Qe(t){return t.y}function Je(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function Ke(t){return(t=Je(Math.abs(t)))?t[1]:NaN}function tr(t){return new nr(t)}function nr(t){if(!(n=ud.exec(t)))throw new Error("invalid format: "+t);var n;this.fill=n[1]||" ",this.align=n[2]||">",this.sign=n[3]||"-",this.symbol=n[4]||"",this.zero=!!n[5],this.width=n[6]&&+n[6],this.comma=!!n[7],this.precision=n[8]&&+n[8].slice(1),this.trim=!!n[9],this.type=n[10]||""}function er(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}function rr(t){return t}function ir(t){function n(t){function n(t){var n,r,a,s=y,x=_;if("c"===g)x=b(t)+x,t="";else{var w=(t=+t)<0;if(t=b(Math.abs(t),p),v&&(t=function(t){t:for(var n,e=t.length,r=1,i=-1;r<e;++r)switch(t[r]){case".":i=n=r;break;case"0":0===i&&(i=r),n=r;break;default:if(i>0){if(!+t[r])break t;i=0}}return i>0?t.slice(0,i)+t.slice(n+1):t}(t)),w&&0==+t&&(w=!1),s=(w?"("===c?c:"-":"-"===c||"("===c?"":c)+s,x=("s"===g?ld[8+fd/3]:"")+x+(w&&"("===c?")":""),m)for(n=-1,r=t.length;++n<r;)if(48>(a=t.charCodeAt(n))||a>57){x=(46===a?i+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}d&&!l&&(t=e(t,1/0));var M=s.length+t.length+x.length,A=M<h?new Array(h-M+1).join(u):"";switch(d&&l&&(t=e(A+t,A.length?h-x.length:1/0),A=""),f){case"<":t=s+t+x+A;break;case"=":t=s+A+t+x;break;case"^":t=A.slice(0,M=A.length>>1)+s+t+x+A.slice(M);break;default:t=A+s+t+x}return o(t)}var u=(t=tr(t)).fill,f=t.align,c=t.sign,s=t.symbol,l=t.zero,h=t.width,d=t.comma,p=t.precision,v=t.trim,g=t.type;"n"===g?(d=!0,g="g"):sd[g]||(null==p&&(p=12),v=!0,g="g"),(l||"0"===u&&"="===f)&&(l=!0,u="0",f="=");var y="$"===s?r[0]:"#"===s&&/[boxX]/.test(g)?"0"+g.toLowerCase():"",_="$"===s?r[1]:/[%p]/.test(g)?a:"",b=sd[g],m=/[defgprs%]/.test(g);return p=null==p?6:/[gprs]/.test(g)?Math.max(1,Math.min(21,p)):Math.max(0,Math.min(20,p)),n.toString=function(){return t+""},n}var e=t.grouping&&t.thousands?function(t,n){return function(e,r){for(var i=e.length,o=[],a=0,u=t[0],f=0;i>0&&u>0&&(f+u+1>r&&(u=Math.max(1,r-f)),o.push(e.substring(i-=u,i+u)),!((f+=u+1)>r));)u=t[a=(a+1)%t.length];return o.reverse().join(n)}}(t.grouping,t.thousands):rr,r=t.currency,i=t.decimal,o=t.numerals?function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(t.numerals):rr,a=t.percent||"%";return{format:n,formatPrefix:function(t,e){var r=n((t=tr(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(Ke(e)/3))),o=Math.pow(10,-i),a=ld[8+i/3];return function(t){return r(o*t)+a}}}}function or(n){return cd=ir(n),t.format=cd.format,t.formatPrefix=cd.formatPrefix,cd}function ar(t){return Math.max(0,-Ke(Math.abs(t)))}function ur(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Ke(n)/3)))-Ke(Math.abs(t)))}function fr(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,Ke(n)-Ke(t))+1}function cr(){return new sr}function sr(){this.reset()}function lr(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function hr(t){return t>1?0:t<-1?Gd:Math.acos(t)}function dr(t){return t>1?Vd:t<-1?-Vd:Math.asin(t)}function pr(t){return(t=ap(t/2))*t}function vr(){}function gr(t,n){t&&lp.hasOwnProperty(t.type)&&lp[t.type](t,n)}function yr(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function _r(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)yr(t[e],n,1);n.polygonEnd()}function br(t,n){t&&sp.hasOwnProperty(t.type)?sp[t.type](t,n):gr(t,n)}function mr(){pp.point=wr}function xr(){Mr(hd,dd)}function wr(t,n){pp.point=Mr,hd=t,dd=n,pd=t*=Qd,vd=np(n=(n*=Qd)/2+$d),gd=ap(n)}function Mr(t,n){n=(n*=Qd)/2+$d;var e=(t*=Qd)-pd,r=e>=0?1:-1,i=r*e,o=np(n),a=ap(n),u=gd*a,f=vd*o+u*np(i),c=u*r*ap(i);hp.add(tp(c,f)),pd=t,vd=o,gd=a}function Ar(t){return[tp(t[1],t[0]),dr(t[2])]}function Tr(t){var n=t[0],e=t[1],r=np(e);return[r*np(n),r*ap(n),ap(e)]}function Nr(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Sr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Er(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function kr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function Cr(t){var n=fp(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function Pr(t,n){Td.push(Nd=[yd=t,bd=t]),n<_d&&(_d=n),n>md&&(md=n)}function zr(t,n){var e=Tr([t*Qd,n*Qd]);if(Ad){var r=Sr(Ad,e),i=Sr([r[1],-r[0],0],r);Cr(i),i=Ar(i);var o,a=t-xd,u=a>0?1:-1,f=i[0]*Zd*u,c=Jd(a)>180;c^(u*xd<f&&f<u*t)?(o=i[1]*Zd)>md&&(md=o):(f=(f+360)%360-180,c^(u*xd<f&&f<u*t)?(o=-i[1]*Zd)<_d&&(_d=o):(n<_d&&(_d=n),n>md&&(md=n))),c?t<xd?Or(yd,t)>Or(yd,bd)&&(bd=t):Or(t,bd)>Or(yd,bd)&&(yd=t):bd>=yd?(t<yd&&(yd=t),t>bd&&(bd=t)):t>xd?Or(yd,t)>Or(yd,bd)&&(bd=t):Or(t,bd)>Or(yd,bd)&&(yd=t)}else Td.push(Nd=[yd=t,bd=t]);n<_d&&(_d=n),n>md&&(md=n),Ad=e,xd=t}function Rr(){gp.point=zr}function Lr(){Nd[0]=yd,Nd[1]=bd,gp.point=Pr,Ad=null}function Dr(t,n){if(Ad){var e=t-xd;vp.add(Jd(e)>180?e+(e>0?360:-360):e)}else wd=t,Md=n;pp.point(t,n),zr(t,n)}function Ur(){pp.lineStart()}function qr(){Dr(wd,Md),pp.lineEnd(),Jd(vp)>Hd&&(yd=-(bd=180)),Nd[0]=yd,Nd[1]=bd,Ad=null}function Or(t,n){return(n-=t)<0?n+360:n}function Yr(t,n){return t[0]-n[0]}function Br(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}function Fr(t,n){t*=Qd;var e=np(n*=Qd);Ir(e*np(t),e*ap(t),ap(n))}function Ir(t,n,e){kd+=(t-kd)/++Sd,Cd+=(n-Cd)/Sd,Pd+=(e-Pd)/Sd}function jr(){yp.point=Hr}function Hr(t,n){t*=Qd;var e=np(n*=Qd);Bd=e*np(t),Fd=e*ap(t),Id=ap(n),yp.point=Xr,Ir(Bd,Fd,Id)}function Xr(t,n){t*=Qd;var e=np(n*=Qd),r=e*np(t),i=e*ap(t),o=ap(n),a=tp(fp((a=Fd*o-Id*i)*a+(a=Id*r-Bd*o)*a+(a=Bd*i-Fd*r)*a),Bd*r+Fd*i+Id*o);Ed+=a,zd+=a*(Bd+(Bd=r)),Rd+=a*(Fd+(Fd=i)),Ld+=a*(Id+(Id=o)),Ir(Bd,Fd,Id)}function Gr(){yp.point=Fr}function Vr(){yp.point=Wr}function $r(){Zr(Od,Yd),yp.point=Fr}function Wr(t,n){Od=t,Yd=n,t*=Qd,n*=Qd,yp.point=Zr;var e=np(n);Bd=e*np(t),Fd=e*ap(t),Id=ap(n),Ir(Bd,Fd,Id)}function Zr(t,n){t*=Qd;var e=np(n*=Qd),r=e*np(t),i=e*ap(t),o=ap(n),a=Fd*o-Id*i,u=Id*r-Bd*o,f=Bd*i-Fd*r,c=fp(a*a+u*u+f*f),s=dr(c),l=c&&-s/c;Dd+=l*a,Ud+=l*u,qd+=l*f,Ed+=s,zd+=s*(Bd+(Bd=r)),Rd+=s*(Fd+(Fd=i)),Ld+=s*(Id+(Id=o)),Ir(Bd,Fd,Id)}function Qr(t){return function(){return t}}function Jr(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e}function Kr(t,n){return[t>Gd?t-Wd:t<-Gd?t+Wd:t,n]}function ti(t,n,e){return(t%=Wd)?n||e?Jr(ei(t),ri(n,e)):ei(t):n||e?ri(n,e):Kr}function ni(t){return function(n,e){return n+=t,[n>Gd?n-Wd:n<-Gd?n+Wd:n,e]}}function ei(t){var n=ni(t);return n.invert=ni(-t),n}function ri(t,n){function e(t,n){var e=np(n),u=np(t)*e,f=ap(t)*e,c=ap(n),s=c*r+u*i;return[tp(f*o-s*a,u*r-c*i),dr(s*o+f*a)]}var r=np(t),i=ap(t),o=np(n),a=ap(n);return e.invert=function(t,n){var e=np(n),u=np(t)*e,f=ap(t)*e,c=ap(n),s=c*o-f*a;return[tp(f*o+c*a,u*r+s*i),dr(s*r-u*i)]},e}function ii(t){function n(n){return n=t(n[0]*Qd,n[1]*Qd),n[0]*=Zd,n[1]*=Zd,n}return t=ti(t[0]*Qd,t[1]*Qd,t.length>2?t[2]*Qd:0),n.invert=function(n){return n=t.invert(n[0]*Qd,n[1]*Qd),n[0]*=Zd,n[1]*=Zd,n},n}function oi(t,n,e,r,i,o){if(e){var a=np(n),u=ap(n),f=r*e;null==i?(i=n+r*Wd,o=n-f/2):(i=ai(a,i),o=ai(a,o),(r>0?i<o:i>o)&&(i+=r*Wd));for(var c,s=i;r>0?s>o:s<o;s-=f)c=Ar([a,-u*np(s),-u*ap(s)]),t.point(c[0],c[1])}}function ai(t,n){(n=Tr(n))[0]-=t,Cr(n);var e=hr(-n[1]);return((-n[2]<0?-e:e)+Wd-Hd)%Wd}function ui(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:vr,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function fi(t,n){return Jd(t[0]-n[0])<Hd&&Jd(t[1]-n[1])<Hd}function ci(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function si(t,n,e,r,i){var o,a,u=[],f=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],a=t[n];if(fi(r,a)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);i.lineEnd()}else u.push(e=new ci(r,t,null,!0)),f.push(e.o=new ci(r,null,e,!1)),u.push(e=new ci(a,t,null,!1)),f.push(e.o=new ci(a,null,e,!0))}}),u.length){for(f.sort(n),li(u),li(f),o=0,a=f.length;o<a;++o)f[o].e=e=!e;for(var c,s,l=u[0];;){for(var h=l,d=!0;h.v;)if((h=h.n)===l)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(d)for(o=0,a=c.length;o<a;++o)i.point((s=c[o])[0],s[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(d)for(c=h.p.z,o=c.length-1;o>=0;--o)i.point((s=c[o])[0],s[1]);else r(h.x,h.p.x,-1,i);h=h.p}c=(h=h.o).z,d=!d}while(!h.v);i.lineEnd()}}}function li(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}function hi(t,n){var e=n[0],r=n[1],i=ap(r),o=[ap(e),-np(e),0],a=0,u=0;kp.reset(),1===i?r=Vd+Hd:-1===i&&(r=-Vd-Hd);for(var f=0,c=t.length;f<c;++f)if(l=(s=t[f]).length)for(var s,l,h=s[l-1],d=h[0],p=h[1]/2+$d,v=ap(p),g=np(p),y=0;y<l;++y,d=b,v=x,g=w,h=_){var _=s[y],b=_[0],m=_[1]/2+$d,x=ap(m),w=np(m),M=b-d,A=M>=0?1:-1,T=A*M,N=T>Gd,S=v*x;if(kp.add(tp(S*A*ap(T),g*w+S*np(T))),a+=N?M+A*Wd:M,N^d>=e^b>=e){var E=Sr(Tr(h),Tr(_));Cr(E);var k=Sr(o,E);Cr(k);var C=(N^M>=0?-1:1)*dr(k[2]);(r>C||r===C&&(E[0]||E[1]))&&(u+=N^M>=0?1:-1)}}return(a<-Hd||a<Hd&&kp<-Hd)^1&u}function di(t,n,e,r){return function(i){function o(n,e){t(n,e)&&i.point(n,e)}function a(t,n){v.point(t,n)}function u(){m.point=a,v.lineStart()}function f(){m.point=o,v.lineEnd()}function c(t,n){p.push([t,n]),_.point(t,n)}function s(){_.lineStart(),p=[]}function l(){c(p[0][0],p[0][1]),_.lineEnd();var t,n,e,r,o=_.clean(),a=g.result(),u=a.length;if(p.pop(),h.push(p),p=null,u)if(1&o){if(e=a[0],(n=e.length-1)>0){for(b||(i.polygonStart(),b=!0),i.lineStart(),t=0;t<n;++t)i.point((r=e[t])[0],r[1]);i.lineEnd()}}else u>1&&2&o&&a.push(a.pop().concat(a.shift())),d.push(a.filter(pi))}var h,d,p,v=n(i),g=ui(),_=n(g),b=!1,m={point:o,lineStart:u,lineEnd:f,polygonStart:function(){m.point=c,m.lineStart=s,m.lineEnd=l,d=[],h=[]},polygonEnd:function(){m.point=o,m.lineStart=u,m.lineEnd=f,d=y(d);var t=hi(h,r);d.length?(b||(i.polygonStart(),b=!0),si(d,vi,t,e,i)):t&&(b||(i.polygonStart(),b=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),b&&(i.polygonEnd(),b=!1),d=h=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};return m}}function pi(t){return t.length>1}function vi(t,n){return((t=t.x)[0]<0?t[1]-Vd-Hd:Vd-t[1])-((n=n.x)[0]<0?n[1]-Vd-Hd:Vd-n[1])}function gi(t){function n(t,n){return np(t)*np(n)>i}function e(t,n,e){var r=[1,0,0],o=Sr(Tr(t),Tr(n)),a=Nr(o,o),u=o[0],f=a-u*u;if(!f)return!e&&t;var c=i*a/f,s=-i*u/f,l=Sr(r,o),h=kr(r,c);Er(h,kr(o,s));var d=l,p=Nr(h,d),v=Nr(d,d),g=p*p-v*(Nr(h,h)-1);if(!(g<0)){var y=fp(g),_=kr(d,(-p-y)/v);if(Er(_,h),_=Ar(_),!e)return _;var b,m=t[0],x=n[0],w=t[1],M=n[1];x<m&&(b=m,m=x,x=b);var A=x-m,T=Jd(A-Gd)<Hd;if(!T&&M<w&&(b=w,w=M,M=b),T||A<Hd?T?w+M>0^_[1]<(Jd(_[0]-m)<Hd?w:M):w<=_[1]&&_[1]<=M:A>Gd^(m<=_[0]&&_[0]<=x)){var N=kr(d,(-p+y)/v);return Er(N,h),[_,Ar(N)]}}}function r(n,e){var r=a?t:Gd-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var i=np(t),o=6*Qd,a=i>0,u=Jd(i)>Hd;return di(n,function(t){var i,o,f,c,s;return{lineStart:function(){c=f=!1,s=1},point:function(l,h){var d,p=[l,h],v=n(l,h),g=a?v?0:r(l,h):v?r(l+(l<0?Gd:-Gd),h):0;if(!i&&(c=f=v)&&t.lineStart(),v!==f&&(!(d=e(i,p))||fi(i,d)||fi(p,d))&&(p[0]+=Hd,p[1]+=Hd,v=n(p[0],p[1])),v!==f)s=0,v?(t.lineStart(),d=e(p,i),t.point(d[0],d[1])):(d=e(i,p),t.point(d[0],d[1]),t.lineEnd()),i=d;else if(u&&i&&a^v){var y;g&o||!(y=e(p,i,!0))||(s=0,a?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||i&&fi(i,p)||t.point(p[0],p[1]),i=p,f=v,o=g},lineEnd:function(){f&&t.lineEnd(),i=null},clean:function(){return s|(c&&f)<<1}}},function(n,e,r,i){oi(i,t,o,r,n,e)},a?[0,-t]:[-Gd,t-Gd])}function yi(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,u,c){var s=0,l=0;if(null==i||(s=a(i,u))!==(l=a(o,u))||f(i,o)<0^u>0)do{c.point(0===s||3===s?t:e,s>1?r:n)}while((s=(s+u+4)%4)!==l);else c.point(o[0],o[1])}function a(r,i){return Jd(r[0]-t)<Hd?i>0?0:3:Jd(r[0]-e)<Hd?i>0?2:1:Jd(r[1]-n)<Hd?i>0?1:0:i>0?3:2}function u(t,n){return f(t.x,n.x)}function f(t,n){var e=a(t,1),r=a(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(a){function f(t,n){i(t,n)&&w.point(t,n)}function c(o,a){var u=i(o,a);if(l&&h.push([o,a]),m)d=o,p=a,v=u,m=!1,u&&(w.lineStart(),w.point(o,a));else if(u&&b)w.point(o,a);else{var f=[g=Math.max(zp,Math.min(Pp,g)),_=Math.max(zp,Math.min(Pp,_))],c=[o=Math.max(zp,Math.min(Pp,o)),a=Math.max(zp,Math.min(Pp,a))];!function(t,n,e,r,i,o){var a,u=t[0],f=t[1],c=0,s=1,l=n[0]-u,h=n[1]-f;if(a=e-u,l||!(a>0)){if(a/=l,l<0){if(a<c)return;a<s&&(s=a)}else if(l>0){if(a>s)return;a>c&&(c=a)}if(a=i-u,l||!(a<0)){if(a/=l,l<0){if(a>s)return;a>c&&(c=a)}else if(l>0){if(a<c)return;a<s&&(s=a)}if(a=r-f,h||!(a>0)){if(a/=h,h<0){if(a<c)return;a<s&&(s=a)}else if(h>0){if(a>s)return;a>c&&(c=a)}if(a=o-f,h||!(a<0)){if(a/=h,h<0){if(a>s)return;a>c&&(c=a)}else if(h>0){if(a<c)return;a<s&&(s=a)}return c>0&&(t[0]=u+c*l,t[1]=f+c*h),s<1&&(n[0]=u+s*l,n[1]=f+s*h),!0}}}}}(f,c,t,n,e,r)?u&&(w.lineStart(),w.point(o,a),x=!1):(b||(w.lineStart(),w.point(f[0],f[1])),w.point(c[0],c[1]),u||w.lineEnd(),x=!1)}g=o,_=a,b=u}var s,l,h,d,p,v,g,_,b,m,x,w=a,M=ui(),A={point:f,lineStart:function(){A.point=c,l&&l.push(h=[]),m=!0,b=!1,g=_=NaN},lineEnd:function(){s&&(c(d,p),v&&b&&M.rejoin(),s.push(M.result())),A.point=f,b&&w.lineEnd()},polygonStart:function(){w=M,s=[],l=[],x=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=l.length;e<i;++e)for(var o,a,u=l[e],f=1,c=u.length,s=u[0],h=s[0],d=s[1];f<c;++f)o=h,a=d,h=(s=u[f])[0],d=s[1],a<=r?d>r&&(h-o)*(r-a)>(d-a)*(t-o)&&++n:d<=r&&(h-o)*(r-a)<(d-a)*(t-o)&&--n;return n}(),e=x&&n,i=(s=y(s)).length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),o(null,null,1,a),a.lineEnd()),i&&si(s,u,n,o,a),a.polygonEnd()),w=a,s=l=h=null}};return A}}function _i(){Lp.point=Lp.lineEnd=vr}function bi(t,n){_p=t*=Qd,bp=ap(n*=Qd),mp=np(n),Lp.point=mi}function mi(t,n){t*=Qd;var e=ap(n*=Qd),r=np(n),i=Jd(t-_p),o=np(i),a=r*ap(i),u=mp*e-bp*r*o,f=bp*e+mp*r*o;Rp.add(tp(fp(a*a+u*u),f)),_p=t,bp=e,mp=r}function xi(t){return Rp.reset(),br(t,Lp),+Rp}function wi(t,n){return Dp[0]=t,Dp[1]=n,xi(Up)}function Mi(t,n){return!(!t||!Op.hasOwnProperty(t.type))&&Op[t.type](t,n)}function Ai(t,n){return 0===wi(t,n)}function Ti(t,n){var e=wi(t[0],t[1]);return wi(t[0],n)+wi(n,t[1])<=e+Hd}function Ni(t,n){return!!hi(t.map(Si),Ei(n))}function Si(t){return(t=t.map(Ei)).pop(),t}function Ei(t){return[t[0]*Qd,t[1]*Qd]}function ki(t,n,e){var r=s(t,n-Hd,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function Ci(t,n,e){var r=s(t,n-Hd,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function Pi(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return s(ep(o/y)*y,i,y).map(d).concat(s(ep(c/_)*_,f,_).map(p)).concat(s(ep(r/v)*v,e,v).filter(function(t){return Jd(t%y)>Hd}).map(l)).concat(s(ep(u/g)*g,a,g).filter(function(t){return Jd(t%_)>Hd}).map(h))}var e,r,i,o,a,u,f,c,l,h,d,p,v=10,g=v,y=90,_=360,b=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[d(o).concat(p(f).slice(1),d(i).reverse().slice(1),p(c).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],c=+n[0][1],f=+n[1][1],o>i&&(n=o,o=i,i=n),c>f&&(n=c,c=f,f=n),t.precision(b)):[[o,c],[i,f]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],u=+n[0][1],a=+n[1][1],r>e&&(n=r,r=e,e=n),u>a&&(n=u,u=a,a=n),t.precision(b)):[[r,u],[e,a]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(y=+n[0],_=+n[1],t):[y,_]},t.stepMinor=function(n){return arguments.length?(v=+n[0],g=+n[1],t):[v,g]},t.precision=function(n){return arguments.length?(b=+n,l=ki(u,a,90),h=Ci(r,e,b),d=ki(c,f,90),p=Ci(o,i,b),t):b},t.extentMajor([[-180,-90+Hd],[180,90-Hd]]).extentMinor([[-180,-80-Hd],[180,80+Hd]])}function zi(t){return t}function Ri(){Fp.point=Li}function Li(t,n){Fp.point=Di,xp=Mp=t,wp=Ap=n}function Di(t,n){Bp.add(Ap*t-Mp*n),Mp=t,Ap=n}function Ui(){Di(xp,wp)}function qi(t,n){Vp+=t,$p+=n,++Wp}function Oi(){ev.point=Yi}function Yi(t,n){ev.point=Bi,qi(Sp=t,Ep=n)}function Bi(t,n){var e=t-Sp,r=n-Ep,i=fp(e*e+r*r);Zp+=i*(Sp+t)/2,Qp+=i*(Ep+n)/2,Jp+=i,qi(Sp=t,Ep=n)}function Fi(){ev.point=qi}function Ii(){ev.point=Hi}function ji(){Xi(Tp,Np)}function Hi(t,n){ev.point=Xi,qi(Tp=Sp=t,Np=Ep=n)}function Xi(t,n){var e=t-Sp,r=n-Ep,i=fp(e*e+r*r);Zp+=i*(Sp+t)/2,Qp+=i*(Ep+n)/2,Jp+=i,Kp+=(i=Ep*t-Sp*n)*(Sp+t),tv+=i*(Ep+n),nv+=3*i,qi(Sp=t,Ep=n)}function Gi(t){this._context=t}function Vi(t,n){cv.point=$i,iv=av=t,ov=uv=n}function $i(t,n){av-=t,uv-=n,fv.add(fp(av*av+uv*uv)),av=t,uv=n}function Wi(){this._string=[]}function Zi(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Qi(t){return function(n){var e=new Ji;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ji(){}function Ki(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),br(e,t.stream(Gp)),n(Gp.result()),null!=r&&t.clipExtent(r),t}function to(t,n,e){return Ki(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),a=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,u=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([a,u])},e)}function no(t,n,e){return to(t,[[0,0],n],e)}function eo(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,a=-i*e[0][1];t.scale(150*i).translate([o,a])},e)}function ro(t,n,e){return Ki(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],a=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,a])},e)}function io(t,n){return+n?function(t,n){function e(r,i,o,a,u,f,c,s,l,h,d,p,v,g){var y=c-r,_=s-i,b=y*y+_*_;if(b>4*n&&v--){var m=a+h,x=u+d,w=f+p,M=fp(m*m+x*x+w*w),A=dr(w/=M),T=Jd(Jd(w)-1)<Hd||Jd(o-l)<Hd?(o+l)/2:tp(x,m),N=t(T,A),S=N[0],E=N[1],k=S-r,C=E-i,P=_*k-y*C;(P*P/b>n||Jd((y*k+_*C)/b-.5)>.3||a*h+u*d+f*p<lv)&&(e(r,i,o,a,u,f,S,E,T,m/=M,x/=M,w,v,g),g.point(S,E),e(S,E,T,m,x,w,c,s,l,h,d,p,v,g))}}return function(n){function r(e,r){e=t(e,r),n.point(e[0],e[1])}function i(){y=NaN,w.point=o,n.lineStart()}function o(r,i){var o=Tr([r,i]),a=t(r,i);e(y,_,g,b,m,x,y=a[0],_=a[1],g=r,b=o[0],m=o[1],x=o[2],sv,n),n.point(y,_)}function a(){w.point=r,n.lineEnd()}function u(){i(),w.point=f,w.lineEnd=c}function f(t,n){o(s=t,n),l=y,h=_,d=b,p=m,v=x,w.point=o}function c(){e(y,_,g,b,m,x,l,h,s,d,p,v,sv,n),w.lineEnd=a,a()}var s,l,h,d,p,v,g,y,_,b,m,x,w={point:r,lineStart:i,lineEnd:a,polygonStart:function(){n.polygonStart(),w.lineStart=u},polygonEnd:function(){n.polygonEnd(),w.lineStart=i}};return w}}(t,n):function(t){return Qi({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}(t)}function oo(t,n,e,r){function i(t,r){return[u*t-f*r+n,e-f*t-u*r]}var o=np(r),a=ap(r),u=o*t,f=a*t,c=o/t,s=a/t,l=(a*e-o*n)/t,h=(a*n+o*e)/t;return i.invert=function(t,n){return[c*t-s*n+l,h-s*t-c*n]},i}function ao(t){return uo(function(){return t})()}function uo(t){function n(t){return l(t[0]*Qd,t[1]*Qd)}function e(){var t=oo(p,0,0,w).apply(null,i(y,_)),n=(w?oo:function(t,n,e){function r(r,i){return[n+t*r,e-t*i]}return r.invert=function(r,i){return[(r-n)/t,(e-i)/t]},r})(p,v-t[0],g-t[1],w);return o=ti(b,m,x),s=Jr(i,n),l=Jr(o,s),c=io(s,S),r()}function r(){return h=d=null,n}var i,o,a,u,f,c,s,l,h,d,p=150,v=480,g=250,y=0,_=0,b=0,m=0,x=0,w=0,M=null,A=Cp,T=null,N=zi,S=.5;return n.stream=function(t){return h&&d===t?h:h=hv(function(t){return Qi({point:function(n,e){var r=t(n,e);return this.stream.point(r[0],r[1])}})}(o)(A(c(N(d=t)))))},n.preclip=function(t){return arguments.length?(A=t,M=void 0,r()):A},n.postclip=function(t){return arguments.length?(N=t,T=a=u=f=null,r()):N},n.clipAngle=function(t){return arguments.length?(A=+t?gi(M=t*Qd):(M=null,Cp),r()):M*Zd},n.clipExtent=function(t){return arguments.length?(N=null==t?(T=a=u=f=null,zi):yi(T=+t[0][0],a=+t[0][1],u=+t[1][0],f=+t[1][1]),r()):null==T?null:[[T,a],[u,f]]},n.scale=function(t){return arguments.length?(p=+t,e()):p},n.translate=function(t){return arguments.length?(v=+t[0],g=+t[1],e()):[v,g]},n.center=function(t){return arguments.length?(y=t[0]%360*Qd,_=t[1]%360*Qd,e()):[y*Zd,_*Zd]},n.rotate=function(t){return arguments.length?(b=t[0]%360*Qd,m=t[1]%360*Qd,x=t.length>2?t[2]%360*Qd:0,e()):[b*Zd,m*Zd,x*Zd]},n.angle=function(t){return arguments.length?(w=t%360*Qd,e()):w*Zd},n.precision=function(t){return arguments.length?(c=io(s,S=t*t),r()):fp(S)},n.fitExtent=function(t,e){return to(n,t,e)},n.fitSize=function(t,e){return no(n,t,e)},n.fitWidth=function(t,e){return eo(n,t,e)},n.fitHeight=function(t,e){return ro(n,t,e)},function(){return i=t.apply(this,arguments),n.invert=i.invert&&function(t){return(t=l.invert(t[0],t[1]))&&[t[0]*Zd,t[1]*Zd]},e()}}function fo(t){var n=0,e=Gd/3,r=uo(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*Qd,e=t[1]*Qd):[n*Zd,e*Zd]},i}function co(t,n){function e(t,n){var e=fp(o-2*i*ap(n))/i;return[e*ap(t*=i),a-e*np(t)]}var r=ap(t),i=(r+ap(n))/2;if(Jd(i)<Hd)return function(t){function n(t,n){return[t*e,ap(n)/e]}var e=np(t);return n.invert=function(t,n){return[t/e,dr(n*e)]},n}(t);var o=1+r*(2*i-r),a=fp(o)/i;return e.invert=function(t,n){var e=a-n;return[tp(t,Jd(e))/i*up(e),dr((o-(t*t+e*e)*i*i)/(2*i))]},e}function so(){return fo(co).scale(155.424).center([0,33.6442])}function lo(){return so().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function ho(t){return function(n,e){var r=np(n),i=np(e),o=t(r*i);return[o*i*ap(n),o*ap(e)]}}function po(t){return function(n,e){var r=fp(n*n+e*e),i=t(r),o=ap(i),a=np(i);return[tp(n*o,r*a),dr(r&&e*o/r)]}}function vo(t,n){return[t,ip(cp((Vd+n)/2))]}function go(t){function n(){var n=Gd*u(),a=o(ii(o.rotate()).invert([0,0]));return c(null==s?[[a[0]-n,a[1]-n],[a[0]+n,a[1]+n]]:t===vo?[[Math.max(a[0]-n,s),e],[Math.min(a[0]+n,r),i]]:[[s,Math.max(a[1]-n,e)],[r,Math.min(a[1]+n,i)]])}var e,r,i,o=ao(t),a=o.center,u=o.scale,f=o.translate,c=o.clipExtent,s=null;return o.scale=function(t){return arguments.length?(u(t),n()):u()},o.translate=function(t){return arguments.length?(f(t),n()):f()},o.center=function(t){return arguments.length?(a(t),n()):a()},o.clipExtent=function(t){return arguments.length?(null==t?s=e=r=i=null:(s=+t[0][0],e=+t[0][1],r=+t[1][0],i=+t[1][1]),n()):null==s?null:[[s,e],[r,i]]},n()}function yo(t){return cp((Vd+t)/2)}function _o(t,n){function e(t,n){o>0?n<-Vd+Hd&&(n=-Vd+Hd):n>Vd-Hd&&(n=Vd-Hd);var e=o/op(yo(n),i);return[e*ap(i*t),o-e*np(i*t)]}var r=np(t),i=t===n?ap(t):ip(r/np(n))/ip(yo(n)/yo(t)),o=r*op(yo(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=up(i)*fp(t*t+e*e);return[tp(t,Jd(e))/i*up(e),2*Kd(op(o/r,1/i))-Vd]},e):vo}function bo(t,n){return[t,n]}function mo(t,n){function e(t,n){var e=o-n,r=i*t;return[e*ap(r),o-e*np(r)]}var r=np(t),i=t===n?ap(t):(r-np(n))/(n-t),o=r/i+t;return Jd(i)<Hd?bo:(e.invert=function(t,n){var e=o-n;return[tp(t,Jd(e))/i*up(e),o-up(i)*fp(t*t+e*e)]},e)}function xo(t,n){var e=np(n),r=np(t)*e;return[e*ap(t)/r,ap(n)/r]}function wo(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?zi:Qi({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function Mo(t,n){var e=n*n,r=e*e;return[t*(.8707-.131979*e+r*(r*(.003971*e-.001529*r)-.013791)),n*(1.007226+e*(.015085+r*(.028874*e-.044475-.005916*r)))]}function Ao(t,n){return[np(n)*ap(t),ap(n)]}function To(t,n){var e=np(n),r=1+np(t)*e;return[e*ap(t)/r,ap(n)/r]}function No(t,n){return[ip(cp((Vd+n)/2)),-t]}function So(t,n){return t.parent===n.parent?1:2}function Eo(t,n){return t+n.x}function ko(t,n){return Math.max(t,n.y)}function Co(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function Po(t,n){var e,r,i,o,a,u=new Do(t),f=+t.value&&(u.value=t.value),c=[u];for(null==n&&(n=zo);e=c.pop();)if(f&&(e.value=+e.data.value),(i=n(e.data))&&(a=i.length))for(e.children=new Array(a),o=a-1;o>=0;--o)c.push(r=e.children[o]=new Do(i[o])),r.parent=e,r.depth=e.depth+1;return u.eachBefore(Lo)}function zo(t){return t.children}function Ro(t){t.data=t.data.data}function Lo(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function Do(t){this.data=t,this.depth=this.height=0,this.parent=null}function Uo(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(vv.call(t))).length,o=[];r<i;)n=t[r],e&&Oo(e,n)?++r:(e=function(t){switch(t.length){case 1:return function(t){return{x:t.x,y:t.y,r:t.r}}(t[0]);case 2:return Bo(t[0],t[1]);case 3:return Fo(t[0],t[1],t[2])}}(o=function(t,n){var e,r;if(Yo(n,t))return[n];for(e=0;e<t.length;++e)if(qo(n,t[e])&&Yo(Bo(t[e],n),t))return[t[e],n];for(e=0;e<t.length-1;++e)for(r=e+1;r<t.length;++r)if(qo(Bo(t[e],t[r]),n)&&qo(Bo(t[e],n),t[r])&&qo(Bo(t[r],n),t[e])&&Yo(Fo(t[e],t[r],n),t))return[t[e],t[r],n];throw new Error}(o,n)),r=0);return e}function qo(t,n){var e=t.r-n.r,r=n.x-t.x,i=n.y-t.y;return e<0||e*e<r*r+i*i}function Oo(t,n){var e=t.r-n.r+1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Yo(t,n){for(var e=0;e<n.length;++e)if(!Oo(t,n[e]))return!1;return!0}function Bo(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,a=n.y,u=n.r,f=o-e,c=a-r,s=u-i,l=Math.sqrt(f*f+c*c);return{x:(e+o+f/l*s)/2,y:(r+a+c/l*s)/2,r:(l+i+u)/2}}function Fo(t,n,e){var r=t.x,i=t.y,o=t.r,a=n.x,u=n.y,f=n.r,c=e.x,s=e.y,l=e.r,h=r-a,d=r-c,p=i-u,v=i-s,g=f-o,y=l-o,_=r*r+i*i-o*o,b=_-a*a-u*u+f*f,m=_-c*c-s*s+l*l,x=d*p-h*v,w=(p*m-v*b)/(2*x)-r,M=(v*g-p*y)/x,A=(d*b-h*m)/(2*x)-i,T=(h*y-d*g)/x,N=M*M+T*T-1,S=2*(o+w*M+A*T),E=w*w+A*A-o*o,k=-(N?(S+Math.sqrt(S*S-4*N*E))/(2*N):E/S);return{x:r+w+M*k,y:i+A+T*k,r:k}}function Io(t,n,e){var r,i,o,a,u=t.x-n.x,f=t.y-n.y,c=u*u+f*f;c?(i=n.r+e.r,i*=i,a=t.r+e.r,i>(a*=a)?(r=(c+a-i)/(2*c),o=Math.sqrt(Math.max(0,a/c-r*r)),e.x=t.x-r*u-o*f,e.y=t.y-r*f+o*u):(r=(c+i-a)/(2*c),o=Math.sqrt(Math.max(0,i/c-r*r)),e.x=n.x+r*u-o*f,e.y=n.y+r*f+o*u)):(e.x=n.x+e.r,e.y=n.y)}function jo(t,n){var e=t.r+n.r-1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Ho(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function Xo(t){this._=t,this.next=null,this.previous=null}function Go(t){if(!(i=t.length))return 0;var n,e,r,i,o,a,u,f,c,s,l;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Io(e,n,r=t[2]),n=new Xo(n),e=new Xo(e),r=new Xo(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(u=3;u<i;++u){Io(n._,e._,r=t[u]),r=new Xo(r),f=e.next,c=n.previous,s=e._.r,l=n._.r;do{if(s<=l){if(jo(f._,r._)){e=f,n.next=e,e.previous=n,--u;continue t}s+=f._.r,f=f.next}else{if(jo(c._,r._)){(n=c).next=e,e.previous=n,--u;continue t}l+=c._.r,c=c.previous}}while(f!==c.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,o=Ho(n);(r=r.next)!==e;)(a=Ho(r))<o&&(n=r,o=a);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=Uo(n),u=0;u<i;++u)n=t[u],n.x-=r.x,n.y-=r.y;return r.r}function Vo(t){if("function"!=typeof t)throw new Error;return t}function $o(){return 0}function Wo(t){return function(){return t}}function Zo(t){return Math.sqrt(t.value)}function Qo(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function Jo(t,n){return function(e){if(r=e.children){var r,i,o,a=r.length,u=t(e)*n||0;if(u)for(i=0;i<a;++i)r[i].r+=u;if(o=Go(r),u)for(i=0;i<a;++i)r[i].r-=u;e.r=o+u}}}function Ko(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function ta(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function na(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(r-n)/t.value;++u<f;)(o=a[u]).y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*c}function ea(t){return t.id}function ra(t){return t.parentId}function ia(t,n){return t.parent===n.parent?1:2}function oa(t){var n=t.children;return n?n[0]:t.t}function aa(t){var n=t.children;return n?n[n.length-1]:t.t}function ua(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function fa(t,n,e){return t.a.parent===n.parent?t.a:e}function ca(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function sa(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(i-e)/t.value;++u<f;)(o=a[u]).x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*c}function la(t,n,e,r,i,o){for(var a,u,f,c,s,l,h,d,p,v,g,y=[],_=n.children,b=0,m=0,x=_.length,w=n.value;b<x;){f=i-e,c=o-r;do{s=_[m++].value}while(!s&&m<x);for(l=h=s,g=s*s*(v=Math.max(c/f,f/c)/(w*t)),p=Math.max(h/g,g/l);m<x;++m){if(s+=u=_[m].value,u<l&&(l=u),u>h&&(h=u),g=s*s*v,(d=Math.max(h/g,g/l))>p){s-=u;break}p=d}y.push(a={value:s,dice:f<c,children:_.slice(b,m)}),a.dice?na(a,e,r,i,w?r+=c*s/w:o):sa(a,e,r,w?e+=f*s/w:i,o),w-=s,b=m}return y}function ha(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])}function da(t,n){return t[0]-n[0]||t[1]-n[1]}function pa(t){for(var n=t.length,e=[0,1],r=2,i=2;i<n;++i){for(;r>1&&ha(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function va(){return Math.random()}function ga(t){function n(n){var o=n+"",a=e.get(o);if(!a){if(i!==Pv)return i;e.set(o,a=r.push(n))}return t[(a-1)%t.length]}var e=he(),r=[],i=Pv;return t=null==t?[]:Cv.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=he();for(var i,o,a=-1,u=t.length;++a<u;)e.has(o=(i=t[a])+"")||e.set(o,r.push(i));return n},n.range=function(e){return arguments.length?(t=Cv.call(e),n):t.slice()},n.unknown=function(t){return arguments.length?(i=t,n):i},n.copy=function(){return ga().domain(r).range(t).unknown(i)},n}function ya(){function t(){var t=i().length,r=a[1]<a[0],h=a[r-0],d=a[1-r];n=(d-h)/Math.max(1,t-f+2*c),u&&(n=Math.floor(n)),h+=(d-h-n*(t-f))*l,e=n*(1-f),u&&(h=Math.round(h),e=Math.round(e));var p=s(t).map(function(t){return h+n*t});return o(r?p.reverse():p)}var n,e,r=ga().unknown(void 0),i=r.domain,o=r.range,a=[0,1],u=!1,f=0,c=0,l=.5;return delete r.unknown,r.domain=function(n){return arguments.length?(i(n),t()):i()},r.range=function(n){return arguments.length?(a=[+n[0],+n[1]],t()):a.slice()},r.rangeRound=function(n){return a=[+n[0],+n[1]],u=!0,t()},r.bandwidth=function(){return e},r.step=function(){return n},r.round=function(n){return arguments.length?(u=!!n,t()):u},r.padding=function(n){return arguments.length?(f=c=Math.max(0,Math.min(1,n)),t()):f},r.paddingInner=function(n){return arguments.length?(f=Math.max(0,Math.min(1,n)),t()):f},r.paddingOuter=function(n){return arguments.length?(c=Math.max(0,Math.min(1,n)),t()):c},r.align=function(n){return arguments.length?(l=Math.max(0,Math.min(1,n)),t()):l},r.copy=function(){return ya().domain(i()).range(a).round(u).paddingInner(f).paddingOuter(c).align(l)},t()}function _a(t){var n=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return _a(n())},t}function ba(t){return function(){return t}}function ma(t){return+t}function xa(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:ba(n)}function wa(t,n,e,r){var i=t[0],o=t[1],a=n[0],u=n[1];return o<i?(i=e(o,i),a=r(u,a)):(i=e(i,o),a=r(a,u)),function(t){return a(i(t))}}function Ma(t,n,e,r){var i=Math.min(t.length,n.length)-1,o=new Array(i),a=new Array(i),u=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++u<i;)o[u]=e(t[u],t[u+1]),a[u]=r(n[u],n[u+1]);return function(n){var e=Kc(t,n,1,i)-1;return a[e](o[e](n))}}function Aa(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function Ta(t,n){function e(){return i=Math.min(u.length,f.length)>2?Ma:wa,o=a=null,r}function r(n){return(o||(o=i(u,f,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}(t):t,c)))(+n)}var i,o,a,u=zv,f=zv,c=dn,s=!1;return r.invert=function(t){return(a||(a=i(f,u,xa,s?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}(n):n)))(+t)},r.domain=function(t){return arguments.length?(u=kv.call(t,ma),e()):u.slice()},r.range=function(t){return arguments.length?(f=Cv.call(t),e()):f.slice()},r.rangeRound=function(t){return f=Cv.call(t),c=pn,e()},r.clamp=function(t){return arguments.length?(s=!!t,e()):s},r.interpolate=function(t){return arguments.length?(c=t,e()):c},e()}function Na(n){var e=n.domain;return n.ticks=function(t){var n=e();return l(n[0],n[n.length-1],null==t?10:t)},n.tickFormat=function(n,r){return function(n,e,r){var i,o=n[0],a=n[n.length-1],u=d(o,a,null==e?10:e);switch((r=tr(null==r?",f":r)).type){case"s":var f=Math.max(Math.abs(o),Math.abs(a));return null!=r.precision||isNaN(i=ur(u,f))||(r.precision=i),t.formatPrefix(r,f);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=fr(u,Math.max(Math.abs(o),Math.abs(a))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=ar(u))||(r.precision=i-2*("%"===r.type))}return t.format(r)}(e(),n,r)},n.nice=function(t){null==t&&(t=10);var r,i=e(),o=0,a=i.length-1,u=i[o],f=i[a];return f<u&&(r=u,u=f,f=r,r=o,o=a,a=r),(r=h(u,f,t))>0?r=h(u=Math.floor(u/r)*r,f=Math.ceil(f/r)*r,t):r<0&&(r=h(u=Math.ceil(u*r)/r,f=Math.floor(f*r)/r,t)),r>0?(i[o]=Math.floor(u/r)*r,i[a]=Math.ceil(f/r)*r,e(i)):r<0&&(i[o]=Math.ceil(u*r)/r,i[a]=Math.floor(f*r)/r,e(i)),n},n}function Sa(){var t=Ta(xa,sn);return t.copy=function(){return Aa(t,Sa())},Na(t)}function Ea(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=kv.call(e,ma),t):n.slice()},t.copy=function(){return Ea().domain(n)},Na(t)}function ka(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],a=t[i];return a<o&&(e=r,r=i,i=e,e=o,o=a,a=e),t[r]=n.floor(o),t[i]=n.ceil(a),t}function Ca(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:ba(n)}function Pa(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function za(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Ra(t){return 10===t?za:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function La(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Da(t){return function(n){return-t(-n)}}function Ua(){function n(){return o=La(i),a=Ra(i),r()[0]<0&&(o=Da(o),a=Da(a)),e}var e=Ta(Ca,Pa).domain([1,10]),r=e.domain,i=10,o=La(10),a=Ra(10);return e.base=function(t){return arguments.length?(i=+t,n()):i},e.domain=function(t){return arguments.length?(r(t),n()):r()},e.ticks=function(t){var n,e=r(),u=e[0],f=e[e.length-1];(n=f<u)&&(d=u,u=f,f=d);var c,s,h,d=o(u),p=o(f),v=null==t?10:+t,g=[];if(!(i%1)&&p-d<v){if(d=Math.round(d)-1,p=Math.round(p)+1,u>0){for(;d<p;++d)for(s=1,c=a(d);s<i;++s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else for(;d<p;++d)for(s=i-1,c=a(d);s>=1;--s)if(!((h=c*s)<u)){if(h>f)break;g.push(h)}}else g=l(d,p,Math.min(p-d,v)).map(a);return n?g.reverse():g},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var u=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/a(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=u?r(t):""}},e.nice=function(){return r(ka(r(),{floor:function(t){return a(Math.floor(o(t)))},ceil:function(t){return a(Math.ceil(o(t)))}}))},e.copy=function(){return Aa(e,Ua().base(i))},e}function qa(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function Oa(){var t=1,n=Ta(function(n,e){return(e=qa(e,t)-(n=qa(n,t)))?function(r){return(qa(r,t)-n)/e}:ba(e)},function(n,e){return e=qa(e,t)-(n=qa(n,t)),function(r){return qa(n+e*r,1/t)}}),e=n.domain;return n.exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return Aa(n,Oa().exponent(t))},Na(n)}function Ya(){function t(){var t=0,n=Math.max(1,i.length);for(o=new Array(n-1);++t<n;)o[t-1]=v(r,t/n);return e}function e(t){if(!isNaN(t=+t))return i[Kc(o,t)]}var r=[],i=[],o=[];return e.invertExtent=function(t){var n=i.indexOf(t);return n<0?[NaN,NaN]:[n>0?o[n-1]:r[0],n<o.length?o[n]:r[r.length-1]]},e.domain=function(e){if(!arguments.length)return r.slice();r=[];for(var i,o=0,a=e.length;o<a;++o)null==(i=e[o])||isNaN(i=+i)||r.push(i);return r.sort(n),t()},e.range=function(n){return arguments.length?(i=Cv.call(n),t()):i.slice()},e.quantiles=function(){return o.slice()},e.copy=function(){return Ya().domain(r).range(i)},e}function Ba(){function t(t){if(t<=t)return a[Kc(o,t,0,i)]}function n(){var n=-1;for(o=new Array(i);++n<i;)o[n]=((n+1)*r-(n-i)*e)/(i+1);return t}var e=0,r=1,i=1,o=[.5],a=[0,1];return t.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],n()):[e,r]},t.range=function(t){return arguments.length?(i=(a=Cv.call(t)).length-1,n()):a.slice()},t.invertExtent=function(t){var n=a.indexOf(t);return n<0?[NaN,NaN]:n<1?[e,o[0]]:n>=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return Ba().domain([e,r]).range(a)},Na(t)}function Fa(){function t(t){if(t<=t)return e[Kc(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=Cv.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=Cv.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return Fa().domain(n).range(e)},t}function Ia(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var a,u=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return u;do{u.push(a=new Date(+e)),n(e,o),t(e)}while(a<e&&e<r);return u},i.filter=function(e){return Ia(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return Rv.setTime(+n),Lv.setTime(+r),t(Rv),t(Lv),Math.floor(e(Rv,Lv))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}function ja(t){return Ia(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*qv)/Ov})}function Ha(t){return Ia(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/Ov})}function Xa(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function Ga(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Va(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function $a(t){function n(t,n){return function(e){var r,i,o,a=[],u=-1,f=0,c=t.length;for(e instanceof Date||(e=new Date(+e));++u<c;)37===t.charCodeAt(u)&&(a.push(t.slice(f,u)),null!=(i=Ug[r=t.charAt(++u)])?r=t.charAt(++u):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),a.push(r),f=u+1);return a.push(t.slice(f,u)),a.join("")}}function e(t,n){return function(e){var i,o,a=Va(1900);if(r(a,t,e+="",0)!=e.length)return null;if("Q"in a)return new Date(a.Q);if("p"in a&&(a.H=a.H%12+12*a.p),"V"in a){if(a.V<1||a.V>53)return null;"w"in a||(a.w=1),"Z"in a?(i=(o=(i=Ga(Va(a.y))).getUTCDay())>4||0===o?_g.ceil(i):_g(i),i=vg.offset(i,7*(a.V-1)),a.y=i.getUTCFullYear(),a.m=i.getUTCMonth(),a.d=i.getUTCDate()+(a.w+6)%7):(i=(o=(i=n(Va(a.y))).getDay())>4||0===o?$v.ceil(i):$v(i),i=Xv.offset(i,7*(a.V-1)),a.y=i.getFullYear(),a.m=i.getMonth(),a.d=i.getDate()+(a.w+6)%7)}else("W"in a||"U"in a)&&("w"in a||(a.w="u"in a?a.u%7:"W"in a?1:0),o="Z"in a?Ga(Va(a.y)).getUTCDay():n(Va(a.y)).getDay(),a.m=0,a.d="W"in a?(a.w+6)%7+7*a.W-(o+5)%7:a.w+7*a.U-(o+6)%7);return"Z"in a?(a.H+=a.Z/100|0,a.M+=a.Z%100,Ga(a)):n(a)}}function r(t,n,e,r){for(var i,o,a=0,u=n.length,f=e.length;a<u;){if(r>=f)return-1;if(37===(i=n.charCodeAt(a++))){if(i=n.charAt(a++),!(o=A[i in Ug?n.charAt(a++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}var i=t.dateTime,o=t.date,a=t.time,u=t.periods,f=t.days,c=t.shortDays,s=t.months,l=t.shortMonths,h=Qa(u),d=Ja(u),p=Qa(f),v=Ja(f),g=Qa(c),y=Ja(c),_=Qa(s),b=Ja(s),m=Qa(l),x=Ja(l),w={a:function(t){return c[t.getDay()]},A:function(t){return f[t.getDay()]},b:function(t){return l[t.getMonth()]},B:function(t){return s[t.getMonth()]},c:null,d:_u,e:_u,f:Mu,H:bu,I:mu,j:xu,L:wu,m:Au,M:Tu,p:function(t){return u[+(t.getHours()>=12)]},Q:Ku,s:tf,S:Nu,u:Su,U:Eu,V:ku,w:Cu,W:Pu,x:null,X:null,y:zu,Y:Ru,Z:Lu,"%":Ju},M={a:function(t){return c[t.getUTCDay()]},A:function(t){return f[t.getUTCDay()]},b:function(t){return l[t.getUTCMonth()]},B:function(t){return s[t.getUTCMonth()]},c:null,d:Du,e:Du,f:Bu,H:Uu,I:qu,j:Ou,L:Yu,m:Fu,M:Iu,p:function(t){return u[+(t.getUTCHours()>=12)]},Q:Ku,s:tf,S:ju,u:Hu,U:Xu,V:Gu,w:Vu,W:$u,x:null,X:null,y:Wu,Y:Zu,Z:Qu,"%":Ju},A={a:function(t,n,e){var r=g.exec(n.slice(e));return r?(t.w=y[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=p.exec(n.slice(e));return r?(t.w=v[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=m.exec(n.slice(e));return r?(t.m=x[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=_.exec(n.slice(e));return r?(t.m=b[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,n,e){return r(t,i,n,e)},d:fu,e:fu,f:pu,H:su,I:su,j:cu,L:du,m:uu,M:lu,p:function(t,n,e){var r=h.exec(n.slice(e));return r?(t.p=d[r[0].toLowerCase()],e+r[0].length):-1},Q:gu,s:yu,S:hu,u:tu,U:nu,V:eu,w:Ka,W:ru,x:function(t,n,e){return r(t,o,n,e)},X:function(t,n,e){return r(t,a,n,e)},y:ou,Y:iu,Z:au,"%":vu};return w.x=n(o,w),w.X=n(a,w),w.c=n(i,w),M.x=n(o,M),M.X=n(a,M),M.c=n(i,M),{format:function(t){var e=n(t+="",w);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",Xa);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",M);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,Ga);return n.toString=function(){return t},n}}}function Wa(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function Za(t){return t.replace(Yg,"\\$&")}function Qa(t){return new RegExp("^(?:"+t.map(Za).join("|")+")","i")}function Ja(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function Ka(t,n,e){var r=qg.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function tu(t,n,e){var r=qg.exec(n.slice(e,e+1));return r?(t.u=+r[0],e+r[0].length):-1}function nu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.U=+r[0],e+r[0].length):-1}function eu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.V=+r[0],e+r[0].length):-1}function ru(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.W=+r[0],e+r[0].length):-1}function iu(t,n,e){var r=qg.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function ou(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function au(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function uu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function fu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function cu(t,n,e){var r=qg.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function su(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function lu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function hu(t,n,e){var r=qg.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function du(t,n,e){var r=qg.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function pu(t,n,e){var r=qg.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function vu(t,n,e){var r=Og.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function gu(t,n,e){var r=qg.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function yu(t,n,e){var r=qg.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function _u(t,n){return Wa(t.getDate(),n,2)}function bu(t,n){return Wa(t.getHours(),n,2)}function mu(t,n){return Wa(t.getHours()%12||12,n,2)}function xu(t,n){return Wa(1+Xv.count(cg(t),t),n,3)}function wu(t,n){return Wa(t.getMilliseconds(),n,3)}function Mu(t,n){return wu(t,n)+"000"}function Au(t,n){return Wa(t.getMonth()+1,n,2)}function Tu(t,n){return Wa(t.getMinutes(),n,2)}function Nu(t,n){return Wa(t.getSeconds(),n,2)}function Su(t){var n=t.getDay();return 0===n?7:n}function Eu(t,n){return Wa(Vv.count(cg(t),t),n,2)}function ku(t,n){var e=t.getDay();return t=e>=4||0===e?Qv(t):Qv.ceil(t),Wa(Qv.count(cg(t),t)+(4===cg(t).getDay()),n,2)}function Cu(t){return t.getDay()}function Pu(t,n){return Wa($v.count(cg(t),t),n,2)}function zu(t,n){return Wa(t.getFullYear()%100,n,2)}function Ru(t,n){return Wa(t.getFullYear()%1e4,n,4)}function Lu(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Wa(n/60|0,"0",2)+Wa(n%60,"0",2)}function Du(t,n){return Wa(t.getUTCDate(),n,2)}function Uu(t,n){return Wa(t.getUTCHours(),n,2)}function qu(t,n){return Wa(t.getUTCHours()%12||12,n,2)}function Ou(t,n){return Wa(1+vg.count(Rg(t),t),n,3)}function Yu(t,n){return Wa(t.getUTCMilliseconds(),n,3)}function Bu(t,n){return Yu(t,n)+"000"}function Fu(t,n){return Wa(t.getUTCMonth()+1,n,2)}function Iu(t,n){return Wa(t.getUTCMinutes(),n,2)}function ju(t,n){return Wa(t.getUTCSeconds(),n,2)}function Hu(t){var n=t.getUTCDay();return 0===n?7:n}function Xu(t,n){return Wa(yg.count(Rg(t),t),n,2)}function Gu(t,n){var e=t.getUTCDay();return t=e>=4||0===e?xg(t):xg.ceil(t),Wa(xg.count(Rg(t),t)+(4===Rg(t).getUTCDay()),n,2)}function Vu(t){return t.getUTCDay()}function $u(t,n){return Wa(_g.count(Rg(t),t),n,2)}function Wu(t,n){return Wa(t.getUTCFullYear()%100,n,2)}function Zu(t,n){return Wa(t.getUTCFullYear()%1e4,n,4)}function Qu(){return"+0000"}function Ju(){return"%"}function Ku(t){return+t}function tf(t){return Math.floor(+t/1e3)}function nf(n){return Lg=$a(n),t.timeFormat=Lg.format,t.timeParse=Lg.parse,t.utcFormat=Lg.utcFormat,t.utcParse=Lg.utcParse,Lg}function ef(t){return new Date(t)}function rf(t){return t instanceof Date?+t:+new Date(+t)}function of(t,n,r,i,o,a,u,f,c){function s(e){return(u(e)<e?g:a(e)<e?y:o(e)<e?_:i(e)<e?b:n(e)<e?r(e)<e?m:x:t(e)<e?w:M)(e)}function l(n,r,i,o){if(null==n&&(n=10),"number"==typeof n){var a=Math.abs(i-r)/n,u=e(function(t){return t[2]}).right(A,a);u===A.length?(o=d(r/Wg,i/Wg,n),n=t):u?(o=(u=A[a/A[u-1][2]<A[u][2]/a?u-1:u])[1],n=u[0]):(o=Math.max(d(r,i,n),1),n=f)}return null==o?n:n.every(o)}var h=Ta(xa,sn),p=h.invert,v=h.domain,g=c(".%L"),y=c(":%S"),_=c("%I:%M"),b=c("%I %p"),m=c("%a %d"),x=c("%b %d"),w=c("%B"),M=c("%Y"),A=[[u,1,jg],[u,5,5*jg],[u,15,15*jg],[u,30,30*jg],[a,1,Hg],[a,5,5*Hg],[a,15,15*Hg],[a,30,30*Hg],[o,1,Xg],[o,3,3*Xg],[o,6,6*Xg],[o,12,12*Xg],[i,1,Gg],[i,2,2*Gg],[r,1,Vg],[n,1,$g],[n,3,3*$g],[t,1,Wg]];return h.invert=function(t){return new Date(p(t))},h.domain=function(t){return arguments.length?v(kv.call(t,rf)):v().map(ef)},h.ticks=function(t,n){var e,r=v(),i=r[0],o=r[r.length-1],a=o<i;return a&&(e=i,i=o,o=e),e=l(t,i,o,n),e=e?e.range(i,o+1):[],a?e.reverse():e},h.tickFormat=function(t,n){return null==n?s:c(n)},h.nice=function(t,n){var e=v();return(t=l(t,e[0],e[e.length-1],n))?v(ka(e,t)):h},h.copy=function(){return Aa(h,of(t,n,r,i,o,a,u,f,c))},h}function af(t){function n(n){var r=(n-e)*i;return t(o?Math.max(0,Math.min(1,r)):r)}var e=0,r=1,i=1,o=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],i=e===r?0:1/(r-e),n):[e,r]},n.clamp=function(t){return arguments.length?(o=!!t,n):o},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return af(t).domain([e,r]).clamp(o)},Na(n)}function uf(t){function n(n){var e=.5+((n=+n)-r)*(n<r?o:a);return t(u?Math.max(0,Math.min(1,e)):e)}var e=0,r=.5,i=1,o=1,a=1,u=!1;return n.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],i=+t[2],o=e===r?0:.5/(r-e),a=r===i?0:.5/(i-r),n):[e,r,i]},n.clamp=function(t){return arguments.length?(u=!!t,n):u},n.interpolator=function(e){return arguments.length?(t=e,n):t},n.copy=function(){return uf(t).domain([e,r,i]).clamp(u)},Na(n)}function ff(t){for(var n=t.length/6|0,e=new Array(n),r=0;r<n;)e[r]="#"+t.slice(6*r,6*++r);return e}function cf(t){return il(t[t.length-1])}function sf(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}function lf(t){return function(){return t}}function hf(t){return t>=1?T_:t<=-1?-T_:Math.asin(t)}function df(t){return t.innerRadius}function pf(t){return t.outerRadius}function vf(t){return t.startAngle}function gf(t){return t.endAngle}function yf(t){return t&&t.padAngle}function _f(t,n,e,r,i,o,a){var u=t-e,f=n-r,c=(a?o:-o)/w_(u*u+f*f),s=c*f,l=-c*u,h=t+s,d=n+l,p=e+s,v=r+l,g=(h+p)/2,y=(d+v)/2,_=p-h,b=v-d,m=_*_+b*b,x=i-o,w=h*v-p*d,M=(b<0?-1:1)*w_(b_(0,x*x*m-w*w)),A=(w*b-_*M)/m,T=(-w*_-b*M)/m,N=(w*b+_*M)/m,S=(-w*_+b*M)/m,E=A-g,k=T-y,C=N-g,P=S-y;return E*E+k*k>C*C+P*P&&(A=N,T=S),{cx:A,cy:T,x01:-s,y01:-l,x11:A*(i/x-1),y11:T*(i/x-1)}}function bf(t){this._context=t}function mf(t){return new bf(t)}function xf(t){return t[0]}function wf(t){return t[1]}function Mf(){function t(t){var u,f,c,s=t.length,l=!1;for(null==i&&(a=o(c=oe())),u=0;u<=s;++u)!(u<s&&r(f=t[u],u,t))===l&&((l=!l)?a.lineStart():a.lineEnd()),l&&a.point(+n(f,u,t),+e(f,u,t));if(c)return a=null,c+""||null}var n=xf,e=wf,r=lf(!0),i=null,o=mf,a=null;return t.x=function(e){return arguments.length?(n="function"==typeof e?e:lf(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:lf(+n),t):e},t.defined=function(n){return arguments.length?(r="function"==typeof n?n:lf(!!n),t):r},t.curve=function(n){return arguments.length?(o=n,null!=i&&(a=o(i)),t):o},t.context=function(n){return arguments.length?(null==n?i=a=null:a=o(i=n),t):i},t}function Af(){function t(t){var n,s,l,h,d,p=t.length,v=!1,g=new Array(p),y=new Array(p);for(null==u&&(c=f(d=oe())),n=0;n<=p;++n){if(!(n<p&&a(h=t[n],n,t))===v)if(v=!v)s=n,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),l=n-1;l>=s;--l)c.point(g[l],y[l]);c.lineEnd(),c.areaEnd()}v&&(g[n]=+e(h,n,t),y[n]=+i(h,n,t),c.point(r?+r(h,n,t):g[n],o?+o(h,n,t):y[n]))}if(d)return c=null,d+""||null}function n(){return Mf().defined(a).curve(f).context(u)}var e=xf,r=null,i=lf(0),o=wf,a=lf(!0),u=null,f=mf,c=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:lf(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:lf(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:lf(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:lf(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:lf(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:lf(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(a="function"==typeof n?n:lf(!!n),t):a},t.curve=function(n){return arguments.length?(f=n,null!=u&&(c=f(u)),t):f},t.context=function(n){return arguments.length?(null==n?u=c=null:c=f(u=n),t):u},t}function Tf(t,n){return n<t?-1:n>t?1:n>=t?0:NaN}function Nf(t){return t}function Sf(t){this._curve=t}function Ef(t){function n(n){return new Sf(t(n))}return n._curve=t,n}function kf(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(Ef(t)):n()._curve},t}function Cf(){return kf(Mf().curve(S_))}function Pf(){var t=Af().curve(S_),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return kf(e())},delete t.lineX0,t.lineEndAngle=function(){return kf(r())},delete t.lineX1,t.lineInnerRadius=function(){return kf(i())},delete t.lineY0,t.lineOuterRadius=function(){return kf(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(Ef(t)):n()._curve},t}function zf(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}function Rf(t){return t.source}function Lf(t){return t.target}function Df(t){function n(){var n,u=E_.call(arguments),f=e.apply(this,u),c=r.apply(this,u);if(a||(a=n=oe()),t(a,+i.apply(this,(u[0]=f,u)),+o.apply(this,u),+i.apply(this,(u[0]=c,u)),+o.apply(this,u)),n)return a=null,n+""||null}var e=Rf,r=Lf,i=xf,o=wf,a=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:lf(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:lf(+t),n):o},n.context=function(t){return arguments.length?(a=null==t?null:t,n):a},n}function Uf(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function qf(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function Of(t,n,e,r,i){var o=zf(n,e),a=zf(n,e=(e+i)/2),u=zf(r,e),f=zf(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(a[0],a[1],u[0],u[1],f[0],f[1])}function Yf(){}function Bf(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Ff(t){this._context=t}function If(t){this._context=t}function jf(t){this._context=t}function Hf(t,n){this._basis=new Ff(t),this._beta=n}function Xf(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function Gf(t,n){this._context=t,this._k=(1-n)/6}function Vf(t,n){this._context=t,this._k=(1-n)/6}function $f(t,n){this._context=t,this._k=(1-n)/6}function Wf(t,n,e){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>M_){var u=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,f=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*u-t._x0*t._l12_2a+t._x2*t._l01_2a)/f,i=(i*u-t._y0*t._l12_2a+t._y2*t._l01_2a)/f}if(t._l23_a>M_){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,s=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*c+t._x1*t._l23_2a-n*t._l12_2a)/s,a=(a*c+t._y1*t._l23_2a-e*t._l12_2a)/s}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function Zf(t,n){this._context=t,this._alpha=n}function Qf(t,n){this._context=t,this._alpha=n}function Jf(t,n){this._context=t,this._alpha=n}function Kf(t){this._context=t}function tc(t){return t<0?-1:1}function nc(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(e-t._y1)/(i||r<0&&-0),u=(o*i+a*r)/(r+i);return(tc(o)+tc(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(u))||0}function ec(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function rc(t,n,e){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*n,o-u,a-u*e,o,a)}function ic(t){this._context=t}function oc(t){this._context=new ac(t)}function ac(t){this._context=t}function uc(t){this._context=t}function fc(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,a[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,a[n]-=e*a[n-1];for(i[r-1]=a[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(a[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function cc(t,n){this._context=t,this._t=n}function sc(t,n){if((i=t.length)>1)for(var e,r,i,o=1,a=t[n[0]],u=a.length;o<i;++o)for(r=a,a=t[n[o]],e=0;e<u;++e)a[e][1]+=a[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]}function lc(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e}function hc(t,n){return t[n]}function dc(t){var n=t.map(pc);return lc(t).sort(function(t,e){return n[t]-n[e]})}function pc(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function vc(t){return function(){return t}}function gc(t){return t[0]}function yc(t){return t[1]}function _c(){this._=null}function bc(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function mc(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function xc(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function wc(t){for(;t.L;)t=t.L;return t}function Mc(t,n,e,r){var i=[null,null],o=rb.push(i)-1;return i.left=t,i.right=n,e&&Tc(i,t,n,e),r&&Tc(i,n,t,r),nb[t.index].halfedges.push(o),nb[n.index].halfedges.push(o),i}function Ac(t,n,e){var r=[n,e];return r.left=t,r}function Tc(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function Nc(t,n,e,r,i){var o,a=t[0],u=t[1],f=a[0],c=a[1],s=0,l=1,h=u[0]-f,d=u[1]-c;if(o=n-f,h||!(o>0)){if(o/=h,h<0){if(o<s)return;o<l&&(l=o)}else if(h>0){if(o>l)return;o>s&&(s=o)}if(o=r-f,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>s&&(s=o)}else if(h>0){if(o<s)return;o<l&&(l=o)}if(o=e-c,d||!(o>0)){if(o/=d,d<0){if(o<s)return;o<l&&(l=o)}else if(d>0){if(o>l)return;o>s&&(s=o)}if(o=i-c,d||!(o<0)){if(o/=d,d<0){if(o>l)return;o>s&&(s=o)}else if(d>0){if(o<s)return;o<l&&(l=o)}return!(s>0||l<1)||(s>0&&(t[0]=[f+s*h,c+s*d]),l<1&&(t[1]=[f+l*h,c+l*d]),!0)}}}}}function Sc(t,n,e,r,i){var o=t[1];if(o)return!0;var a,u,f=t[0],c=t.left,s=t.right,l=c[0],h=c[1],d=s[0],p=s[1],v=(l+d)/2,g=(h+p)/2;if(p===h){if(v<n||v>=r)return;if(l>d){if(f){if(f[1]>=i)return}else f=[v,e];o=[v,i]}else{if(f){if(f[1]<e)return}else f=[v,i];o=[v,e]}}else if(a=(l-d)/(p-h),u=g-a*v,a<-1||a>1)if(l>d){if(f){if(f[1]>=i)return}else f=[(e-u)/a,e];o=[(i-u)/a,i]}else{if(f){if(f[1]<e)return}else f=[(i-u)/a,i];o=[(e-u)/a,e]}else if(h<p){if(f){if(f[0]>=r)return}else f=[n,a*n+u];o=[r,a*r+u]}else{if(f){if(f[0]<n)return}else f=[r,a*r+u];o=[n,a*n+u]}return t[0]=f,t[1]=o,!0}function Ec(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function kc(t,n){return n[+(n.left!==t.site)]}function Cc(t,n){return n[+(n.left===t.site)]}function Pc(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var a=i[0],u=i[1],f=r[0]-a,c=r[1]-u,s=o[0]-a,l=o[1]-u,h=2*(f*l-c*s);if(!(h>=-ub)){var d=f*f+c*c,p=s*s+l*l,v=(l*d-c*p)/h,g=(f*p-s*d)/h,y=ib.pop()||new function(){bc(this),this.x=this.y=this.arc=this.site=this.cy=null};y.arc=t,y.site=i,y.x=v+a,y.y=(y.cy=g+u)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,b=eb._;b;)if(y.y<b.y||y.y===b.y&&y.x<=b.x){if(!b.L){_=b.P;break}b=b.L}else{if(!b.R){_=b;break}b=b.R}eb.insert(_,y),_||(K_=y)}}}}function zc(t){var n=t.circle;n&&(n.P||(K_=n.N),eb.remove(n),ib.push(n),bc(n),t.circle=null)}function Rc(t){var n=ob.pop()||new function(){bc(this),this.edge=this.site=this.circle=null};return n.site=t,n}function Lc(t){zc(t),tb.remove(t),ob.push(t),bc(t)}function Dc(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,a=t.N,u=[t];Lc(t);for(var f=o;f.circle&&Math.abs(e-f.circle.x)<ab&&Math.abs(r-f.circle.cy)<ab;)o=f.P,u.unshift(f),Lc(f),f=o;u.unshift(f),zc(f);for(var c=a;c.circle&&Math.abs(e-c.circle.x)<ab&&Math.abs(r-c.circle.cy)<ab;)a=c.N,u.push(c),Lc(c),c=a;u.push(c),zc(c);var s,l=u.length;for(s=1;s<l;++s)c=u[s],f=u[s-1],Tc(c.edge,f.site,c.site,i);f=u[0],(c=u[l-1]).edge=Mc(f.site,c.site,null,i),Pc(f),Pc(c)}function Uc(t){for(var n,e,r,i,o=t[0],a=t[1],u=tb._;u;)if((r=qc(u,a)-o)>ab)u=u.L;else{if(!((i=o-function(t,n){var e=t.N;if(e)return qc(e,n);var r=t.site;return r[1]===n?r[0]:1/0}(u,a))>ab)){r>-ab?(n=u.P,e=u):i>-ab?(n=u,e=u.N):n=e=u;break}if(!u.R){n=u;break}u=u.R}(function(t){nb[t.index]={site:t,halfedges:[]}})(t);var f=Rc(t);if(tb.insert(n,f),n||e){if(n===e)return zc(n),e=Rc(n.site),tb.insert(f,e),f.edge=e.edge=Mc(n.site,f.site),Pc(n),void Pc(e);if(e){zc(n),zc(e);var c=n.site,s=c[0],l=c[1],h=t[0]-s,d=t[1]-l,p=e.site,v=p[0]-s,g=p[1]-l,y=2*(h*g-d*v),_=h*h+d*d,b=v*v+g*g,m=[(g*_-d*b)/y+s,(h*b-v*_)/y+l];Tc(e.edge,c,p,m),f.edge=Mc(c,t,null,m),e.edge=Mc(t,p,null,m),Pc(n),Pc(e)}else f.edge=Mc(n.site,f.site)}}function qc(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var a=t.P;if(!a)return-1/0;var u=(e=a.site)[0],f=e[1],c=f-n;if(!c)return u;var s=u-r,l=1/o-1/c,h=s/c;return l?(-h+Math.sqrt(h*h-2*l*(s*s/(-2*c)-f+c/2+i-o/2)))/l+r:(r+u)/2}function Oc(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function Yc(t,n){return n[1]-t[1]||n[0]-t[0]}function Bc(t,n){var e,r,i,o=t.sort(Yc).pop();for(rb=[],nb=new Array(t.length),tb=new _c,eb=new _c;;)if(i=K_,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(Uc(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;Dc(i.arc)}if(function(){for(var t,n,e,r,i=0,o=nb.length;i<o;++i)if((t=nb[i])&&(r=(n=t.halfedges).length)){var a=new Array(r),u=new Array(r);for(e=0;e<r;++e)a[e]=e,u[e]=Ec(t,rb[n[e]]);for(a.sort(function(t,n){return u[n]-u[t]}),e=0;e<r;++e)u[e]=n[a[e]];for(e=0;e<r;++e)n[e]=u[e]}}(),n){var a=+n[0][0],u=+n[0][1],f=+n[1][0],c=+n[1][1];(function(t,n,e,r){for(var i,o=rb.length;o--;)Sc(i=rb[o],t,n,e,r)&&Nc(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>ab||Math.abs(i[0][1]-i[1][1])>ab)||delete rb[o]})(a,u,f,c),function(t,n,e,r){var i,o,a,u,f,c,s,l,h,d,p,v,g=nb.length,y=!0;for(i=0;i<g;++i)if(o=nb[i]){for(a=o.site,u=(f=o.halfedges).length;u--;)rb[f[u]]||f.splice(u,1);for(u=0,c=f.length;u<c;)p=(d=Cc(o,rb[f[u]]))[0],v=d[1],l=(s=kc(o,rb[f[++u%c]]))[0],h=s[1],(Math.abs(p-l)>ab||Math.abs(v-h)>ab)&&(f.splice(u,0,rb.push(Ac(a,d,Math.abs(p-t)<ab&&r-v>ab?[t,Math.abs(l-t)<ab?h:r]:Math.abs(v-r)<ab&&e-p>ab?[Math.abs(h-r)<ab?l:e,r]:Math.abs(p-e)<ab&&v-n>ab?[e,Math.abs(l-e)<ab?h:n]:Math.abs(v-n)<ab&&p-t>ab?[Math.abs(h-n)<ab?l:t,n]:null))-1),++c);c&&(y=!1)}if(y){var _,b,m,x=1/0;for(i=0,y=null;i<g;++i)(o=nb[i])&&(m=(_=(a=o.site)[0]-t)*_+(b=a[1]-n)*b)<x&&(x=m,y=o);if(y){var w=[t,n],M=[t,r],A=[e,r],T=[e,n];y.halfedges.push(rb.push(Ac(a=y.site,w,M))-1,rb.push(Ac(a,M,A))-1,rb.push(Ac(a,A,T))-1,rb.push(Ac(a,T,w))-1)}}for(i=0;i<g;++i)(o=nb[i])&&(o.halfedges.length||delete nb[i])}(a,u,f,c)}this.edges=rb,this.cells=nb,tb=eb=rb=nb=null}function Fc(t){return function(){return t}}function Ic(t,n,e){this.k=t,this.x=n,this.y=e}function jc(t){return t.__zoom||fb}function Hc(){t.event.stopImmediatePropagation()}function Xc(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Gc(){return!t.event.button}function Vc(){var t,n,e=this;return e instanceof SVGElement?(t=(e=e.ownerSVGElement||e).width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function $c(){return this.__zoom||fb}function Wc(){return-t.event.deltaY*(t.event.deltaMode?120:1)/500}function Zc(){return"ontouchstart"in this}function Qc(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],a=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}var Jc=e(n),Kc=Jc.right,ts=Jc.left,ns=Array.prototype,es=ns.slice,rs=ns.map,is=Math.sqrt(50),os=Math.sqrt(10),as=Math.sqrt(2),us=Array.prototype.slice,fs=1,cs=2,ss=3,ls=4,hs=1e-6,ds={value:function(){}};S.prototype=N.prototype={constructor:S,on:function(t,n){var e,r=this._,i=function(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}(t+"",r),o=-1,a=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o<a;)if(e=(t=i[o]).type)r[e]=E(r[e],t.name,n);else if(null==n)for(e in r)r[e]=E(r[e],t.name,null);return this}for(;++o<a;)if((e=(t=i[o]).type)&&(e=function(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}(r[e],t.name)))return e}},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new S(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=0,e=(r=this._[t]).length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var ps="http://www.w3.org/1999/xhtml",vs={svg:"http://www.w3.org/2000/svg",xhtml:ps,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},gs=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var ys=document.documentElement;if(!ys.matches){var _s=ys.webkitMatchesSelector||ys.msMatchesSelector||ys.mozMatchesSelector||ys.oMatchesSelector;gs=function(t){return function(){return _s.call(this,t)}}}}var bs=gs;U.prototype={constructor:U,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var ms="$";H.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var xs={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||(xs={mouseenter:"mouseover",mouseleave:"mouseout"})}var ws=[null];ut.prototype=ft.prototype={constructor:ut,select:function(t){"function"!=typeof t&&(t=z(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a,u=n[i],f=u.length,c=r[i]=new Array(f),s=0;s<f;++s)(o=u[s])&&(a=t.call(o,o.__data__,s,u))&&("__data__"in o&&(a.__data__=o.__data__),c[s]=a);return new ut(r,this._parents)},selectAll:function(t){"function"!=typeof t&&(t=L(t));for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var a,u=n[o],f=u.length,c=0;c<f;++c)(a=u[c])&&(r.push(t.call(a,a.__data__,c,u)),i.push(a));return new ut(r,i)},filter:function(t){"function"!=typeof t&&(t=bs(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new ut(r,this._parents)},data:function(t,n){if(!t)return d=new Array(this.size()),c=-1,this.each(function(t){d[++c]=t}),d;var e=n?O:q,r=this._parents,i=this._groups;"function"!=typeof t&&(t=function(t){return function(){return t}}(t));for(var o=i.length,a=new Array(o),u=new Array(o),f=new Array(o),c=0;c<o;++c){var s=r[c],l=i[c],h=l.length,d=t.call(s,s&&s.__data__,c,r),p=d.length,v=u[c]=new Array(p),g=a[c]=new Array(p);e(s,l,v,g,f[c]=new Array(h),d,n);for(var y,_,b=0,m=0;b<p;++b)if(y=v[b]){for(b>=m&&(m=b+1);!(_=g[m])&&++m<p;);y._next=_||null}}return a=new ut(a,r),a._enter=u,a._exit=f,a},enter:function(){return new ut(this._enter||this._groups.map(D),this._parents)},exit:function(){return new ut(this._exit||this._groups.map(D),this._parents)},merge:function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new ut(a,this._parents)},order:function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,a=i[o];--o>=0;)(r=i[o])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=Y);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var a,u=e[o],f=u.length,c=i[o]=new Array(f),s=0;s<f;++s)(a=u[s])&&(c[s]=a);c.sort(n)}return new ut(i,this._parents).order()},call:function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},nodes:function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},node:function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null},size:function(){var t=0;return this.each(function(){++t}),t},empty:function(){return!this.node()},each:function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],a=0,u=o.length;a<u;++a)(i=o[a])&&t.call(i,i.__data__,a,o);return this},attr:function(t,n){var e=k(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}}:"function"==typeof n?e.local?function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}:function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}:e.local?function(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}:function(t,n){return function(){this.setAttribute(t,n)}})(e,n))},style:function(t,n,e){return arguments.length>1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):F(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=I(t+"");if(arguments.length<2){for(var r=j(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?function(t,n){return function(){(n.apply(this,arguments)?X:G)(this,t)}}:n?function(t){return function(){X(this,t)}}:function(t){return function(){G(this,t)}})(e,n))},text:function(t){return arguments.length?this.each(null==t?V:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}:function(t){return function(){this.textContent=t}})(t)):this.node().textContent},html:function(t){return arguments.length?this.each(null==t?$:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}:function(t){return function(){this.innerHTML=t}})(t)):this.node().innerHTML},raise:function(){return this.each(W)},lower:function(){return this.each(Z)},append:function(t){var n="function"==typeof t?t:C(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},insert:function(t,n){var e="function"==typeof t?t:C(t),r=null==n?Q:"function"==typeof n?n:z(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},remove:function(){return this.each(J)},clone:function(t){return this.select(t?tt:K)},datum:function(t){return arguments.length?this.property("__data__",t):this.node().__data__},on:function(t,n,e){var r,i,o=function(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?it:rt,null==e&&(e=!1),r=0;r<a;++r)this.each(u(o[r],n,e));return this}var u=this.node().__on;if(u)for(var f,c=0,s=u.length;c<s;++c)for(r=0,f=u[c];r<a;++r)if((i=o[r]).type===f.type&&i.name===f.name)return f.value},dispatch:function(t,n){return this.each(("function"==typeof n?function(t,n){return function(){return at(this,t,n.apply(this,arguments))}}:function(t,n){return function(){return at(this,t,n)}})(t,n))}};var Ms=0;lt.prototype=st.prototype={constructor:lt,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}},xt.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var As="\\s*([+-]?\\d+)\\s*",Ts="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ns="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Ss=/^#([0-9a-f]{3})$/,Es=/^#([0-9a-f]{6})$/,ks=new RegExp("^rgb\\("+[As,As,As]+"\\)$"),Cs=new RegExp("^rgb\\("+[Ns,Ns,Ns]+"\\)$"),Ps=new RegExp("^rgba\\("+[As,As,As,Ts]+"\\)$"),zs=new RegExp("^rgba\\("+[Ns,Ns,Ns,Ts]+"\\)$"),Rs=new RegExp("^hsl\\("+[Ts,Ns,Ns]+"\\)$"),Ls=new RegExp("^hsla\\("+[Ts,Ns,Ns,Ts]+"\\)$"),Ds={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Nt(Et,kt,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+""}}),Nt(Lt,Rt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Lt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return"#"+Dt(this.r)+Dt(this.g)+Dt(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),Nt(Ot,qt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Ot(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new Lt(Yt(t>=240?t-240:t+120,i,r),Yt(t,i,r),Yt(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var Us=Math.PI/180,qs=180/Math.PI,Os=.96422,Ys=1,Bs=.82521,Fs=4/29,Is=6/29,js=3*Is*Is,Hs=Is*Is*Is;Nt(It,Ft,St(Et,{brighter:function(t){return new It(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new It(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return n=Os*Ht(n),t=Ys*Ht(t),e=Bs*Ht(e),new Lt(Xt(3.1338561*n-1.6168667*t-.4906146*e),Xt(-.9787684*n+1.9161415*t+.033454*e),Xt(.0719453*n-.2289914*t+1.4052427*e),this.opacity)}})),Nt(Wt,$t,St(Et,{brighter:function(t){return new Wt(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new Wt(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Bt(this).rgb()}}));var Xs=-.29227,Gs=-.90649,Vs=1.97294,$s=Vs*Gs,Ws=1.78277*Vs,Zs=1.78277*Xs- -.14861*Gs;Nt(Qt,Zt,St(Et,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Qt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*Us,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new Lt(255*(n+e*(-.14861*r+1.78277*i)),255*(n+e*(Xs*r+Gs*i)),255*(n+e*(Vs*r)),this.opacity)}}));var Qs,Js,Ks,tl,nl,el,rl=function t(n){function e(t,n){var e=r((t=Rt(t)).r,(n=Rt(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),a=an(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=a(n),t+""}}var r=on(n);return e.gamma=t,e}(1),il=un(Kt),ol=un(tn),al=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,ul=new RegExp(al.source,"g"),fl=180/Math.PI,cl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},sl=gn(function(t){return"none"===t?cl:(Qs||(Qs=document.createElement("DIV"),Js=document.documentElement,Ks=document.defaultView),Qs.style.transform=t,t=Ks.getComputedStyle(Js.appendChild(Qs),null).getPropertyValue("transform"),Js.removeChild(Qs),t=t.slice(7,-1).split(","),vn(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},"px, ","px)","deg)"),ll=gn(function(t){return null==t?cl:(tl||(tl=document.createElementNS("http://www.w3.org/2000/svg","g")),tl.setAttribute("transform",t),(t=tl.transform.baseVal.consolidate())?(t=t.matrix,vn(t.a,t.b,t.c,t.d,t.e,t.f)):cl)},", ",")",")"),hl=Math.SQRT2,dl=2,pl=4,vl=1e-12,gl=bn(rn),yl=bn(an),_l=mn(rn),bl=mn(an),ml=xn(rn),xl=xn(an),wl=0,Ml=0,Al=0,Tl=1e3,Nl=0,Sl=0,El=0,kl="object"==typeof performance&&performance.now?performance:Date,Cl="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};An.prototype=Tn.prototype={constructor:An,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?wn():+e)+(null==n?0:+n),this._next||el===this||(el?el._next=this:nl=this,el=this),this._call=t,this._time=e,kn()},stop:function(){this._call&&(this._call=null,this._time=1/0,kn())}};var Pl=N("start","end","interrupt"),zl=[],Rl=0,Ll=1,Dl=2,Ul=3,ql=4,Ol=5,Yl=6,Bl=ft.prototype.constructor,Fl=0,Il=ft.prototype;On.prototype=Yn.prototype={constructor:On,select:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=z(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var u,f,c=r[a],s=c.length,l=o[a]=new Array(s),h=0;h<s;++h)(u=c[h])&&(f=t.call(u,u.__data__,h,c))&&("__data__"in u&&(f.__data__=u.__data__),l[h]=f,Pn(l[h],n,e,h,l,Ln(u,e)));return new On(o,this._parents,n,e)},selectAll:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=L(t));for(var r=this._groups,i=r.length,o=[],a=[],u=0;u<i;++u)for(var f,c=r[u],s=c.length,l=0;l<s;++l)if(f=c[l]){for(var h,d=t.call(f,f.__data__,l,c),p=Ln(f,e),v=0,g=d.length;v<g;++v)(h=d[v])&&Pn(h,n,e,v,d,p);o.push(d),a.push(f)}return new On(o,a,n,e)},filter:function(t){"function"!=typeof t&&(t=bs(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new On(r,this._parents,this._name,this._id)},merge:function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new On(a,this._parents,this._name,this._id)},selection:function(){return new Bl(this._groups,this._parents)},transition:function(){for(var t=this._name,n=this._id,e=Bn(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)if(a=u[c]){var s=Ln(a,n);Pn(a,t,e,c,u,{time:s.time+s.delay+s.duration,delay:0,duration:s.duration,ease:s.ease})}return new On(r,this._parents,t,e)},call:Il.call,nodes:Il.nodes,node:Il.node,size:Il.size,empty:Il.empty,each:Il.each,on:function(t,n){var e=this._id;return arguments.length<2?Ln(this.node(),e).on.on(t):this.each(function(t,n,e){var r,i,o=function(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?zn:Rn;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=k(t),r="transform"===e?ll:qn;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttributeNS(t.space,t.local))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttribute(t))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttribute(t)}})(e,r,Un(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}:function(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}})(e,r,n+""))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=k(t);return this.tween(e,(r.local?function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}:function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?sl:qn;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=F(this,t),a=(this.style.removeProperty(t),F(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,function(t){return function(){this.style.removeProperty(t)}}(t)):this.styleTween(t,"function"==typeof n?function(t,n,e){var r,i,o;return function(){var a=F(this,t),u=e(this);return null==u&&(this.style.removeProperty(t),u=F(this,t)),a===u?null:a===r&&u===i?o:o=n(r=a,i=u)}}(t,r,Un(this,"style."+t,n)):function(t,n,e){var r,i;return function(){var o=F(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}(t,r,n+""),e)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(Un(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Ln(this.node(),e).tween,o=0,a=i.length;o<a;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?function(t,n){var e,r;return function(){var i=Rn(this,t),o=i.tween;if(o!==e)for(var a=0,u=(r=e=o).length;a<u;++a)if(r[a].name===n){(r=r.slice()).splice(a,1);break}i.tween=r}}:function(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=Rn(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var u={name:n,value:e},f=0,c=i.length;f<c;++f)if(i[f].name===n){i[f]=u;break}f===c&&i.push(u)}o.tween=i}})(e,t,n))},delay:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){zn(this,t).delay=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){zn(this,t).delay=n}})(n,t)):Ln(this.node(),n).delay},duration:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){Rn(this,t).duration=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){Rn(this,t).duration=n}})(n,t)):Ln(this.node(),n).duration},ease:function(t){var n=this._id;return arguments.length?this.each(function(t,n){if("function"!=typeof n)throw new Error;return function(){Rn(this,t).ease=n}}(n,t)):Ln(this.node(),n).ease}};var jl=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),Hl=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),Xl=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),Gl=Math.PI,Vl=Gl/2,$l=4/11,Wl=6/11,Zl=8/11,Ql=.75,Jl=9/11,Kl=10/11,th=.9375,nh=21/22,eh=63/64,rh=1/$l/$l,ih=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),oh=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),ah=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),uh=2*Math.PI,fh=function t(n,e){function r(t){return n*Math.pow(2,10*--t)*Math.sin((i-t)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=uh);return r.amplitude=function(n){return t(n,e*uh)},r.period=function(e){return t(n,e)},r}(1,.3),ch=function t(n,e){function r(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+i)/e)}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=uh);return r.amplitude=function(n){return t(n,e*uh)},r.period=function(e){return t(n,e)},r}(1,.3),sh=function t(n,e){function r(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((i-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((i+t)/e))/2}var i=Math.asin(1/(n=Math.max(1,n)))*(e/=uh);return r.amplitude=function(n){return t(n,e*uh)},r.period=function(e){return t(n,e)},r}(1,.3),lh={time:null,delay:0,duration:250,ease:In};ft.prototype.interrupt=function(t){return this.each(function(){Dn(this,t)})},ft.prototype.transition=function(t){var n,e;t instanceof On?(n=t._id,t=t._name):(n=Bn(),(e=lh).time=wn(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)(a=u[c])&&Pn(a,t,n,c,u,e||Vn(a,n));return new On(r,this._parents,t,n)};var hh=[null],dh={name:"drag"},ph={name:"space"},vh={name:"handle"},gh={name:"center"},yh={name:"x",handles:["e","w"].map(Qn),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},_h={name:"y",handles:["n","s"].map(Qn),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},bh={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(Qn),input:function(t){return t},output:function(t){return t}},mh={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},xh={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},wh={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},Mh={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},Ah={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1},Th=Math.cos,Nh=Math.sin,Sh=Math.PI,Eh=Sh/2,kh=2*Sh,Ch=Math.max,Ph=Array.prototype.slice,zh=Math.PI,Rh=2*zh,Lh=Rh-1e-6;ie.prototype=oe.prototype={constructor:ie,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,a=this._y1,u=e-t,f=r-n,c=o-t,s=a-n,l=c*c+s*s;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(s*u-f*c)>1e-6&&i){var h=e-o,d=r-a,p=u*u+f*f,v=h*h+d*d,g=Math.sqrt(p),y=Math.sqrt(l),_=i*Math.tan((zh-Math.acos((p+l-v)/(2*g*y)))/2),b=_/y,m=_/g;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*c)+","+(n+b*s)),this._+="A"+i+","+i+",0,0,"+ +(s*h>c*d)+","+(this._x1=t+m*u)+","+(this._y1=n+m*f)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n;var a=(e=+e)*Math.cos(r),u=e*Math.sin(r),f=t+a,c=n+u,s=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+f+","+c:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+f+","+c),e&&(l<0&&(l=l%Rh+Rh),l>Lh?this._+="A"+e+","+e+",0,1,"+s+","+(t-a)+","+(n-u)+"A"+e+","+e+",0,1,"+s+","+(this._x1=f)+","+(this._y1=c):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=zh)+","+s+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};le.prototype=he.prototype={constructor:le,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var Dh=he.prototype;ye.prototype=_e.prototype={constructor:ye,has:Dh.has,add:function(t){return t+="",this["$"+t]=t,this},remove:Dh.remove,clear:Dh.clear,values:Dh.keys,size:Dh.size,empty:Dh.empty,each:Dh.each};var Uh=Array.prototype.slice,qh=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]],Oh={},Yh={},Bh=34,Fh=10,Ih=13,jh=ke(","),Hh=jh.parse,Xh=jh.parseRows,Gh=jh.format,Vh=jh.formatRows,$h=ke("\t"),Wh=$h.parse,Zh=$h.parseRows,Qh=$h.format,Jh=$h.formatRows,Kh=Le(Hh),td=Le(Wh),nd=Ue("application/xml"),ed=Ue("text/html"),rd=Ue("image/svg+xml"),id=je.prototype=He.prototype;id.copy=function(){var t,n,e=new He(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=Xe(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=Xe(n));return e},id.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return Ye(this.cover(n,e),n,e,t)},id.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),f=1/0,c=1/0,s=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(a[e]=r,u[e]=i,r<f&&(f=r),r>s&&(s=r),i<c&&(c=i),i>l&&(l=i));for(s<f&&(f=this._x0,s=this._x1),l<c&&(c=this._y0,l=this._y1),this.cover(f,c).cover(s,l),e=0;e<o;++e)Ye(this,a[e],u[e],t[e]);return this},id.cover=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var a,u,f=i-e,c=this._root;switch(u=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,o=r+f,t>i||n>o);break;case 1:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,o=r+f,e>t||n>o);break;case 2:do{a=new Array(4),a[u]=c,c=a}while(f*=2,i=e+f,r=o-f,t>i||r>n);break;case 3:do{a=new Array(4),a[u]=c,c=a}while(f*=2,e=i-f,r=o-f,e>t||r>n)}this._root&&this._root.length&&(this._root=c)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},id.data=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},id.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},id.find=function(t,n,e){var r,i,o,a,u,f,c,s=this._x0,l=this._y0,h=this._x1,d=this._y1,p=[],v=this._root;for(v&&p.push(new Be(v,s,l,h,d)),null==e?e=1/0:(s=t-e,l=n-e,h=t+e,d=n+e,e*=e);f=p.pop();)if(!(!(v=f.node)||(i=f.x0)>h||(o=f.y0)>d||(a=f.x1)<s||(u=f.y1)<l))if(v.length){var g=(i+a)/2,y=(o+u)/2;p.push(new Be(v[3],g,y,a,u),new Be(v[2],i,y,g,u),new Be(v[1],g,o,a,y),new Be(v[0],i,o,g,y)),(c=(n>=y)<<1|t>=g)&&(f=p[p.length-1],p[p.length-1]=p[p.length-1-c],p[p.length-1-c]=f)}else{var _=t-+this._x.call(null,v.data),b=n-+this._y.call(null,v.data),m=_*_+b*b;if(m<e){var x=Math.sqrt(e=m);s=t-x,l=n-x,h=t+x,d=n+x,r=v.data}}return r},id.remove=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(a=+this._y.call(null,t)))return this;var n,e,r,i,o,a,u,f,c,s,l,h,d=this._root,p=this._x0,v=this._y0,g=this._x1,y=this._y1;if(!d)return this;if(d.length)for(;;){if((c=o>=(u=(p+g)/2))?p=u:g=u,(s=a>=(f=(v+y)/2))?v=f:y=f,n=d,!(d=d[l=s<<1|c]))return this;if(!d.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[h]=d:this._root=d),this):(this._root=i,this)},id.removeAll=function(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this},id.root=function(){return this._root},id.size=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},id.visit=function(t){var n,e,r,i,o,a,u=[],f=this._root;for(f&&u.push(new Be(f,this._x0,this._y0,this._x1,this._y1));n=u.pop();)if(!t(f=n.node,r=n.x0,i=n.y0,o=n.x1,a=n.y1)&&f.length){var c=(r+o)/2,s=(i+a)/2;(e=f[3])&&u.push(new Be(e,c,s,o,a)),(e=f[2])&&u.push(new Be(e,r,s,c,a)),(e=f[1])&&u.push(new Be(e,c,i,o,s)),(e=f[0])&&u.push(new Be(e,r,i,c,s))}return this},id.visitAfter=function(t){var n,e=[],r=[];for(this._root&&e.push(new Be(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,a=n.x0,u=n.y0,f=n.x1,c=n.y1,s=(a+f)/2,l=(u+c)/2;(o=i[0])&&e.push(new Be(o,a,u,s,l)),(o=i[1])&&e.push(new Be(o,s,u,f,l)),(o=i[2])&&e.push(new Be(o,a,l,s,c)),(o=i[3])&&e.push(new Be(o,s,l,f,c))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},id.x=function(t){return arguments.length?(this._x=t,this):this._x},id.y=function(t){return arguments.length?(this._y=t,this):this._y};var od=10,ad=Math.PI*(3-Math.sqrt(5)),ud=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;tr.prototype=nr.prototype,nr.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var fd,cd,sd={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return er(100*t,n)},r:er,s:function(t,n){var e=Je(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(fd=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Je(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},ld=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];or({decimal:".",thousands:",",grouping:[3],currency:["$",""]}),sr.prototype={constructor:sr,reset:function(){this.s=this.t=0},add:function(t){lr(jd,t,this.t),lr(this,jd.s,this.s),this.s?this.t+=jd.t:this.s=jd.t},valueOf:function(){return this.s}};var hd,dd,pd,vd,gd,yd,_d,bd,md,xd,wd,Md,Ad,Td,Nd,Sd,Ed,kd,Cd,Pd,zd,Rd,Ld,Dd,Ud,qd,Od,Yd,Bd,Fd,Id,jd=new sr,Hd=1e-6,Xd=1e-12,Gd=Math.PI,Vd=Gd/2,$d=Gd/4,Wd=2*Gd,Zd=180/Gd,Qd=Gd/180,Jd=Math.abs,Kd=Math.atan,tp=Math.atan2,np=Math.cos,ep=Math.ceil,rp=Math.exp,ip=Math.log,op=Math.pow,ap=Math.sin,up=Math.sign||function(t){return t>0?1:t<0?-1:0},fp=Math.sqrt,cp=Math.tan,sp={Feature:function(t,n){gr(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)gr(e[r].geometry,n)}},lp={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){yr(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)yr(e[r],n,0)},Polygon:function(t,n){_r(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)_r(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)gr(e[r],n)}},hp=cr(),dp=cr(),pp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){hp.reset(),pp.lineStart=mr,pp.lineEnd=xr},polygonEnd:function(){var t=+hp;dp.add(t<0?Wd+t:t),this.lineStart=this.lineEnd=this.point=vr},sphere:function(){dp.add(Wd)}},vp=cr(),gp={point:Pr,lineStart:Rr,lineEnd:Lr,polygonStart:function(){gp.point=Dr,gp.lineStart=Ur,gp.lineEnd=qr,vp.reset(),pp.polygonStart()},polygonEnd:function(){pp.polygonEnd(),gp.point=Pr,gp.lineStart=Rr,gp.lineEnd=Lr,hp<0?(yd=-(bd=180),_d=-(md=90)):vp>Hd?md=90:vp<-Hd&&(_d=-90),Nd[0]=yd,Nd[1]=bd}},yp={sphere:vr,point:Fr,lineStart:jr,lineEnd:Gr,polygonStart:function(){yp.lineStart=Vr,yp.lineEnd=$r},polygonEnd:function(){yp.lineStart=jr,yp.lineEnd=Gr}};Kr.invert=Kr;var _p,bp,mp,xp,wp,Mp,Ap,Tp,Np,Sp,Ep,kp=cr(),Cp=di(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,a){var u=o>0?Gd:-Gd,f=Jd(o-e);Jd(f-Gd)<Hd?(t.point(e,r=(r+a)/2>0?Vd:-Vd),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),t.point(o,r),n=0):i!==u&&f>=Gd&&(Jd(e-i)<Hd&&(e-=i*Hd),Jd(o-u)<Hd&&(o-=u*Hd),r=function(t,n,e,r){var i,o,a=ap(t-e);return Jd(a)>Hd?Kd((ap(n)*(o=np(r))*ap(e)-ap(r)*(i=np(n))*ap(t))/(i*o*a)):(n+r)/2}(e,r,o,a),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),n=0),t.point(e=o,r=a),i=u},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*Vd,r.point(-Gd,i),r.point(0,i),r.point(Gd,i),r.point(Gd,0),r.point(Gd,-i),r.point(0,-i),r.point(-Gd,-i),r.point(-Gd,0),r.point(-Gd,i);else if(Jd(t[0]-n[0])>Hd){var o=t[0]<n[0]?Gd:-Gd;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])},[-Gd,-Vd]),Pp=1e9,zp=-Pp,Rp=cr(),Lp={sphere:vr,point:vr,lineStart:function(){Lp.point=bi,Lp.lineEnd=_i},lineEnd:vr,polygonStart:vr,polygonEnd:vr},Dp=[null,null],Up={type:"LineString",coordinates:Dp},qp={Feature:function(t,n){return Mi(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(Mi(e[r].geometry,n))return!0;return!1}},Op={Sphere:function(){return!0},Point:function(t,n){return Ai(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ai(e[r],n))return!0;return!1},LineString:function(t,n){return Ti(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ti(e[r],n))return!0;return!1},Polygon:function(t,n){return Ni(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(Ni(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(Mi(e[r],n))return!0;return!1}},Yp=cr(),Bp=cr(),Fp={point:vr,lineStart:vr,lineEnd:vr,polygonStart:function(){Fp.lineStart=Ri,Fp.lineEnd=Ui},polygonEnd:function(){Fp.lineStart=Fp.lineEnd=Fp.point=vr,Yp.add(Jd(Bp)),Bp.reset()},result:function(){var t=Yp/2;return Yp.reset(),t}},Ip=1/0,jp=Ip,Hp=-Ip,Xp=Hp,Gp={point:function(t,n){t<Ip&&(Ip=t),t>Hp&&(Hp=t),n<jp&&(jp=n),n>Xp&&(Xp=n)},lineStart:vr,lineEnd:vr,polygonStart:vr,polygonEnd:vr,result:function(){var t=[[Ip,jp],[Hp,Xp]];return Hp=Xp=-(jp=Ip=1/0),t}},Vp=0,$p=0,Wp=0,Zp=0,Qp=0,Jp=0,Kp=0,tv=0,nv=0,ev={point:qi,lineStart:Oi,lineEnd:Fi,polygonStart:function(){ev.lineStart=Ii,ev.lineEnd=ji},polygonEnd:function(){ev.point=qi,ev.lineStart=Oi,ev.lineEnd=Fi},result:function(){var t=nv?[Kp/nv,tv/nv]:Jp?[Zp/Jp,Qp/Jp]:Wp?[Vp/Wp,$p/Wp]:[NaN,NaN];return Vp=$p=Wp=Zp=Qp=Jp=Kp=tv=nv=0,t}};Gi.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,Wd)}},result:vr};var rv,iv,ov,av,uv,fv=cr(),cv={point:vr,lineStart:function(){cv.point=Vi},lineEnd:function(){rv&&$i(iv,ov),cv.point=vr},polygonStart:function(){rv=!0},polygonEnd:function(){rv=null},result:function(){var t=+fv;return fv.reset(),t}};Wi.prototype={_radius:4.5,_circle:Zi(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=Zi(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Ji.prototype={constructor:Ji,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var sv=16,lv=np(30*Qd),hv=Qi({point:function(t,n){this.stream.point(t*Qd,n*Qd)}}),dv=ho(function(t){return fp(2/(1+t))});dv.invert=po(function(t){return 2*dr(t/2)});var pv=ho(function(t){return(t=hr(t))&&t/ap(t)});pv.invert=po(function(t){return t}),vo.invert=function(t,n){return[t,2*Kd(rp(n))-Vd]},bo.invert=bo,xo.invert=po(Kd),Mo.invert=function(t,n){var e,r=n,i=25;do{var o=r*r,a=o*o;r-=e=(r*(1.007226+o*(.015085+a*(.028874*o-.044475-.005916*a)))-n)/(1.007226+o*(.045255+a*(.259866*o-.311325-.005916*11*a)))}while(Jd(e)>Hd&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},Ao.invert=po(dr),To.invert=po(function(t){return 2*Kd(t)}),No.invert=function(t,n){return[-n,2*Kd(rp(t))-Vd]},Do.prototype=Po.prototype={constructor:Do,count:function(){return this.eachAfter(Co)},each:function(t){var n,e,r,i,o=this,a=[o];do{for(n=a.reverse(),a=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)a.push(e[r])}while(a.length);return this},eachAfter:function(t){for(var n,e,r,i=this,o=[i],a=[];i=o.pop();)if(a.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=a.pop();)t(i);return this},eachBefore:function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return Po(this).eachBefore(Ro)}};var vv=Array.prototype.slice,gv="$",yv={depth:-1},_v={};ca.prototype=Object.create(Do.prototype);var bv=(1+Math.sqrt(5))/2,mv=function t(n){function e(t,e,r,i,o){la(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(bv),xv=function t(n){function e(t,e,r,i,o){if((a=t._squarify)&&a.ratio===n)for(var a,u,f,c,s,l=-1,h=a.length,d=t.value;++l<h;){for(f=(u=a[l]).children,c=u.value=0,s=f.length;c<s;++c)u.value+=f[c].value;u.dice?na(u,e,r,i,r+=(o-r)*u.value/d):sa(u,e,r,e+=(i-e)*u.value/d,o),d-=u.value}else t._squarify=a=la(n,t,e,r,i,o),a.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(bv),wv=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(va),Mv=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(va),Av=function t(n){function e(){var t=Mv.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(va),Tv=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(va),Nv=function t(n){function e(t){var e=Tv.source(n)(t);return function(){return e()/t}}return e.source=t,e}(va),Sv=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(va),Ev=Array.prototype,kv=Ev.map,Cv=Ev.slice,Pv={name:"implicit"},zv=[0,1],Rv=new Date,Lv=new Date,Dv=Ia(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});Dv.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Ia(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):Dv:null};var Uv=Dv.range,qv=6e4,Ov=6048e5,Yv=Ia(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Bv=Yv.range,Fv=Ia(function(t){t.setTime(Math.floor(t/qv)*qv)},function(t,n){t.setTime(+t+n*qv)},function(t,n){return(n-t)/qv},function(t){return t.getMinutes()}),Iv=Fv.range,jv=Ia(function(t){var n=t.getTimezoneOffset()*qv%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),Hv=jv.range,Xv=Ia(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*qv)/864e5},function(t){return t.getDate()-1}),Gv=Xv.range,Vv=ja(0),$v=ja(1),Wv=ja(2),Zv=ja(3),Qv=ja(4),Jv=ja(5),Kv=ja(6),tg=Vv.range,ng=$v.range,eg=Wv.range,rg=Zv.range,ig=Qv.range,og=Jv.range,ag=Kv.range,ug=Ia(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),fg=ug.range,cg=Ia(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});cg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var sg=cg.range,lg=Ia(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*qv)},function(t,n){return(n-t)/qv},function(t){return t.getUTCMinutes()}),hg=lg.range,dg=Ia(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),pg=dg.range,vg=Ia(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),gg=vg.range,yg=Ha(0),_g=Ha(1),bg=Ha(2),mg=Ha(3),xg=Ha(4),wg=Ha(5),Mg=Ha(6),Ag=yg.range,Tg=_g.range,Ng=bg.range,Sg=mg.range,Eg=xg.range,kg=wg.range,Cg=Mg.range,Pg=Ia(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),zg=Pg.range,Rg=Ia(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});Rg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ia(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Lg,Dg=Rg.range,Ug={"-":"",_:" ",0:"0"},qg=/^\s*\d+/,Og=/^%/,Yg=/[\\^$*+?|[\]().{}]/g;nf({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Bg="%Y-%m-%dT%H:%M:%S.%LZ",Fg=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat(Bg),Ig=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse(Bg),jg=1e3,Hg=60*jg,Xg=60*Hg,Gg=24*Xg,Vg=7*Gg,$g=30*Gg,Wg=365*Gg,Zg=ff("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Qg=ff("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),Jg=ff("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),Kg=ff("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),ty=ff("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),ny=ff("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),ey=ff("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),ry=ff("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),iy=ff("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),oy=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(ff),ay=cf(oy),uy=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(ff),fy=cf(uy),cy=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(ff),sy=cf(cy),ly=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(ff),hy=cf(ly),dy=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(ff),py=cf(dy),vy=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(ff),gy=cf(vy),yy=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(ff),_y=cf(yy),by=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(ff),my=cf(by),xy=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(ff),wy=cf(xy),My=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(ff),Ay=cf(My),Ty=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(ff),Ny=cf(Ty),Sy=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(ff),Ey=cf(Sy),ky=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(ff),Cy=cf(ky),Py=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(ff),zy=cf(Py),Ry=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(ff),Ly=cf(Ry),Dy=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(ff),Uy=cf(Dy),qy=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(ff),Oy=cf(qy),Yy=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(ff),By=cf(Yy),Fy=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(ff),Iy=cf(Fy),jy=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(ff),Hy=cf(jy),Xy=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(ff),Gy=cf(Xy),Vy=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(ff),$y=cf(Vy),Wy=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(ff),Zy=cf(Wy),Qy=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(ff),Jy=cf(Qy),Ky=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(ff),t_=cf(Ky),n_=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(ff),e_=cf(n_),r_=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(ff),i_=cf(r_),o_=xl(Zt(300,.5,0),Zt(-240,.5,1)),a_=xl(Zt(-100,.75,.35),Zt(80,1.5,.8)),u_=xl(Zt(260,.75,.35),Zt(80,1.5,.8)),f_=Zt(),c_=Rt(),s_=Math.PI/3,l_=2*Math.PI/3,h_=sf(ff("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),d_=sf(ff("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),p_=sf(ff("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),v_=sf(ff("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),g_=Math.abs,y_=Math.atan2,__=Math.cos,b_=Math.max,m_=Math.min,x_=Math.sin,w_=Math.sqrt,M_=1e-12,A_=Math.PI,T_=A_/2,N_=2*A_;bf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var S_=Ef(mf);Sf.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var E_=Array.prototype.slice,k_={draw:function(t,n){var e=Math.sqrt(n/A_);t.moveTo(e,0),t.arc(0,0,e,0,N_)}},C_={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},P_=Math.sqrt(1/3),z_=2*P_,R_={draw:function(t,n){var e=Math.sqrt(n/z_),r=e*P_;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},L_=Math.sin(A_/10)/Math.sin(7*A_/10),D_=Math.sin(N_/10)*L_,U_=-Math.cos(N_/10)*L_,q_={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=D_*e,i=U_*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var a=N_*o/5,u=Math.cos(a),f=Math.sin(a);t.lineTo(f*e,-u*e),t.lineTo(u*r-f*i,f*r+u*i)}t.closePath()}},O_={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},Y_=Math.sqrt(3),B_={draw:function(t,n){var e=-Math.sqrt(n/(3*Y_));t.moveTo(0,2*e),t.lineTo(-Y_*e,-e),t.lineTo(Y_*e,-e),t.closePath()}},F_=Math.sqrt(3)/2,I_=1/Math.sqrt(12),j_=3*(I_/2+1),H_={draw:function(t,n){var e=Math.sqrt(n/j_),r=e/2,i=e*I_,o=r,a=e*I_+e,u=-o,f=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(u,f),t.lineTo(-.5*r-F_*i,F_*r+-.5*i),t.lineTo(-.5*o-F_*a,F_*o+-.5*a),t.lineTo(-.5*u-F_*f,F_*u+-.5*f),t.lineTo(-.5*r+F_*i,-.5*i-F_*r),t.lineTo(-.5*o+F_*a,-.5*a-F_*o),t.lineTo(-.5*u+F_*f,-.5*f-F_*u),t.closePath()}},X_=[k_,C_,R_,O_,q_,B_,H_];Ff.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Bf(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Bf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},If.prototype={areaStart:Yf,areaEnd:Yf,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Bf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},jf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Bf(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Hf.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],a=t[e]-i,u=n[e]-o,f=-1;++f<=e;)r=f/e,this._basis.point(this._beta*t[f]+(1-this._beta)*(i+r*a),this._beta*n[f]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var G_=function t(n){function e(t){return 1===n?new Ff(t):new Hf(t,n)}return e.beta=function(n){return t(+n)},e}(.85);Gf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Xf(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:Xf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var V_=function t(n){function e(t){return new Gf(t,n)}return e.tension=function(n){return t(+n)},e}(0);Vf.prototype={areaStart:Yf,areaEnd:Yf,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Xf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var $_=function t(n){function e(t){return new Vf(t,n)}return e.tension=function(n){return t(+n)},e}(0);$f.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Xf(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var W_=function t(n){function e(t){return new $f(t,n)}return e.tension=function(n){return t(+n)},e}(0);Zf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:Wf(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Z_=function t(n){function e(t){return n?new Zf(t,n):new Gf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Qf.prototype={areaStart:Yf,areaEnd:Yf,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Wf(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Q_=function t(n){function e(t){return n?new Qf(t,n):new Vf(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Jf.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Wf(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var J_=function t(n){function e(t){return n?new Jf(t,n):new $f(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Kf.prototype={areaStart:Yf,areaEnd:Yf,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}},ic.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:rc(this,this._t0,ec(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,rc(this,ec(this,e=nc(this,t,n)),e);break;default:rc(this,this._t0,e=nc(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(oc.prototype=Object.create(ic.prototype)).point=function(t,n){ic.prototype.point.call(this,n,t)},ac.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},uc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=fc(t),i=fc(n),o=0,a=1;a<e;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[a],n[a]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}},cc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},_c.prototype={constructor:_c,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=wc(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(mc(this,e),e=(t=e).U),e.C=!1,r.C=!0,xc(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(xc(this,e),e=(t=e).U),e.C=!1,r.C=!0,mc(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,a=t.R;if(e=o?a?wc(a):o:a,i?i.L===t?i.L=e:i.R=e:this._=e,o&&a?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==a?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=a,a.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,mc(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,xc(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,mc(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,xc(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,mc(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,xc(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var K_,tb,nb,eb,rb,ib=[],ob=[],ab=1e-6,ub=1e-12;Bc.prototype={constructor:Bc,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return kc(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,a,u=e.site,f=-1,c=n[i[o-1]],s=c.left===u?c.right:c.left;++f<o;)a=s,s=(c=n[i[f]]).left===u?c.right:c.left,a&&s&&r<a.index&&r<s.index&&Oc(u,a,s)<0&&t.push([u.data,a.data,s.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,a=o._found||0,u=o.cells.length;!(i=o.cells[a]);)if(++a>=u)return null;var f=t-i.site[0],c=n-i.site[1],s=f*f+c*c;do{i=o.cells[r=a],a=null,i.halfedges.forEach(function(e){var r=o.edges[e],u=r.left;if(u!==i.site&&u||(u=r.right)){var f=t-u[0],c=n-u[1],l=f*f+c*c;l<s&&(s=l,a=u.index)}})}while(null!==a);return o._found=r,null==e||s<=e*e?i.site:null}},Ic.prototype={constructor:Ic,scale:function(t){return 1===t?this:new Ic(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new Ic(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var fb=new Ic(1,0,0);jc.prototype=Ic.prototype,t.version="5.5.0",t.bisect=Kc,t.bisectRight=Kc,t.bisectLeft=ts,t.ascending=n,t.bisector=e,t.cross=function(t,n,e){var i,o,a,u,f=t.length,c=n.length,s=new Array(f*c);for(null==e&&(e=r),i=a=0;i<f;++i)for(u=t[i],o=0;o<c;++o,++a)s[a]=e(u,n[o]);return s},t.descending=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},t.deviation=a,t.extent=u,t.histogram=function(){function t(t){var i,o,a=t.length,u=new Array(a);for(i=0;i<a;++i)u[i]=n(t[i],i,t);var f=e(u),c=f[0],l=f[1],h=r(u,c,l);Array.isArray(h)||(h=d(c,l,h),h=s(Math.ceil(c/h)*h,Math.floor(l/h)*h,h));for(var p=h.length;h[0]<=c;)h.shift(),--p;for(;h[p-1]>l;)h.pop(),--p;var v,g=new Array(p+1);for(i=0;i<=p;++i)(v=g[i]=[]).x0=i>0?h[i-1]:c,v.x1=i<p?h[i]:l;for(i=0;i<a;++i)c<=(o=u[i])&&o<=l&&g[Kc(h,o,0,p)].push(t[i]);return g}var n=c,e=u,r=p;return t.value=function(e){return arguments.length?(n="function"==typeof e?e:f(e),t):n},t.domain=function(n){return arguments.length?(e="function"==typeof n?n:f([n[0],n[1]]),t):e},t.thresholds=function(n){return arguments.length?(r="function"==typeof n?n:Array.isArray(n)?f(es.call(n)):f(n),t):r},t},t.thresholdFreedmanDiaconis=function(t,e,r){return t=rs.call(t,i).sort(n),Math.ceil((r-e)/(2*(v(t,.75)-v(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,n,e){return Math.ceil((e-n)/(3.5*a(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=p,t.max=g,t.mean=function(t,n){var e,r=t.length,o=r,a=-1,u=0;if(null==n)for(;++a<r;)isNaN(e=i(t[a]))?--o:u+=e;else for(;++a<r;)isNaN(e=i(n(t[a],a,t)))?--o:u+=e;if(o)return u/o},t.median=function(t,e){var r,o=t.length,a=-1,u=[];if(null==e)for(;++a<o;)isNaN(r=i(t[a]))||u.push(r);else for(;++a<o;)isNaN(r=i(e(t[a],a,t)))||u.push(r);return v(u.sort(n),.5)},t.merge=y,t.min=_,t.pairs=function(t,n){null==n&&(n=r);for(var e=0,i=t.length-1,o=t[0],a=new Array(i<0?0:i);e<i;)a[e]=n(o,o=t[++e]);return a},t.permute=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},t.quantile=v,t.range=s,t.scan=function(t,e){if(r=t.length){var r,i,o=0,a=0,u=t[a];for(null==e&&(e=n);++o<r;)(e(i=t[o],u)<0||0!==e(u,u))&&(u=i,a=o);return 0===e(u,u)?a:void 0}},t.shuffle=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},t.sum=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},t.ticks=l,t.tickIncrement=h,t.tickStep=d,t.transpose=b,t.variance=o,t.zip=function(){return b(arguments)},t.axisTop=function(t){return T(fs,t)},t.axisRight=function(t){return T(cs,t)},t.axisBottom=function(t){return T(ss,t)},t.axisLeft=function(t){return T(ls,t)},t.brush=function(){return ee(bh)},t.brushX=function(){return ee(yh)},t.brushY=function(){return ee(_h)},t.brushSelection=function(t){var n=t.__brush;return n?n.dim.output(n.selection):null},t.chord=function(){function t(t){var o,a,u,f,c,l,h=t.length,d=[],p=s(h),v=[],g=[],y=g.groups=new Array(h),_=new Array(h*h);for(o=0,c=-1;++c<h;){for(a=0,l=-1;++l<h;)a+=t[c][l];d.push(a),v.push(s(h)),o+=a}for(e&&p.sort(function(t,n){return e(d[t],d[n])}),r&&v.forEach(function(n,e){n.sort(function(n,i){return r(t[e][n],t[e][i])})}),f=(o=Ch(0,kh-n*h)/o)?n:kh/h,a=0,c=-1;++c<h;){for(u=a,l=-1;++l<h;){var b=p[c],m=v[b][l],x=t[b][m],w=a,M=a+=x*o;_[m*h+b]={index:b,subindex:m,startAngle:w,endAngle:M,value:x}}y[b]={index:b,startAngle:u,endAngle:a,value:d[b]},a+=f}for(c=-1;++c<h;)for(l=c-1;++l<h;){var A=_[l*h+c],T=_[c*h+l];(A.value||T.value)&&g.push(A.value<T.value?{source:T,target:A}:{source:A,target:T})}return i?g.sort(i):g}var n=0,e=null,r=null,i=null;return t.padAngle=function(e){return arguments.length?(n=Ch(0,e),t):n},t.sortGroups=function(n){return arguments.length?(e=n,t):e},t.sortSubgroups=function(n){return arguments.length?(r=n,t):r},t.sortChords=function(n){return arguments.length?(null==n?i=null:(i=function(t){return function(n,e){return t(n.source.value+n.target.value,e.source.value+e.target.value)}}(n))._=n,t):i&&i._},t},t.ribbon=function(){function t(){var t,u=Ph.call(arguments),f=n.apply(this,u),c=e.apply(this,u),s=+r.apply(this,(u[0]=f,u)),l=i.apply(this,u)-Eh,h=o.apply(this,u)-Eh,d=s*Th(l),p=s*Nh(l),v=+r.apply(this,(u[0]=c,u)),g=i.apply(this,u)-Eh,y=o.apply(this,u)-Eh;if(a||(a=t=oe()),a.moveTo(d,p),a.arc(0,0,s,l,h),l===g&&h===y||(a.quadraticCurveTo(0,0,v*Th(g),v*Nh(g)),a.arc(0,0,v,g,y)),a.quadraticCurveTo(0,0,d,p),a.closePath(),t)return a=null,t+""||null}var n=ae,e=ue,r=fe,i=ce,o=se,a=null;return t.radius=function(n){return arguments.length?(r="function"==typeof n?n:re(+n),t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:re(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:re(+n),t):o},t.source=function(e){return arguments.length?(n=e,t):n},t.target=function(n){return arguments.length?(e=n,t):e},t.context=function(n){return arguments.length?(a=null==n?null:n,t):a},t},t.nest=function(){function t(n,i,a,u){if(i>=o.length)return null!=e&&n.sort(e),null!=r?r(n):n;for(var f,c,s,l=-1,h=n.length,d=o[i++],p=he(),v=a();++l<h;)(s=p.get(f=d(c=n[l])+""))?s.push(c):p.set(f,[c]);return p.each(function(n,e){u(v,e,t(n,i,a,u))}),v}function n(t,e){if(++e>o.length)return t;var i,u=a[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=u?i.sort(function(t,n){return u(t.key,n.key)}):i}var e,r,i,o=[],a=[];return i={object:function(n){return t(n,0,de,pe)},map:function(n){return t(n,0,ve,ge)},entries:function(e){return n(t(e,0,ve,ge),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return a[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},t.set=_e,t.map=he,t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.entries=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},t.color=kt,t.rgb=Rt,t.hsl=qt,t.lab=Ft,t.hcl=$t,t.lch=function(t,n,e,r){return 1===arguments.length?Vt(t):new Wt(e,n,t,null==r?1:r)},t.gray=function(t,n){return new It(t,0,0,null==n?1:n)},t.cubehelix=Zt,t.contours=Me,t.contourDensity=function(){function t(t){var e=new Float32Array(v*y),r=new Float32Array(v*y);t.forEach(function(t,n,r){var i=a(t,n,r)+p>>h,o=u(t,n,r)+p>>h;i>=0&&i<v&&o>=0&&o<y&&++e[i+o*v]}),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h),Ae({width:v,height:y,data:e},{width:v,height:y,data:r},l>>h),Te({width:v,height:y,data:r},{width:v,height:y,data:e},l>>h);var i=_(e);if(!Array.isArray(i)){var o=g(e);i=d(0,o,i),(i=s(0,Math.floor(o/i)*i,i)).shift()}return Me().thresholds(i).size([v,y])(e).map(n)}function n(t){return t.value*=Math.pow(2,-2*h),t.coordinates.forEach(e),t}function e(t){t.forEach(r)}function r(t){t.forEach(i)}function i(t){t[0]=t[0]*Math.pow(2,h)-p,t[1]=t[1]*Math.pow(2,h)-p}function o(){return p=3*l,v=f+2*p>>h,y=c+2*p>>h,t}var a=Ne,u=Se,f=960,c=500,l=20,h=2,p=3*l,v=f+2*p>>h,y=c+2*p>>h,_=me(20);return t.x=function(n){return arguments.length?(a="function"==typeof n?n:me(+n),t):a},t.y=function(n){return arguments.length?(u="function"==typeof n?n:me(+n),t):u},t.size=function(t){if(!arguments.length)return[f,c];var n=Math.ceil(t[0]),e=Math.ceil(t[1]);if(!(n>=0||n>=0))throw new Error("invalid size");return f=n,c=e,o()},t.cellSize=function(t){if(!arguments.length)return 1<<h;if(!((t=+t)>=1))throw new Error("invalid cell size");return h=Math.floor(Math.log(t)/Math.LN2),o()},t.thresholds=function(n){return arguments.length?(_="function"==typeof n?n:Array.isArray(n)?me(Uh.call(n)):me(n),t):_},t.bandwidth=function(t){if(!arguments.length)return Math.sqrt(l*(l+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return l=Math.round((Math.sqrt(4*t*t+1)-1)/2),o()},t},t.dispatch=N,t.drag=function(){function n(t){t.on("mousedown.drag",e).filter(g).on("touchstart.drag",o).on("touchmove.drag",a).on("touchend.drag touchcancel.drag",u).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&d.apply(this,arguments)){var n=f("mouse",p.apply(this,arguments),pt,this,arguments);n&&(ct(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),_t(t.event.view),gt(),l=!1,c=t.event.clientX,s=t.event.clientY,n("start"))}}function r(){if(yt(),!l){var n=t.event.clientX-c,e=t.event.clientY-s;l=n*n+e*e>m}y.mouse("drag")}function i(){ct(t.event.view).on("mousemove.drag mouseup.drag",null),bt(t.event.view,l),yt(),y.mouse("end")}function o(){if(d.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=p.apply(this,arguments),o=r.length;for(n=0;n<o;++n)(e=f(r[n].identifier,i,vt,this,arguments))&&(gt(),e("start"))}}function a(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=y[r[n].identifier])&&(yt(),e("drag"))}function u(){var n,e,r=t.event.changedTouches,i=r.length;for(h&&clearTimeout(h),h=setTimeout(function(){h=null},500),n=0;n<i;++n)(e=y[r[n].identifier])&&(gt(),e("end"))}function f(e,r,i,o,a){var u,f,c,s=i(r,e),l=_.copy();if(ot(new xt(n,"beforestart",u,e,b,s[0],s[1],0,0,l),function(){return null!=(t.event.subject=u=v.apply(o,a))&&(f=u.x-s[0]||0,c=u.y-s[1]||0,!0)}))return function t(h){var d,p=s;switch(h){case"start":y[e]=t,d=b++;break;case"end":delete y[e],--b;case"drag":s=i(r,e),d=b}ot(new xt(n,h,u,e,d,s[0]+f,s[1]+c,s[0]-p[0],s[1]-p[1],l),l.apply,l,[h,o,a])}}var c,s,l,h,d=wt,p=Mt,v=At,g=Tt,y={},_=N("start","drag","end"),b=0,m=0;return n.filter=function(t){return arguments.length?(d="function"==typeof t?t:mt(!!t),n):d},n.container=function(t){return arguments.length?(p="function"==typeof t?t:mt(t),n):p},n.subject=function(t){return arguments.length?(v="function"==typeof t?t:mt(t),n):v},n.touchable=function(t){return arguments.length?(g="function"==typeof t?t:mt(!!t),n):g},n.on=function(){var t=_.on.apply(_,arguments);return t===_?n:t},n.clickDistance=function(t){return arguments.length?(m=(t=+t)*t,n):Math.sqrt(m)},n},t.dragDisable=_t,t.dragEnable=bt,t.dsvFormat=ke,t.csvParse=Hh,t.csvParseRows=Xh,t.csvFormat=Gh,t.csvFormatRows=Vh,t.tsvParse=Wh,t.tsvParseRows=Zh,t.tsvFormat=Qh,t.tsvFormatRows=Jh,t.easeLinear=function(t){return+t},t.easeQuad=Fn,t.easeQuadIn=function(t){return t*t},t.easeQuadOut=function(t){return t*(2-t)},t.easeQuadInOut=Fn,t.easeCubic=In,t.easeCubicIn=function(t){return t*t*t},t.easeCubicOut=function(t){return--t*t*t+1},t.easeCubicInOut=In,t.easePoly=Xl,t.easePolyIn=jl,t.easePolyOut=Hl,t.easePolyInOut=Xl,t.easeSin=jn,t.easeSinIn=function(t){return 1-Math.cos(t*Vl)},t.easeSinOut=function(t){return Math.sin(t*Vl)},t.easeSinInOut=jn,t.easeExp=Hn,t.easeExpIn=function(t){return Math.pow(2,10*t-10)},t.easeExpOut=function(t){return 1-Math.pow(2,-10*t)},t.easeExpInOut=Hn,t.easeCircle=Xn,t.easeCircleIn=function(t){return 1-Math.sqrt(1-t*t)},t.easeCircleOut=function(t){return Math.sqrt(1- --t*t)},t.easeCircleInOut=Xn,t.easeBounce=Gn,t.easeBounceIn=function(t){return 1-Gn(1-t)},t.easeBounceOut=Gn,t.easeBounceInOut=function(t){return((t*=2)<=1?1-Gn(1-t):Gn(t-1)+1)/2},t.easeBack=ah,t.easeBackIn=ih,t.easeBackOut=oh,t.easeBackInOut=ah,t.easeElastic=ch,t.easeElasticIn=fh,t.easeElasticOut=ch,t.easeElasticInOut=sh,t.blob=function(t,n){return fetch(t,n).then(Ce)},t.buffer=function(t,n){return fetch(t,n).then(Pe)},t.dsv=function(t,n,e,r){3===arguments.length&&"function"==typeof e&&(r=e,e=void 0);var i=ke(t);return Re(n,e).then(function(t){return i.parse(t,r)})},t.csv=Kh,t.tsv=td,t.image=function(t,n){return new Promise(function(e,r){var i=new Image;for(var o in n)i[o]=n[o];i.onerror=r,i.onload=function(){e(i)},i.src=t})},t.json=function(t,n){return fetch(t,n).then(De)},t.text=Re,t.xml=nd,t.html=ed,t.svg=rd,t.forceCenter=function(t,n){function e(){var e,i,o=r.length,a=0,u=0;for(e=0;e<o;++e)a+=(i=r[e]).x,u+=i.y;for(a=a/o-t,u=u/o-n,e=0;e<o;++e)(i=r[e]).x-=a,i.y-=u}var r;return null==t&&(t=0),null==n&&(n=0),e.initialize=function(t){r=t},e.x=function(n){return arguments.length?(t=+n,e):t},e.y=function(t){return arguments.length?(n=+t,e):n},e},t.forceCollide=function(t){function n(){for(var t,n,r,f,c,s,l,h=i.length,d=0;d<u;++d)for(n=je(i,Ge,Ve).visitAfter(e),t=0;t<h;++t)r=i[t],s=o[r.index],l=s*s,f=r.x+r.vx,c=r.y+r.vy,n.visit(function(t,n,e,i,o){var u=t.data,h=t.r,d=s+h;if(!u)return n>f+d||i<f-d||e>c+d||o<c-d;if(u.index>r.index){var p=f-u.x-u.vx,v=c-u.y-u.vy,g=p*p+v*v;g<d*d&&(0===p&&(p=Oe(),g+=p*p),0===v&&(v=Oe(),g+=v*v),g=(d-(g=Math.sqrt(g)))/g*a,r.vx+=(p*=g)*(d=(h*=h)/(l+h)),r.vy+=(v*=g)*d,u.vx-=p*(d=1-d),u.vy-=v*d)}})}function e(t){if(t.data)return t.r=o[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n<r;++n)e=i[n],o[e.index]=+t(e,n,i)}}var i,o,a=1,u=1;return"function"!=typeof t&&(t=qe(null==t?1:+t)),n.initialize=function(t){i=t,r()},n.iterations=function(t){return arguments.length?(u=+t,n):u},n.strength=function(t){return arguments.length?(a=+t,n):a},n.radius=function(e){return arguments.length?(t="function"==typeof e?e:qe(+e),r(),n):t},n},t.forceLink=function(t){function n(n){for(var e=0,r=t.length;e<d;++e)for(var i,u,f,s,l,h,p,v=0;v<r;++v)u=(i=t[v]).source,s=(f=i.target).x+f.vx-u.x-u.vx||Oe(),l=f.y+f.vy-u.y-u.vy||Oe(),s*=h=((h=Math.sqrt(s*s+l*l))-a[v])/h*n*o[v],l*=h,f.vx-=s*(p=c[v]),f.vy-=l*p,u.vx+=s*(p=1-p),u.vy+=l*p}function e(){if(u){var n,e,l=u.length,h=t.length,d=he(u,s);for(n=0,f=new Array(l);n<h;++n)(e=t[n]).index=n,"object"!=typeof e.source&&(e.source=We(d,e.source)),"object"!=typeof e.target&&(e.target=We(d,e.target)),f[e.source.index]=(f[e.source.index]||0)+1,f[e.target.index]=(f[e.target.index]||0)+1;for(n=0,c=new Array(h);n<h;++n)e=t[n],c[n]=f[e.source.index]/(f[e.source.index]+f[e.target.index]);o=new Array(h),r(),a=new Array(h),i()}}function r(){if(u)for(var n=0,e=t.length;n<e;++n)o[n]=+l(t[n],n,t)}function i(){if(u)for(var n=0,e=t.length;n<e;++n)a[n]=+h(t[n],n,t)}var o,a,u,f,c,s=$e,l=function(t){return 1/Math.min(f[t.source.index],f[t.target.index])},h=qe(30),d=1;return null==t&&(t=[]),n.initialize=function(t){u=t,e()},n.links=function(r){return arguments.length?(t=r,e(),n):t},n.id=function(t){return arguments.length?(s=t,n):s},n.iterations=function(t){return arguments.length?(d=+t,n):d},n.strength=function(t){return arguments.length?(l="function"==typeof t?t:qe(+t),r(),n):l},n.distance=function(t){return arguments.length?(h="function"==typeof t?t:qe(+t),i(),n):h},n},t.forceManyBody=function(){function t(t){var n,u=i.length,f=je(i,Ze,Qe).visitAfter(e);for(a=t,n=0;n<u;++n)o=i[n],f.visit(r)}function n(){if(i){var t,n,e=i.length;for(u=new Array(e),t=0;t<e;++t)n=i[t],u[n.index]=+f(n,t,i)}}function e(t){var n,e,r,i,o,a=0,f=0;if(t.length){for(r=i=o=0;o<4;++o)(n=t[o])&&(e=Math.abs(n.value))&&(a+=n.value,f+=e,r+=e*n.x,i+=e*n.y);t.x=r/f,t.y=i/f}else{(n=t).x=n.data.x,n.y=n.data.y;do{a+=u[n.data.index]}while(n=n.next)}t.value=a}function r(t,n,e,r){if(!t.value)return!0;var i=t.x-o.x,f=t.y-o.y,h=r-n,d=i*i+f*f;if(h*h/l<d)return d<s&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)),o.vx+=i*t.value*a/d,o.vy+=f*t.value*a/d),!0;if(!(t.length||d>=s)){(t.data!==o||t.next)&&(0===i&&(i=Oe(),d+=i*i),0===f&&(f=Oe(),d+=f*f),d<c&&(d=Math.sqrt(c*d)));do{t.data!==o&&(h=u[t.data.index]*a/d,o.vx+=i*h,o.vy+=f*h)}while(t=t.next)}}var i,o,a,u,f=qe(-30),c=1,s=1/0,l=.81;return t.initialize=function(t){i=t,n()},t.strength=function(e){return arguments.length?(f="function"==typeof e?e:qe(+e),n(),t):f},t.distanceMin=function(n){return arguments.length?(c=n*n,t):Math.sqrt(c)},t.distanceMax=function(n){return arguments.length?(s=n*n,t):Math.sqrt(s)},t.theta=function(n){return arguments.length?(l=n*n,t):Math.sqrt(l)},t},t.forceRadial=function(t,n,e){function r(t){for(var r=0,i=o.length;r<i;++r){var f=o[r],c=f.x-n||1e-6,s=f.y-e||1e-6,l=Math.sqrt(c*c+s*s),h=(u[r]-l)*a[r]*t/l;f.vx+=c*h,f.vy+=s*h}}function i(){if(o){var n,e=o.length;for(a=new Array(e),u=new Array(e),n=0;n<e;++n)u[n]=+t(o[n],n,o),a[n]=isNaN(u[n])?0:+f(o[n],n,o)}}var o,a,u,f=qe(.1);return"function"!=typeof t&&(t=qe(+t)),null==n&&(n=0),null==e&&(e=0),r.initialize=function(t){o=t,i()},r.strength=function(t){return arguments.length?(f="function"==typeof t?t:qe(+t),i(),r):f},r.radius=function(n){return arguments.length?(t="function"==typeof n?n:qe(+n),i(),r):t},r.x=function(t){return arguments.length?(n=+t,r):n},r.y=function(t){return arguments.length?(e=+t,r):e},r},t.forceSimulation=function(t){function n(){e(),d.call("tick",o),a<u&&(h.stop(),d.call("end",o))}function e(){var n,e,r=t.length;for(a+=(c-a)*f,l.each(function(t){t(a)}),n=0;n<r;++n)null==(e=t[n]).fx?e.x+=e.vx*=s:(e.x=e.fx,e.vx=0),null==e.fy?e.y+=e.vy*=s:(e.y=e.fy,e.vy=0)}function r(){for(var n,e=0,r=t.length;e<r;++e){if(n=t[e],n.index=e,isNaN(n.x)||isNaN(n.y)){var i=od*Math.sqrt(e),o=e*ad;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function i(n){return n.initialize&&n.initialize(t),n}var o,a=1,u=.001,f=1-Math.pow(u,1/300),c=0,s=.6,l=he(),h=Tn(n),d=N("tick","end");return null==t&&(t=[]),r(),o={tick:e,restart:function(){return h.restart(n),o},stop:function(){return h.stop(),o},nodes:function(n){return arguments.length?(t=n,r(),l.each(i),o):t},alpha:function(t){return arguments.length?(a=+t,o):a},alphaMin:function(t){return arguments.length?(u=+t,o):u},alphaDecay:function(t){return arguments.length?(f=+t,o):+f},alphaTarget:function(t){return arguments.length?(c=+t,o):c},velocityDecay:function(t){return arguments.length?(s=1-t,o):1-s},force:function(t,n){return arguments.length>1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,a,u,f,c=0,s=t.length;for(null==r?r=1/0:r*=r,c=0;c<s;++c)(a=(i=n-(u=t[c]).x)*i+(o=e-u.y)*o)<r&&(f=u,r=a);return f},on:function(t,n){return arguments.length>1?(d.on(t,n),o):d.on(t)}}},t.forceX=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vx+=(o[e]-n.x)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.x=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.forceY=function(t){function n(t){for(var n,e=0,a=r.length;e<a;++e)(n=r[e]).vy+=(o[e]-n.y)*i[e]*t}function e(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)i[n]=isNaN(o[n]=+t(r[n],n,r))?0:+a(r[n],n,r)}}var r,i,o,a=qe(.1);return"function"!=typeof t&&(t=qe(null==t?0:+t)),n.initialize=function(t){r=t,e()},n.strength=function(t){return arguments.length?(a="function"==typeof t?t:qe(+t),e(),n):a},n.y=function(r){return arguments.length?(t="function"==typeof r?r:qe(+r),e(),n):t},n},t.formatDefaultLocale=or,t.formatLocale=ir,t.formatSpecifier=tr,t.precisionFixed=ar,t.precisionPrefix=ur,t.precisionRound=fr,t.geoArea=function(t){return dp.reset(),br(t,pp),2*dp},t.geoBounds=function(t){var n,e,r,i,o,a,u;if(md=bd=-(yd=_d=1/0),Td=[],br(t,gp),e=Td.length){for(Td.sort(Yr),n=1,o=[r=Td[0]];n<e;++n)Br(r,(i=Td[n])[0])||Br(r,i[1])?(Or(r[0],i[1])>Or(r[0],r[1])&&(r[1]=i[1]),Or(i[0],r[1])>Or(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(u=Or(r[1],i[0]))>a&&(a=u,yd=i[0],bd=r[1])}return Td=Nd=null,yd===1/0||_d===1/0?[[NaN,NaN],[NaN,NaN]]:[[yd,_d],[bd,md]]},t.geoCentroid=function(t){Sd=Ed=kd=Cd=Pd=zd=Rd=Ld=Dd=Ud=qd=0,br(t,yp);var n=Dd,e=Ud,r=qd,i=n*n+e*e+r*r;return i<Xd&&(n=zd,e=Rd,r=Ld,Ed<Hd&&(n=kd,e=Cd,r=Pd),(i=n*n+e*e+r*r)<Xd)?[NaN,NaN]:[tp(e,n)*Zd,dr(r/fp(i))*Zd]},t.geoCircle=function(){function t(){var t=r.apply(this,arguments),u=i.apply(this,arguments)*Qd,f=o.apply(this,arguments)*Qd;return n=[],e=ti(-t[0]*Qd,-t[1]*Qd,0).invert,oi(a,u,f,1),t={type:"Polygon",coordinates:[n]},n=e=null,t}var n,e,r=Qr([0,0]),i=Qr(90),o=Qr(6),a={point:function(t,r){n.push(t=e(t,r)),t[0]*=Zd,t[1]*=Zd}};return t.center=function(n){return arguments.length?(r="function"==typeof n?n:Qr([+n[0],+n[1]]),t):r},t.radius=function(n){return arguments.length?(i="function"==typeof n?n:Qr(+n),t):i},t.precision=function(n){return arguments.length?(o="function"==typeof n?n:Qr(+n),t):o},t},t.geoClipAntimeridian=Cp,t.geoClipCircle=gi,t.geoClipExtent=function(){var t,n,e,r=0,i=0,o=960,a=500;return e={stream:function(e){return t&&n===e?t:t=yi(r,i,o,a)(n=e)},extent:function(u){return arguments.length?(r=+u[0][0],i=+u[0][1],o=+u[1][0],a=+u[1][1],t=n=null,e):[[r,i],[o,a]]}}},t.geoClipRectangle=yi,t.geoContains=function(t,n){return(t&&qp.hasOwnProperty(t.type)?qp[t.type]:Mi)(t,n)},t.geoDistance=wi,t.geoGraticule=Pi,t.geoGraticule10=function(){return Pi()()},t.geoInterpolate=function(t,n){var e=t[0]*Qd,r=t[1]*Qd,i=n[0]*Qd,o=n[1]*Qd,a=np(r),u=ap(r),f=np(o),c=ap(o),s=a*np(e),l=a*ap(e),h=f*np(i),d=f*ap(i),p=2*dr(fp(pr(o-r)+a*f*pr(i-e))),v=ap(p),g=p?function(t){var n=ap(t*=p)/v,e=ap(p-t)/v,r=e*s+n*h,i=e*l+n*d,o=e*u+n*c;return[tp(i,r)*Zd,tp(o,fp(r*r+i*i))*Zd]}:function(){return[e*Zd,r*Zd]};return g.distance=p,g},t.geoLength=xi,t.geoPath=function(t,n){function e(t){return t&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),br(t,r(i))),i.result()}var r,i,o=4.5;return e.area=function(t){return br(t,r(Fp)),Fp.result()},e.measure=function(t){return br(t,r(cv)),cv.result()},e.bounds=function(t){return br(t,r(Gp)),Gp.result()},e.centroid=function(t){return br(t,r(ev)),ev.result()},e.projection=function(n){return arguments.length?(r=null==n?(t=null,zi):(t=n).stream,e):t},e.context=function(t){return arguments.length?(i=null==t?(n=null,new Wi):new Gi(n=t),"function"!=typeof o&&i.pointRadius(o),e):n},e.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),e):o},e.projection(t).context(n)},t.geoAlbers=lo,t.geoAlbersUsa=function(){function t(t){var n=t[0],e=t[1];return u=null,i.point(n,e),u||(o.point(n,e),u)||(a.point(n,e),u)}function n(){return e=r=null,t}var e,r,i,o,a,u,f=lo(),c=so().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=so().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,n){u=[t,n]}};return t.invert=function(t){var n=f.scale(),e=f.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?c:i>=.166&&i<.234&&r>=-.214&&r<-.115?s:f).invert(t)},t.stream=function(t){return e&&r===t?e:e=function(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i<n;)t[i].point(e,r)},sphere:function(){for(var e=-1;++e<n;)t[e].sphere()},lineStart:function(){for(var e=-1;++e<n;)t[e].lineStart()},lineEnd:function(){for(var e=-1;++e<n;)t[e].lineEnd()},polygonStart:function(){for(var e=-1;++e<n;)t[e].polygonStart()},polygonEnd:function(){for(var e=-1;++e<n;)t[e].polygonEnd()}}}([f.stream(r=t),c.stream(t),s.stream(t)])},t.precision=function(t){return arguments.length?(f.precision(t),c.precision(t),s.precision(t),n()):f.precision()},t.scale=function(n){return arguments.length?(f.scale(n),c.scale(.35*n),s.scale(n),t.translate(f.translate())):f.scale()},t.translate=function(t){if(!arguments.length)return f.translate();var e=f.scale(),r=+t[0],u=+t[1];return i=f.translate(t).clipExtent([[r-.455*e,u-.238*e],[r+.455*e,u+.238*e]]).stream(l),o=c.translate([r-.307*e,u+.201*e]).clipExtent([[r-.425*e+Hd,u+.12*e+Hd],[r-.214*e-Hd,u+.234*e-Hd]]).stream(l),a=s.translate([r-.205*e,u+.212*e]).clipExtent([[r-.214*e+Hd,u+.166*e+Hd],[r-.115*e-Hd,u+.234*e-Hd]]).stream(l),n()},t.fitExtent=function(n,e){return to(t,n,e)},t.fitSize=function(n,e){return no(t,n,e)},t.fitWidth=function(n,e){return eo(t,n,e)},t.fitHeight=function(n,e){return ro(t,n,e)},t.scale(1070)},t.geoAzimuthalEqualArea=function(){return ao(dv).scale(124.75).clipAngle(179.999)},t.geoAzimuthalEqualAreaRaw=dv,t.geoAzimuthalEquidistant=function(){return ao(pv).scale(79.4188).clipAngle(179.999)},t.geoAzimuthalEquidistantRaw=pv,t.geoConicConformal=function(){return fo(_o).scale(109.5).parallels([30,30])},t.geoConicConformalRaw=_o,t.geoConicEqualArea=so,t.geoConicEqualAreaRaw=co,t.geoConicEquidistant=function(){return fo(mo).scale(131.154).center([0,13.9389])},t.geoConicEquidistantRaw=mo,t.geoEquirectangular=function(){return ao(bo).scale(152.63)},t.geoEquirectangularRaw=bo,t.geoGnomonic=function(){return ao(xo).scale(144.049).clipAngle(60)},t.geoGnomonicRaw=xo,t.geoIdentity=function(){function t(){return i=o=null,a}var n,e,r,i,o,a,u=1,f=0,c=0,s=1,l=1,h=zi,d=null,p=zi;return a={stream:function(t){return i&&o===t?i:i=h(p(o=t))},postclip:function(i){return arguments.length?(p=i,d=n=e=r=null,t()):p},clipExtent:function(i){return arguments.length?(p=null==i?(d=n=e=r=null,zi):yi(d=+i[0][0],n=+i[0][1],e=+i[1][0],r=+i[1][1]),t()):null==d?null:[[d,n],[e,r]]},scale:function(n){return arguments.length?(h=wo((u=+n)*s,u*l,f,c),t()):u},translate:function(n){return arguments.length?(h=wo(u*s,u*l,f=+n[0],c=+n[1]),t()):[f,c]},reflectX:function(n){return arguments.length?(h=wo(u*(s=n?-1:1),u*l,f,c),t()):s<0},reflectY:function(n){return arguments.length?(h=wo(u*s,u*(l=n?-1:1),f,c),t()):l<0},fitExtent:function(t,n){return to(a,t,n)},fitSize:function(t,n){return no(a,t,n)},fitWidth:function(t,n){return eo(a,t,n)},fitHeight:function(t,n){return ro(a,t,n)}}},t.geoProjection=ao,t.geoProjectionMutator=uo,t.geoMercator=function(){return go(vo).scale(961/Wd)},t.geoMercatorRaw=vo,t.geoNaturalEarth1=function(){return ao(Mo).scale(175.295)},t.geoNaturalEarth1Raw=Mo,t.geoOrthographic=function(){return ao(Ao).scale(249.5).clipAngle(90+Hd)},t.geoOrthographicRaw=Ao,t.geoStereographic=function(){return ao(To).scale(250).clipAngle(142)},t.geoStereographicRaw=To,t.geoTransverseMercator=function(){var t=go(No),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):(t=n(),[t[1],-t[0]])},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=No,t.geoRotation=ii,t.geoStream=br,t.geoTransform=function(t){return{stream:Qi(t)}},t.cluster=function(){function t(t){var o,a=0;t.eachAfter(function(t){var e=t.children;e?(t.x=function(t){return t.reduce(Eo,0)/t.length}(e),t.y=function(t){return 1+t.reduce(ko,0)}(e)):(t.x=o?a+=n(t,o):0,t.y=0,o=t)});var u=function(t){for(var n;n=t.children;)t=n[0];return t}(t),f=function(t){for(var n;n=t.children;)t=n[n.length-1];return t}(t),c=u.x-n(u,f)/2,s=f.x+n(f,u)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-c)/(s-c)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=So,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},t.hierarchy=Po,t.pack=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(Qo(n)).eachAfter(Jo(i,.5)).eachBefore(Ko(1)):t.eachBefore(Qo(Zo)).eachAfter(Jo($o,1)).eachAfter(Jo(i,t.r/Math.min(e,r))).eachBefore(Ko(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=$o;return t.radius=function(e){return arguments.length?(n=function(t){return null==t?null:Vo(t)}(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Wo(+n),t):i},t},t.packSiblings=function(t){return Go(t),t},t.packEnclose=Uo,t.partition=function(){function t(t){var o=t.height+1;return t.x0=t.y0=r,t.x1=n,t.y1=e/o,t.eachBefore(function(t,n){return function(e){e.children&&na(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var i=e.x0,o=e.y0,a=e.x1-r,u=e.y1-r;a<i&&(i=a=(i+a)/2),u<o&&(o=u=(o+u)/2),e.x0=i,e.y0=o,e.x1=a,e.y1=u}}(e,o)),i&&t.eachBefore(ta),t}var n=1,e=1,r=0,i=!1;return t.round=function(n){return arguments.length?(i=!!n,t):i},t.size=function(r){return arguments.length?(n=+r[0],e=+r[1],t):[n,e]},t.padding=function(n){return arguments.length?(r=+n,t):r},t},t.stratify=function(){function t(t){var r,i,o,a,u,f,c,s=t.length,l=new Array(s),h={};for(i=0;i<s;++i)r=t[i],u=l[i]=new Do(r),null!=(f=n(r,i,t))&&(f+="")&&(h[c=gv+(u.id=f)]=c in h?_v:u);for(i=0;i<s;++i)if(u=l[i],null!=(f=e(t[i],i,t))&&(f+="")){if(!(a=h[gv+f]))throw new Error("missing: "+f);if(a===_v)throw new Error("ambiguous: "+f);a.children?a.children.push(u):a.children=[u],u.parent=a}else{if(o)throw new Error("multiple roots");o=u}if(!o)throw new Error("no root");if(o.parent=yv,o.eachBefore(function(t){t.depth=t.parent.depth+1,--s}).eachBefore(Lo),o.parent=null,s>0)throw new Error("cycle");return o}var n=ea,e=ra;return t.id=function(e){return arguments.length?(n=Vo(e),t):n},t.parentId=function(n){return arguments.length?(e=Vo(n),t):e},t},t.tree=function(){function t(t){var f=function(t){for(var n,e,r,i,o,a=new ca(t,0),u=[a];n=u.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)u.push(e=n.children[i]=new ca(r[i],i)),e.parent=n;return(a.parent=new ca(null,0)).children=[a],a}(t);if(f.eachAfter(n),f.parent.m=-f.z,f.eachBefore(e),u)t.eachBefore(r);else{var c=t,s=t,l=t;t.eachBefore(function(t){t.x<c.x&&(c=t),t.x>s.x&&(s=t),t.depth>l.depth&&(l=t)});var h=c===s?1:i(c,s)/2,d=h-c.x,p=o/(s.x+h+d),v=a/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+d)*p,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,r=t.i?e[t.i-1]:null;if(n){(function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)})(t);var o=(n[0].z+n[n.length-1].z)/2;r?(t.z=r.z+i(t._,r._),t.m=t.z-o):t.z=o}else r&&(t.z=r.z+i(t._,r._));t.parent.A=function(t,n,e){if(n){for(var r,o=t,a=t,u=n,f=o.parent.children[0],c=o.m,s=a.m,l=u.m,h=f.m;u=aa(u),o=oa(o),u&&o;)f=oa(f),(a=aa(a)).a=t,(r=u.z+l-o.z-c+i(u._,o._))>0&&(ua(fa(u,t,e),t,r),c+=r,s+=r),l+=u.m,c+=o.m,h+=f.m,s+=a.m;u&&!aa(a)&&(a.t=u,a.m+=l-s),o&&!oa(f)&&(f.t=o,f.m+=c-h,e=t)}return e}(t,r,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t){t.x*=o,t.y=t.depth*a}var i=ia,o=1,a=1,u=null;return t.separation=function(n){return arguments.length?(i=n,t):i},t.size=function(n){return arguments.length?(u=!1,o=+n[0],a=+n[1],t):u?null:[o,a]},t.nodeSize=function(n){return arguments.length?(u=!0,o=+n[0],a=+n[1],t):u?[o,a]:null},t},t.treemap=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),a=[0],r&&t.eachBefore(ta),t}function n(t){var n=a[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),t.x0=r,t.y0=i,t.x1=o,t.y1=h,t.children&&(n=a[t.depth+1]=u(t)/2,r+=l(t)-n,i+=f(t)-n,o-=c(t)-n,h-=s(t)-n,o<r&&(r=o=(r+o)/2),h<i&&(i=h=(i+h)/2),e(t,r,i,o,h))}var e=mv,r=!1,i=1,o=1,a=[0],u=$o,f=$o,c=$o,s=$o,l=$o;return t.round=function(n){return arguments.length?(r=!!n,t):r},t.size=function(n){return arguments.length?(i=+n[0],o=+n[1],t):[i,o]},t.tile=function(n){return arguments.length?(e=Vo(n),t):e},t.padding=function(n){return arguments.length?t.paddingInner(n).paddingOuter(n):t.paddingInner()},t.paddingInner=function(n){return arguments.length?(u="function"==typeof n?n:Wo(+n),t):u},t.paddingOuter=function(n){return arguments.length?t.paddingTop(n).paddingRight(n).paddingBottom(n).paddingLeft(n):t.paddingTop()},t.paddingTop=function(n){return arguments.length?(f="function"==typeof n?n:Wo(+n),t):f},t.paddingRight=function(n){return arguments.length?(c="function"==typeof n?n:Wo(+n),t):c},t.paddingBottom=function(n){return arguments.length?(s="function"==typeof n?n:Wo(+n),t):s},t.paddingLeft=function(n){return arguments.length?(l="function"==typeof n?n:Wo(+n),t):l},t},t.treemapBinary=function(t,n,e,r,i){function o(t,n,e,r,i,a,u){if(t>=n-1){var c=f[t];return c.x0=r,c.y0=i,c.x1=a,void(c.y1=u)}for(var l=s[t],h=e/2+l,d=t+1,p=n-1;d<p;){var v=d+p>>>1;s[v]<h?d=v+1:p=v}h-s[d-1]<s[d]-h&&t+1<d&&--d;var g=s[d]-l,y=e-g;if(a-r>u-i){var _=(r*y+a*g)/e;o(t,d,g,r,i,_,u),o(d,n,y,_,i,a,u)}else{var b=(i*y+u*g)/e;o(t,d,g,r,i,a,b),o(d,n,y,r,b,a,u)}}var a,u,f=t.children,c=f.length,s=new Array(c+1);for(s[0]=u=a=0;a<c;++a)s[a+1]=u+=f[a].value;o(0,c,t.value,n,e,r,i)},t.treemapDice=na,t.treemapSlice=sa,t.treemapSliceDice=function(t,n,e,r,i){(1&t.depth?sa:na)(t,n,e,r,i)},t.treemapSquarify=mv,t.treemapResquarify=xv,t.interpolate=dn,t.interpolateArray=fn,t.interpolateBasis=Kt,t.interpolateBasisClosed=tn,t.interpolateDate=cn,t.interpolateNumber=sn,t.interpolateObject=ln,t.interpolateRound=pn,t.interpolateString=hn,t.interpolateTransformCss=sl,t.interpolateTransformSvg=ll,t.interpolateZoom=_n,t.interpolateRgb=rl,t.interpolateRgbBasis=il,t.interpolateRgbBasisClosed=ol,t.interpolateHsl=gl,t.interpolateHslLong=yl,t.interpolateLab=function(t,n){var e=an((t=Ft(t)).l,(n=Ft(n)).l),r=an(t.a,n.a),i=an(t.b,n.b),o=an(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}},t.interpolateHcl=_l,t.interpolateHclLong=bl,t.interpolateCubehelix=ml,t.interpolateCubehelixLong=xl,t.piecewise=function(t,n){for(var e=0,r=n.length-1,i=n[0],o=new Array(r<0?0:r);e<r;)o[e]=t(i,i=n[++e]);return function(t){var n=Math.max(0,Math.min(r-1,Math.floor(t*=r)));return o[n](t-n)}},t.quantize=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},t.path=oe,t.polygonArea=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},t.polygonCentroid=function(t){for(var n,e,r=-1,i=t.length,o=0,a=0,u=t[i-1],f=0;++r<i;)n=u,u=t[r],f+=e=n[0]*u[1]-u[0]*n[1],o+=(n[0]+u[0])*e,a+=(n[1]+u[1])*e;return f*=3,[o/f,a/f]},t.polygonHull=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(da),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=pa(r),a=pa(i),u=a[0]===o[0],f=a[a.length-1]===o[o.length-1],c=[];for(n=o.length-1;n>=0;--n)c.push(t[r[o[n]][2]]);for(n=+u;n<a.length-f;++n)c.push(t[r[a[n]][2]]);return c},t.polygonContains=function(t,n){for(var e,r,i=t.length,o=t[i-1],a=n[0],u=n[1],f=o[0],c=o[1],s=!1,l=0;l<i;++l)e=(o=t[l])[0],(r=o[1])>u!=c>u&&a<(f-e)*(u-r)/(c-r)+e&&(s=!s),f=e,c=r;return s},t.polygonLength=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],a=o[0],u=o[1],f=0;++r<i;)n=a,e=u,n-=a=(o=t[r])[0],e-=u=o[1],f+=Math.sqrt(n*n+e*e);return f},t.quadtree=je,t.randomUniform=wv,t.randomNormal=Mv,t.randomLogNormal=Av,t.randomBates=Nv,t.randomIrwinHall=Tv,t.randomExponential=Sv,t.scaleBand=ya,t.scalePoint=function(){return _a(ya().paddingInner(1))},t.scaleIdentity=Ea,t.scaleLinear=Sa,t.scaleLog=Ua,t.scaleOrdinal=ga,t.scaleImplicit=Pv,t.scalePow=Oa,t.scaleSqrt=function(){return Oa().exponent(.5)},t.scaleQuantile=Ya,t.scaleQuantize=Ba,t.scaleThreshold=Fa,t.scaleTime=function(){return of(cg,ug,Vv,Xv,jv,Fv,Yv,Dv,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},t.scaleUtc=function(){return of(Rg,Pg,yg,vg,dg,lg,Yv,Dv,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},t.scaleSequential=af,t.scaleDiverging=uf,t.schemeCategory10=Zg,t.schemeAccent=Qg,t.schemeDark2=Jg,t.schemePaired=Kg,t.schemePastel1=ty,t.schemePastel2=ny,t.schemeSet1=ey,t.schemeSet2=ry,t.schemeSet3=iy,t.interpolateBrBG=ay,t.schemeBrBG=oy,t.interpolatePRGn=fy,t.schemePRGn=uy,t.interpolatePiYG=sy,t.schemePiYG=cy,t.interpolatePuOr=hy,t.schemePuOr=ly,t.interpolateRdBu=py,t.schemeRdBu=dy,t.interpolateRdGy=gy,t.schemeRdGy=vy,t.interpolateRdYlBu=_y,t.schemeRdYlBu=yy,t.interpolateRdYlGn=my,t.schemeRdYlGn=by,t.interpolateSpectral=wy,t.schemeSpectral=xy,t.interpolateBuGn=Ay,t.schemeBuGn=My,t.interpolateBuPu=Ny,t.schemeBuPu=Ty,t.interpolateGnBu=Ey,t.schemeGnBu=Sy,t.interpolateOrRd=Cy,t.schemeOrRd=ky,t.interpolatePuBuGn=zy,t.schemePuBuGn=Py,t.interpolatePuBu=Ly,t.schemePuBu=Ry,t.interpolatePuRd=Uy,t.schemePuRd=Dy,t.interpolateRdPu=Oy,t.schemeRdPu=qy,t.interpolateYlGnBu=By,t.schemeYlGnBu=Yy,t.interpolateYlGn=Iy,t.schemeYlGn=Fy,t.interpolateYlOrBr=Hy,t.schemeYlOrBr=jy,t.interpolateYlOrRd=Gy,t.schemeYlOrRd=Xy,t.interpolateBlues=$y,t.schemeBlues=Vy,t.interpolateGreens=Zy,t.schemeGreens=Wy,t.interpolateGreys=Jy,t.schemeGreys=Qy,t.interpolatePurples=t_,t.schemePurples=Ky,t.interpolateReds=e_,t.schemeReds=n_,t.interpolateOranges=i_,t.schemeOranges=r_,t.interpolateCubehelixDefault=o_,t.interpolateRainbow=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return f_.h=360*t-100,f_.s=1.5-1.5*n,f_.l=.8-.9*n,f_+""},t.interpolateWarm=a_,t.interpolateCool=u_,t.interpolateSinebow=function(t){var n;return t=(.5-t)*Math.PI,c_.r=255*(n=Math.sin(t))*n,c_.g=255*(n=Math.sin(t+s_))*n,c_.b=255*(n=Math.sin(t+l_))*n,c_+""},t.interpolateViridis=h_,t.interpolateMagma=d_,t.interpolateInferno=p_,t.interpolatePlasma=v_,t.create=function(t){return ct(C(t).call(document.documentElement))},t.creator=C,t.local=st,t.matcher=bs,t.mouse=pt,t.namespace=k,t.namespaces=vs,t.clientPoint=dt,t.select=ct,t.selectAll=function(t){return"string"==typeof t?new ut([document.querySelectorAll(t)],[document.documentElement]):new ut([null==t?[]:t],ws)},t.selection=ft,t.selector=z,t.selectorAll=L,t.style=F,t.touch=vt,t.touches=function(t,n){null==n&&(n=ht().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=dt(t,n[e]);return i},t.window=B,t.customEvent=ot,t.arc=function(){function t(){var t,c,s=+n.apply(this,arguments),l=+e.apply(this,arguments),h=o.apply(this,arguments)-T_,d=a.apply(this,arguments)-T_,p=g_(d-h),v=d>h;if(f||(f=t=oe()),l<s&&(c=l,l=s,s=c),l>M_)if(p>N_-M_)f.moveTo(l*__(h),l*x_(h)),f.arc(0,0,l,h,d,!v),s>M_&&(f.moveTo(s*__(d),s*x_(d)),f.arc(0,0,s,d,h,v));else{var g,y,_=h,b=d,m=h,x=d,w=p,M=p,A=u.apply(this,arguments)/2,T=A>M_&&(i?+i.apply(this,arguments):w_(s*s+l*l)),N=m_(g_(l-s)/2,+r.apply(this,arguments)),S=N,E=N;if(T>M_){var k=hf(T/s*x_(A)),C=hf(T/l*x_(A));(w-=2*k)>M_?(k*=v?1:-1,m+=k,x-=k):(w=0,m=x=(h+d)/2),(M-=2*C)>M_?(C*=v?1:-1,_+=C,b-=C):(M=0,_=b=(h+d)/2)}var P=l*__(_),z=l*x_(_),R=s*__(x),L=s*x_(x);if(N>M_){var D=l*__(b),U=l*x_(b),q=s*__(m),O=s*x_(m);if(p<A_){var Y=w>M_?function(t,n,e,r,i,o,a,u){var f=e-t,c=r-n,s=a-i,l=u-o,h=(s*(n-o)-l*(t-i))/(l*f-s*c);return[t+h*f,n+h*c]}(P,z,q,O,D,U,R,L):[R,L],B=P-Y[0],F=z-Y[1],I=D-Y[0],j=U-Y[1],H=1/x_(function(t){return t>1?0:t<-1?A_:Math.acos(t)}((B*I+F*j)/(w_(B*B+F*F)*w_(I*I+j*j)))/2),X=w_(Y[0]*Y[0]+Y[1]*Y[1]);S=m_(N,(s-X)/(H-1)),E=m_(N,(l-X)/(H+1))}}M>M_?E>M_?(g=_f(q,O,P,z,l,E,v),y=_f(D,U,R,L,l,E,v),f.moveTo(g.cx+g.x01,g.cy+g.y01),E<N?f.arc(g.cx,g.cy,E,y_(g.y01,g.x01),y_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,E,y_(g.y01,g.x01),y_(g.y11,g.x11),!v),f.arc(0,0,l,y_(g.cy+g.y11,g.cx+g.x11),y_(y.cy+y.y11,y.cx+y.x11),!v),f.arc(y.cx,y.cy,E,y_(y.y11,y.x11),y_(y.y01,y.x01),!v))):(f.moveTo(P,z),f.arc(0,0,l,_,b,!v)):f.moveTo(P,z),s>M_&&w>M_?S>M_?(g=_f(R,L,D,U,s,-S,v),y=_f(P,z,q,O,s,-S,v),f.lineTo(g.cx+g.x01,g.cy+g.y01),S<N?f.arc(g.cx,g.cy,S,y_(g.y01,g.x01),y_(y.y01,y.x01),!v):(f.arc(g.cx,g.cy,S,y_(g.y01,g.x01),y_(g.y11,g.x11),!v),f.arc(0,0,s,y_(g.cy+g.y11,g.cx+g.x11),y_(y.cy+y.y11,y.cx+y.x11),v),f.arc(y.cx,y.cy,S,y_(y.y11,y.x11),y_(y.y01,y.x01),!v))):f.arc(0,0,s,x,m,v):f.lineTo(R,L)}else f.moveTo(0,0);if(f.closePath(),t)return f=null,t+""||null}var n=df,e=pf,r=lf(0),i=null,o=vf,a=gf,u=yf,f=null;return t.centroid=function(){var t=(+n.apply(this,arguments)+ +e.apply(this,arguments))/2,r=(+o.apply(this,arguments)+ +a.apply(this,arguments))/2-A_/2;return[__(r)*t,x_(r)*t]},t.innerRadius=function(e){return arguments.length?(n="function"==typeof e?e:lf(+e),t):n},t.outerRadius=function(n){return arguments.length?(e="function"==typeof n?n:lf(+n),t):e},t.cornerRadius=function(n){return arguments.length?(r="function"==typeof n?n:lf(+n),t):r},t.padRadius=function(n){return arguments.length?(i=null==n?null:"function"==typeof n?n:lf(+n),t):i},t.startAngle=function(n){return arguments.length?(o="function"==typeof n?n:lf(+n),t):o},t.endAngle=function(n){return arguments.length?(a="function"==typeof n?n:lf(+n),t):a},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:lf(+n),t):u},t.context=function(n){return arguments.length?(f=null==n?null:n,t):f},t},t.area=Af,t.line=Mf,t.pie=function(){function t(t){var u,f,c,s,l,h=t.length,d=0,p=new Array(h),v=new Array(h),g=+i.apply(this,arguments),y=Math.min(N_,Math.max(-N_,o.apply(this,arguments)-g)),_=Math.min(Math.abs(y)/h,a.apply(this,arguments)),b=_*(y<0?-1:1);for(u=0;u<h;++u)(l=v[p[u]=u]=+n(t[u],u,t))>0&&(d+=l);for(null!=e?p.sort(function(t,n){return e(v[t],v[n])}):null!=r&&p.sort(function(n,e){return r(t[n],t[e])}),u=0,c=d?(y-h*b)/d:0;u<h;++u,g=s)f=p[u],s=g+((l=v[f])>0?l*c:0)+b,v[f]={data:t[f],index:u,value:l,startAngle:g,endAngle:s,padAngle:_};return v}var n=Nf,e=Tf,r=null,i=lf(0),o=lf(N_),a=lf(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:lf(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:lf(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:lf(+n),t):o},t.padAngle=function(n){return arguments.length?(a="function"==typeof n?n:lf(+n),t):a},t},t.areaRadial=Pf,t.radialArea=Pf,t.lineRadial=Cf,t.radialLine=Cf,t.pointRadial=zf,t.linkHorizontal=function(){return Df(Uf)},t.linkVertical=function(){return Df(qf)},t.linkRadial=function(){var t=Df(Of);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){function t(){var t;if(r||(r=t=oe()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=lf(k_),e=lf(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:lf(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:lf(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},t.symbols=X_,t.symbolCircle=k_,t.symbolCross=C_,t.symbolDiamond=R_,t.symbolSquare=O_,t.symbolStar=q_,t.symbolTriangle=B_,t.symbolWye=H_,t.curveBasisClosed=function(t){return new If(t)},t.curveBasisOpen=function(t){return new jf(t)},t.curveBasis=function(t){return new Ff(t)},t.curveBundle=G_,t.curveCardinalClosed=$_,t.curveCardinalOpen=W_,t.curveCardinal=V_,t.curveCatmullRomClosed=Q_,t.curveCatmullRomOpen=J_,t.curveCatmullRom=Z_,t.curveLinearClosed=function(t){return new Kf(t)},t.curveLinear=mf,t.curveMonotoneX=function(t){return new ic(t)},t.curveMonotoneY=function(t){return new oc(t)},t.curveNatural=function(t){return new uc(t)},t.curveStep=function(t){return new cc(t,.5)},t.curveStepAfter=function(t){return new cc(t,1)},t.curveStepBefore=function(t){return new cc(t,0)},t.stack=function(){function t(t){var o,a,u=n.apply(this,arguments),f=t.length,c=u.length,s=new Array(c);for(o=0;o<c;++o){for(var l,h=u[o],d=s[o]=new Array(f),p=0;p<f;++p)d[p]=l=[0,+i(t[p],h,p,t)],l.data=t[p];d.key=h}for(o=0,a=e(s);o<c;++o)s[a[o]].index=o;return r(s,a),s}var n=lf([]),e=lc,r=sc,i=hc;return t.keys=function(e){return arguments.length?(n="function"==typeof e?e:lf(E_.call(e)),t):n},t.value=function(n){return arguments.length?(i="function"==typeof n?n:lf(+n),t):i},t.order=function(n){return arguments.length?(e=null==n?lc:"function"==typeof n?n:lf(E_.call(n)),t):e},t.offset=function(n){return arguments.length?(r=null==n?sc:n,t):r},t},t.stackOffsetExpand=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,a=t[0].length;o<a;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}sc(t,n)}},t.stackOffsetDiverging=function(t,n){if((u=t.length)>1)for(var e,r,i,o,a,u,f=0,c=t[n[0]].length;f<c;++f)for(o=a=0,e=0;e<u;++e)(i=(r=t[n[e]][f])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):r[0]=o},t.stackOffsetNone=sc,t.stackOffsetSilhouette=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var a=0,u=0;a<e;++a)u+=t[a][r][1]||0;i[r][1]+=i[r][0]=-u/2}sc(t,n)}},t.stackOffsetWiggle=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,a=1;a<r;++a){for(var u=0,f=0,c=0;u<i;++u){for(var s=t[n[u]],l=s[a][1]||0,h=(l-(s[a-1][1]||0))/2,d=0;d<u;++d){var p=t[n[d]];h+=(p[a][1]||0)-(p[a-1][1]||0)}f+=l,c+=h*l}e[a-1][1]+=e[a-1][0]=o,f&&(o-=c/f)}e[a-1][1]+=e[a-1][0]=o,sc(t,n)}},t.stackOrderAscending=dc,t.stackOrderDescending=function(t){return dc(t).reverse()},t.stackOrderInsideOut=function(t){var n,e,r=t.length,i=t.map(pc),o=lc(t).sort(function(t,n){return i[n]-i[t]}),a=0,u=0,f=[],c=[];for(n=0;n<r;++n)e=o[n],a<u?(a+=i[e],f.push(e)):(u+=i[e],c.push(e));return c.reverse().concat(f)},t.stackOrderNone=lc,t.stackOrderReverse=function(t){return lc(t).reverse()},t.timeInterval=Ia,t.timeMillisecond=Dv,t.timeMilliseconds=Uv,t.utcMillisecond=Dv,t.utcMilliseconds=Uv,t.timeSecond=Yv,t.timeSeconds=Bv,t.utcSecond=Yv,t.utcSeconds=Bv,t.timeMinute=Fv,t.timeMinutes=Iv,t.timeHour=jv,t.timeHours=Hv,t.timeDay=Xv,t.timeDays=Gv,t.timeWeek=Vv,t.timeWeeks=tg,t.timeSunday=Vv,t.timeSundays=tg,t.timeMonday=$v,t.timeMondays=ng,t.timeTuesday=Wv,t.timeTuesdays=eg,t.timeWednesday=Zv,t.timeWednesdays=rg,t.timeThursday=Qv,t.timeThursdays=ig,t.timeFriday=Jv,t.timeFridays=og,t.timeSaturday=Kv,t.timeSaturdays=ag,t.timeMonth=ug,t.timeMonths=fg,t.timeYear=cg,t.timeYears=sg,t.utcMinute=lg,t.utcMinutes=hg,t.utcHour=dg,t.utcHours=pg,t.utcDay=vg,t.utcDays=gg,t.utcWeek=yg,t.utcWeeks=Ag,t.utcSunday=yg,t.utcSundays=Ag,t.utcMonday=_g,t.utcMondays=Tg,t.utcTuesday=bg,t.utcTuesdays=Ng,t.utcWednesday=mg,t.utcWednesdays=Sg,t.utcThursday=xg,t.utcThursdays=Eg,t.utcFriday=wg,t.utcFridays=kg,t.utcSaturday=Mg,t.utcSaturdays=Cg,t.utcMonth=Pg,t.utcMonths=zg,t.utcYear=Rg,t.utcYears=Dg,t.timeFormatDefaultLocale=nf,t.timeFormatLocale=$a,t.isoFormat=Fg,t.isoParse=Ig,t.now=wn,t.timer=Tn,t.timerFlush=Nn,t.timeout=Cn,t.interval=function(t,n,e){var r=new An,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?wn():+e,r.restart(function o(a){a+=i,r.restart(o,i+=n,e),t(a)},n,e),r)},t.transition=Yn,t.active=function(t,n){var e,r,i=t.__transition;if(i){n=null==n?null:n+"";for(r in i)if((e=i[r]).state>Ll&&e.name===n)return new On([[t]],hh,n,+r)}return null},t.interrupt=Dn,t.voronoi=function(){function t(t){return new Bc(t.map(function(r,i){var o=[Math.round(n(r,i,t)/ab)*ab,Math.round(e(r,i,t)/ab)*ab];return o.index=i,o.data=r,o}),r)}var n=gc,e=yc,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:vc(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:vc(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},t.zoom=function(){function n(t){t.property("__zoom",$c).on("wheel.zoom",f).on("mousedown.zoom",c).on("dblclick.zoom",s).filter(m).on("touchstart.zoom",l).on("touchmove.zoom",h).on("touchend.zoom touchcancel.zoom",d).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(t,n){return(n=Math.max(x[0],Math.min(x[1],n)))===t.k?t:new Ic(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Ic(t.k,r,i)}function i(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function o(t,n,e){t.on("start.zoom",function(){a(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){a(this,arguments).end()}).tween("zoom",function(){var t=arguments,r=a(this,t),o=y.apply(this,t),u=e||i(o),f=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),c=this.__zoom,s="function"==typeof n?n.apply(this,t):n,l=A(c.invert(u).concat(f/c.k),s.invert(u).concat(f/s.k));return function(t){if(1===t)t=s;else{var n=l(t),e=f/n[2];t=new Ic(e,u[0]-n[0]*e,u[1]-n[1]*e)}r.zoom(null,t)}})}function a(t,n){for(var e,r=0,i=T.length;r<i;++r)if((e=T[r]).that===t)return e;return new u(t,n)}function u(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=y.apply(t,n)}function f(){if(g.apply(this,arguments)){var t=a(this,arguments),n=this.__zoom,i=Math.max(x[0],Math.min(x[1],n.k*Math.pow(2,b.apply(this,arguments)))),o=pt(this);if(t.wheel)t.mouse[0][0]===o[0]&&t.mouse[0][1]===o[1]||(t.mouse[1]=n.invert(t.mouse[0]=o)),clearTimeout(t.wheel);else{if(n.k===i)return;t.mouse=[o,n.invert(o)],Dn(this),t.start()}Xc(),t.wheel=setTimeout(function(){t.wheel=null,t.end()},k),t.zoom("mouse",_(r(e(n,i),t.mouse[0],t.mouse[1]),t.extent,w))}}function c(){if(!v&&g.apply(this,arguments)){var n=a(this,arguments),e=ct(t.event.view).on("mousemove.zoom",function(){if(Xc(),!n.moved){var e=t.event.clientX-o,i=t.event.clientY-u;n.moved=e*e+i*i>C}n.zoom("mouse",_(r(n.that.__zoom,n.mouse[0]=pt(n.that),n.mouse[1]),n.extent,w))},!0).on("mouseup.zoom",function(){e.on("mousemove.zoom mouseup.zoom",null),bt(t.event.view,n.moved),Xc(),n.end()},!0),i=pt(this),o=t.event.clientX,u=t.event.clientY;_t(t.event.view),Hc(),n.mouse=[i,this.__zoom.invert(i)],Dn(this),n.start()}}function s(){if(g.apply(this,arguments)){var i=this.__zoom,a=pt(this),u=i.invert(a),f=i.k*(t.event.shiftKey?.5:2),c=_(r(e(i,f),a,u),y.apply(this,arguments),w);Xc(),M>0?ct(this).transition().duration(M).call(o,c,a):ct(this).call(n.transform,c)}}function l(){if(g.apply(this,arguments)){var n,e,r,i,o=a(this,arguments),u=t.event.changedTouches,f=u.length;for(Hc(),e=0;e<f;++e)i=[i=vt(this,u,(r=u[e]).identifier),this.__zoom.invert(i),r.identifier],o.touch0?o.touch1||(o.touch1=i):(o.touch0=i,n=!0);if(p&&(p=clearTimeout(p),!o.touch1))return o.end(),void((i=ct(this).on("dblclick.zoom"))&&i.apply(this,arguments));n&&(p=setTimeout(function(){p=null},E),Dn(this),o.start())}}function h(){var n,i,o,u,f=a(this,arguments),c=t.event.changedTouches,s=c.length;for(Xc(),p&&(p=clearTimeout(p)),n=0;n<s;++n)o=vt(this,c,(i=c[n]).identifier),f.touch0&&f.touch0[2]===i.identifier?f.touch0[0]=o:f.touch1&&f.touch1[2]===i.identifier&&(f.touch1[0]=o);if(i=f.that.__zoom,f.touch1){var l=f.touch0[0],h=f.touch0[1],d=f.touch1[0],v=f.touch1[1],g=(g=d[0]-l[0])*g+(g=d[1]-l[1])*g,y=(y=v[0]-h[0])*y+(y=v[1]-h[1])*y;i=e(i,Math.sqrt(g/y)),o=[(l[0]+d[0])/2,(l[1]+d[1])/2],u=[(h[0]+v[0])/2,(h[1]+v[1])/2]}else{if(!f.touch0)return;o=f.touch0[0],u=f.touch0[1]}f.zoom("touch",_(r(i,o,u),f.extent,w))}function d(){var n,e,r=a(this,arguments),i=t.event.changedTouches,o=i.length;for(Hc(),v&&clearTimeout(v),v=setTimeout(function(){v=null},E),n=0;n<o;++n)e=i[n],r.touch0&&r.touch0[2]===e.identifier?delete r.touch0:r.touch1&&r.touch1[2]===e.identifier&&delete r.touch1;r.touch1&&!r.touch0&&(r.touch0=r.touch1,delete r.touch1),r.touch0?r.touch0[1]=this.__zoom.invert(r.touch0[0]):r.end()}var p,v,g=Gc,y=Vc,_=Qc,b=Wc,m=Zc,x=[0,1/0],w=[[-1/0,-1/0],[1/0,1/0]],M=250,A=_n,T=[],S=N("start","zoom","end"),E=500,k=150,C=0;return n.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",$c),t!==e?o(t,n):e.interrupt().each(function(){a(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},n.scaleBy=function(t,e){n.scaleTo(t,function(){return this.__zoom.k*("function"==typeof e?e.apply(this,arguments):e)})},n.scaleTo=function(t,o){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,a=i(t),u=n.invert(a),f="function"==typeof o?o.apply(this,arguments):o;return _(r(e(n,f),a,u),t,w)})},n.translateBy=function(t,e,r){n.transform(t,function(){return _(this.__zoom.translate("function"==typeof e?e.apply(this,arguments):e,"function"==typeof r?r.apply(this,arguments):r),y.apply(this,arguments),w)})},n.translateTo=function(t,e,r){n.transform(t,function(){var t=y.apply(this,arguments),n=this.__zoom,o=i(t);return _(fb.translate(o[0],o[1]).scale(n.k).translate("function"==typeof e?-e.apply(this,arguments):-e,"function"==typeof r?-r.apply(this,arguments):-r),t,w)})},u.prototype={start:function(){return 1==++this.active&&(this.index=T.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(T.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){ot(new function(t,n,e){this.target=t,this.type=n,this.transform=e}(n,t,this.that.__zoom),S.apply,S,[t,this.that,this.args])}},n.wheelDelta=function(t){return arguments.length?(b="function"==typeof t?t:Fc(+t),n):b},n.filter=function(t){return arguments.length?(g="function"==typeof t?t:Fc(!!t),n):g},n.touchable=function(t){return arguments.length?(m="function"==typeof t?t:Fc(!!t),n):m},n.extent=function(t){return arguments.length?(y="function"==typeof t?t:Fc([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),n):y},n.scaleExtent=function(t){return arguments.length?(x[0]=+t[0],x[1]=+t[1],n):[x[0],x[1]]},n.translateExtent=function(t){return arguments.length?(w[0][0]=+t[0][0],w[1][0]=+t[1][0],w[0][1]=+t[0][1],w[1][1]=+t[1][1],n):[[w[0][0],w[0][1]],[w[1][0],w[1][1]]]},n.constrain=function(t){return arguments.length?(_=t,n):_},n.duration=function(t){return arguments.length?(M=+t,n):M},n.interpolate=function(t){return arguments.length?(A=t,n):A},n.on=function(){var t=S.on.apply(S,arguments);return t===S?n:t},n.clickDistance=function(t){return arguments.length?(C=(t=+t)*t,n):Math.sqrt(C)},n},t.zoomTransform=jc,t.zoomIdentity=fb,Object.defineProperty(t,"__esModule",{value:!0})});
\ No newline at end of file
+// https://d3js.org v5.7.0 Copyright 2018 Mike Bostock
+!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})}(this,function(t){"use strict";function n(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function e(t){var e;return 1===t.length&&(e=t,t=function(t,r){return n(e(t),r)}),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r<i;){var o=r+i>>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}var r=e(n),i=r.right,o=r.left;function a(t,n){return[t,n]}function u(t){return null===t?NaN:+t}function f(t,n){var e,r,i=t.length,o=0,a=-1,f=0,c=0;if(null==n)for(;++a<i;)isNaN(e=u(t[a]))||(c+=(r=e-f)*(e-(f+=r/++o)));else for(;++a<i;)isNaN(e=u(n(t[a],a,t)))||(c+=(r=e-f)*(e-(f+=r/++o)));if(o>1)return c/(o-1)}function c(t,n){var e=f(t,n);return e?Math.sqrt(e):e}function s(t,n){var e,r,i,o=t.length,a=-1;if(null==n){for(;++a<o;)if(null!=(e=t[a])&&e>=e)for(r=i=e;++a<o;)null!=(e=t[a])&&(r>e&&(r=e),i<e&&(i=e))}else for(;++a<o;)if(null!=(e=n(t[a],a,t))&&e>=e)for(r=i=e;++a<o;)null!=(e=n(t[a],a,t))&&(r>e&&(r=e),i<e&&(i=e));return[r,i]}var l=Array.prototype,h=l.slice,d=l.map;function p(t){return function(){return t}}function v(t){return t}function g(t,n,e){t=+t,n=+n,e=(i=arguments.length)<2?(n=t,t=0,1):i<3?1:+e;for(var r=-1,i=0|Math.max(0,Math.ceil((n-t)/e)),o=new Array(i);++r<i;)o[r]=t+r*e;return o}var y=Math.sqrt(50),_=Math.sqrt(10),b=Math.sqrt(2);function m(t,n,e){var r,i,o,a,u=-1;if(e=+e,(t=+t)===(n=+n)&&e>0)return[t];if((r=n<t)&&(i=t,t=n,n=i),0===(a=x(t,n,e))||!isFinite(a))return[];if(a>0)for(t=Math.ceil(t/a),n=Math.floor(n/a),o=new Array(i=Math.ceil(n-t+1));++u<i;)o[u]=(t+u)*a;else for(t=Math.floor(t*a),n=Math.ceil(n*a),o=new Array(i=Math.ceil(t-n+1));++u<i;)o[u]=(t-u)/a;return r&&o.reverse(),o}function x(t,n,e){var r=(n-t)/Math.max(0,e),i=Math.floor(Math.log(r)/Math.LN10),o=r/Math.pow(10,i);return i>=0?(o>=y?10:o>=_?5:o>=b?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=y?10:o>=_?5:o>=b?2:1)}function w(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=y?i*=10:o>=_?i*=5:o>=b&&(i*=2),n<t?-i:i}function M(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function A(t,n,e){if(null==e&&(e=u),r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,i=(r-1)*n,o=Math.floor(i),a=+e(t[o],o,t);return a+(+e(t[o+1],o+1,t)-a)*(i-o)}}function T(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&e>r&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&e>r&&(r=e);return r}function N(t){for(var n,e,r,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(e=new Array(a);--i>=0;)for(n=(r=t[i]).length;--n>=0;)e[--a]=r[n];return e}function S(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o<i;)if(null!=(e=t[o])&&e>=e)for(r=e;++o<i;)null!=(e=t[o])&&r>e&&(r=e)}else for(;++o<i;)if(null!=(e=n(t[o],o,t))&&e>=e)for(r=e;++o<i;)null!=(e=n(t[o],o,t))&&r>e&&(r=e);return r}function E(t){if(!(i=t.length))return[];for(var n=-1,e=S(t,k),r=new Array(e);++n<e;)for(var i,o=-1,a=r[n]=new Array(i);++o<i;)a[o]=t[o][n];return r}function k(t){return t.length}var C=Array.prototype.slice;function P(t){return t}var z=1,R=2,L=3,D=4,U=1e-6;function q(t){return"translate("+(t+.5)+",0)"}function O(t){return"translate(0,"+(t+.5)+")"}function Y(){return!this.__axis}function B(t,n){var e=[],r=null,i=null,o=6,a=6,u=3,f=t===z||t===D?-1:1,c=t===D||t===R?"x":"y",s=t===z||t===L?q:O;function l(l){var h=null==r?n.ticks?n.ticks.apply(n,e):n.domain():r,d=null==i?n.tickFormat?n.tickFormat.apply(n,e):P:i,p=Math.max(o,0)+u,v=n.range(),g=+v[0]+.5,y=+v[v.length-1]+.5,_=(n.bandwidth?function(t){var n=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(n=Math.round(n)),function(e){return+t(e)+n}}:function(t){return function(n){return+t(n)}})(n.copy()),b=l.selection?l.selection():l,m=b.selectAll(".domain").data([null]),x=b.selectAll(".tick").data(h,n).order(),w=x.exit(),M=x.enter().append("g").attr("class","tick"),A=x.select("line"),T=x.select("text");m=m.merge(m.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),x=x.merge(M),A=A.merge(M.append("line").attr("stroke","currentColor").attr(c+"2",f*o)),T=T.merge(M.append("text").attr("fill","currentColor").attr(c,f*p).attr("dy",t===z?"0em":t===L?"0.71em":"0.32em")),l!==b&&(m=m.transition(l),x=x.transition(l),A=A.transition(l),T=T.transition(l),w=w.transition(l).attr("opacity",U).attr("transform",function(t){return isFinite(t=_(t))?s(t):this.getAttribute("transform")}),M.attr("opacity",U).attr("transform",function(t){var n=this.parentNode.__axis;return s(n&&isFinite(n=n(t))?n:_(t))})),w.remove(),m.attr("d",t===D||t==R?a?"M"+f*a+","+g+"H0.5V"+y+"H"+f*a:"M0.5,"+g+"V"+y:a?"M"+g+","+f*a+"V0.5H"+y+"V"+f*a:"M"+g+",0.5H"+y),x.attr("opacity",1).attr("transform",function(t){return s(_(t))}),A.attr(c+"2",f*o),T.attr(c,f*p).text(d),b.filter(Y).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===R?"start":t===D?"end":"middle"),b.each(function(){this.__axis=_})}return l.scale=function(t){return arguments.length?(n=t,l):n},l.ticks=function(){return e=C.call(arguments),l},l.tickArguments=function(t){return arguments.length?(e=null==t?[]:C.call(t),l):e.slice()},l.tickValues=function(t){return arguments.length?(r=null==t?null:C.call(t),l):r&&r.slice()},l.tickFormat=function(t){return arguments.length?(i=t,l):i},l.tickSize=function(t){return arguments.length?(o=a=+t,l):o},l.tickSizeInner=function(t){return arguments.length?(o=+t,l):o},l.tickSizeOuter=function(t){return arguments.length?(a=+t,l):a},l.tickPadding=function(t){return arguments.length?(u=+t,l):u},l}var F={value:function(){}};function I(){for(var t,n=0,e=arguments.length,r={};n<e;++n){if(!(t=arguments[n]+"")||t in r)throw new Error("illegal type: "+t);r[t]=[]}return new H(r)}function H(t){this._=t}function j(t,n){for(var e,r=0,i=t.length;r<i;++r)if((e=t[r]).name===n)return e.value}function X(t,n,e){for(var r=0,i=t.length;r<i;++r)if(t[r].name===n){t[r]=F,t=t.slice(0,r).concat(t.slice(r+1));break}return null!=e&&t.push({name:n,value:e}),t}H.prototype=I.prototype={constructor:H,on:function(t,n){var e,r,i=this._,o=(r=i,(t+"").trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");if(e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),t&&!r.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:n}})),a=-1,u=o.length;if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++a<u;)if(e=(t=o[a]).type)i[e]=X(i[e],t.name,n);else if(null==n)for(e in i)i[e]=X(i[e],t.name,null);return this}for(;++a<u;)if((e=(t=o[a]).type)&&(e=j(i[e],t.name)))return e},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new H(t)},call:function(t,n){if((e=arguments.length-2)>0)for(var e,r,i=new Array(e),o=0;o<e;++o)i[o]=arguments[o+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=0,e=(r=this._[t]).length;o<e;++o)r[o].value.apply(n,i)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(n,e)}};var G="http://www.w3.org/1999/xhtml",V={svg:"http://www.w3.org/2000/svg",xhtml:G,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function $(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),V.hasOwnProperty(n)?{space:V[n],local:t}:t}function W(t){var n=$(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===G&&n.documentElement.namespaceURI===G?n.createElement(t):n.createElementNS(e,t)}})(n)}function Z(){}function Q(t){return null==t?Z:function(){return this.querySelector(t)}}function J(){return[]}function K(t){return null==t?J:function(){return this.querySelectorAll(t)}}var tt=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var nt=document.documentElement;if(!nt.matches){var et=nt.webkitMatchesSelector||nt.msMatchesSelector||nt.mozMatchesSelector||nt.oMatchesSelector;tt=function(t){return function(){return et.call(this,t)}}}}var rt=tt;function it(t){return new Array(t.length)}function ot(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}ot.prototype={constructor:ot,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var at="$";function ut(t,n,e,r,i,o){for(var a,u=0,f=n.length,c=o.length;u<c;++u)(a=n[u])?(a.__data__=o[u],r[u]=a):e[u]=new ot(t,o[u]);for(;u<f;++u)(a=n[u])&&(i[u]=a)}function ft(t,n,e,r,i,o,a){var u,f,c,s={},l=n.length,h=o.length,d=new Array(l);for(u=0;u<l;++u)(f=n[u])&&(d[u]=c=at+a.call(f,f.__data__,u,n),c in s?i[u]=f:s[c]=f);for(u=0;u<h;++u)(f=s[c=at+a.call(t,o[u],u,o)])?(r[u]=f,f.__data__=o[u],s[c]=null):e[u]=new ot(t,o[u]);for(u=0;u<l;++u)(f=n[u])&&s[d[u]]===f&&(i[u]=f)}function ct(t,n){return t<n?-1:t>n?1:t>=n?0:NaN}function st(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function lt(t,n){return t.style.getPropertyValue(n)||st(t).getComputedStyle(t,null).getPropertyValue(n)}function ht(t){return t.trim().split(/^|\s+/)}function dt(t){return t.classList||new pt(t)}function pt(t){this._node=t,this._names=ht(t.getAttribute("class")||"")}function vt(t,n){for(var e=dt(t),r=-1,i=n.length;++r<i;)e.add(n[r])}function gt(t,n){for(var e=dt(t),r=-1,i=n.length;++r<i;)e.remove(n[r])}function yt(){this.textContent=""}function _t(){this.innerHTML=""}function bt(){this.nextSibling&&this.parentNode.appendChild(this)}function mt(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function xt(){return null}function wt(){var t=this.parentNode;t&&t.removeChild(this)}function Mt(){return this.parentNode.insertBefore(this.cloneNode(!1),this.nextSibling)}function At(){return this.parentNode.insertBefore(this.cloneNode(!0),this.nextSibling)}pt.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var n=this._names.indexOf(t);n>=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var Tt={};(t.event=null,"undefined"!=typeof document)&&("onmouseenter"in document.documentElement||(Tt={mouseenter:"mouseover",mouseleave:"mouseout"}));function Nt(t,n,e){return t=St(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function St(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function Et(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r<o;++r)e=n[r],t.type&&e.type!==t.type||e.name!==t.name?n[++i]=e:this.removeEventListener(e.type,e.listener,e.capture);++i?n.length=i:delete this.__on}}}function kt(t,n,e){var r=Tt.hasOwnProperty(t.type)?Nt:St;return function(i,o,a){var u,f=this.__on,c=r(n,o,a);if(f)for(var s=0,l=f.length;s<l;++s)if((u=f[s]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=c,u.capture=e),void(u.value=n);this.addEventListener(t.type,c,e),u={type:t.type,name:t.name,value:n,listener:c,capture:e},f?f.push(u):this.__on=[u]}}function Ct(n,e,r,i){var o=t.event;n.sourceEvent=t.event,t.event=n;try{return e.apply(r,i)}finally{t.event=o}}function Pt(t,n,e){var r=st(t),i=r.CustomEvent;"function"==typeof i?i=new i(n,e):(i=r.document.createEvent("Event"),e?(i.initEvent(n,e.bubbles,e.cancelable),i.detail=e.detail):i.initEvent(n,!1,!1)),t.dispatchEvent(i)}var zt=[null];function Rt(t,n){this._groups=t,this._parents=n}function Lt(){return new Rt([[document.documentElement]],zt)}function Dt(t){return"string"==typeof t?new Rt([[document.querySelector(t)]],[document.documentElement]):new Rt([[t]],zt)}Rt.prototype=Lt.prototype={constructor:Rt,select:function(t){"function"!=typeof t&&(t=Q(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a,u=n[i],f=u.length,c=r[i]=new Array(f),s=0;s<f;++s)(o=u[s])&&(a=t.call(o,o.__data__,s,u))&&("__data__"in o&&(a.__data__=o.__data__),c[s]=a);return new Rt(r,this._parents)},selectAll:function(t){"function"!=typeof t&&(t=K(t));for(var n=this._groups,e=n.length,r=[],i=[],o=0;o<e;++o)for(var a,u=n[o],f=u.length,c=0;c<f;++c)(a=u[c])&&(r.push(t.call(a,a.__data__,c,u)),i.push(a));return new Rt(r,i)},filter:function(t){"function"!=typeof t&&(t=rt(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new Rt(r,this._parents)},data:function(t,n){if(!t)return p=new Array(this.size()),s=-1,this.each(function(t){p[++s]=t}),p;var e,r=n?ft:ut,i=this._parents,o=this._groups;"function"!=typeof t&&(e=t,t=function(){return e});for(var a=o.length,u=new Array(a),f=new Array(a),c=new Array(a),s=0;s<a;++s){var l=i[s],h=o[s],d=h.length,p=t.call(l,l&&l.__data__,s,i),v=p.length,g=f[s]=new Array(v),y=u[s]=new Array(v);r(l,h,g,y,c[s]=new Array(d),p,n);for(var _,b,m=0,x=0;m<v;++m)if(_=g[m]){for(m>=x&&(x=m+1);!(b=y[x])&&++x<v;);_._next=b||null}}return(u=new Rt(u,i))._enter=f,u._exit=c,u},enter:function(){return new Rt(this._enter||this._groups.map(it),this._parents)},exit:function(){return new Rt(this._exit||this._groups.map(it),this._parents)},merge:function(t){for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new Rt(a,this._parents)},order:function(){for(var t=this._groups,n=-1,e=t.length;++n<e;)for(var r,i=t[n],o=i.length-1,a=i[o];--o>=0;)(r=i[o])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=ct);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o<r;++o){for(var a,u=e[o],f=u.length,c=i[o]=new Array(f),s=0;s<f;++s)(a=u[s])&&(c[s]=a);c.sort(n)}return new Rt(i,this._parents).order()},call:function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},nodes:function(){var t=new Array(this.size()),n=-1;return this.each(function(){t[++n]=this}),t},node:function(){for(var t=this._groups,n=0,e=t.length;n<e;++n)for(var r=t[n],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null},size:function(){var t=0;return this.each(function(){++t}),t},empty:function(){return!this.node()},each:function(t){for(var n=this._groups,e=0,r=n.length;e<r;++e)for(var i,o=n[e],a=0,u=o.length;a<u;++a)(i=o[a])&&t.call(i,i.__data__,a,o);return this},attr:function(t,n){var e=$(t);if(arguments.length<2){var r=this.node();return e.local?r.getAttributeNS(e.space,e.local):r.getAttribute(e)}return this.each((null==n?e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}}:"function"==typeof n?e.local?function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}:function(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}:e.local?function(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}:function(t,n){return function(){this.setAttribute(t,n)}})(e,n))},style:function(t,n,e){return arguments.length>1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):lt(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=ht(t+"");if(arguments.length<2){for(var r=dt(this.node()),i=-1,o=e.length;++i<o;)if(!r.contains(e[i]))return!1;return!0}return this.each(("function"==typeof n?function(t,n){return function(){(n.apply(this,arguments)?vt:gt)(this,t)}}:n?function(t){return function(){vt(this,t)}}:function(t){return function(){gt(this,t)}})(e,n))},text:function(t){return arguments.length?this.each(null==t?yt:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.textContent=null==n?"":n}}:function(t){return function(){this.textContent=t}})(t)):this.node().textContent},html:function(t){return arguments.length?this.each(null==t?_t:("function"==typeof t?function(t){return function(){var n=t.apply(this,arguments);this.innerHTML=null==n?"":n}}:function(t){return function(){this.innerHTML=t}})(t)):this.node().innerHTML},raise:function(){return this.each(bt)},lower:function(){return this.each(mt)},append:function(t){var n="function"==typeof t?t:W(t);return this.select(function(){return this.appendChild(n.apply(this,arguments))})},insert:function(t,n){var e="function"==typeof t?t:W(t),r=null==n?xt:"function"==typeof n?n:Q(n);return this.select(function(){return this.insertBefore(e.apply(this,arguments),r.apply(this,arguments)||null)})},remove:function(){return this.each(wt)},clone:function(t){return this.select(t?At:Mt)},datum:function(t){return arguments.length?this.property("__data__",t):this.node().__data__},on:function(t,n,e){var r,i,o=function(t){return t.trim().split(/^|\s+/).map(function(t){var n="",e=t.indexOf(".");return e>=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?kt:Et,null==e&&(e=!1),r=0;r<a;++r)this.each(u(o[r],n,e));return this}var u=this.node().__on;if(u)for(var f,c=0,s=u.length;c<s;++c)for(r=0,f=u[c];r<a;++r)if((i=o[r]).type===f.type&&i.name===f.name)return f.value},dispatch:function(t,n){return this.each(("function"==typeof n?function(t,n){return function(){return Pt(this,t,n.apply(this,arguments))}}:function(t,n){return function(){return Pt(this,t,n)}})(t,n))}};var Ut=0;function qt(){return new Ot}function Ot(){this._="@"+(++Ut).toString(36)}function Yt(){for(var n,e=t.event;n=e.sourceEvent;)e=n;return e}function Bt(t,n){var e=t.ownerSVGElement||t;if(e.createSVGPoint){var r=e.createSVGPoint();return r.x=n.clientX,r.y=n.clientY,[(r=r.matrixTransform(t.getScreenCTM().inverse())).x,r.y]}var i=t.getBoundingClientRect();return[n.clientX-i.left-t.clientLeft,n.clientY-i.top-t.clientTop]}function Ft(t){var n=Yt();return n.changedTouches&&(n=n.changedTouches[0]),Bt(t,n)}function It(t,n,e){arguments.length<3&&(e=n,n=Yt().changedTouches);for(var r,i=0,o=n?n.length:0;i<o;++i)if((r=n[i]).identifier===e)return Bt(t,r);return null}function Ht(){t.event.stopImmediatePropagation()}function jt(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function Xt(t){var n=t.document.documentElement,e=Dt(t).on("dragstart.drag",jt,!0);"onselectstart"in n?e.on("selectstart.drag",jt,!0):(n.__noselect=n.style.MozUserSelect,n.style.MozUserSelect="none")}function Gt(t,n){var e=t.document.documentElement,r=Dt(t).on("dragstart.drag",null);n&&(r.on("click.drag",jt,!0),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in e?r.on("selectstart.drag",null):(e.style.MozUserSelect=e.__noselect,delete e.__noselect)}function Vt(t){return function(){return t}}function $t(t,n,e,r,i,o,a,u,f,c){this.target=t,this.type=n,this.subject=e,this.identifier=r,this.active=i,this.x=o,this.y=a,this.dx=u,this.dy=f,this._=c}function Wt(){return!t.event.button}function Zt(){return this.parentNode}function Qt(n){return null==n?{x:t.event.x,y:t.event.y}:n}function Jt(){return"ontouchstart"in this}function Kt(t,n,e){t.prototype=n.prototype=e,e.constructor=t}function tn(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function nn(){}Ot.prototype=qt.prototype={constructor:Ot,get:function(t){for(var n=this._;!(n in t);)if(!(t=t.parentNode))return;return t[n]},set:function(t,n){return t[this._]=n},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}},$t.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var en="\\s*([+-]?\\d+)\\s*",rn="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",on="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",an=/^#([0-9a-f]{3})$/,un=/^#([0-9a-f]{6})$/,fn=new RegExp("^rgb\\("+[en,en,en]+"\\)$"),cn=new RegExp("^rgb\\("+[on,on,on]+"\\)$"),sn=new RegExp("^rgba\\("+[en,en,en,rn]+"\\)$"),ln=new RegExp("^rgba\\("+[on,on,on,rn]+"\\)$"),hn=new RegExp("^hsl\\("+[rn,on,on]+"\\)$"),dn=new RegExp("^hsla\\("+[rn,on,on,rn]+"\\)$"),pn={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function vn(t){var n;return t=(t+"").trim().toLowerCase(),(n=an.exec(t))?new mn((n=parseInt(n[1],16))>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1):(n=un.exec(t))?gn(parseInt(n[1],16)):(n=fn.exec(t))?new mn(n[1],n[2],n[3],1):(n=cn.exec(t))?new mn(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=sn.exec(t))?yn(n[1],n[2],n[3],n[4]):(n=ln.exec(t))?yn(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=hn.exec(t))?wn(n[1],n[2]/100,n[3]/100,1):(n=dn.exec(t))?wn(n[1],n[2]/100,n[3]/100,n[4]):pn.hasOwnProperty(t)?gn(pn[t]):"transparent"===t?new mn(NaN,NaN,NaN,0):null}function gn(t){return new mn(t>>16&255,t>>8&255,255&t,1)}function yn(t,n,e,r){return r<=0&&(t=n=e=NaN),new mn(t,n,e,r)}function _n(t){return t instanceof nn||(t=vn(t)),t?new mn((t=t.rgb()).r,t.g,t.b,t.opacity):new mn}function bn(t,n,e,r){return 1===arguments.length?_n(t):new mn(t,n,e,null==r?1:r)}function mn(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function xn(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function wn(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new An(t,n,e,r)}function Mn(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof An)return new An(t.h,t.s,t.l,t.opacity);if(t instanceof nn||(t=vn(t)),!t)return new An;if(t instanceof An)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),a=NaN,u=o-i,f=(o+i)/2;return u?(a=n===o?(e-r)/u+6*(e<r):e===o?(r-n)/u+2:(n-e)/u+4,u/=f<.5?o+i:2-o-i,a*=60):u=f>0&&f<1?0:a,new An(a,u,f,t.opacity)}(t):new An(t,n,e,null==r?1:r)}function An(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Tn(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}Kt(nn,vn,{displayable:function(){return this.rgb().displayable()},hex:function(){return this.rgb().hex()},toString:function(){return this.rgb()+""}}),Kt(mn,bn,tn(nn,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new mn(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new mn(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},hex:function(){return"#"+xn(this.r)+xn(this.g)+xn(this.b)},toString:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),Kt(An,Mn,tn(nn,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new An(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new An(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new mn(Tn(t>=240?t-240:t+120,i,r),Tn(t,i,r),Tn(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var Nn=Math.PI/180,Sn=180/Math.PI,En=.96422,kn=1,Cn=.82521,Pn=4/29,zn=6/29,Rn=3*zn*zn,Ln=zn*zn*zn;function Dn(t){if(t instanceof qn)return new qn(t.l,t.a,t.b,t.opacity);if(t instanceof jn){if(isNaN(t.h))return new qn(t.l,0,0,t.opacity);var n=t.h*Nn;return new qn(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof mn||(t=_n(t));var e,r,i=Fn(t.r),o=Fn(t.g),a=Fn(t.b),u=On((.2225045*i+.7168786*o+.0606169*a)/kn);return i===o&&o===a?e=r=u:(e=On((.4360747*i+.3850649*o+.1430804*a)/En),r=On((.0139322*i+.0971045*o+.7141733*a)/Cn)),new qn(116*u-16,500*(e-u),200*(u-r),t.opacity)}function Un(t,n,e,r){return 1===arguments.length?Dn(t):new qn(t,n,e,null==r?1:r)}function qn(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function On(t){return t>Ln?Math.pow(t,1/3):t/Rn+Pn}function Yn(t){return t>zn?t*t*t:Rn*(t-Pn)}function Bn(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Fn(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function In(t){if(t instanceof jn)return new jn(t.h,t.c,t.l,t.opacity);if(t instanceof qn||(t=Dn(t)),0===t.a&&0===t.b)return new jn(NaN,0,t.l,t.opacity);var n=Math.atan2(t.b,t.a)*Sn;return new jn(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function Hn(t,n,e,r){return 1===arguments.length?In(t):new jn(t,n,e,null==r?1:r)}function jn(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}Kt(qn,Un,tn(nn,{brighter:function(t){return new qn(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new qn(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return new mn(Bn(3.1338561*(n=En*Yn(n))-1.6168667*(t=kn*Yn(t))-.4906146*(e=Cn*Yn(e))),Bn(-.9787684*n+1.9161415*t+.033454*e),Bn(.0719453*n-.2289914*t+1.4052427*e),this.opacity)}})),Kt(jn,Hn,tn(nn,{brighter:function(t){return new jn(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new jn(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Dn(this).rgb()}}));var Xn=-.14861,Gn=1.78277,Vn=-.29227,$n=-.90649,Wn=1.97294,Zn=Wn*$n,Qn=Wn*Gn,Jn=Gn*Vn-$n*Xn;function Kn(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof te)return new te(t.h,t.s,t.l,t.opacity);t instanceof mn||(t=_n(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Jn*r+Zn*n-Qn*e)/(Jn+Zn-Qn),o=r-i,a=(Wn*(e-i)-Vn*o)/$n,u=Math.sqrt(a*a+o*o)/(Wn*i*(1-i)),f=u?Math.atan2(a,o)*Sn-120:NaN;return new te(f<0?f+360:f,u,i,t.opacity)}(t):new te(t,n,e,null==r?1:r)}function te(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function ne(t,n,e,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*n+(4-6*o+3*a)*e+(1+3*t+3*o-3*a)*r+a*i)/6}function ee(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,u=r<n-1?t[r+2]:2*o-i;return ne((e-r/n)*n,a,i,o,u)}}function re(t){var n=t.length;return function(e){var r=Math.floor(((e%=1)<0?++e:e)*n),i=t[(r+n-1)%n],o=t[r%n],a=t[(r+1)%n],u=t[(r+2)%n];return ne((e-r/n)*n,i,o,a,u)}}function ie(t){return function(){return t}}function oe(t,n){return function(e){return t+e*n}}function ae(t,n){var e=n-t;return e?oe(t,e>180||e<-180?e-360*Math.round(e/360):e):ie(isNaN(t)?n:t)}function ue(t){return 1==(t=+t)?fe:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):ie(isNaN(n)?e:n)}}function fe(t,n){var e=n-t;return e?oe(t,e):ie(isNaN(t)?n:t)}Kt(te,Kn,tn(nn,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new te(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new te(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*Nn,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new mn(255*(n+e*(Xn*r+Gn*i)),255*(n+e*(Vn*r+$n*i)),255*(n+e*(Wn*r)),this.opacity)}}));var ce=function t(n){var e=ue(n);function r(t,n){var r=e((t=bn(t)).r,(n=bn(n)).r),i=e(t.g,n.g),o=e(t.b,n.b),a=fe(t.opacity,n.opacity);return function(n){return t.r=r(n),t.g=i(n),t.b=o(n),t.opacity=a(n),t+""}}return r.gamma=t,r}(1);function se(t){return function(n){var e,r,i=n.length,o=new Array(i),a=new Array(i),u=new Array(i);for(e=0;e<i;++e)r=bn(n[e]),o[e]=r.r||0,a[e]=r.g||0,u[e]=r.b||0;return o=t(o),a=t(a),u=t(u),r.opacity=1,function(t){return r.r=o(t),r.g=a(t),r.b=u(t),r+""}}}var le=se(ee),he=se(re);function de(t,n){var e,r=n?n.length:0,i=t?Math.min(r,t.length):0,o=new Array(i),a=new Array(r);for(e=0;e<i;++e)o[e]=me(t[e],n[e]);for(;e<r;++e)a[e]=n[e];return function(t){for(e=0;e<i;++e)a[e]=o[e](t);return a}}function pe(t,n){var e=new Date;return n-=t=+t,function(r){return e.setTime(t+n*r),e}}function ve(t,n){return n-=t=+t,function(e){return t+n*e}}function ge(t,n){var e,r={},i={};for(e in null!==t&&"object"==typeof t||(t={}),null!==n&&"object"==typeof n||(n={}),n)e in t?r[e]=me(t[e],n[e]):i[e]=n[e];return function(t){for(e in r)i[e]=r[e](t);return i}}var ye=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,_e=new RegExp(ye.source,"g");function be(t,n){var e,r,i,o=ye.lastIndex=_e.lastIndex=0,a=-1,u=[],f=[];for(t+="",n+="";(e=ye.exec(t))&&(r=_e.exec(n));)(i=r.index)>o&&(i=n.slice(o,i),u[a]?u[a]+=i:u[++a]=i),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,f.push({i:a,x:ve(e,r)})),o=_e.lastIndex;return o<n.length&&(i=n.slice(o),u[a]?u[a]+=i:u[++a]=i),u.length<2?f[0]?function(t){return function(n){return t(n)+""}}(f[0].x):function(t){return function(){return t}}(n):(n=f.length,function(t){for(var e,r=0;r<n;++r)u[(e=f[r]).i]=e.x(t);return u.join("")})}function me(t,n){var e,r=typeof n;return null==n||"boolean"===r?ie(n):("number"===r?ve:"string"===r?(e=vn(n))?(n=e,ce):be:n instanceof vn?ce:n instanceof Date?pe:Array.isArray(n)?de:"function"!=typeof n.valueOf&&"function"!=typeof n.toString||isNaN(n)?ge:ve)(t,n)}function xe(t,n){return n-=t=+t,function(e){return Math.round(t+n*e)}}var we,Me,Ae,Te,Ne=180/Math.PI,Se={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Ee(t,n,e,r,i,o){var a,u,f;return(a=Math.sqrt(t*t+n*n))&&(t/=a,n/=a),(f=t*e+n*r)&&(e-=t*f,r-=n*f),(u=Math.sqrt(e*e+r*r))&&(e/=u,r/=u,f/=u),t*r<n*e&&(t=-t,n=-n,f=-f,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(n,t)*Ne,skewX:Math.atan(f)*Ne,scaleX:a,scaleY:u}}function ke(t,n,e,r){function i(t){return t.length?t.pop()+" ":""}return function(o,a){var u=[],f=[];return o=t(o),a=t(a),function(t,r,i,o,a,u){if(t!==i||r!==o){var f=a.push("translate(",null,n,null,e);u.push({i:f-4,x:ve(t,i)},{i:f-2,x:ve(r,o)})}else(i||o)&&a.push("translate("+i+n+o+e)}(o.translateX,o.translateY,a.translateX,a.translateY,u,f),function(t,n,e,o){t!==n?(t-n>180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:ve(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,f),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:ve(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,f),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:ve(t,e)},{i:u-2,x:ve(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,f),o=a=null,function(t){for(var n,e=-1,r=f.length;++e<r;)u[(n=f[e]).i]=n.x(t);return u.join("")}}}var Ce=ke(function(t){return"none"===t?Se:(we||(we=document.createElement("DIV"),Me=document.documentElement,Ae=document.defaultView),we.style.transform=t,t=Ae.getComputedStyle(Me.appendChild(we),null).getPropertyValue("transform"),Me.removeChild(we),Ee(+(t=t.slice(7,-1).split(","))[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},"px, ","px)","deg)"),Pe=ke(function(t){return null==t?Se:(Te||(Te=document.createElementNS("http://www.w3.org/2000/svg","g")),Te.setAttribute("transform",t),(t=Te.transform.baseVal.consolidate())?Ee((t=t.matrix).a,t.b,t.c,t.d,t.e,t.f):Se)},", ",")",")"),ze=Math.SQRT2,Re=2,Le=4,De=1e-12;function Ue(t){return((t=Math.exp(t))+1/t)/2}function qe(t,n){var e,r,i=t[0],o=t[1],a=t[2],u=n[0],f=n[1],c=n[2],s=u-i,l=f-o,h=s*s+l*l;if(h<De)r=Math.log(c/a)/ze,e=function(t){return[i+t*s,o+t*l,a*Math.exp(ze*t*r)]};else{var d=Math.sqrt(h),p=(c*c-a*a+Le*h)/(2*a*Re*d),v=(c*c-a*a-Le*h)/(2*c*Re*d),g=Math.log(Math.sqrt(p*p+1)-p),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-g)/ze,e=function(t){var n,e=t*r,u=Ue(g),f=a/(Re*d)*(u*(n=ze*e+g,((n=Math.exp(2*n))-1)/(n+1))-function(t){return((t=Math.exp(t))-1/t)/2}(g));return[i+f*s,o+f*l,a*u/Ue(ze*e+g)]}}return e.duration=1e3*r,e}function Oe(t){return function(n,e){var r=t((n=Mn(n)).h,(e=Mn(e)).h),i=fe(n.s,e.s),o=fe(n.l,e.l),a=fe(n.opacity,e.opacity);return function(t){return n.h=r(t),n.s=i(t),n.l=o(t),n.opacity=a(t),n+""}}}var Ye=Oe(ae),Be=Oe(fe);function Fe(t){return function(n,e){var r=t((n=Hn(n)).h,(e=Hn(e)).h),i=fe(n.c,e.c),o=fe(n.l,e.l),a=fe(n.opacity,e.opacity);return function(t){return n.h=r(t),n.c=i(t),n.l=o(t),n.opacity=a(t),n+""}}}var Ie=Fe(ae),He=Fe(fe);function je(t){return function n(e){function r(n,r){var i=t((n=Kn(n)).h,(r=Kn(r)).h),o=fe(n.s,r.s),a=fe(n.l,r.l),u=fe(n.opacity,r.opacity);return function(t){return n.h=i(t),n.s=o(t),n.l=a(Math.pow(t,e)),n.opacity=u(t),n+""}}return e=+e,r.gamma=n,r}(1)}var Xe=je(ae),Ge=je(fe);var Ve,$e,We=0,Ze=0,Qe=0,Je=1e3,Ke=0,tr=0,nr=0,er="object"==typeof performance&&performance.now?performance:Date,rr="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function ir(){return tr||(rr(or),tr=er.now()+nr)}function or(){tr=0}function ar(){this._call=this._time=this._next=null}function ur(t,n,e){var r=new ar;return r.restart(t,n,e),r}function fr(){ir(),++We;for(var t,n=Ve;n;)(t=tr-n._time)>=0&&n._call.call(null,t),n=n._next;--We}function cr(){tr=(Ke=er.now())+nr,We=Ze=0;try{fr()}finally{We=0,function(){var t,n,e=Ve,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:Ve=n);$e=t,lr(r)}(),tr=0}}function sr(){var t=er.now(),n=t-Ke;n>Je&&(nr-=n,Ke=t)}function lr(t){We||(Ze&&(Ze=clearTimeout(Ze)),t-tr>24?(t<1/0&&(Ze=setTimeout(cr,t-er.now()-nr)),Qe&&(Qe=clearInterval(Qe))):(Qe||(Ke=er.now(),Qe=setInterval(sr,Je)),We=1,rr(cr)))}function hr(t,n,e){var r=new ar;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}ar.prototype=ur.prototype={constructor:ar,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?ir():+e)+(null==n?0:+n),this._next||$e===this||($e?$e._next=this:Ve=this,$e=this),this._call=t,this._time=e,lr()},stop:function(){this._call&&(this._call=null,this._time=1/0,lr())}};var dr=I("start","end","interrupt"),pr=[],vr=0,gr=1,yr=2,_r=3,br=4,mr=5,xr=6;function wr(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};!function(t,n,e){var r,i=t.__transition;function o(f){var c,s,l,h;if(e.state!==gr)return u();for(c in i)if((h=i[c]).name===e.name){if(h.state===_r)return hr(o);h.state===br?(h.state=xr,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete i[c]):+c<n&&(h.state=xr,h.timer.stop(),delete i[c])}if(hr(function(){e.state===_r&&(e.state=br,e.timer.restart(a,e.delay,e.time),a(f))}),e.state=yr,e.on.call("start",t,t.__data__,e.index,e.group),e.state===yr){for(e.state=_r,r=new Array(l=e.tween.length),c=0,s=-1;c<l;++c)(h=e.tween[c].value.call(t,t.__data__,e.index,e.group))&&(r[++s]=h);r.length=s+1}}function a(n){for(var i=n<e.duration?e.ease.call(null,n/e.duration):(e.timer.restart(u),e.state=mr,1),o=-1,a=r.length;++o<a;)r[o].call(null,i);e.state===mr&&(e.on.call("end",t,t.__data__,e.index,e.group),u())}function u(){for(var r in e.state=xr,e.timer.stop(),delete i[n],i)return;delete t.__transition}i[n]=e,e.timer=ur(function(t){e.state=gr,e.timer.restart(o,e.delay,e.time),e.delay<=t&&o(t-e.delay)},0,e.time)}(t,e,{name:n,index:r,group:i,on:dr,tween:pr,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:vr})}function Mr(t,n){var e=Tr(t,n);if(e.state>vr)throw new Error("too late; already scheduled");return e}function Ar(t,n){var e=Tr(t,n);if(e.state>yr)throw new Error("too late; already started");return e}function Tr(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Nr(t,n){var e,r,i,o=t.__transition,a=!0;if(o){for(i in n=null==n?null:n+"",o)(e=o[i]).name===n?(r=e.state>yr&&e.state<mr,e.state=xr,e.timer.stop(),r&&e.on.call("interrupt",t,t.__data__,e.index,e.group),delete o[i]):a=!1;a&&delete t.__transition}}function Sr(t,n,e){var r=t._id;return t.each(function(){var t=Ar(this,r);(t.value||(t.value={}))[n]=e.apply(this,arguments)}),function(t){return Tr(t,r).value[n]}}function Er(t,n){var e;return("number"==typeof n?ve:n instanceof vn?ce:(e=vn(n))?(n=e,ce):be)(t,n)}var kr=Lt.prototype.constructor;var Cr=0;function Pr(t,n,e,r){this._groups=t,this._parents=n,this._name=e,this._id=r}function zr(t){return Lt().transition(t)}function Rr(){return++Cr}var Lr=Lt.prototype;function Dr(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function Ur(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}Pr.prototype=zr.prototype={constructor:Pr,select:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=Q(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var u,f,c=r[a],s=c.length,l=o[a]=new Array(s),h=0;h<s;++h)(u=c[h])&&(f=t.call(u,u.__data__,h,c))&&("__data__"in u&&(f.__data__=u.__data__),l[h]=f,wr(l[h],n,e,h,l,Tr(u,e)));return new Pr(o,this._parents,n,e)},selectAll:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=K(t));for(var r=this._groups,i=r.length,o=[],a=[],u=0;u<i;++u)for(var f,c=r[u],s=c.length,l=0;l<s;++l)if(f=c[l]){for(var h,d=t.call(f,f.__data__,l,c),p=Tr(f,e),v=0,g=d.length;v<g;++v)(h=d[v])&&wr(h,n,e,v,d,p);o.push(d),a.push(f)}return new Pr(o,a,n,e)},filter:function(t){"function"!=typeof t&&(t=rt(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i<e;++i)for(var o,a=n[i],u=a.length,f=r[i]=[],c=0;c<u;++c)(o=a[c])&&t.call(o,o.__data__,c,a)&&f.push(o);return new Pr(r,this._parents,this._name,this._id)},merge:function(t){if(t._id!==this._id)throw new Error;for(var n=this._groups,e=t._groups,r=n.length,i=e.length,o=Math.min(r,i),a=new Array(r),u=0;u<o;++u)for(var f,c=n[u],s=e[u],l=c.length,h=a[u]=new Array(l),d=0;d<l;++d)(f=c[d]||s[d])&&(h[d]=f);for(;u<r;++u)a[u]=n[u];return new Pr(a,this._parents,this._name,this._id)},selection:function(){return new kr(this._groups,this._parents)},transition:function(){for(var t=this._name,n=this._id,e=Rr(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)if(a=u[c]){var s=Tr(a,n);wr(a,t,e,c,u,{time:s.time+s.delay+s.duration,delay:0,duration:s.duration,ease:s.ease})}return new Pr(r,this._parents,t,e)},call:Lr.call,nodes:Lr.nodes,node:Lr.node,size:Lr.size,empty:Lr.empty,each:Lr.each,on:function(t,n){var e=this._id;return arguments.length<2?Tr(this.node(),e).on.on(t):this.each(function(t,n,e){var r,i,o=function(t){return(t+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?Mr:Ar;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=$(t),r="transform"===e?Pe:Er;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttributeNS(t.space,t.local))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var a,u=e(this);if(null!=u)return(a=this.getAttribute(t))===u?null:a===r&&u===i?o:o=n(r=a,i=u);this.removeAttribute(t)}})(e,r,Sr(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}:function(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}})(e,r,n+""))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=$(t);return this.tween(e,(r.local?function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}:function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?Ce:Er;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=lt(this,t),a=(this.style.removeProperty(t),lt(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,function(t){return function(){this.style.removeProperty(t)}}(t)):this.styleTween(t,"function"==typeof n?function(t,n,e){var r,i,o;return function(){var a=lt(this,t),u=e(this);return null==u&&(this.style.removeProperty(t),u=lt(this,t)),a===u?null:a===r&&u===i?o:o=n(r=a,i=u)}}(t,r,Sr(this,"style."+t,n)):function(t,n,e){var r,i;return function(){var o=lt(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}(t,r,n+""),e)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(Sr(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},remove:function(){return this.on("end.remove",(t=this._id,function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}));var t},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Tr(this.node(),e).tween,o=0,a=i.length;o<a;++o)if((r=i[o]).name===t)return r.value;return null}return this.each((null==n?function(t,n){var e,r;return function(){var i=Ar(this,t),o=i.tween;if(o!==e)for(var a=0,u=(r=e=o).length;a<u;++a)if(r[a].name===n){(r=r.slice()).splice(a,1);break}i.tween=r}}:function(t,n,e){var r,i;if("function"!=typeof e)throw new Error;return function(){var o=Ar(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var u={name:n,value:e},f=0,c=i.length;f<c;++f)if(i[f].name===n){i[f]=u;break}f===c&&i.push(u)}o.tween=i}})(e,t,n))},delay:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){Mr(this,t).delay=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){Mr(this,t).delay=n}})(n,t)):Tr(this.node(),n).delay},duration:function(t){var n=this._id;return arguments.length?this.each(("function"==typeof t?function(t,n){return function(){Ar(this,t).duration=+n.apply(this,arguments)}}:function(t,n){return n=+n,function(){Ar(this,t).duration=n}})(n,t)):Tr(this.node(),n).duration},ease:function(t){var n=this._id;return arguments.length?this.each(function(t,n){if("function"!=typeof n)throw new Error;return function(){Ar(this,t).ease=n}}(n,t)):Tr(this.node(),n).ease}};var qr=function t(n){function e(t){return Math.pow(t,n)}return n=+n,e.exponent=t,e}(3),Or=function t(n){function e(t){return 1-Math.pow(1-t,n)}return n=+n,e.exponent=t,e}(3),Yr=function t(n){function e(t){return((t*=2)<=1?Math.pow(t,n):2-Math.pow(2-t,n))/2}return n=+n,e.exponent=t,e}(3),Br=Math.PI,Fr=Br/2;function Ir(t){return(1-Math.cos(Br*t))/2}function Hr(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function jr(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}var Xr=4/11,Gr=6/11,Vr=8/11,$r=.75,Wr=9/11,Zr=10/11,Qr=.9375,Jr=21/22,Kr=63/64,ti=1/Xr/Xr;function ni(t){return(t=+t)<Xr?ti*t*t:t<Vr?ti*(t-=Gr)*t+$r:t<Zr?ti*(t-=Wr)*t+Qr:ti*(t-=Jr)*t+Kr}var ei=function t(n){function e(t){return t*t*((n+1)*t-n)}return n=+n,e.overshoot=t,e}(1.70158),ri=function t(n){function e(t){return--t*t*((n+1)*t+n)+1}return n=+n,e.overshoot=t,e}(1.70158),ii=function t(n){function e(t){return((t*=2)<1?t*t*((n+1)*t-n):(t-=2)*t*((n+1)*t+n)+2)/2}return n=+n,e.overshoot=t,e}(1.70158),oi=2*Math.PI,ai=function t(n,e){var r=Math.asin(1/(n=Math.max(1,n)))*(e/=oi);function i(t){return n*Math.pow(2,10*--t)*Math.sin((r-t)/e)}return i.amplitude=function(n){return t(n,e*oi)},i.period=function(e){return t(n,e)},i}(1,.3),ui=function t(n,e){var r=Math.asin(1/(n=Math.max(1,n)))*(e/=oi);function i(t){return 1-n*Math.pow(2,-10*(t=+t))*Math.sin((t+r)/e)}return i.amplitude=function(n){return t(n,e*oi)},i.period=function(e){return t(n,e)},i}(1,.3),fi=function t(n,e){var r=Math.asin(1/(n=Math.max(1,n)))*(e/=oi);function i(t){return((t=2*t-1)<0?n*Math.pow(2,10*t)*Math.sin((r-t)/e):2-n*Math.pow(2,-10*t)*Math.sin((r+t)/e))/2}return i.amplitude=function(n){return t(n,e*oi)},i.period=function(e){return t(n,e)},i}(1,.3),ci={time:null,delay:0,duration:250,ease:Ur};function si(t,n){for(var e;!(e=t.__transition)||!(e=e[n]);)if(!(t=t.parentNode))return ci.time=ir(),ci;return e}Lt.prototype.interrupt=function(t){return this.each(function(){Nr(this,t)})},Lt.prototype.transition=function(t){var n,e;t instanceof Pr?(n=t._id,t=t._name):(n=Rr(),(e=ci).time=ir(),t=null==t?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a,u=r[o],f=u.length,c=0;c<f;++c)(a=u[c])&&wr(a,t,n,c,u,e||si(a,n));return new Pr(r,this._parents,t,n)};var li=[null];function hi(t){return function(){return t}}function di(t,n,e){this.target=t,this.type=n,this.selection=e}function pi(){t.event.stopImmediatePropagation()}function vi(){t.event.preventDefault(),t.event.stopImmediatePropagation()}var gi={name:"drag"},yi={name:"space"},_i={name:"handle"},bi={name:"center"},mi={name:"x",handles:["e","w"].map(Ei),input:function(t,n){return t&&[[t[0],n[0][1]],[t[1],n[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},xi={name:"y",handles:["n","s"].map(Ei),input:function(t,n){return t&&[[n[0][0],t[0]],[n[1][0],t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},wi={name:"xy",handles:["n","e","s","w","nw","ne","se","sw"].map(Ei),input:function(t){return t},output:function(t){return t}},Mi={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Ai={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},Ti={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},Ni={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},Si={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function Ei(t){return{type:t}}function ki(){return!t.event.button}function Ci(){var t=this.ownerSVGElement||this;return[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function Pi(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function zi(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function Ri(n){var e,r=Ci,i=ki,o=I(u,"start","brush","end"),a=6;function u(t){var e=t.property("__brush",h).selectAll(".overlay").data([Ei("overlay")]);e.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",Mi.overlay).merge(e).each(function(){var t=Pi(this).extent;Dt(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])}),t.selectAll(".selection").data([Ei("selection")]).enter().append("rect").attr("class","selection").attr("cursor",Mi.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var r=t.selectAll(".handle").data(n.handles,function(t){return t.type});r.exit().remove(),r.enter().append("rect").attr("class",function(t){return"handle handle--"+t.type}).attr("cursor",function(t){return Mi[t.type]}),t.each(f).attr("fill","none").attr("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush touchstart.brush",l)}function f(){var t=Dt(this),n=Pi(this).selection;n?(t.selectAll(".selection").style("display",null).attr("x",n[0][0]).attr("y",n[0][1]).attr("width",n[1][0]-n[0][0]).attr("height",n[1][1]-n[0][1]),t.selectAll(".handle").style("display",null).attr("x",function(t){return"e"===t.type[t.type.length-1]?n[1][0]-a/2:n[0][0]-a/2}).attr("y",function(t){return"s"===t.type[0]?n[1][1]-a/2:n[0][1]-a/2}).attr("width",function(t){return"n"===t.type||"s"===t.type?n[1][0]-n[0][0]+a:a}).attr("height",function(t){return"e"===t.type||"w"===t.type?n[1][1]-n[0][1]+a:a})):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function c(t,n){return t.__brush.emitter||new s(t,n)}function s(t,n){this.that=t,this.args=n,this.state=t.__brush,this.active=0}function l(){if(t.event.touches){if(t.event.changedTouches.length<t.event.touches.length)return vi()}else if(e)return;if(i.apply(this,arguments)){var r,o,a,u,s,l,h,d,p,v,g,y,_,b=this,m=t.event.target.__data__.type,x="selection"===(t.event.metaKey?m="overlay":m)?gi:t.event.altKey?bi:_i,w=n===xi?null:Ni[m],M=n===mi?null:Si[m],A=Pi(b),T=A.extent,N=A.selection,S=T[0][0],E=T[0][1],k=T[1][0],C=T[1][1],P=w&&M&&t.event.shiftKey,z=Ft(b),R=z,L=c(b,arguments).beforestart();"overlay"===m?A.selection=N=[[r=n===xi?S:z[0],a=n===mi?E:z[1]],[s=n===xi?k:r,h=n===mi?C:a]]:(r=N[0][0],a=N[0][1],s=N[1][0],h=N[1][1]),o=r,u=a,l=s,d=h;var D=Dt(b).attr("pointer-events","none"),U=D.selectAll(".overlay").attr("cursor",Mi[m]);if(t.event.touches)D.on("touchmove.brush",O,!0).on("touchend.brush touchcancel.brush",B,!0);else{var q=Dt(t.event.view).on("keydown.brush",function(){switch(t.event.keyCode){case 16:P=w&&M;break;case 18:x===_i&&(w&&(s=l-p*w,r=o+p*w),M&&(h=d-v*M,a=u+v*M),x=bi,Y());break;case 32:x!==_i&&x!==bi||(w<0?s=l-p:w>0&&(r=o-p),M<0?h=d-v:M>0&&(a=u-v),x=yi,U.attr("cursor",Mi.selection),Y());break;default:return}vi()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:P&&(y=_=P=!1,Y());break;case 18:x===bi&&(w<0?s=l:w>0&&(r=o),M<0?h=d:M>0&&(a=u),x=_i,Y());break;case 32:x===yi&&(t.event.altKey?(w&&(s=l-p*w,r=o+p*w),M&&(h=d-v*M,a=u+v*M),x=bi):(w<0?s=l:w>0&&(r=o),M<0?h=d:M>0&&(a=u),x=_i),U.attr("cursor",Mi[m]),Y());break;default:return}vi()},!0).on("mousemove.brush",O,!0).on("mouseup.brush",B,!0);Xt(t.event.view)}pi(),Nr(b),f.call(b),L.start()}function O(){var t=Ft(b);!P||y||_||(Math.abs(t[0]-R[0])>Math.abs(t[1]-R[1])?_=!0:y=!0),R=t,g=!0,vi(),Y()}function Y(){var t;switch(p=R[0]-z[0],v=R[1]-z[1],x){case yi:case gi:w&&(p=Math.max(S-r,Math.min(k-s,p)),o=r+p,l=s+p),M&&(v=Math.max(E-a,Math.min(C-h,v)),u=a+v,d=h+v);break;case _i:w<0?(p=Math.max(S-r,Math.min(k-r,p)),o=r+p,l=s):w>0&&(p=Math.max(S-s,Math.min(k-s,p)),o=r,l=s+p),M<0?(v=Math.max(E-a,Math.min(C-a,v)),u=a+v,d=h):M>0&&(v=Math.max(E-h,Math.min(C-h,v)),u=a,d=h+v);break;case bi:w&&(o=Math.max(S,Math.min(k,r-p*w)),l=Math.max(S,Math.min(k,s+p*w))),M&&(u=Math.max(E,Math.min(C,a-v*M)),d=Math.max(E,Math.min(C,h+v*M)))}l<o&&(w*=-1,t=r,r=s,s=t,t=o,o=l,l=t,m in Ai&&U.attr("cursor",Mi[m=Ai[m]])),d<u&&(M*=-1,t=a,a=h,h=t,t=u,u=d,d=t,m in Ti&&U.attr("cursor",Mi[m=Ti[m]])),A.selection&&(N=A.selection),y&&(o=N[0][0],l=N[1][0]),_&&(u=N[0][1],d=N[1][1]),N[0][0]===o&&N[0][1]===u&&N[1][0]===l&&N[1][1]===d||(A.selection=[[o,u],[l,d]],f.call(b),L.brush())}function B(){if(pi(),t.event.touches){if(t.event.touches.length)return;e&&clearTimeout(e),e=setTimeout(function(){e=null},500),D.on("touchmove.brush touchend.brush touchcancel.brush",null)}else Gt(t.event.view,g),q.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);D.attr("pointer-events","all"),U.attr("cursor",Mi.overlay),A.selection&&(N=A.selection),zi(N)&&(A.selection=null,f.call(b)),L.end()}}function h(){var t=this.__brush||{selection:null};return t.extent=r.apply(this,arguments),t.dim=n,t}return u.move=function(t,e){t.selection?t.on("start.brush",function(){c(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){c(this,arguments).end()}).tween("brush",function(){var t=this,r=t.__brush,i=c(t,arguments),o=r.selection,a=n.input("function"==typeof e?e.apply(this,arguments):e,r.extent),u=me(o,a);function s(n){r.selection=1===n&&zi(a)?null:u(n),f.call(t),i.brush()}return o&&a?s:s(1)}):t.each(function(){var t=arguments,r=this.__brush,i=n.input("function"==typeof e?e.apply(this,t):e,r.extent),o=c(this,t).beforestart();Nr(this),r.selection=null==i||zi(i)?null:i,f.call(this),o.start().brush().end()})},s.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){Ct(new di(u,t,n.output(this.state.selection)),o.apply,o,[t,this.that,this.args])}},u.extent=function(t){return arguments.length?(r="function"==typeof t?t:hi([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),u):r},u.filter=function(t){return arguments.length?(i="function"==typeof t?t:hi(!!t),u):i},u.handleSize=function(t){return arguments.length?(a=+t,u):a},u.on=function(){var t=o.on.apply(o,arguments);return t===o?u:t},u}var Li=Math.cos,Di=Math.sin,Ui=Math.PI,qi=Ui/2,Oi=2*Ui,Yi=Math.max;var Bi=Array.prototype.slice;function Fi(t){return function(){return t}}var Ii=Math.PI,Hi=2*Ii,ji=Hi-1e-6;function Xi(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function Gi(){return new Xi}function Vi(t){return t.source}function $i(t){return t.target}function Wi(t){return t.radius}function Zi(t){return t.startAngle}function Qi(t){return t.endAngle}Xi.prototype=Gi.prototype={constructor:Xi,moveTo:function(t,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,n){this._+="L"+(this._x1=+t)+","+(this._y1=+n)},quadraticCurveTo:function(t,n,e,r){this._+="Q"+ +t+","+ +n+","+(this._x1=+e)+","+(this._y1=+r)},bezierCurveTo:function(t,n,e,r,i,o){this._+="C"+ +t+","+ +n+","+ +e+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,n,e,r,i){t=+t,n=+n,e=+e,r=+r,i=+i;var o=this._x1,a=this._y1,u=e-t,f=r-n,c=o-t,s=a-n,l=c*c+s*s;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=n);else if(l>1e-6)if(Math.abs(s*u-f*c)>1e-6&&i){var h=e-o,d=r-a,p=u*u+f*f,v=h*h+d*d,g=Math.sqrt(p),y=Math.sqrt(l),_=i*Math.tan((Ii-Math.acos((p+l-v)/(2*g*y)))/2),b=_/y,m=_/g;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*c)+","+(n+b*s)),this._+="A"+i+","+i+",0,0,"+ +(s*h>c*d)+","+(this._x1=t+m*u)+","+(this._y1=n+m*f)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n;var a=(e=+e)*Math.cos(r),u=e*Math.sin(r),f=t+a,c=n+u,s=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+f+","+c:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+f+","+c),e&&(l<0&&(l=l%Hi+Hi),l>ji?this._+="A"+e+","+e+",0,1,"+s+","+(t-a)+","+(n-u)+"A"+e+","+e+",0,1,"+s+","+(this._x1=f)+","+(this._y1=c):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=Ii)+","+s+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};function Ji(){}function Ki(t,n){var e=new Ji;if(t instanceof Ji)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i<o;)e.set(i,t[i]);else for(;++i<o;)e.set(n(r=t[i],i,t),r)}else if(t)for(var a in t)e.set(a,t[a]);return e}function to(){return{}}function no(t,n,e){t[n]=e}function eo(){return Ki()}function ro(t,n,e){t.set(n,e)}function io(){}Ji.prototype=Ki.prototype={constructor:Ji,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var oo=Ki.prototype;function ao(t,n){var e=new io;if(t instanceof io)t.each(function(t){e.add(t)});else if(t){var r=-1,i=t.length;if(null==n)for(;++r<i;)e.add(t[r]);else for(;++r<i;)e.add(n(t[r],r,t))}return e}io.prototype=ao.prototype={constructor:io,has:oo.has,add:function(t){return this["$"+(t+="")]=t,this},remove:oo.remove,clear:oo.clear,values:oo.keys,size:oo.size,empty:oo.empty,each:oo.each};var uo=Array.prototype.slice;function fo(t,n){return t-n}function co(t){return function(){return t}}function so(t,n){for(var e,r=-1,i=n.length;++r<i;)if(e=lo(t,n[r]))return e;return 0}function lo(t,n){for(var e=n[0],r=n[1],i=-1,o=0,a=t.length,u=a-1;o<a;u=o++){var f=t[o],c=f[0],s=f[1],l=t[u],h=l[0],d=l[1];if(ho(f,l,n))return 0;s>r!=d>r&&e<(h-c)*(r-s)/(d-s)+c&&(i=-i)}return i}function ho(t,n,e){var r,i,o,a;return function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])==(e[0]-t[0])*(n[1]-t[1])}(t,n,e)&&(i=t[r=+(t[0]===n[0])],o=e[r],a=n[r],i<=o&&o<=a||a<=o&&o<=i)}function po(){}var vo=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]];function go(){var t=1,n=1,e=M,r=u;function i(t){var n=e(t);if(Array.isArray(n))n=n.slice().sort(fo);else{var r=s(t),i=r[0],a=r[1];n=w(i,a,n),n=g(Math.floor(i/n)*n,Math.floor(a/n)*n,n)}return n.map(function(n){return o(t,n)})}function o(e,i){var o=[],u=[];return function(e,r,i){var o,u,f,c,s,l,h=new Array,d=new Array;o=u=-1,c=e[0]>=r,vo[c<<1].forEach(p);for(;++o<t-1;)f=c,c=e[o+1]>=r,vo[f|c<<1].forEach(p);vo[c<<0].forEach(p);for(;++u<n-1;){for(o=-1,c=e[u*t+t]>=r,s=e[u*t]>=r,vo[c<<1|s<<2].forEach(p);++o<t-1;)f=c,c=e[u*t+t+o+1]>=r,l=s,s=e[u*t+o+1]>=r,vo[f|c<<1|s<<2|l<<3].forEach(p);vo[c|s<<3].forEach(p)}o=-1,s=e[u*t]>=r,vo[s<<2].forEach(p);for(;++o<t-1;)l=s,s=e[u*t+o+1]>=r,vo[s<<2|l<<3].forEach(p);function p(t){var n,e,r=[t[0][0]+o,t[0][1]+u],f=[t[1][0]+o,t[1][1]+u],c=a(r),s=a(f);(n=d[c])?(e=h[s])?(delete d[n.end],delete h[e.start],n===e?(n.ring.push(f),i(n.ring)):h[n.start]=d[e.end]={start:n.start,end:e.end,ring:n.ring.concat(e.ring)}):(delete d[n.end],n.ring.push(f),d[n.end=s]=n):(n=h[s])?(e=d[c])?(delete h[n.start],delete d[e.end],n===e?(n.ring.push(f),i(n.ring)):h[e.start]=d[n.end]={start:e.start,end:n.end,ring:e.ring.concat(n.ring)}):(delete h[n.start],n.ring.unshift(r),h[n.start=c]=n):h[c]=d[s]={start:c,end:s,ring:[r,f]}}vo[s<<3].forEach(p)}(e,i,function(t){r(t,e,i),function(t){for(var n=0,e=t.length,r=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++n<e;)r+=t[n-1][1]*t[n][0]-t[n-1][0]*t[n][1];return r}(t)>0?o.push([t]):u.push(t)}),u.forEach(function(t){for(var n,e=0,r=o.length;e<r;++e)if(-1!==so((n=o[e])[0],t))return void n.push(t)}),{type:"MultiPolygon",value:i,coordinates:o}}function a(n){return 2*n[0]+n[1]*(t+1)*4}function u(e,r,i){e.forEach(function(e){var o,a=e[0],u=e[1],f=0|a,c=0|u,s=r[c*t+f];a>0&&a<t&&f===a&&(o=r[c*t+f-1],e[0]=a+(i-o)/(s-o)-.5),u>0&&u<n&&c===u&&(o=r[(c-1)*t+f],e[1]=u+(i-o)/(s-o)-.5)})}return i.contour=o,i.size=function(e){if(!arguments.length)return[t,n];var r=Math.ceil(e[0]),o=Math.ceil(e[1]);if(!(r>0&&o>0))throw new Error("invalid size");return t=r,n=o,i},i.thresholds=function(t){return arguments.length?(e="function"==typeof t?t:Array.isArray(t)?co(uo.call(t)):co(t),i):e},i.smooth=function(t){return arguments.length?(r=t?u:po,i):r===u},i}function yo(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<i;++a)for(var u=0,f=0;u<r+e;++u)u<r&&(f+=t.data[u+a*r]),u>=e&&(u>=o&&(f-=t.data[u-o+a*r]),n.data[u-e+a*r]=f/Math.min(u+1,r-1+o-u,o))}function _o(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a<r;++a)for(var u=0,f=0;u<i+e;++u)u<i&&(f+=t.data[a+u*r]),u>=e&&(u>=o&&(f-=t.data[a+(u-o)*r]),n.data[a+(u-e)*r]=f/Math.min(u+1,i-1+o-u,o))}function bo(t){return t[0]}function mo(t){return t[1]}function xo(){return 1}var wo={},Mo={},Ao=34,To=10,No=13;function So(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+"]"}).join(",")+"}")}function Eo(t){var n=new RegExp('["'+t+"\n\r]"),e=t.charCodeAt(0);function r(t,n){var r,i=[],o=t.length,a=0,u=0,f=o<=0,c=!1;function s(){if(f)return Mo;if(c)return c=!1,wo;var n,r,i=a;if(t.charCodeAt(i)===Ao){for(;a++<o&&t.charCodeAt(a)!==Ao||t.charCodeAt(++a)===Ao;);return(n=a)>=o?f=!0:(r=t.charCodeAt(a++))===To?c=!0:r===No&&(c=!0,t.charCodeAt(a)===To&&++a),t.slice(i+1,n-1).replace(/""/g,'"')}for(;a<o;){if((r=t.charCodeAt(n=a++))===To)c=!0;else if(r===No)c=!0,t.charCodeAt(a)===To&&++a;else if(r!==e)continue;return t.slice(i,n)}return f=!0,t.slice(i,o)}for(t.charCodeAt(o-1)===To&&--o,t.charCodeAt(o-1)===No&&--o;(r=s())!==Mo;){for(var l=[];r!==wo&&r!==Mo;)l.push(r),r=s();n&&null==(l=n(l,u++))||i.push(l)}return i}function i(n){return n.map(o).join(t)}function o(t){return null==t?"":n.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}return{parse:function(t,n){var e,i,o=r(t,function(t,r){if(e)return e(t,r-1);i=t,e=n?function(t,n){var e=So(t);return function(r,i){return n(e(r),i,t)}}(t,n):So(t)});return o.columns=i||[],o},parseRows:r,format:function(n,e){return null==e&&(e=function(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}(n)),[e.map(o).join(t)].concat(n.map(function(n){return e.map(function(t){return o(n[t])}).join(t)})).join("\n")},formatRows:function(t){return t.map(i).join("\n")}}}var ko=Eo(","),Co=ko.parse,Po=ko.parseRows,zo=ko.format,Ro=ko.formatRows,Lo=Eo("\t"),Do=Lo.parse,Uo=Lo.parseRows,qo=Lo.format,Oo=Lo.formatRows;function Yo(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function Bo(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function Fo(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function Io(t,n){return fetch(t,n).then(Fo)}function Ho(t){return function(n,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=void 0),Io(n,e).then(function(n){return t(n,r)})}}var jo=Ho(Co),Xo=Ho(Do);function Go(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.json()}function Vo(t){return function(n,e){return Io(n,e).then(function(n){return(new DOMParser).parseFromString(n,t)})}}var $o=Vo("application/xml"),Wo=Vo("text/html"),Zo=Vo("image/svg+xml");function Qo(t){return function(){return t}}function Jo(){return 1e-6*(Math.random()-.5)}function Ko(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,a,u,f,c,s,l,h,d=t._root,p={data:r},v=t._x0,g=t._y0,y=t._x1,_=t._y1;if(!d)return t._root=p,t;for(;d.length;)if((c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a,i=d,!(d=d[l=s<<1|c]))return i[l]=p,t;if(u=+t._x.call(null,d.data),f=+t._y.call(null,d.data),n===u&&e===f)return p.next=d,i?i[l]=p:t._root=p,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(c=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a}while((l=s<<1|c)==(h=(f>=a)<<1|u>=o));return i[h]=d,i[l]=p,t}function ta(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function na(t){return t[0]}function ea(t){return t[1]}function ra(t,n,e){var r=new ia(null==n?na:n,null==e?ea:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function ia(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function oa(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}var aa=ra.prototype=ia.prototype;function ua(t){return t.x+t.vx}function fa(t){return t.y+t.vy}function ca(t){return t.index}function sa(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function la(t){return t.x}function ha(t){return t.y}aa.copy=function(){var t,n,e=new ia(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=oa(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=oa(n));return e},aa.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return Ko(this.cover(n,e),n,e,t)},aa.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),f=1/0,c=1/0,s=-1/0,l=-1/0;for(e=0;e<o;++e)isNaN(r=+this._x.call(null,n=t[e]))||isNaN(i=+this._y.call(null,n))||(a[e]=r,u[e]=i,r<f&&(f=r),r>s&&(s=r),i<c&&(c=i),i>l&&(l=i));for(s<f&&(f=this._x0,s=this._x1),l<c&&(c=this._y0,l=this._y1),this.cover(f,c).cover(s,l),e=0;e<o;++e)Ko(this,a[e],u[e],t[e]);return this},aa.cover=function(t,n){if(isNaN(t=+t)||isNaN(n=+n))return this;var e=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(e))i=(e=Math.floor(t))+1,o=(r=Math.floor(n))+1;else{if(!(e>t||t>i||r>n||n>o))return this;var a,u,f=i-e,c=this._root;switch(u=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{(a=new Array(4))[u]=c,c=a}while(o=r+(f*=2),t>(i=e+f)||n>o);break;case 1:do{(a=new Array(4))[u]=c,c=a}while(o=r+(f*=2),(e=i-f)>t||n>o);break;case 2:do{(a=new Array(4))[u]=c,c=a}while(r=o-(f*=2),t>(i=e+f)||r>n);break;case 3:do{(a=new Array(4))[u]=c,c=a}while(r=o-(f*=2),(e=i-f)>t||r>n)}this._root&&this._root.length&&(this._root=c)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},aa.data=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},aa.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},aa.find=function(t,n,e){var r,i,o,a,u,f,c,s=this._x0,l=this._y0,h=this._x1,d=this._y1,p=[],v=this._root;for(v&&p.push(new ta(v,s,l,h,d)),null==e?e=1/0:(s=t-e,l=n-e,h=t+e,d=n+e,e*=e);f=p.pop();)if(!(!(v=f.node)||(i=f.x0)>h||(o=f.y0)>d||(a=f.x1)<s||(u=f.y1)<l))if(v.length){var g=(i+a)/2,y=(o+u)/2;p.push(new ta(v[3],g,y,a,u),new ta(v[2],i,y,g,u),new ta(v[1],g,o,a,y),new ta(v[0],i,o,g,y)),(c=(n>=y)<<1|t>=g)&&(f=p[p.length-1],p[p.length-1]=p[p.length-1-c],p[p.length-1-c]=f)}else{var _=t-+this._x.call(null,v.data),b=n-+this._y.call(null,v.data),m=_*_+b*b;if(m<e){var x=Math.sqrt(e=m);s=t-x,l=n-x,h=t+x,d=n+x,r=v.data}}return r},aa.remove=function(t){if(isNaN(o=+this._x.call(null,t))||isNaN(a=+this._y.call(null,t)))return this;var n,e,r,i,o,a,u,f,c,s,l,h,d=this._root,p=this._x0,v=this._y0,g=this._x1,y=this._y1;if(!d)return this;if(d.length)for(;;){if((c=o>=(u=(p+g)/2))?p=u:g=u,(s=a>=(f=(v+y)/2))?v=f:y=f,n=d,!(d=d[l=s<<1|c]))return this;if(!d.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[h]=d:this._root=d),this):(this._root=i,this)},aa.removeAll=function(t){for(var n=0,e=t.length;n<e;++n)this.remove(t[n]);return this},aa.root=function(){return this._root},aa.size=function(){var t=0;return this.visit(function(n){if(!n.length)do{++t}while(n=n.next)}),t},aa.visit=function(t){var n,e,r,i,o,a,u=[],f=this._root;for(f&&u.push(new ta(f,this._x0,this._y0,this._x1,this._y1));n=u.pop();)if(!t(f=n.node,r=n.x0,i=n.y0,o=n.x1,a=n.y1)&&f.length){var c=(r+o)/2,s=(i+a)/2;(e=f[3])&&u.push(new ta(e,c,s,o,a)),(e=f[2])&&u.push(new ta(e,r,s,c,a)),(e=f[1])&&u.push(new ta(e,c,i,o,s)),(e=f[0])&&u.push(new ta(e,r,i,c,s))}return this},aa.visitAfter=function(t){var n,e=[],r=[];for(this._root&&e.push(new ta(this._root,this._x0,this._y0,this._x1,this._y1));n=e.pop();){var i=n.node;if(i.length){var o,a=n.x0,u=n.y0,f=n.x1,c=n.y1,s=(a+f)/2,l=(u+c)/2;(o=i[0])&&e.push(new ta(o,a,u,s,l)),(o=i[1])&&e.push(new ta(o,s,u,f,l)),(o=i[2])&&e.push(new ta(o,a,l,s,c)),(o=i[3])&&e.push(new ta(o,s,l,f,c))}r.push(n)}for(;n=r.pop();)t(n.node,n.x0,n.y0,n.x1,n.y1);return this},aa.x=function(t){return arguments.length?(this._x=t,this):this._x},aa.y=function(t){return arguments.length?(this._y=t,this):this._y};var da=10,pa=Math.PI*(3-Math.sqrt(5));function va(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function ga(t){return(t=va(Math.abs(t)))?t[1]:NaN}var ya,_a=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ba(t){return new ma(t)}function ma(t){if(!(n=_a.exec(t)))throw new Error("invalid format: "+t);var n;this.fill=n[1]||" ",this.align=n[2]||">",this.sign=n[3]||"-",this.symbol=n[4]||"",this.zero=!!n[5],this.width=n[6]&&+n[6],this.comma=!!n[7],this.precision=n[8]&&+n[8].slice(1),this.trim=!!n[9],this.type=n[10]||""}function xa(t,n){var e=va(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}ba.prototype=ma.prototype,ma.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var wa={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return xa(100*t,n)},r:xa,s:function(t,n){var e=va(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(ya=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+va(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}};function Ma(t){return t}var Aa,Ta=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Na(t){var n,e,r=t.grouping&&t.thousands?(n=t.grouping,e=t.thousands,function(t,r){for(var i=t.length,o=[],a=0,u=n[0],f=0;i>0&&u>0&&(f+u+1>r&&(u=Math.max(1,r-f)),o.push(t.substring(i-=u,i+u)),!((f+=u+1)>r));)u=n[a=(a+1)%n.length];return o.reverse().join(e)}):Ma,i=t.currency,o=t.decimal,a=t.numerals?function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(t.numerals):Ma,u=t.percent||"%";function f(t){var n=(t=ba(t)).fill,e=t.align,f=t.sign,c=t.symbol,s=t.zero,l=t.width,h=t.comma,d=t.precision,p=t.trim,v=t.type;"n"===v?(h=!0,v="g"):wa[v]||(null==d&&(d=12),p=!0,v="g"),(s||"0"===n&&"="===e)&&(s=!0,n="0",e="=");var g="$"===c?i[0]:"#"===c&&/[boxX]/.test(v)?"0"+v.toLowerCase():"",y="$"===c?i[1]:/[%p]/.test(v)?u:"",_=wa[v],b=/[defgprs%]/.test(v);function m(t){var i,u,c,m=g,x=y;if("c"===v)x=_(t)+x,t="";else{var w=(t=+t)<0;if(t=_(Math.abs(t),d),p&&(t=function(t){t:for(var n,e=t.length,r=1,i=-1;r<e;++r)switch(t[r]){case".":i=n=r;break;case"0":0===i&&(i=r),n=r;break;default:if(i>0){if(!+t[r])break t;i=0}}return i>0?t.slice(0,i)+t.slice(n+1):t}(t)),w&&0==+t&&(w=!1),m=(w?"("===f?f:"-":"-"===f||"("===f?"":f)+m,x=("s"===v?Ta[8+ya/3]:"")+x+(w&&"("===f?")":""),b)for(i=-1,u=t.length;++i<u;)if(48>(c=t.charCodeAt(i))||c>57){x=(46===c?o+t.slice(i+1):t.slice(i))+x,t=t.slice(0,i);break}}h&&!s&&(t=r(t,1/0));var M=m.length+t.length+x.length,A=M<l?new Array(l-M+1).join(n):"";switch(h&&s&&(t=r(A+t,A.length?l-x.length:1/0),A=""),e){case"<":t=m+t+x+A;break;case"=":t=m+A+t+x;break;case"^":t=A.slice(0,M=A.length>>1)+m+t+x+A.slice(M);break;default:t=A+m+t+x}return a(t)}return d=null==d?6:/[gprs]/.test(v)?Math.max(1,Math.min(21,d)):Math.max(0,Math.min(20,d)),m.toString=function(){return t+""},m}return{format:f,formatPrefix:function(t,n){var e=f(((t=ba(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(ga(n)/3))),i=Math.pow(10,-r),o=Ta[8+r/3];return function(t){return e(i*t)+o}}}}function Sa(n){return Aa=Na(n),t.format=Aa.format,t.formatPrefix=Aa.formatPrefix,Aa}function Ea(t){return Math.max(0,-ga(Math.abs(t)))}function ka(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(ga(n)/3)))-ga(Math.abs(t)))}function Ca(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,ga(n)-ga(t))+1}function Pa(){return new za}function za(){this.reset()}Sa({decimal:".",thousands:",",grouping:[3],currency:["$",""]}),za.prototype={constructor:za,reset:function(){this.s=this.t=0},add:function(t){La(Ra,t,this.t),La(this,Ra.s,this.s),this.s?this.t+=Ra.t:this.s=Ra.t},valueOf:function(){return this.s}};var Ra=new za;function La(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}var Da=1e-6,Ua=1e-12,qa=Math.PI,Oa=qa/2,Ya=qa/4,Ba=2*qa,Fa=180/qa,Ia=qa/180,Ha=Math.abs,ja=Math.atan,Xa=Math.atan2,Ga=Math.cos,Va=Math.ceil,$a=Math.exp,Wa=Math.log,Za=Math.pow,Qa=Math.sin,Ja=Math.sign||function(t){return t>0?1:t<0?-1:0},Ka=Math.sqrt,tu=Math.tan;function nu(t){return t>1?0:t<-1?qa:Math.acos(t)}function eu(t){return t>1?Oa:t<-1?-Oa:Math.asin(t)}function ru(t){return(t=Qa(t/2))*t}function iu(){}function ou(t,n){t&&uu.hasOwnProperty(t.type)&&uu[t.type](t,n)}var au={Feature:function(t,n){ou(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)ou(e[r].geometry,n)}},uu={Sphere:function(t,n){n.sphere()},Point:function(t,n){t=t.coordinates,n.point(t[0],t[1],t[2])},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)t=e[r],n.point(t[0],t[1],t[2])},LineString:function(t,n){fu(t.coordinates,n,0)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)fu(e[r],n,0)},Polygon:function(t,n){cu(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)cu(e[r],n)},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)ou(e[r],n)}};function fu(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i<o;)r=t[i],n.point(r[0],r[1],r[2]);n.lineEnd()}function cu(t,n){var e=-1,r=t.length;for(n.polygonStart();++e<r;)fu(t[e],n,1);n.polygonEnd()}function su(t,n){t&&au.hasOwnProperty(t.type)?au[t.type](t,n):ou(t,n)}var lu,hu,du,pu,vu,gu=Pa(),yu=Pa(),_u={point:iu,lineStart:iu,lineEnd:iu,polygonStart:function(){gu.reset(),_u.lineStart=bu,_u.lineEnd=mu},polygonEnd:function(){var t=+gu;yu.add(t<0?Ba+t:t),this.lineStart=this.lineEnd=this.point=iu},sphere:function(){yu.add(Ba)}};function bu(){_u.point=xu}function mu(){wu(lu,hu)}function xu(t,n){_u.point=wu,lu=t,hu=n,du=t*=Ia,pu=Ga(n=(n*=Ia)/2+Ya),vu=Qa(n)}function wu(t,n){var e=(t*=Ia)-du,r=e>=0?1:-1,i=r*e,o=Ga(n=(n*=Ia)/2+Ya),a=Qa(n),u=vu*a,f=pu*o+u*Ga(i),c=u*r*Qa(i);gu.add(Xa(c,f)),du=t,pu=o,vu=a}function Mu(t){return[Xa(t[1],t[0]),eu(t[2])]}function Au(t){var n=t[0],e=t[1],r=Ga(e);return[r*Ga(n),r*Qa(n),Qa(e)]}function Tu(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Nu(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Su(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function Eu(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function ku(t){var n=Ka(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}var Cu,Pu,zu,Ru,Lu,Du,Uu,qu,Ou,Yu,Bu,Fu,Iu,Hu,ju,Xu,Gu,Vu,$u,Wu,Zu,Qu,Ju,Ku,tf,nf,ef=Pa(),rf={point:of,lineStart:uf,lineEnd:ff,polygonStart:function(){rf.point=cf,rf.lineStart=sf,rf.lineEnd=lf,ef.reset(),_u.polygonStart()},polygonEnd:function(){_u.polygonEnd(),rf.point=of,rf.lineStart=uf,rf.lineEnd=ff,gu<0?(Cu=-(zu=180),Pu=-(Ru=90)):ef>Da?Ru=90:ef<-Da&&(Pu=-90),Yu[0]=Cu,Yu[1]=zu}};function of(t,n){Ou.push(Yu=[Cu=t,zu=t]),n<Pu&&(Pu=n),n>Ru&&(Ru=n)}function af(t,n){var e=Au([t*Ia,n*Ia]);if(qu){var r=Nu(qu,e),i=Nu([r[1],-r[0],0],r);ku(i),i=Mu(i);var o,a=t-Lu,u=a>0?1:-1,f=i[0]*Fa*u,c=Ha(a)>180;c^(u*Lu<f&&f<u*t)?(o=i[1]*Fa)>Ru&&(Ru=o):c^(u*Lu<(f=(f+360)%360-180)&&f<u*t)?(o=-i[1]*Fa)<Pu&&(Pu=o):(n<Pu&&(Pu=n),n>Ru&&(Ru=n)),c?t<Lu?hf(Cu,t)>hf(Cu,zu)&&(zu=t):hf(t,zu)>hf(Cu,zu)&&(Cu=t):zu>=Cu?(t<Cu&&(Cu=t),t>zu&&(zu=t)):t>Lu?hf(Cu,t)>hf(Cu,zu)&&(zu=t):hf(t,zu)>hf(Cu,zu)&&(Cu=t)}else Ou.push(Yu=[Cu=t,zu=t]);n<Pu&&(Pu=n),n>Ru&&(Ru=n),qu=e,Lu=t}function uf(){rf.point=af}function ff(){Yu[0]=Cu,Yu[1]=zu,rf.point=of,qu=null}function cf(t,n){if(qu){var e=t-Lu;ef.add(Ha(e)>180?e+(e>0?360:-360):e)}else Du=t,Uu=n;_u.point(t,n),af(t,n)}function sf(){_u.lineStart()}function lf(){cf(Du,Uu),_u.lineEnd(),Ha(ef)>Da&&(Cu=-(zu=180)),Yu[0]=Cu,Yu[1]=zu,qu=null}function hf(t,n){return(n-=t)<0?n+360:n}function df(t,n){return t[0]-n[0]}function pf(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var vf={sphere:iu,point:gf,lineStart:_f,lineEnd:xf,polygonStart:function(){vf.lineStart=wf,vf.lineEnd=Mf},polygonEnd:function(){vf.lineStart=_f,vf.lineEnd=xf}};function gf(t,n){t*=Ia;var e=Ga(n*=Ia);yf(e*Ga(t),e*Qa(t),Qa(n))}function yf(t,n,e){Iu+=(t-Iu)/++Bu,Hu+=(n-Hu)/Bu,ju+=(e-ju)/Bu}function _f(){vf.point=bf}function bf(t,n){t*=Ia;var e=Ga(n*=Ia);Ku=e*Ga(t),tf=e*Qa(t),nf=Qa(n),vf.point=mf,yf(Ku,tf,nf)}function mf(t,n){t*=Ia;var e=Ga(n*=Ia),r=e*Ga(t),i=e*Qa(t),o=Qa(n),a=Xa(Ka((a=tf*o-nf*i)*a+(a=nf*r-Ku*o)*a+(a=Ku*i-tf*r)*a),Ku*r+tf*i+nf*o);Fu+=a,Xu+=a*(Ku+(Ku=r)),Gu+=a*(tf+(tf=i)),Vu+=a*(nf+(nf=o)),yf(Ku,tf,nf)}function xf(){vf.point=gf}function wf(){vf.point=Af}function Mf(){Tf(Qu,Ju),vf.point=gf}function Af(t,n){Qu=t,Ju=n,t*=Ia,n*=Ia,vf.point=Tf;var e=Ga(n);Ku=e*Ga(t),tf=e*Qa(t),nf=Qa(n),yf(Ku,tf,nf)}function Tf(t,n){t*=Ia;var e=Ga(n*=Ia),r=e*Ga(t),i=e*Qa(t),o=Qa(n),a=tf*o-nf*i,u=nf*r-Ku*o,f=Ku*i-tf*r,c=Ka(a*a+u*u+f*f),s=eu(c),l=c&&-s/c;$u+=l*a,Wu+=l*u,Zu+=l*f,Fu+=s,Xu+=s*(Ku+(Ku=r)),Gu+=s*(tf+(tf=i)),Vu+=s*(nf+(nf=o)),yf(Ku,tf,nf)}function Nf(t){return function(){return t}}function Sf(t,n){function e(e,r){return e=t(e,r),n(e[0],e[1])}return t.invert&&n.invert&&(e.invert=function(e,r){return(e=n.invert(e,r))&&t.invert(e[0],e[1])}),e}function Ef(t,n){return[t>qa?t-Ba:t<-qa?t+Ba:t,n]}function kf(t,n,e){return(t%=Ba)?n||e?Sf(Pf(t),zf(n,e)):Pf(t):n||e?zf(n,e):Ef}function Cf(t){return function(n,e){return[(n+=t)>qa?n-Ba:n<-qa?n+Ba:n,e]}}function Pf(t){var n=Cf(t);return n.invert=Cf(-t),n}function zf(t,n){var e=Ga(t),r=Qa(t),i=Ga(n),o=Qa(n);function a(t,n){var a=Ga(n),u=Ga(t)*a,f=Qa(t)*a,c=Qa(n),s=c*e+u*r;return[Xa(f*i-s*o,u*e-c*r),eu(s*i+f*o)]}return a.invert=function(t,n){var a=Ga(n),u=Ga(t)*a,f=Qa(t)*a,c=Qa(n),s=c*i-f*o;return[Xa(f*i+c*o,u*e+s*r),eu(s*e-u*r)]},a}function Rf(t){function n(n){return(n=t(n[0]*Ia,n[1]*Ia))[0]*=Fa,n[1]*=Fa,n}return t=kf(t[0]*Ia,t[1]*Ia,t.length>2?t[2]*Ia:0),n.invert=function(n){return(n=t.invert(n[0]*Ia,n[1]*Ia))[0]*=Fa,n[1]*=Fa,n},n}function Lf(t,n,e,r,i,o){if(e){var a=Ga(n),u=Qa(n),f=r*e;null==i?(i=n+r*Ba,o=n-f/2):(i=Df(a,i),o=Df(a,o),(r>0?i<o:i>o)&&(i+=r*Ba));for(var c,s=i;r>0?s>o:s<o;s-=f)c=Mu([a,-u*Ga(s),-u*Qa(s)]),t.point(c[0],c[1])}}function Df(t,n){(n=Au(n))[0]-=t,ku(n);var e=nu(-n[1]);return((-n[2]<0?-e:e)+Ba-Da)%Ba}function Uf(){var t,n=[];return{point:function(n,e){t.push([n,e])},lineStart:function(){n.push(t=[])},lineEnd:iu,rejoin:function(){n.length>1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function qf(t,n){return Ha(t[0]-n[0])<Da&&Ha(t[1]-n[1])<Da}function Of(t,n,e,r){this.x=t,this.z=n,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Yf(t,n,e,r,i){var o,a,u=[],f=[];if(t.forEach(function(t){if(!((n=t.length-1)<=0)){var n,e,r=t[0],a=t[n];if(qf(r,a)){for(i.lineStart(),o=0;o<n;++o)i.point((r=t[o])[0],r[1]);i.lineEnd()}else u.push(e=new Of(r,t,null,!0)),f.push(e.o=new Of(r,null,e,!1)),u.push(e=new Of(a,t,null,!1)),f.push(e.o=new Of(a,null,e,!0))}}),u.length){for(f.sort(n),Bf(u),Bf(f),o=0,a=f.length;o<a;++o)f[o].e=e=!e;for(var c,s,l=u[0];;){for(var h=l,d=!0;h.v;)if((h=h.n)===l)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(d)for(o=0,a=c.length;o<a;++o)i.point((s=c[o])[0],s[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(d)for(c=h.p.z,o=c.length-1;o>=0;--o)i.point((s=c[o])[0],s[1]);else r(h.x,h.p.x,-1,i);h=h.p}c=(h=h.o).z,d=!d}while(!h.v);i.lineEnd()}}}function Bf(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r<n;)i.n=e=t[r],e.p=i,i=e;i.n=e=t[0],e.p=i}}Ef.invert=Ef;var Ff=Pa();function If(t,n){var e=n[0],r=n[1],i=Qa(r),o=[Qa(e),-Ga(e),0],a=0,u=0;Ff.reset(),1===i?r=Oa+Da:-1===i&&(r=-Oa-Da);for(var f=0,c=t.length;f<c;++f)if(l=(s=t[f]).length)for(var s,l,h=s[l-1],d=h[0],p=h[1]/2+Ya,v=Qa(p),g=Ga(p),y=0;y<l;++y,d=b,v=x,g=w,h=_){var _=s[y],b=_[0],m=_[1]/2+Ya,x=Qa(m),w=Ga(m),M=b-d,A=M>=0?1:-1,T=A*M,N=T>qa,S=v*x;if(Ff.add(Xa(S*A*Qa(T),g*w+S*Ga(T))),a+=N?M+A*Ba:M,N^d>=e^b>=e){var E=Nu(Au(h),Au(_));ku(E);var k=Nu(o,E);ku(k);var C=(N^M>=0?-1:1)*eu(k[2]);(r>C||r===C&&(E[0]||E[1]))&&(u+=N^M>=0?1:-1)}}return(a<-Da||a<Da&&Ff<-Da)^1&u}function Hf(t,n,e,r){return function(i){var o,a,u,f=n(i),c=Uf(),s=n(c),l=!1,h={point:d,lineStart:v,lineEnd:g,polygonStart:function(){h.point=y,h.lineStart=_,h.lineEnd=b,a=[],o=[]},polygonEnd:function(){h.point=d,h.lineStart=v,h.lineEnd=g,a=N(a);var t=If(o,r);a.length?(l||(i.polygonStart(),l=!0),Yf(a,Xf,t,e,i)):t&&(l||(i.polygonStart(),l=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),l&&(i.polygonEnd(),l=!1),a=o=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function d(n,e){t(n,e)&&i.point(n,e)}function p(t,n){f.point(t,n)}function v(){h.point=p,f.lineStart()}function g(){h.point=d,f.lineEnd()}function y(t,n){u.push([t,n]),s.point(t,n)}function _(){s.lineStart(),u=[]}function b(){y(u[0][0],u[0][1]),s.lineEnd();var t,n,e,r,f=s.clean(),h=c.result(),d=h.length;if(u.pop(),o.push(u),u=null,d)if(1&f){if((n=(e=h[0]).length-1)>0){for(l||(i.polygonStart(),l=!0),i.lineStart(),t=0;t<n;++t)i.point((r=e[t])[0],r[1]);i.lineEnd()}}else d>1&&2&f&&h.push(h.pop().concat(h.shift())),a.push(h.filter(jf))}return h}}function jf(t){return t.length>1}function Xf(t,n){return((t=t.x)[0]<0?t[1]-Oa-Da:Oa-t[1])-((n=n.x)[0]<0?n[1]-Oa-Da:Oa-n[1])}var Gf=Hf(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,a){var u=o>0?qa:-qa,f=Ha(o-e);Ha(f-qa)<Da?(t.point(e,r=(r+a)/2>0?Oa:-Oa),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),t.point(o,r),n=0):i!==u&&f>=qa&&(Ha(e-i)<Da&&(e-=i*Da),Ha(o-u)<Da&&(o-=u*Da),r=function(t,n,e,r){var i,o,a=Qa(t-e);return Ha(a)>Da?ja((Qa(n)*(o=Ga(r))*Qa(e)-Qa(r)*(i=Ga(n))*Qa(t))/(i*o*a)):(n+r)/2}(e,r,o,a),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),n=0),t.point(e=o,r=a),i=u},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*Oa,r.point(-qa,i),r.point(0,i),r.point(qa,i),r.point(qa,0),r.point(qa,-i),r.point(0,-i),r.point(-qa,-i),r.point(-qa,0),r.point(-qa,i);else if(Ha(t[0]-n[0])>Da){var o=t[0]<n[0]?qa:-qa;i=e*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(n[0],n[1])},[-qa,-Oa]);function Vf(t){var n=Ga(t),e=6*Ia,r=n>0,i=Ha(n)>Da;function o(t,e){return Ga(t)*Ga(e)>n}function a(t,e,r){var i=[1,0,0],o=Nu(Au(t),Au(e)),a=Tu(o,o),u=o[0],f=a-u*u;if(!f)return!r&&t;var c=n*a/f,s=-n*u/f,l=Nu(i,o),h=Eu(i,c);Su(h,Eu(o,s));var d=l,p=Tu(h,d),v=Tu(d,d),g=p*p-v*(Tu(h,h)-1);if(!(g<0)){var y=Ka(g),_=Eu(d,(-p-y)/v);if(Su(_,h),_=Mu(_),!r)return _;var b,m=t[0],x=e[0],w=t[1],M=e[1];x<m&&(b=m,m=x,x=b);var A=x-m,T=Ha(A-qa)<Da;if(!T&&M<w&&(b=w,w=M,M=b),T||A<Da?T?w+M>0^_[1]<(Ha(_[0]-m)<Da?w:M):w<=_[1]&&_[1]<=M:A>qa^(m<=_[0]&&_[0]<=x)){var N=Eu(d,(-p+y)/v);return Su(N,h),[_,Mu(N)]}}}function u(n,e){var i=r?t:qa-t,o=0;return n<-i?o|=1:n>i&&(o|=2),e<-i?o|=4:e>i&&(o|=8),o}return Hf(o,function(t){var n,e,f,c,s;return{lineStart:function(){c=f=!1,s=1},point:function(l,h){var d,p=[l,h],v=o(l,h),g=r?v?0:u(l,h):v?u(l+(l<0?qa:-qa),h):0;if(!n&&(c=f=v)&&t.lineStart(),v!==f&&(!(d=a(n,p))||qf(n,d)||qf(p,d))&&(p[0]+=Da,p[1]+=Da,v=o(p[0],p[1])),v!==f)s=0,v?(t.lineStart(),d=a(p,n),t.point(d[0],d[1])):(d=a(n,p),t.point(d[0],d[1]),t.lineEnd()),n=d;else if(i&&n&&r^v){var y;g&e||!(y=a(p,n,!0))||(s=0,r?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||n&&qf(n,p)||t.point(p[0],p[1]),n=p,f=v,e=g},lineEnd:function(){f&&t.lineEnd(),n=null},clean:function(){return s|(c&&f)<<1}}},function(n,r,i,o){Lf(o,t,e,i,n,r)},r?[0,-t]:[-qa,t-qa])}var $f=1e9,Wf=-$f;function Zf(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,u,c){var s=0,l=0;if(null==i||(s=a(i,u))!==(l=a(o,u))||f(i,o)<0^u>0)do{c.point(0===s||3===s?t:e,s>1?r:n)}while((s=(s+u+4)%4)!==l);else c.point(o[0],o[1])}function a(r,i){return Ha(r[0]-t)<Da?i>0?0:3:Ha(r[0]-e)<Da?i>0?2:1:Ha(r[1]-n)<Da?i>0?1:0:i>0?3:2}function u(t,n){return f(t.x,n.x)}function f(t,n){var e=a(t,1),r=a(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(a){var f,c,s,l,h,d,p,v,g,y,_,b=a,m=Uf(),x={point:w,lineStart:function(){x.point=M,c&&c.push(s=[]);y=!0,g=!1,p=v=NaN},lineEnd:function(){f&&(M(l,h),d&&g&&m.rejoin(),f.push(m.result()));x.point=w,g&&b.lineEnd()},polygonStart:function(){b=m,f=[],c=[],_=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=c.length;e<i;++e)for(var o,a,u=c[e],f=1,s=u.length,l=u[0],h=l[0],d=l[1];f<s;++f)o=h,a=d,l=u[f],h=l[0],d=l[1],a<=r?d>r&&(h-o)*(r-a)>(d-a)*(t-o)&&++n:d<=r&&(h-o)*(r-a)<(d-a)*(t-o)&&--n;return n}(),e=_&&n,i=(f=N(f)).length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),o(null,null,1,a),a.lineEnd()),i&&Yf(f,u,n,o,a),a.polygonEnd());b=a,f=c=s=null}};function w(t,n){i(t,n)&&b.point(t,n)}function M(o,a){var u=i(o,a);if(c&&s.push([o,a]),y)l=o,h=a,d=u,y=!1,u&&(b.lineStart(),b.point(o,a));else if(u&&g)b.point(o,a);else{var f=[p=Math.max(Wf,Math.min($f,p)),v=Math.max(Wf,Math.min($f,v))],m=[o=Math.max(Wf,Math.min($f,o)),a=Math.max(Wf,Math.min($f,a))];!function(t,n,e,r,i,o){var a,u=t[0],f=t[1],c=0,s=1,l=n[0]-u,h=n[1]-f;if(a=e-u,l||!(a>0)){if(a/=l,l<0){if(a<c)return;a<s&&(s=a)}else if(l>0){if(a>s)return;a>c&&(c=a)}if(a=i-u,l||!(a<0)){if(a/=l,l<0){if(a>s)return;a>c&&(c=a)}else if(l>0){if(a<c)return;a<s&&(s=a)}if(a=r-f,h||!(a>0)){if(a/=h,h<0){if(a<c)return;a<s&&(s=a)}else if(h>0){if(a>s)return;a>c&&(c=a)}if(a=o-f,h||!(a<0)){if(a/=h,h<0){if(a>s)return;a>c&&(c=a)}else if(h>0){if(a<c)return;a<s&&(s=a)}return c>0&&(t[0]=u+c*l,t[1]=f+c*h),s<1&&(n[0]=u+s*l,n[1]=f+s*h),!0}}}}}(f,m,t,n,e,r)?u&&(b.lineStart(),b.point(o,a),_=!1):(g||(b.lineStart(),b.point(f[0],f[1])),b.point(m[0],m[1]),u||b.lineEnd(),_=!1)}p=o,v=a,g=u}return x}}var Qf,Jf,Kf,tc=Pa(),nc={sphere:iu,point:iu,lineStart:function(){nc.point=rc,nc.lineEnd=ec},lineEnd:iu,polygonStart:iu,polygonEnd:iu};function ec(){nc.point=nc.lineEnd=iu}function rc(t,n){Qf=t*=Ia,Jf=Qa(n*=Ia),Kf=Ga(n),nc.point=ic}function ic(t,n){t*=Ia;var e=Qa(n*=Ia),r=Ga(n),i=Ha(t-Qf),o=Ga(i),a=r*Qa(i),u=Kf*e-Jf*r*o,f=Jf*e+Kf*r*o;tc.add(Xa(Ka(a*a+u*u),f)),Qf=t,Jf=e,Kf=r}function oc(t){return tc.reset(),su(t,nc),+tc}var ac=[null,null],uc={type:"LineString",coordinates:ac};function fc(t,n){return ac[0]=t,ac[1]=n,oc(uc)}var cc={Feature:function(t,n){return lc(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r<i;)if(lc(e[r].geometry,n))return!0;return!1}},sc={Sphere:function(){return!0},Point:function(t,n){return hc(t.coordinates,n)},MultiPoint:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(hc(e[r],n))return!0;return!1},LineString:function(t,n){return dc(t.coordinates,n)},MultiLineString:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(dc(e[r],n))return!0;return!1},Polygon:function(t,n){return pc(t.coordinates,n)},MultiPolygon:function(t,n){for(var e=t.coordinates,r=-1,i=e.length;++r<i;)if(pc(e[r],n))return!0;return!1},GeometryCollection:function(t,n){for(var e=t.geometries,r=-1,i=e.length;++r<i;)if(lc(e[r],n))return!0;return!1}};function lc(t,n){return!(!t||!sc.hasOwnProperty(t.type))&&sc[t.type](t,n)}function hc(t,n){return 0===fc(t,n)}function dc(t,n){var e=fc(t[0],t[1]);return fc(t[0],n)+fc(n,t[1])<=e+Da}function pc(t,n){return!!If(t.map(vc),gc(n))}function vc(t){return(t=t.map(gc)).pop(),t}function gc(t){return[t[0]*Ia,t[1]*Ia]}function yc(t,n,e){var r=g(t,n-Da,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function _c(t,n,e){var r=g(t,n-Da,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function bc(){var t,n,e,r,i,o,a,u,f,c,s,l,h=10,d=h,p=90,v=360,y=2.5;function _(){return{type:"MultiLineString",coordinates:b()}}function b(){return g(Va(r/p)*p,e,p).map(s).concat(g(Va(u/v)*v,a,v).map(l)).concat(g(Va(n/h)*h,t,h).filter(function(t){return Ha(t%p)>Da}).map(f)).concat(g(Va(o/d)*d,i,d).filter(function(t){return Ha(t%v)>Da}).map(c))}return _.lines=function(){return b().map(function(t){return{type:"LineString",coordinates:t}})},_.outline=function(){return{type:"Polygon",coordinates:[s(r).concat(l(a).slice(1),s(e).reverse().slice(1),l(u).reverse().slice(1))]}},_.extent=function(t){return arguments.length?_.extentMajor(t).extentMinor(t):_.extentMinor()},_.extentMajor=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],u=+t[0][1],a=+t[1][1],r>e&&(t=r,r=e,e=t),u>a&&(t=u,u=a,a=t),_.precision(y)):[[r,u],[e,a]]},_.extentMinor=function(e){return arguments.length?(n=+e[0][0],t=+e[1][0],o=+e[0][1],i=+e[1][1],n>t&&(e=n,n=t,t=e),o>i&&(e=o,o=i,i=e),_.precision(y)):[[n,o],[t,i]]},_.step=function(t){return arguments.length?_.stepMajor(t).stepMinor(t):_.stepMinor()},_.stepMajor=function(t){return arguments.length?(p=+t[0],v=+t[1],_):[p,v]},_.stepMinor=function(t){return arguments.length?(h=+t[0],d=+t[1],_):[h,d]},_.precision=function(h){return arguments.length?(y=+h,f=yc(o,i,90),c=_c(n,t,y),s=yc(u,a,90),l=_c(r,e,y),_):y},_.extentMajor([[-180,-90+Da],[180,90-Da]]).extentMinor([[-180,-80-Da],[180,80+Da]])}function mc(t){return t}var xc,wc,Mc,Ac,Tc=Pa(),Nc=Pa(),Sc={point:iu,lineStart:iu,lineEnd:iu,polygonStart:function(){Sc.lineStart=Ec,Sc.lineEnd=Pc},polygonEnd:function(){Sc.lineStart=Sc.lineEnd=Sc.point=iu,Tc.add(Ha(Nc)),Nc.reset()},result:function(){var t=Tc/2;return Tc.reset(),t}};function Ec(){Sc.point=kc}function kc(t,n){Sc.point=Cc,xc=Mc=t,wc=Ac=n}function Cc(t,n){Nc.add(Ac*t-Mc*n),Mc=t,Ac=n}function Pc(){Cc(xc,wc)}var zc=1/0,Rc=zc,Lc=-zc,Dc=Lc,Uc={point:function(t,n){t<zc&&(zc=t);t>Lc&&(Lc=t);n<Rc&&(Rc=n);n>Dc&&(Dc=n)},lineStart:iu,lineEnd:iu,polygonStart:iu,polygonEnd:iu,result:function(){var t=[[zc,Rc],[Lc,Dc]];return Lc=Dc=-(Rc=zc=1/0),t}};var qc,Oc,Yc,Bc,Fc=0,Ic=0,Hc=0,jc=0,Xc=0,Gc=0,Vc=0,$c=0,Wc=0,Zc={point:Qc,lineStart:Jc,lineEnd:ns,polygonStart:function(){Zc.lineStart=es,Zc.lineEnd=rs},polygonEnd:function(){Zc.point=Qc,Zc.lineStart=Jc,Zc.lineEnd=ns},result:function(){var t=Wc?[Vc/Wc,$c/Wc]:Gc?[jc/Gc,Xc/Gc]:Hc?[Fc/Hc,Ic/Hc]:[NaN,NaN];return Fc=Ic=Hc=jc=Xc=Gc=Vc=$c=Wc=0,t}};function Qc(t,n){Fc+=t,Ic+=n,++Hc}function Jc(){Zc.point=Kc}function Kc(t,n){Zc.point=ts,Qc(Yc=t,Bc=n)}function ts(t,n){var e=t-Yc,r=n-Bc,i=Ka(e*e+r*r);jc+=i*(Yc+t)/2,Xc+=i*(Bc+n)/2,Gc+=i,Qc(Yc=t,Bc=n)}function ns(){Zc.point=Qc}function es(){Zc.point=is}function rs(){os(qc,Oc)}function is(t,n){Zc.point=os,Qc(qc=Yc=t,Oc=Bc=n)}function os(t,n){var e=t-Yc,r=n-Bc,i=Ka(e*e+r*r);jc+=i*(Yc+t)/2,Xc+=i*(Bc+n)/2,Gc+=i,Vc+=(i=Bc*t-Yc*n)*(Yc+t),$c+=i*(Bc+n),Wc+=3*i,Qc(Yc=t,Bc=n)}function as(t){this._context=t}as.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,Ba)}},result:iu};var us,fs,cs,ss,ls,hs=Pa(),ds={point:iu,lineStart:function(){ds.point=ps},lineEnd:function(){us&&vs(fs,cs),ds.point=iu},polygonStart:function(){us=!0},polygonEnd:function(){us=null},result:function(){var t=+hs;return hs.reset(),t}};function ps(t,n){ds.point=vs,fs=ss=t,cs=ls=n}function vs(t,n){ss-=t,ls-=n,hs.add(Ka(ss*ss+ls*ls)),ss=t,ls=n}function gs(){this._string=[]}function ys(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function _s(t){return function(n){var e=new bs;for(var r in t)e[r]=t[r];return e.stream=n,e}}function bs(){}function ms(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),su(e,t.stream(Uc)),n(Uc.result()),null!=r&&t.clipExtent(r),t}function xs(t,n,e){return ms(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),a=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,u=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([a,u])},e)}function ws(t,n,e){return xs(t,[[0,0],n],e)}function Ms(t,n,e){return ms(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,a=-i*e[0][1];t.scale(150*i).translate([o,a])},e)}function As(t,n,e){return ms(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],a=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,a])},e)}gs.prototype={_radius:4.5,_circle:ys(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=ys(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},bs.prototype={constructor:bs,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Ts=16,Ns=Ga(30*Ia);function Ss(t,n){return+n?function(t,n){function e(r,i,o,a,u,f,c,s,l,h,d,p,v,g){var y=c-r,_=s-i,b=y*y+_*_;if(b>4*n&&v--){var m=a+h,x=u+d,w=f+p,M=Ka(m*m+x*x+w*w),A=eu(w/=M),T=Ha(Ha(w)-1)<Da||Ha(o-l)<Da?(o+l)/2:Xa(x,m),N=t(T,A),S=N[0],E=N[1],k=S-r,C=E-i,P=_*k-y*C;(P*P/b>n||Ha((y*k+_*C)/b-.5)>.3||a*h+u*d+f*p<Ns)&&(e(r,i,o,a,u,f,S,E,T,m/=M,x/=M,w,v,g),g.point(S,E),e(S,E,T,m,x,w,c,s,l,h,d,p,v,g))}}return function(n){var r,i,o,a,u,f,c,s,l,h,d,p,v={point:g,lineStart:y,lineEnd:b,polygonStart:function(){n.polygonStart(),v.lineStart=m},polygonEnd:function(){n.polygonEnd(),v.lineStart=y}};function g(e,r){e=t(e,r),n.point(e[0],e[1])}function y(){s=NaN,v.point=_,n.lineStart()}function _(r,i){var o=Au([r,i]),a=t(r,i);e(s,l,c,h,d,p,s=a[0],l=a[1],c=r,h=o[0],d=o[1],p=o[2],Ts,n),n.point(s,l)}function b(){v.point=g,n.lineEnd()}function m(){y(),v.point=x,v.lineEnd=w}function x(t,n){_(r=t,n),i=s,o=l,a=h,u=d,f=p,v.point=_}function w(){e(s,l,c,h,d,p,i,o,r,a,u,f,Ts,n),v.lineEnd=b,b()}return v}}(t,n):function(t){return _s({point:function(n,e){n=t(n,e),this.stream.point(n[0],n[1])}})}(t)}var Es=_s({point:function(t,n){this.stream.point(t*Ia,n*Ia)}});function ks(t,n,e,r){var i=Ga(r),o=Qa(r),a=i*t,u=o*t,f=i/t,c=o/t,s=(o*e-i*n)/t,l=(o*n+i*e)/t;function h(t,r){return[a*t-u*r+n,e-u*t-a*r]}return h.invert=function(t,n){return[f*t-c*n+s,l-c*t-f*n]},h}function Cs(t){return Ps(function(){return t})()}function Ps(t){var n,e,r,i,o,a,u,f,c,s,l=150,h=480,d=250,p=0,v=0,g=0,y=0,_=0,b=0,m=null,x=Gf,w=null,M=mc,A=.5;function T(t){return f(t[0]*Ia,t[1]*Ia)}function N(t){return(t=f.invert(t[0],t[1]))&&[t[0]*Fa,t[1]*Fa]}function S(){var t=ks(l,0,0,b).apply(null,n(p,v)),r=(b?ks:function(t,n,e){function r(r,i){return[n+t*r,e-t*i]}return r.invert=function(r,i){return[(r-n)/t,(e-i)/t]},r})(l,h-t[0],d-t[1],b);return e=kf(g,y,_),u=Sf(n,r),f=Sf(e,u),a=Ss(u,A),E()}function E(){return c=s=null,T}return T.stream=function(t){return c&&s===t?c:c=Es(function(t){return _s({point:function(n,e){var r=t(n,e);return this.stream.point(r[0],r[1])}})}(e)(x(a(M(s=t)))))},T.preclip=function(t){return arguments.length?(x=t,m=void 0,E()):x},T.postclip=function(t){return arguments.length?(M=t,w=r=i=o=null,E()):M},T.clipAngle=function(t){return arguments.length?(x=+t?Vf(m=t*Ia):(m=null,Gf),E()):m*Fa},T.clipExtent=function(t){return arguments.length?(M=null==t?(w=r=i=o=null,mc):Zf(w=+t[0][0],r=+t[0][1],i=+t[1][0],o=+t[1][1]),E()):null==w?null:[[w,r],[i,o]]},T.scale=function(t){return arguments.length?(l=+t,S()):l},T.translate=function(t){return arguments.length?(h=+t[0],d=+t[1],S()):[h,d]},T.center=function(t){return arguments.length?(p=t[0]%360*Ia,v=t[1]%360*Ia,S()):[p*Fa,v*Fa]},T.rotate=function(t){return arguments.length?(g=t[0]%360*Ia,y=t[1]%360*Ia,_=t.length>2?t[2]%360*Ia:0,S()):[g*Fa,y*Fa,_*Fa]},T.angle=function(t){return arguments.length?(b=t%360*Ia,S()):b*Fa},T.precision=function(t){return arguments.length?(a=Ss(u,A=t*t),E()):Ka(A)},T.fitExtent=function(t,n){return xs(T,t,n)},T.fitSize=function(t,n){return ws(T,t,n)},T.fitWidth=function(t,n){return Ms(T,t,n)},T.fitHeight=function(t,n){return As(T,t,n)},function(){return n=t.apply(this,arguments),T.invert=n.invert&&N,S()}}function zs(t){var n=0,e=qa/3,r=Ps(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*Ia,e=t[1]*Ia):[n*Fa,e*Fa]},i}function Rs(t,n){var e=Qa(t),r=(e+Qa(n))/2;if(Ha(r)<Da)return function(t){var n=Ga(t);function e(t,e){return[t*n,Qa(e)/n]}return e.invert=function(t,e){return[t/n,eu(e*n)]},e}(t);var i=1+e*(2*r-e),o=Ka(i)/r;function a(t,n){var e=Ka(i-2*r*Qa(n))/r;return[e*Qa(t*=r),o-e*Ga(t)]}return a.invert=function(t,n){var e=o-n;return[Xa(t,Ha(e))/r*Ja(e),eu((i-(t*t+e*e)*r*r)/(2*r))]},a}function Ls(){return zs(Rs).scale(155.424).center([0,33.6442])}function Ds(){return Ls().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function Us(t){return function(n,e){var r=Ga(n),i=Ga(e),o=t(r*i);return[o*i*Qa(n),o*Qa(e)]}}function qs(t){return function(n,e){var r=Ka(n*n+e*e),i=t(r),o=Qa(i),a=Ga(i);return[Xa(n*o,r*a),eu(r&&e*o/r)]}}var Os=Us(function(t){return Ka(2/(1+t))});Os.invert=qs(function(t){return 2*eu(t/2)});var Ys=Us(function(t){return(t=nu(t))&&t/Qa(t)});function Bs(t,n){return[t,Wa(tu((Oa+n)/2))]}function Fs(t){var n,e,r,i=Cs(t),o=i.center,a=i.scale,u=i.translate,f=i.clipExtent,c=null;function s(){var o=qa*a(),u=i(Rf(i.rotate()).invert([0,0]));return f(null==c?[[u[0]-o,u[1]-o],[u[0]+o,u[1]+o]]:t===Bs?[[Math.max(u[0]-o,c),n],[Math.min(u[0]+o,e),r]]:[[c,Math.max(u[1]-o,n)],[e,Math.min(u[1]+o,r)]])}return i.scale=function(t){return arguments.length?(a(t),s()):a()},i.translate=function(t){return arguments.length?(u(t),s()):u()},i.center=function(t){return arguments.length?(o(t),s()):o()},i.clipExtent=function(t){return arguments.length?(null==t?c=n=e=r=null:(c=+t[0][0],n=+t[0][1],e=+t[1][0],r=+t[1][1]),s()):null==c?null:[[c,n],[e,r]]},s()}function Is(t){return tu((Oa+t)/2)}function Hs(t,n){var e=Ga(t),r=t===n?Qa(t):Wa(e/Ga(n))/Wa(Is(n)/Is(t)),i=e*Za(Is(t),r)/r;if(!r)return Bs;function o(t,n){i>0?n<-Oa+Da&&(n=-Oa+Da):n>Oa-Da&&(n=Oa-Da);var e=i/Za(Is(n),r);return[e*Qa(r*t),i-e*Ga(r*t)]}return o.invert=function(t,n){var e=i-n,o=Ja(r)*Ka(t*t+e*e);return[Xa(t,Ha(e))/r*Ja(e),2*ja(Za(i/o,1/r))-Oa]},o}function js(t,n){return[t,n]}function Xs(t,n){var e=Ga(t),r=t===n?Qa(t):(e-Ga(n))/(n-t),i=e/r+t;if(Ha(r)<Da)return js;function o(t,n){var e=i-n,o=r*t;return[e*Qa(o),i-e*Ga(o)]}return o.invert=function(t,n){var e=i-n;return[Xa(t,Ha(e))/r*Ja(e),i-Ja(r)*Ka(t*t+e*e)]},o}Ys.invert=qs(function(t){return t}),Bs.invert=function(t,n){return[t,2*ja($a(n))-Oa]},js.invert=js;var Gs=1.340264,Vs=-.081106,$s=893e-6,Ws=.003796,Zs=Ka(3)/2;function Qs(t,n){var e=eu(Zs*Qa(n)),r=e*e,i=r*r*r;return[t*Ga(e)/(Zs*(Gs+3*Vs*r+i*(7*$s+9*Ws*r))),e*(Gs+Vs*r+i*($s+Ws*r))]}function Js(t,n){var e=Ga(n),r=Ga(t)*e;return[e*Qa(t)/r,Qa(n)/r]}function Ks(t,n,e,r){return 1===t&&1===n&&0===e&&0===r?mc:_s({point:function(i,o){this.stream.point(i*t+e,o*n+r)}})}function tl(t,n){var e=n*n,r=e*e;return[t*(.8707-.131979*e+r*(r*(.003971*e-.001529*r)-.013791)),n*(1.007226+e*(.015085+r*(.028874*e-.044475-.005916*r)))]}function nl(t,n){return[Ga(n)*Qa(t),Qa(n)]}function el(t,n){var e=Ga(n),r=1+Ga(t)*e;return[e*Qa(t)/r,Qa(n)/r]}function rl(t,n){return[Wa(tu((Oa+n)/2)),-t]}function il(t,n){return t.parent===n.parent?1:2}function ol(t,n){return t+n.x}function al(t,n){return Math.max(t,n.y)}function ul(t){var n=0,e=t.children,r=e&&e.length;if(r)for(;--r>=0;)n+=e[r].value;else n=1;t.value=n}function fl(t,n){var e,r,i,o,a,u=new hl(t),f=+t.value&&(u.value=t.value),c=[u];for(null==n&&(n=cl);e=c.pop();)if(f&&(e.value=+e.data.value),(i=n(e.data))&&(a=i.length))for(e.children=new Array(a),o=a-1;o>=0;--o)c.push(r=e.children[o]=new hl(i[o])),r.parent=e,r.depth=e.depth+1;return u.eachBefore(ll)}function cl(t){return t.children}function sl(t){t.data=t.data.data}function ll(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function hl(t){this.data=t,this.depth=this.height=0,this.parent=null}Qs.invert=function(t,n){for(var e,r=n,i=r*r,o=i*i*i,a=0;a<12&&(o=(i=(r-=e=(r*(Gs+Vs*i+o*($s+Ws*i))-n)/(Gs+3*Vs*i+o*(7*$s+9*Ws*i)))*r)*i*i,!(Ha(e)<Ua));++a);return[Zs*t*(Gs+3*Vs*i+o*(7*$s+9*Ws*i))/Ga(r),eu(Qa(r)/Zs)]},Js.invert=qs(ja),tl.invert=function(t,n){var e,r=n,i=25;do{var o=r*r,a=o*o;r-=e=(r*(1.007226+o*(.015085+a*(.028874*o-.044475-.005916*a)))-n)/(1.007226+o*(.045255+a*(.259866*o-.311325-.005916*11*a)))}while(Ha(e)>Da&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},nl.invert=qs(eu),el.invert=qs(function(t){return 2*ja(t)}),rl.invert=function(t,n){return[-n,2*ja($a(t))-Oa]},hl.prototype=fl.prototype={constructor:hl,count:function(){return this.eachAfter(ul)},each:function(t){var n,e,r,i,o=this,a=[o];do{for(n=a.reverse(),a=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r<i;++r)a.push(e[r])}while(a.length);return this},eachAfter:function(t){for(var n,e,r,i=this,o=[i],a=[];i=o.pop();)if(a.push(i),n=i.children)for(e=0,r=n.length;e<r;++e)o.push(n[e]);for(;i=a.pop();)t(i);return this},eachBefore:function(t){for(var n,e,r=this,i=[r];r=i.pop();)if(t(r),n=r.children)for(e=n.length-1;e>=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return fl(this).eachBefore(sl)}};var dl=Array.prototype.slice;function pl(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(dl.call(t))).length,o=[];r<i;)n=t[r],e&&yl(e,n)?++r:(e=bl(o=vl(o,n)),r=0);return e}function vl(t,n){var e,r;if(_l(n,t))return[n];for(e=0;e<t.length;++e)if(gl(n,t[e])&&_l(ml(t[e],n),t))return[t[e],n];for(e=0;e<t.length-1;++e)for(r=e+1;r<t.length;++r)if(gl(ml(t[e],t[r]),n)&&gl(ml(t[e],n),t[r])&&gl(ml(t[r],n),t[e])&&_l(xl(t[e],t[r],n),t))return[t[e],t[r],n];throw new Error}function gl(t,n){var e=t.r-n.r,r=n.x-t.x,i=n.y-t.y;return e<0||e*e<r*r+i*i}function yl(t,n){var e=t.r-n.r+1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function _l(t,n){for(var e=0;e<n.length;++e)if(!yl(t,n[e]))return!1;return!0}function bl(t){switch(t.length){case 1:return{x:(n=t[0]).x,y:n.y,r:n.r};case 2:return ml(t[0],t[1]);case 3:return xl(t[0],t[1],t[2])}var n}function ml(t,n){var e=t.x,r=t.y,i=t.r,o=n.x,a=n.y,u=n.r,f=o-e,c=a-r,s=u-i,l=Math.sqrt(f*f+c*c);return{x:(e+o+f/l*s)/2,y:(r+a+c/l*s)/2,r:(l+i+u)/2}}function xl(t,n,e){var r=t.x,i=t.y,o=t.r,a=n.x,u=n.y,f=n.r,c=e.x,s=e.y,l=e.r,h=r-a,d=r-c,p=i-u,v=i-s,g=f-o,y=l-o,_=r*r+i*i-o*o,b=_-a*a-u*u+f*f,m=_-c*c-s*s+l*l,x=d*p-h*v,w=(p*m-v*b)/(2*x)-r,M=(v*g-p*y)/x,A=(d*b-h*m)/(2*x)-i,T=(h*y-d*g)/x,N=M*M+T*T-1,S=2*(o+w*M+A*T),E=w*w+A*A-o*o,k=-(N?(S+Math.sqrt(S*S-4*N*E))/(2*N):E/S);return{x:r+w+M*k,y:i+A+T*k,r:k}}function wl(t,n,e){var r,i,o,a,u=t.x-n.x,f=t.y-n.y,c=u*u+f*f;c?(i=n.r+e.r,i*=i,a=t.r+e.r,i>(a*=a)?(r=(c+a-i)/(2*c),o=Math.sqrt(Math.max(0,a/c-r*r)),e.x=t.x-r*u-o*f,e.y=t.y-r*f+o*u):(r=(c+i-a)/(2*c),o=Math.sqrt(Math.max(0,i/c-r*r)),e.x=n.x+r*u-o*f,e.y=n.y+r*f+o*u)):(e.x=n.x+e.r,e.y=n.y)}function Ml(t,n){var e=t.r+n.r-1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function Al(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function Tl(t){this._=t,this.next=null,this.previous=null}function Nl(t){if(!(i=t.length))return 0;var n,e,r,i,o,a,u,f,c,s,l;if((n=t[0]).x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;wl(e,n,r=t[2]),n=new Tl(n),e=new Tl(e),r=new Tl(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(u=3;u<i;++u){wl(n._,e._,r=t[u]),r=new Tl(r),f=e.next,c=n.previous,s=e._.r,l=n._.r;do{if(s<=l){if(Ml(f._,r._)){e=f,n.next=e,e.previous=n,--u;continue t}s+=f._.r,f=f.next}else{if(Ml(c._,r._)){(n=c).next=e,e.previous=n,--u;continue t}l+=c._.r,c=c.previous}}while(f!==c.next);for(r.previous=n,r.next=e,n.next=e.previous=e=r,o=Al(n);(r=r.next)!==e;)(a=Al(r))<o&&(n=r,o=a);e=n.next}for(n=[e._],r=e;(r=r.next)!==e;)n.push(r._);for(r=pl(n),u=0;u<i;++u)(n=t[u]).x-=r.x,n.y-=r.y;return r.r}function Sl(t){if("function"!=typeof t)throw new Error;return t}function El(){return 0}function kl(t){return function(){return t}}function Cl(t){return Math.sqrt(t.value)}function Pl(t){return function(n){n.children||(n.r=Math.max(0,+t(n)||0))}}function zl(t,n){return function(e){if(r=e.children){var r,i,o,a=r.length,u=t(e)*n||0;if(u)for(i=0;i<a;++i)r[i].r+=u;if(o=Nl(r),u)for(i=0;i<a;++i)r[i].r-=u;e.r=o+u}}}function Rl(t){return function(n){var e=n.parent;n.r*=t,e&&(n.x=e.x+t*n.x,n.y=e.y+t*n.y)}}function Ll(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function Dl(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(r-n)/t.value;++u<f;)(o=a[u]).y0=e,o.y1=i,o.x0=n,o.x1=n+=o.value*c}var Ul="$",ql={depth:-1},Ol={};function Yl(t){return t.id}function Bl(t){return t.parentId}function Fl(t,n){return t.parent===n.parent?1:2}function Il(t){var n=t.children;return n?n[0]:t.t}function Hl(t){var n=t.children;return n?n[n.length-1]:t.t}function jl(t,n,e){var r=e/(n.i-t.i);n.c-=r,n.s+=e,t.c+=r,n.z+=e,n.m+=e}function Xl(t,n,e){return t.a.parent===n.parent?t.a:e}function Gl(t,n){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=n}function Vl(t,n,e,r,i){for(var o,a=t.children,u=-1,f=a.length,c=t.value&&(i-e)/t.value;++u<f;)(o=a[u]).x0=n,o.x1=r,o.y0=e,o.y1=e+=o.value*c}Gl.prototype=Object.create(hl.prototype);var $l=(1+Math.sqrt(5))/2;function Wl(t,n,e,r,i,o){for(var a,u,f,c,s,l,h,d,p,v,g,y=[],_=n.children,b=0,m=0,x=_.length,w=n.value;b<x;){f=i-e,c=o-r;do{s=_[m++].value}while(!s&&m<x);for(l=h=s,g=s*s*(v=Math.max(c/f,f/c)/(w*t)),p=Math.max(h/g,g/l);m<x;++m){if(s+=u=_[m].value,u<l&&(l=u),u>h&&(h=u),g=s*s*v,(d=Math.max(h/g,g/l))>p){s-=u;break}p=d}y.push(a={value:s,dice:f<c,children:_.slice(b,m)}),a.dice?Dl(a,e,r,i,w?r+=c*s/w:o):Vl(a,e,r,w?e+=f*s/w:i,o),w-=s,b=m}return y}var Zl=function t(n){function e(t,e,r,i,o){Wl(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}($l);var Ql=function t(n){function e(t,e,r,i,o){if((a=t._squarify)&&a.ratio===n)for(var a,u,f,c,s,l=-1,h=a.length,d=t.value;++l<h;){for(f=(u=a[l]).children,c=u.value=0,s=f.length;c<s;++c)u.value+=f[c].value;u.dice?Dl(u,e,r,i,r+=(o-r)*u.value/d):Vl(u,e,r,e+=(i-e)*u.value/d,o),d-=u.value}else t._squarify=a=Wl(n,t,e,r,i,o),a.ratio=n}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}($l);function Jl(t,n){return t[0]-n[0]||t[1]-n[1]}function Kl(t){for(var n,e,r,i=t.length,o=[0,1],a=2,u=2;u<i;++u){for(;a>1&&(n=t[o[a-2]],e=t[o[a-1]],r=t[u],(e[0]-n[0])*(r[1]-n[1])-(e[1]-n[1])*(r[0]-n[0])<=0);)--a;o[a++]=u}return o.slice(0,a)}function th(){return Math.random()}var nh=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(th),eh=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(th),rh=function t(n){function e(){var t=eh.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(th),ih=function t(n){function e(t){return function(){for(var e=0,r=0;r<t;++r)e+=n();return e}}return e.source=t,e}(th),oh=function t(n){function e(t){var e=ih.source(n)(t);return function(){return e()/t}}return e.source=t,e}(th),ah=function t(n){function e(t){return function(){return-Math.log(1-n())/t}}return e.source=t,e}(th),uh=Array.prototype,fh=uh.map,ch=uh.slice,sh={name:"implicit"};function lh(t){var n=Ki(),e=[],r=sh;function i(i){var o=i+"",a=n.get(o);if(!a){if(r!==sh)return r;n.set(o,a=e.push(i))}return t[(a-1)%t.length]}return t=null==t?[]:ch.call(t),i.domain=function(t){if(!arguments.length)return e.slice();e=[],n=Ki();for(var r,o,a=-1,u=t.length;++a<u;)n.has(o=(r=t[a])+"")||n.set(o,e.push(r));return i},i.range=function(n){return arguments.length?(t=ch.call(n),i):t.slice()},i.unknown=function(t){return arguments.length?(r=t,i):r},i.copy=function(){return lh().domain(e).range(t).unknown(r)},i}function hh(){var t,n,e=lh().unknown(void 0),r=e.domain,i=e.range,o=[0,1],a=!1,u=0,f=0,c=.5;function s(){var e=r().length,s=o[1]<o[0],l=o[s-0],h=o[1-s];t=(h-l)/Math.max(1,e-u+2*f),a&&(t=Math.floor(t)),l+=(h-l-t*(e-u))*c,n=t*(1-u),a&&(l=Math.round(l),n=Math.round(n));var d=g(e).map(function(n){return l+t*n});return i(s?d.reverse():d)}return delete e.unknown,e.domain=function(t){return arguments.length?(r(t),s()):r()},e.range=function(t){return arguments.length?(o=[+t[0],+t[1]],s()):o.slice()},e.rangeRound=function(t){return o=[+t[0],+t[1]],a=!0,s()},e.bandwidth=function(){return n},e.step=function(){return t},e.round=function(t){return arguments.length?(a=!!t,s()):a},e.padding=function(t){return arguments.length?(u=f=Math.max(0,Math.min(1,t)),s()):u},e.paddingInner=function(t){return arguments.length?(u=Math.max(0,Math.min(1,t)),s()):u},e.paddingOuter=function(t){return arguments.length?(f=Math.max(0,Math.min(1,t)),s()):f},e.align=function(t){return arguments.length?(c=Math.max(0,Math.min(1,t)),s()):c},e.copy=function(){return hh().domain(r()).range(o).round(a).paddingInner(u).paddingOuter(f).align(c)},s()}function dh(t){return function(){return t}}function ph(t){return+t}var vh=[0,1];function gh(t,n){return(n-=t=+t)?function(e){return(e-t)/n}:dh(n)}function yh(t,n,e,r){var i=t[0],o=t[1],a=n[0],u=n[1];return o<i?(i=e(o,i),a=r(u,a)):(i=e(i,o),a=r(a,u)),function(t){return a(i(t))}}function _h(t,n,e,r){var o=Math.min(t.length,n.length)-1,a=new Array(o),u=new Array(o),f=-1;for(t[o]<t[0]&&(t=t.slice().reverse(),n=n.slice().reverse());++f<o;)a[f]=e(t[f],t[f+1]),u[f]=r(n[f],n[f+1]);return function(n){var e=i(t,n,1,o)-1;return u[e](a[e](n))}}function bh(t,n){return n.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function mh(t,n){var e,r,i,o=vh,a=vh,u=me,f=!1;function c(){return e=Math.min(o.length,a.length)>2?_h:yh,r=i=null,s}function s(n){return(r||(r=e(o,a,f?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}(t):t,u)))(+n)}return s.invert=function(t){return(i||(i=e(a,o,gh,f?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}(n):n)))(+t)},s.domain=function(t){return arguments.length?(o=fh.call(t,ph),c()):o.slice()},s.range=function(t){return arguments.length?(a=ch.call(t),c()):a.slice()},s.rangeRound=function(t){return a=ch.call(t),u=xe,c()},s.clamp=function(t){return arguments.length?(f=!!t,c()):f},s.interpolate=function(t){return arguments.length?(u=t,c()):u},c()}function xh(n){var e=n.domain;return n.ticks=function(t){var n=e();return m(n[0],n[n.length-1],null==t?10:t)},n.tickFormat=function(n,r){return function(n,e,r){var i,o=n[0],a=n[n.length-1],u=w(o,a,null==e?10:e);switch((r=ba(null==r?",f":r)).type){case"s":var f=Math.max(Math.abs(o),Math.abs(a));return null!=r.precision||isNaN(i=ka(u,f))||(r.precision=i),t.formatPrefix(r,f);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=Ca(u,Math.max(Math.abs(o),Math.abs(a))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=Ea(u))||(r.precision=i-2*("%"===r.type))}return t.format(r)}(e(),n,r)},n.nice=function(t){null==t&&(t=10);var r,i=e(),o=0,a=i.length-1,u=i[o],f=i[a];return f<u&&(r=u,u=f,f=r,r=o,o=a,a=r),(r=x(u,f,t))>0?r=x(u=Math.floor(u/r)*r,f=Math.ceil(f/r)*r,t):r<0&&(r=x(u=Math.ceil(u*r)/r,f=Math.floor(f*r)/r,t)),r>0?(i[o]=Math.floor(u/r)*r,i[a]=Math.ceil(f/r)*r,e(i)):r<0&&(i[o]=Math.ceil(u*r)/r,i[a]=Math.floor(f*r)/r,e(i)),n},n}function wh(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],a=t[i];return a<o&&(e=r,r=i,i=e,e=o,o=a,a=e),t[r]=n.floor(o),t[i]=n.ceil(a),t}function Mh(t,n){return(n=Math.log(n/t))?function(e){return Math.log(e/t)/n}:dh(n)}function Ah(t,n){return t<0?function(e){return-Math.pow(-n,e)*Math.pow(-t,1-e)}:function(e){return Math.pow(n,e)*Math.pow(t,1-e)}}function Th(t){return isFinite(t)?+("1e"+t):t<0?0:t}function Nh(t){return 10===t?Th:t===Math.E?Math.exp:function(n){return Math.pow(t,n)}}function Sh(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(n){return Math.log(n)/t})}function Eh(t){return function(n){return-t(-n)}}function kh(t,n){return t<0?-Math.pow(-t,n):Math.pow(t,n)}function Ch(){var t=1,n=mh(function(n,e){return(e=kh(e,t)-(n=kh(n,t)))?function(r){return(kh(r,t)-n)/e}:dh(e)},function(n,e){return e=kh(e,t)-(n=kh(n,t)),function(r){return kh(n+e*r,1/t)}}),e=n.domain;return n.exponent=function(n){return arguments.length?(t=+n,e(e())):t},n.copy=function(){return bh(n,Ch().exponent(t))},xh(n)}var Ph=new Date,zh=new Date;function Rh(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n<e-t?n:e},i.offset=function(t,e){return n(t=new Date(+t),null==e?1:Math.floor(e)),t},i.range=function(e,r,o){var a,u=[];if(e=i.ceil(e),o=null==o?1:Math.floor(o),!(e<r&&o>0))return u;do{u.push(a=new Date(+e)),n(e,o),t(e)}while(a<e&&e<r);return u},i.filter=function(e){return Rh(function(n){if(n>=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return Ph.setTime(+n),zh.setTime(+r),t(Ph),t(zh),Math.floor(e(Ph,zh))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}var Lh=Rh(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});Lh.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Rh(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):Lh:null};var Dh=Lh.range,Uh=6e4,qh=6048e5,Oh=Rh(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Yh=Oh.range,Bh=Rh(function(t){t.setTime(Math.floor(t/Uh)*Uh)},function(t,n){t.setTime(+t+n*Uh)},function(t,n){return(n-t)/Uh},function(t){return t.getMinutes()}),Fh=Bh.range,Ih=Rh(function(t){var n=t.getTimezoneOffset()*Uh%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),Hh=Ih.range,jh=Rh(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uh)/864e5},function(t){return t.getDate()-1}),Xh=jh.range;function Gh(t){return Rh(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Uh)/qh})}var Vh=Gh(0),$h=Gh(1),Wh=Gh(2),Zh=Gh(3),Qh=Gh(4),Jh=Gh(5),Kh=Gh(6),td=Vh.range,nd=$h.range,ed=Wh.range,rd=Zh.range,id=Qh.range,od=Jh.range,ad=Kh.range,ud=Rh(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),fd=ud.range,cd=Rh(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});cd.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Rh(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var sd=cd.range,ld=Rh(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Uh)},function(t,n){return(n-t)/Uh},function(t){return t.getUTCMinutes()}),hd=ld.range,dd=Rh(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),pd=dd.range,vd=Rh(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),gd=vd.range;function yd(t){return Rh(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/qh})}var _d=yd(0),bd=yd(1),md=yd(2),xd=yd(3),wd=yd(4),Md=yd(5),Ad=yd(6),Td=_d.range,Nd=bd.range,Sd=md.range,Ed=xd.range,kd=wd.range,Cd=Md.range,Pd=Ad.range,zd=Rh(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Rd=zd.range,Ld=Rh(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});Ld.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Rh(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var Dd=Ld.range;function Ud(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function qd(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Od(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function Yd(t){var n=t.dateTime,e=t.date,r=t.time,i=t.periods,o=t.days,a=t.shortDays,u=t.months,f=t.shortMonths,c=Vd(i),s=$d(i),l=Vd(o),h=$d(o),d=Vd(a),p=$d(a),v=Vd(u),g=$d(u),y=Vd(f),_=$d(f),b={a:function(t){return a[t.getDay()]},A:function(t){return o[t.getDay()]},b:function(t){return f[t.getMonth()]},B:function(t){return u[t.getMonth()]},c:null,d:pp,e:pp,f:bp,H:vp,I:gp,j:yp,L:_p,m:mp,M:xp,p:function(t){return i[+(t.getHours()>=12)]},Q:Wp,s:Zp,S:wp,u:Mp,U:Ap,V:Tp,w:Np,W:Sp,x:null,X:null,y:Ep,Y:kp,Z:Cp,"%":$p},m={a:function(t){return a[t.getUTCDay()]},A:function(t){return o[t.getUTCDay()]},b:function(t){return f[t.getUTCMonth()]},B:function(t){return u[t.getUTCMonth()]},c:null,d:Pp,e:Pp,f:Up,H:zp,I:Rp,j:Lp,L:Dp,m:qp,M:Op,p:function(t){return i[+(t.getUTCHours()>=12)]},Q:Wp,s:Zp,S:Yp,u:Bp,U:Fp,V:Ip,w:Hp,W:jp,x:null,X:null,y:Xp,Y:Gp,Z:Vp,"%":$p},x={a:function(t,n,e){var r=d.exec(n.slice(e));return r?(t.w=p[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=l.exec(n.slice(e));return r?(t.w=h[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=y.exec(n.slice(e));return r?(t.m=_[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=v.exec(n.slice(e));return r?(t.m=g[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,e,r){return A(t,n,e,r)},d:ip,e:ip,f:sp,H:ap,I:ap,j:op,L:cp,m:rp,M:up,p:function(t,n,e){var r=c.exec(n.slice(e));return r?(t.p=s[r[0].toLowerCase()],e+r[0].length):-1},Q:hp,s:dp,S:fp,u:Zd,U:Qd,V:Jd,w:Wd,W:Kd,x:function(t,n,r){return A(t,e,n,r)},X:function(t,n,e){return A(t,r,n,e)},y:np,Y:tp,Z:ep,"%":lp};function w(t,n){return function(e){var r,i,o,a=[],u=-1,f=0,c=t.length;for(e instanceof Date||(e=new Date(+e));++u<c;)37===t.charCodeAt(u)&&(a.push(t.slice(f,u)),null!=(i=Fd[r=t.charAt(++u)])?r=t.charAt(++u):i="e"===r?" ":"0",(o=n[r])&&(r=o(e,i)),a.push(r),f=u+1);return a.push(t.slice(f,u)),a.join("")}}function M(t,n){return function(e){var r,i,o=Od(1900);if(A(o,t,e+="",0)!=e.length)return null;if("Q"in o)return new Date(o.Q);if("p"in o&&(o.H=o.H%12+12*o.p),"V"in o){if(o.V<1||o.V>53)return null;"w"in o||(o.w=1),"Z"in o?(i=(r=qd(Od(o.y))).getUTCDay(),r=i>4||0===i?bd.ceil(r):bd(r),r=vd.offset(r,7*(o.V-1)),o.y=r.getUTCFullYear(),o.m=r.getUTCMonth(),o.d=r.getUTCDate()+(o.w+6)%7):(i=(r=n(Od(o.y))).getDay(),r=i>4||0===i?$h.ceil(r):$h(r),r=jh.offset(r,7*(o.V-1)),o.y=r.getFullYear(),o.m=r.getMonth(),o.d=r.getDate()+(o.w+6)%7)}else("W"in o||"U"in o)&&("w"in o||(o.w="u"in o?o.u%7:"W"in o?1:0),i="Z"in o?qd(Od(o.y)).getUTCDay():n(Od(o.y)).getDay(),o.m=0,o.d="W"in o?(o.w+6)%7+7*o.W-(i+5)%7:o.w+7*o.U-(i+6)%7);return"Z"in o?(o.H+=o.Z/100|0,o.M+=o.Z%100,qd(o)):n(o)}}function A(t,n,e,r){for(var i,o,a=0,u=n.length,f=e.length;a<u;){if(r>=f)return-1;if(37===(i=n.charCodeAt(a++))){if(i=n.charAt(a++),!(o=x[i in Fd?n.charAt(a++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}return b.x=w(e,b),b.X=w(r,b),b.c=w(n,b),m.x=w(e,m),m.X=w(r,m),m.c=w(n,m),{format:function(t){var n=w(t+="",b);return n.toString=function(){return t},n},parse:function(t){var n=M(t+="",Ud);return n.toString=function(){return t},n},utcFormat:function(t){var n=w(t+="",m);return n.toString=function(){return t},n},utcParse:function(t){var n=M(t,qd);return n.toString=function(){return t},n}}}var Bd,Fd={"-":"",_:" ",0:"0"},Id=/^\s*\d+/,Hd=/^%/,jd=/[\\^$*+?|[\]().{}]/g;function Xd(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<e?new Array(e-o+1).join(n)+i:i)}function Gd(t){return t.replace(jd,"\\$&")}function Vd(t){return new RegExp("^(?:"+t.map(Gd).join("|")+")","i")}function $d(t){for(var n={},e=-1,r=t.length;++e<r;)n[t[e].toLowerCase()]=e;return n}function Wd(t,n,e){var r=Id.exec(n.slice(e,e+1));return r?(t.w=+r[0],e+r[0].length):-1}function Zd(t,n,e){var r=Id.exec(n.slice(e,e+1));return r?(t.u=+r[0],e+r[0].length):-1}function Qd(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.U=+r[0],e+r[0].length):-1}function Jd(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.V=+r[0],e+r[0].length):-1}function Kd(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.W=+r[0],e+r[0].length):-1}function tp(t,n,e){var r=Id.exec(n.slice(e,e+4));return r?(t.y=+r[0],e+r[0].length):-1}function np(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),e+r[0].length):-1}function ep(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function rp(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function ip(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function op(t,n,e){var r=Id.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function ap(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function up(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function fp(t,n,e){var r=Id.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function cp(t,n,e){var r=Id.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function sp(t,n,e){var r=Id.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function lp(t,n,e){var r=Hd.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function hp(t,n,e){var r=Id.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function dp(t,n,e){var r=Id.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function pp(t,n){return Xd(t.getDate(),n,2)}function vp(t,n){return Xd(t.getHours(),n,2)}function gp(t,n){return Xd(t.getHours()%12||12,n,2)}function yp(t,n){return Xd(1+jh.count(cd(t),t),n,3)}function _p(t,n){return Xd(t.getMilliseconds(),n,3)}function bp(t,n){return _p(t,n)+"000"}function mp(t,n){return Xd(t.getMonth()+1,n,2)}function xp(t,n){return Xd(t.getMinutes(),n,2)}function wp(t,n){return Xd(t.getSeconds(),n,2)}function Mp(t){var n=t.getDay();return 0===n?7:n}function Ap(t,n){return Xd(Vh.count(cd(t),t),n,2)}function Tp(t,n){var e=t.getDay();return t=e>=4||0===e?Qh(t):Qh.ceil(t),Xd(Qh.count(cd(t),t)+(4===cd(t).getDay()),n,2)}function Np(t){return t.getDay()}function Sp(t,n){return Xd($h.count(cd(t),t),n,2)}function Ep(t,n){return Xd(t.getFullYear()%100,n,2)}function kp(t,n){return Xd(t.getFullYear()%1e4,n,4)}function Cp(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Xd(n/60|0,"0",2)+Xd(n%60,"0",2)}function Pp(t,n){return Xd(t.getUTCDate(),n,2)}function zp(t,n){return Xd(t.getUTCHours(),n,2)}function Rp(t,n){return Xd(t.getUTCHours()%12||12,n,2)}function Lp(t,n){return Xd(1+vd.count(Ld(t),t),n,3)}function Dp(t,n){return Xd(t.getUTCMilliseconds(),n,3)}function Up(t,n){return Dp(t,n)+"000"}function qp(t,n){return Xd(t.getUTCMonth()+1,n,2)}function Op(t,n){return Xd(t.getUTCMinutes(),n,2)}function Yp(t,n){return Xd(t.getUTCSeconds(),n,2)}function Bp(t){var n=t.getUTCDay();return 0===n?7:n}function Fp(t,n){return Xd(_d.count(Ld(t),t),n,2)}function Ip(t,n){var e=t.getUTCDay();return t=e>=4||0===e?wd(t):wd.ceil(t),Xd(wd.count(Ld(t),t)+(4===Ld(t).getUTCDay()),n,2)}function Hp(t){return t.getUTCDay()}function jp(t,n){return Xd(bd.count(Ld(t),t),n,2)}function Xp(t,n){return Xd(t.getUTCFullYear()%100,n,2)}function Gp(t,n){return Xd(t.getUTCFullYear()%1e4,n,4)}function Vp(){return"+0000"}function $p(){return"%"}function Wp(t){return+t}function Zp(t){return Math.floor(+t/1e3)}function Qp(n){return Bd=Yd(n),t.timeFormat=Bd.format,t.timeParse=Bd.parse,t.utcFormat=Bd.utcFormat,t.utcParse=Bd.utcParse,Bd}Qp({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Jp=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat("%Y-%m-%dT%H:%M:%S.%LZ");var Kp=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse("%Y-%m-%dT%H:%M:%S.%LZ"),tv=1e3,nv=60*tv,ev=60*nv,rv=24*ev,iv=7*rv,ov=30*rv,av=365*rv;function uv(t){return new Date(t)}function fv(t){return t instanceof Date?+t:+new Date(+t)}function cv(t,n,r,i,o,a,u,f,c){var s=mh(gh,ve),l=s.invert,h=s.domain,d=c(".%L"),p=c(":%S"),v=c("%I:%M"),g=c("%I %p"),y=c("%a %d"),_=c("%b %d"),b=c("%B"),m=c("%Y"),x=[[u,1,tv],[u,5,5*tv],[u,15,15*tv],[u,30,30*tv],[a,1,nv],[a,5,5*nv],[a,15,15*nv],[a,30,30*nv],[o,1,ev],[o,3,3*ev],[o,6,6*ev],[o,12,12*ev],[i,1,rv],[i,2,2*rv],[r,1,iv],[n,1,ov],[n,3,3*ov],[t,1,av]];function M(e){return(u(e)<e?d:a(e)<e?p:o(e)<e?v:i(e)<e?g:n(e)<e?r(e)<e?y:_:t(e)<e?b:m)(e)}function A(n,r,i,o){if(null==n&&(n=10),"number"==typeof n){var a=Math.abs(i-r)/n,u=e(function(t){return t[2]}).right(x,a);u===x.length?(o=w(r/av,i/av,n),n=t):u?(o=(u=x[a/x[u-1][2]<x[u][2]/a?u-1:u])[1],n=u[0]):(o=Math.max(w(r,i,n),1),n=f)}return null==o?n:n.every(o)}return s.invert=function(t){return new Date(l(t))},s.domain=function(t){return arguments.length?h(fh.call(t,fv)):h().map(uv)},s.ticks=function(t,n){var e,r=h(),i=r[0],o=r[r.length-1],a=o<i;return a&&(e=i,i=o,o=e),e=(e=A(t,i,o,n))?e.range(i,o+1):[],a?e.reverse():e},s.tickFormat=function(t,n){return null==n?M:c(n)},s.nice=function(t,n){var e=h();return(t=A(t,e[0],e[e.length-1],n))?h(wh(e,t)):s},s.copy=function(){return bh(s,cv(t,n,r,i,o,a,u,f,c))},s}function sv(t){for(var n=t.length/6|0,e=new Array(n),r=0;r<n;)e[r]="#"+t.slice(6*r,6*++r);return e}var lv=sv("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),hv=sv("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),dv=sv("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),pv=sv("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),vv=sv("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),gv=sv("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),yv=sv("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),_v=sv("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),bv=sv("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f");function mv(t){return le(t[t.length-1])}var xv=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(sv),wv=mv(xv),Mv=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(sv),Av=mv(Mv),Tv=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(sv),Nv=mv(Tv),Sv=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(sv),Ev=mv(Sv),kv=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(sv),Cv=mv(kv),Pv=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(sv),zv=mv(Pv),Rv=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(sv),Lv=mv(Rv),Dv=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(sv),Uv=mv(Dv),qv=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(sv),Ov=mv(qv),Yv=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(sv),Bv=mv(Yv),Fv=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(sv),Iv=mv(Fv),Hv=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(sv),jv=mv(Hv),Xv=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(sv),Gv=mv(Xv),Vv=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(sv),$v=mv(Vv),Wv=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(sv),Zv=mv(Wv),Qv=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(sv),Jv=mv(Qv),Kv=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(sv),tg=mv(Kv),ng=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(sv),eg=mv(ng),rg=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(sv),ig=mv(rg),og=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(sv),ag=mv(og),ug=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(sv),fg=mv(ug),cg=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(sv),sg=mv(cg),lg=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(sv),hg=mv(lg),dg=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(sv),pg=mv(dg),vg=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(sv),gg=mv(vg),yg=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(sv),_g=mv(yg),bg=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(sv),mg=mv(bg),xg=Ge(Kn(300,.5,0),Kn(-240,.5,1)),wg=Ge(Kn(-100,.75,.35),Kn(80,1.5,.8)),Mg=Ge(Kn(260,.75,.35),Kn(80,1.5,.8)),Ag=Kn();var Tg=bn(),Ng=Math.PI/3,Sg=2*Math.PI/3;function Eg(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}}var kg=Eg(sv("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),Cg=Eg(sv("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),Pg=Eg(sv("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),zg=Eg(sv("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));function Rg(t){return function(){return t}}var Lg=Math.abs,Dg=Math.atan2,Ug=Math.cos,qg=Math.max,Og=Math.min,Yg=Math.sin,Bg=Math.sqrt,Fg=1e-12,Ig=Math.PI,Hg=Ig/2,jg=2*Ig;function Xg(t){return t>=1?Hg:t<=-1?-Hg:Math.asin(t)}function Gg(t){return t.innerRadius}function Vg(t){return t.outerRadius}function $g(t){return t.startAngle}function Wg(t){return t.endAngle}function Zg(t){return t&&t.padAngle}function Qg(t,n,e,r,i,o,a){var u=t-e,f=n-r,c=(a?o:-o)/Bg(u*u+f*f),s=c*f,l=-c*u,h=t+s,d=n+l,p=e+s,v=r+l,g=(h+p)/2,y=(d+v)/2,_=p-h,b=v-d,m=_*_+b*b,x=i-o,w=h*v-p*d,M=(b<0?-1:1)*Bg(qg(0,x*x*m-w*w)),A=(w*b-_*M)/m,T=(-w*_-b*M)/m,N=(w*b+_*M)/m,S=(-w*_+b*M)/m,E=A-g,k=T-y,C=N-g,P=S-y;return E*E+k*k>C*C+P*P&&(A=N,T=S),{cx:A,cy:T,x01:-s,y01:-l,x11:A*(i/x-1),y11:T*(i/x-1)}}function Jg(t){this._context=t}function Kg(t){return new Jg(t)}function ty(t){return t[0]}function ny(t){return t[1]}function ey(){var t=ty,n=ny,e=Rg(!0),r=null,i=Kg,o=null;function a(a){var u,f,c,s=a.length,l=!1;for(null==r&&(o=i(c=Gi())),u=0;u<=s;++u)!(u<s&&e(f=a[u],u,a))===l&&((l=!l)?o.lineStart():o.lineEnd()),l&&o.point(+t(f,u,a),+n(f,u,a));if(c)return o=null,c+""||null}return a.x=function(n){return arguments.length?(t="function"==typeof n?n:Rg(+n),a):t},a.y=function(t){return arguments.length?(n="function"==typeof t?t:Rg(+t),a):n},a.defined=function(t){return arguments.length?(e="function"==typeof t?t:Rg(!!t),a):e},a.curve=function(t){return arguments.length?(i=t,null!=r&&(o=i(r)),a):i},a.context=function(t){return arguments.length?(null==t?r=o=null:o=i(r=t),a):r},a}function ry(){var t=ty,n=null,e=Rg(0),r=ny,i=Rg(!0),o=null,a=Kg,u=null;function f(f){var c,s,l,h,d,p=f.length,v=!1,g=new Array(p),y=new Array(p);for(null==o&&(u=a(d=Gi())),c=0;c<=p;++c){if(!(c<p&&i(h=f[c],c,f))===v)if(v=!v)s=c,u.areaStart(),u.lineStart();else{for(u.lineEnd(),u.lineStart(),l=c-1;l>=s;--l)u.point(g[l],y[l]);u.lineEnd(),u.areaEnd()}v&&(g[c]=+t(h,c,f),y[c]=+e(h,c,f),u.point(n?+n(h,c,f):g[c],r?+r(h,c,f):y[c]))}if(d)return u=null,d+""||null}function c(){return ey().defined(i).curve(a).context(o)}return f.x=function(e){return arguments.length?(t="function"==typeof e?e:Rg(+e),n=null,f):t},f.x0=function(n){return arguments.length?(t="function"==typeof n?n:Rg(+n),f):t},f.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:Rg(+t),f):n},f.y=function(t){return arguments.length?(e="function"==typeof t?t:Rg(+t),r=null,f):e},f.y0=function(t){return arguments.length?(e="function"==typeof t?t:Rg(+t),f):e},f.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:Rg(+t),f):r},f.lineX0=f.lineY0=function(){return c().x(t).y(e)},f.lineY1=function(){return c().x(t).y(r)},f.lineX1=function(){return c().x(n).y(e)},f.defined=function(t){return arguments.length?(i="function"==typeof t?t:Rg(!!t),f):i},f.curve=function(t){return arguments.length?(a=t,null!=o&&(u=a(o)),f):a},f.context=function(t){return arguments.length?(null==t?o=u=null:u=a(o=t),f):o},f}function iy(t,n){return n<t?-1:n>t?1:n>=t?0:NaN}function oy(t){return t}Jg.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var ay=fy(Kg);function uy(t){this._curve=t}function fy(t){function n(n){return new uy(t(n))}return n._curve=t,n}function cy(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(fy(t)):n()._curve},t}function sy(){return cy(ey().curve(ay))}function ly(){var t=ry().curve(ay),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return cy(e())},delete t.lineX0,t.lineEndAngle=function(){return cy(r())},delete t.lineX1,t.lineInnerRadius=function(){return cy(i())},delete t.lineY0,t.lineOuterRadius=function(){return cy(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(fy(t)):n()._curve},t}function hy(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}uy.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var dy=Array.prototype.slice;function py(t){return t.source}function vy(t){return t.target}function gy(t){var n=py,e=vy,r=ty,i=ny,o=null;function a(){var a,u=dy.call(arguments),f=n.apply(this,u),c=e.apply(this,u);if(o||(o=a=Gi()),t(o,+r.apply(this,(u[0]=f,u)),+i.apply(this,u),+r.apply(this,(u[0]=c,u)),+i.apply(this,u)),a)return o=null,a+""||null}return a.source=function(t){return arguments.length?(n=t,a):n},a.target=function(t){return arguments.length?(e=t,a):e},a.x=function(t){return arguments.length?(r="function"==typeof t?t:Rg(+t),a):r},a.y=function(t){return arguments.length?(i="function"==typeof t?t:Rg(+t),a):i},a.context=function(t){return arguments.length?(o=null==t?null:t,a):o},a}function yy(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function _y(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function by(t,n,e,r,i){var o=hy(n,e),a=hy(n,e=(e+i)/2),u=hy(r,e),f=hy(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(a[0],a[1],u[0],u[1],f[0],f[1])}var my={draw:function(t,n){var e=Math.sqrt(n/Ig);t.moveTo(e,0),t.arc(0,0,e,0,jg)}},xy={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},wy=Math.sqrt(1/3),My=2*wy,Ay={draw:function(t,n){var e=Math.sqrt(n/My),r=e*wy;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},Ty=Math.sin(Ig/10)/Math.sin(7*Ig/10),Ny=Math.sin(jg/10)*Ty,Sy=-Math.cos(jg/10)*Ty,Ey={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=Ny*e,i=Sy*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var a=jg*o/5,u=Math.cos(a),f=Math.sin(a);t.lineTo(f*e,-u*e),t.lineTo(u*r-f*i,f*r+u*i)}t.closePath()}},ky={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},Cy=Math.sqrt(3),Py={draw:function(t,n){var e=-Math.sqrt(n/(3*Cy));t.moveTo(0,2*e),t.lineTo(-Cy*e,-e),t.lineTo(Cy*e,-e),t.closePath()}},zy=Math.sqrt(3)/2,Ry=1/Math.sqrt(12),Ly=3*(Ry/2+1),Dy={draw:function(t,n){var e=Math.sqrt(n/Ly),r=e/2,i=e*Ry,o=r,a=e*Ry+e,u=-o,f=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(u,f),t.lineTo(-.5*r-zy*i,zy*r+-.5*i),t.lineTo(-.5*o-zy*a,zy*o+-.5*a),t.lineTo(-.5*u-zy*f,zy*u+-.5*f),t.lineTo(-.5*r+zy*i,-.5*i-zy*r),t.lineTo(-.5*o+zy*a,-.5*a-zy*o),t.lineTo(-.5*u+zy*f,-.5*f-zy*u),t.closePath()}},Uy=[my,xy,Ay,ky,Ey,Py,Dy];function qy(){}function Oy(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function Yy(t){this._context=t}function By(t){this._context=t}function Fy(t){this._context=t}function Iy(t,n){this._basis=new Yy(t),this._beta=n}Yy.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Oy(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Oy(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},By.prototype={areaStart:qy,areaEnd:qy,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Oy(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Fy.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Oy(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Iy.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],a=t[e]-i,u=n[e]-o,f=-1;++f<=e;)r=f/e,this._basis.point(this._beta*t[f]+(1-this._beta)*(i+r*a),this._beta*n[f]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var Hy=function t(n){function e(t){return 1===n?new Yy(t):new Iy(t,n)}return e.beta=function(n){return t(+n)},e}(.85);function jy(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function Xy(t,n){this._context=t,this._k=(1-n)/6}Xy.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:jy(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:jy(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Gy=function t(n){function e(t){return new Xy(t,n)}return e.tension=function(n){return t(+n)},e}(0);function Vy(t,n){this._context=t,this._k=(1-n)/6}Vy.prototype={areaStart:qy,areaEnd:qy,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:jy(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var $y=function t(n){function e(t){return new Vy(t,n)}return e.tension=function(n){return t(+n)},e}(0);function Wy(t,n){this._context=t,this._k=(1-n)/6}Wy.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:jy(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Zy=function t(n){function e(t){return new Wy(t,n)}return e.tension=function(n){return t(+n)},e}(0);function Qy(t,n,e){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>Fg){var u=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,f=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*u-t._x0*t._l12_2a+t._x2*t._l01_2a)/f,i=(i*u-t._y0*t._l12_2a+t._y2*t._l01_2a)/f}if(t._l23_a>Fg){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,s=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*c+t._x1*t._l23_2a-n*t._l12_2a)/s,a=(a*c+t._y1*t._l23_2a-e*t._l12_2a)/s}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function Jy(t,n){this._context=t,this._alpha=n}Jy.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:Qy(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var Ky=function t(n){function e(t){return n?new Jy(t,n):new Xy(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function t_(t,n){this._context=t,this._alpha=n}t_.prototype={areaStart:qy,areaEnd:qy,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Qy(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var n_=function t(n){function e(t){return n?new t_(t,n):new Vy(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function e_(t,n){this._context=t,this._alpha=n}e_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Qy(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var r_=function t(n){function e(t){return n?new e_(t,n):new Wy(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function i_(t){this._context=t}function o_(t){return t<0?-1:1}function a_(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(e-t._y1)/(i||r<0&&-0),u=(o*i+a*r)/(r+i);return(o_(o)+o_(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(u))||0}function u_(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function f_(t,n,e){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*n,o-u,a-u*e,o,a)}function c_(t){this._context=t}function s_(t){this._context=new l_(t)}function l_(t){this._context=t}function h_(t){this._context=t}function d_(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],n=1;n<r-1;++n)i[n]=1,o[n]=4,a[n]=4*t[n]+2*t[n+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*t[r-1]+t[r],n=1;n<r;++n)e=i[n]/o[n-1],o[n]-=e,a[n]-=e*a[n-1];for(i[r-1]=a[r-1]/o[r-1],n=r-2;n>=0;--n)i[n]=(a[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n<r-1;++n)o[n]=2*t[n+1]-i[n+1];return[i,o]}function p_(t,n){this._context=t,this._t=n}function v_(t,n){if((i=t.length)>1)for(var e,r,i,o=1,a=t[n[0]],u=a.length;o<i;++o)for(r=a,a=t[n[o]],e=0;e<u;++e)a[e][1]+=a[e][0]=isNaN(r[e][1])?r[e][0]:r[e][1]}function g_(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e}function y_(t,n){return t[n]}function __(t){var n=t.map(b_);return g_(t).sort(function(t,e){return n[t]-n[e]})}function b_(t){for(var n,e=0,r=-1,i=t.length;++r<i;)(n=+t[r][1])&&(e+=n);return e}function m_(t){return function(){return t}}function x_(t){return t[0]}function w_(t){return t[1]}function M_(){this._=null}function A_(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function T_(t,n){var e=n,r=n.R,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function N_(t,n){var e=n,r=n.L,i=e.U;i?i.L===e?i.L=r:i.R=r:t._=r,r.U=i,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function S_(t){for(;t.L;)t=t.L;return t}function E_(t,n,e,r){var i=[null,null],o=J_.push(i)-1;return i.left=t,i.right=n,e&&C_(i,t,n,e),r&&C_(i,n,t,r),Z_[t.index].halfedges.push(o),Z_[n.index].halfedges.push(o),i}function k_(t,n,e){var r=[n,e];return r.left=t,r}function C_(t,n,e,r){t[0]||t[1]?t.left===e?t[1]=r:t[0]=r:(t[0]=r,t.left=n,t.right=e)}function P_(t,n,e,r,i){var o,a=t[0],u=t[1],f=a[0],c=a[1],s=0,l=1,h=u[0]-f,d=u[1]-c;if(o=n-f,h||!(o>0)){if(o/=h,h<0){if(o<s)return;o<l&&(l=o)}else if(h>0){if(o>l)return;o>s&&(s=o)}if(o=r-f,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>s&&(s=o)}else if(h>0){if(o<s)return;o<l&&(l=o)}if(o=e-c,d||!(o>0)){if(o/=d,d<0){if(o<s)return;o<l&&(l=o)}else if(d>0){if(o>l)return;o>s&&(s=o)}if(o=i-c,d||!(o<0)){if(o/=d,d<0){if(o>l)return;o>s&&(s=o)}else if(d>0){if(o<s)return;o<l&&(l=o)}return!(s>0||l<1)||(s>0&&(t[0]=[f+s*h,c+s*d]),l<1&&(t[1]=[f+l*h,c+l*d]),!0)}}}}}function z_(t,n,e,r,i){var o=t[1];if(o)return!0;var a,u,f=t[0],c=t.left,s=t.right,l=c[0],h=c[1],d=s[0],p=s[1],v=(l+d)/2,g=(h+p)/2;if(p===h){if(v<n||v>=r)return;if(l>d){if(f){if(f[1]>=i)return}else f=[v,e];o=[v,i]}else{if(f){if(f[1]<e)return}else f=[v,i];o=[v,e]}}else if(u=g-(a=(l-d)/(p-h))*v,a<-1||a>1)if(l>d){if(f){if(f[1]>=i)return}else f=[(e-u)/a,e];o=[(i-u)/a,i]}else{if(f){if(f[1]<e)return}else f=[(i-u)/a,i];o=[(e-u)/a,e]}else if(h<p){if(f){if(f[0]>=r)return}else f=[n,a*n+u];o=[r,a*r+u]}else{if(f){if(f[0]<n)return}else f=[r,a*r+u];o=[n,a*n+u]}return t[0]=f,t[1]=o,!0}function R_(t,n){var e=t.site,r=n.left,i=n.right;return e===i&&(i=r,r=e),i?Math.atan2(i[1]-r[1],i[0]-r[0]):(e===r?(r=n[1],i=n[0]):(r=n[0],i=n[1]),Math.atan2(r[0]-i[0],i[1]-r[1]))}function L_(t,n){return n[+(n.left!==t.site)]}function D_(t,n){return n[+(n.left===t.site)]}i_.prototype={areaStart:qy,areaEnd:qy,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}},c_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:f_(this,this._t0,u_(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(n=+n,(t=+t)!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,f_(this,u_(this,e=a_(this,t,n)),e);break;default:f_(this,this._t0,e=a_(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(s_.prototype=Object.create(c_.prototype)).point=function(t,n){c_.prototype.point.call(this,n,t)},l_.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},h_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=d_(t),i=d_(n),o=0,a=1;a<e;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[a],n[a]);(this._line||0!==this._line&&1===e)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,n){this._x.push(+t),this._y.push(+n)}},p_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},M_.prototype={constructor:M_,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=S_(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(T_(this,e),e=(t=e).U),e.C=!1,r.C=!0,N_(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(N_(this,e),e=(t=e).U),e.C=!1,r.C=!0,T_(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,a=t.R;if(e=o?a?S_(a):o:a,i?i.L===t?i.L=e:i.R=e:this._=e,o&&a?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==a?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=a,a.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,T_(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,N_(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,T_(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,N_(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,T_(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,N_(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var U_,q_=[];function O_(){A_(this),this.x=this.y=this.arc=this.site=this.cy=null}function Y_(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var a=i[0],u=i[1],f=r[0]-a,c=r[1]-u,s=o[0]-a,l=o[1]-u,h=2*(f*l-c*s);if(!(h>=-tb)){var d=f*f+c*c,p=s*s+l*l,v=(l*d-c*p)/h,g=(f*p-s*d)/h,y=q_.pop()||new O_;y.arc=t,y.site=i,y.x=v+a,y.y=(y.cy=g+u)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,b=Q_._;b;)if(y.y<b.y||y.y===b.y&&y.x<=b.x){if(!b.L){_=b.P;break}b=b.L}else{if(!b.R){_=b;break}b=b.R}Q_.insert(_,y),_||(U_=y)}}}}function B_(t){var n=t.circle;n&&(n.P||(U_=n.N),Q_.remove(n),q_.push(n),A_(n),t.circle=null)}var F_=[];function I_(){A_(this),this.edge=this.site=this.circle=null}function H_(t){var n=F_.pop()||new I_;return n.site=t,n}function j_(t){B_(t),W_.remove(t),F_.push(t),A_(t)}function X_(t){var n=t.circle,e=n.x,r=n.cy,i=[e,r],o=t.P,a=t.N,u=[t];j_(t);for(var f=o;f.circle&&Math.abs(e-f.circle.x)<K_&&Math.abs(r-f.circle.cy)<K_;)o=f.P,u.unshift(f),j_(f),f=o;u.unshift(f),B_(f);for(var c=a;c.circle&&Math.abs(e-c.circle.x)<K_&&Math.abs(r-c.circle.cy)<K_;)a=c.N,u.push(c),j_(c),c=a;u.push(c),B_(c);var s,l=u.length;for(s=1;s<l;++s)c=u[s],f=u[s-1],C_(c.edge,f.site,c.site,i);f=u[0],(c=u[l-1]).edge=E_(f.site,c.site,null,i),Y_(f),Y_(c)}function G_(t){for(var n,e,r,i,o=t[0],a=t[1],u=W_._;u;)if((r=V_(u,a)-o)>K_)u=u.L;else{if(!((i=o-$_(u,a))>K_)){r>-K_?(n=u.P,e=u):i>-K_?(n=u,e=u.N):n=e=u;break}if(!u.R){n=u;break}u=u.R}!function(t){Z_[t.index]={site:t,halfedges:[]}}(t);var f=H_(t);if(W_.insert(n,f),n||e){if(n===e)return B_(n),e=H_(n.site),W_.insert(f,e),f.edge=e.edge=E_(n.site,f.site),Y_(n),void Y_(e);if(e){B_(n),B_(e);var c=n.site,s=c[0],l=c[1],h=t[0]-s,d=t[1]-l,p=e.site,v=p[0]-s,g=p[1]-l,y=2*(h*g-d*v),_=h*h+d*d,b=v*v+g*g,m=[(g*_-d*b)/y+s,(h*b-v*_)/y+l];C_(e.edge,c,p,m),f.edge=E_(c,t,null,m),e.edge=E_(t,p,null,m),Y_(n),Y_(e)}else f.edge=E_(n.site,f.site)}}function V_(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var a=t.P;if(!a)return-1/0;var u=(e=a.site)[0],f=e[1],c=f-n;if(!c)return u;var s=u-r,l=1/o-1/c,h=s/c;return l?(-h+Math.sqrt(h*h-2*l*(s*s/(-2*c)-f+c/2+i-o/2)))/l+r:(r+u)/2}function $_(t,n){var e=t.N;if(e)return V_(e,n);var r=t.site;return r[1]===n?r[0]:1/0}var W_,Z_,Q_,J_,K_=1e-6,tb=1e-12;function nb(t,n){return n[1]-t[1]||n[0]-t[0]}function eb(t,n){var e,r,i,o=t.sort(nb).pop();for(J_=[],Z_=new Array(t.length),W_=new M_,Q_=new M_;;)if(i=U_,o&&(!i||o[1]<i.y||o[1]===i.y&&o[0]<i.x))o[0]===e&&o[1]===r||(G_(o),e=o[0],r=o[1]),o=t.pop();else{if(!i)break;X_(i.arc)}if(function(){for(var t,n,e,r,i=0,o=Z_.length;i<o;++i)if((t=Z_[i])&&(r=(n=t.halfedges).length)){var a=new Array(r),u=new Array(r);for(e=0;e<r;++e)a[e]=e,u[e]=R_(t,J_[n[e]]);for(a.sort(function(t,n){return u[n]-u[t]}),e=0;e<r;++e)u[e]=n[a[e]];for(e=0;e<r;++e)n[e]=u[e]}}(),n){var a=+n[0][0],u=+n[0][1],f=+n[1][0],c=+n[1][1];!function(t,n,e,r){for(var i,o=J_.length;o--;)z_(i=J_[o],t,n,e,r)&&P_(i,t,n,e,r)&&(Math.abs(i[0][0]-i[1][0])>K_||Math.abs(i[0][1]-i[1][1])>K_)||delete J_[o]}(a,u,f,c),function(t,n,e,r){var i,o,a,u,f,c,s,l,h,d,p,v,g=Z_.length,y=!0;for(i=0;i<g;++i)if(o=Z_[i]){for(a=o.site,u=(f=o.halfedges).length;u--;)J_[f[u]]||f.splice(u,1);for(u=0,c=f.length;u<c;)p=(d=D_(o,J_[f[u]]))[0],v=d[1],l=(s=L_(o,J_[f[++u%c]]))[0],h=s[1],(Math.abs(p-l)>K_||Math.abs(v-h)>K_)&&(f.splice(u,0,J_.push(k_(a,d,Math.abs(p-t)<K_&&r-v>K_?[t,Math.abs(l-t)<K_?h:r]:Math.abs(v-r)<K_&&e-p>K_?[Math.abs(h-r)<K_?l:e,r]:Math.abs(p-e)<K_&&v-n>K_?[e,Math.abs(l-e)<K_?h:n]:Math.abs(v-n)<K_&&p-t>K_?[Math.abs(h-n)<K_?l:t,n]:null))-1),++c);c&&(y=!1)}if(y){var _,b,m,x=1/0;for(i=0,y=null;i<g;++i)(o=Z_[i])&&(m=(_=(a=o.site)[0]-t)*_+(b=a[1]-n)*b)<x&&(x=m,y=o);if(y){var w=[t,n],M=[t,r],A=[e,r],T=[e,n];y.halfedges.push(J_.push(k_(a=y.site,w,M))-1,J_.push(k_(a,M,A))-1,J_.push(k_(a,A,T))-1,J_.push(k_(a,T,w))-1)}}for(i=0;i<g;++i)(o=Z_[i])&&(o.halfedges.length||delete Z_[i])}(a,u,f,c)}this.edges=J_,this.cells=Z_,W_=Q_=J_=Z_=null}function rb(t){return function(){return t}}function ib(t,n,e){this.target=t,this.type=n,this.transform=e}function ob(t,n,e){this.k=t,this.x=n,this.y=e}eb.prototype={constructor:eb,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return L_(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,a,u,f,c,s=e.site,l=-1,h=n[i[o-1]],d=h.left===s?h.right:h.left;++l<o;)a=d,d=(h=n[i[l]]).left===s?h.right:h.left,a&&d&&r<a.index&&r<d.index&&(f=a,c=d,((u=s)[0]-c[0])*(f[1]-u[1])-(u[0]-f[0])*(c[1]-u[1])<0)&&t.push([s.data,a.data,d.data])}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,n,e){for(var r,i,o=this,a=o._found||0,u=o.cells.length;!(i=o.cells[a]);)if(++a>=u)return null;var f=t-i.site[0],c=n-i.site[1],s=f*f+c*c;do{i=o.cells[r=a],a=null,i.halfedges.forEach(function(e){var r=o.edges[e],u=r.left;if(u!==i.site&&u||(u=r.right)){var f=t-u[0],c=n-u[1],l=f*f+c*c;l<s&&(s=l,a=u.index)}})}while(null!==a);return o._found=r,null==e||s<=e*e?i.site:null}},ob.prototype={constructor:ob,scale:function(t){return 1===t?this:new ob(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new ob(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var ab=new ob(1,0,0);function ub(t){return t.__zoom||ab}function fb(){t.event.stopImmediatePropagation()}function cb(){t.event.preventDefault(),t.event.stopImmediatePropagation()}function sb(){return!t.event.button}function lb(){var t,n,e=this;return e instanceof SVGElement?(t=(e=e.ownerSVGElement||e).width.baseVal.value,n=e.height.baseVal.value):(t=e.clientWidth,n=e.clientHeight),[[0,0],[t,n]]}function hb(){return this.__zoom||ab}function db(){return-t.event.deltaY*(t.event.deltaMode?120:1)/500}function pb(){return"ontouchstart"in this}function vb(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],a=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}ub.prototype=ob.prototype,t.version="5.7.0",t.bisect=i,t.bisectRight=i,t.bisectLeft=o,t.ascending=n,t.bisector=e,t.cross=function(t,n,e){var r,i,o,u,f=t.length,c=n.length,s=new Array(f*c);for(null==e&&(e=a),r=o=0;r<f;++r)for(u=t[r],i=0;i<c;++i,++o)s[o]=e(u,n[i]);return s},t.descending=function(t,n){return n<t?-1:n>t?1:n>=t?0:NaN},t.deviation=c,t.extent=s,t.histogram=function(){var t=v,n=s,e=M;function r(r){var o,a,u=r.length,f=new Array(u);for(o=0;o<u;++o)f[o]=t(r[o],o,r);var c=n(f),s=c[0],l=c[1],h=e(f,s,l);Array.isArray(h)||(h=w(s,l,h),h=g(Math.ceil(s/h)*h,l,h));for(var d=h.length;h[0]<=s;)h.shift(),--d;for(;h[d-1]>l;)h.pop(),--d;var p,v=new Array(d+1);for(o=0;o<=d;++o)(p=v[o]=[]).x0=o>0?h[o-1]:s,p.x1=o<d?h[o]:l;for(o=0;o<u;++o)s<=(a=f[o])&&a<=l&&v[i(h,a,0,d)].push(r[o]);return v}return r.value=function(n){return arguments.length?(t="function"==typeof n?n:p(n),r):t},r.domain=function(t){return arguments.length?(n="function"==typeof t?t:p([t[0],t[1]]),r):n},r.thresholds=function(t){return arguments.length?(e="function"==typeof t?t:Array.isArray(t)?p(h.call(t)):p(t),r):e},r},t.thresholdFreedmanDiaconis=function(t,e,r){return t=d.call(t,u).sort(n),Math.ceil((r-e)/(2*(A(t,.75)-A(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,n,e){return Math.ceil((e-n)/(3.5*c(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=M,t.max=T,t.mean=function(t,n){var e,r=t.length,i=r,o=-1,a=0;if(null==n)for(;++o<r;)isNaN(e=u(t[o]))?--i:a+=e;else for(;++o<r;)isNaN(e=u(n(t[o],o,t)))?--i:a+=e;if(i)return a/i},t.median=function(t,e){var r,i=t.length,o=-1,a=[];if(null==e)for(;++o<i;)isNaN(r=u(t[o]))||a.push(r);else for(;++o<i;)isNaN(r=u(e(t[o],o,t)))||a.push(r);return A(a.sort(n),.5)},t.merge=N,t.min=S,t.pairs=function(t,n){null==n&&(n=a);for(var e=0,r=t.length-1,i=t[0],o=new Array(r<0?0:r);e<r;)o[e]=n(i,i=t[++e]);return o},t.permute=function(t,n){for(var e=n.length,r=new Array(e);e--;)r[e]=t[n[e]];return r},t.quantile=A,t.range=g,t.scan=function(t,e){if(r=t.length){var r,i,o=0,a=0,u=t[a];for(null==e&&(e=n);++o<r;)(e(i=t[o],u)<0||0!==e(u,u))&&(u=i,a=o);return 0===e(u,u)?a:void 0}},t.shuffle=function(t,n,e){for(var r,i,o=(null==e?t.length:e)-(n=null==n?0:+n);o;)i=Math.random()*o--|0,r=t[o+n],t[o+n]=t[i+n],t[i+n]=r;return t},t.sum=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i<r;)(e=+t[i])&&(o+=e);else for(;++i<r;)(e=+n(t[i],i,t))&&(o+=e);return o},t.ticks=m,t.tickIncrement=x,t.tickStep=w,t.transpose=E,t.variance=f,t.zip=function(){return E(arguments)},t.axisTop=function(t){return B(z,t)},t.axisRight=function(t){return B(R,t)},t.axisBottom=function(t){return B(L,t)},t.axisLeft=function(t){return B(D,t)},t.brush=function(){return Ri(wi)},t.brushX=function(){return Ri(mi)},t.brushY=function(){return Ri(xi)},t.brushSelection=function(t){var n=t.__brush;return n?n.dim.output(n.selection):null},t.chord=function(){var t=0,n=null,e=null,r=null;function i(i){var o,a,u,f,c,s,l=i.length,h=[],d=g(l),p=[],v=[],y=v.groups=new Array(l),_=new Array(l*l);for(o=0,c=-1;++c<l;){for(a=0,s=-1;++s<l;)a+=i[c][s];h.push(a),p.push(g(l)),o+=a}for(n&&d.sort(function(t,e){return n(h[t],h[e])}),e&&p.forEach(function(t,n){t.sort(function(t,r){return e(i[n][t],i[n][r])})}),f=(o=Yi(0,Oi-t*l)/o)?t:Oi/l,a=0,c=-1;++c<l;){for(u=a,s=-1;++s<l;){var b=d[c],m=p[b][s],x=i[b][m],w=a,M=a+=x*o;_[m*l+b]={index:b,subindex:m,startAngle:w,endAngle:M,value:x}}y[b]={index:b,startAngle:u,endAngle:a,value:h[b]},a+=f}for(c=-1;++c<l;)for(s=c-1;++s<l;){var A=_[s*l+c],T=_[c*l+s];(A.value||T.value)&&v.push(A.value<T.value?{source:T,target:A}:{source:A,target:T})}return r?v.sort(r):v}return i.padAngle=function(n){return arguments.length?(t=Yi(0,n),i):t},i.sortGroups=function(t){return arguments.length?(n=t,i):n},i.sortSubgroups=function(t){return arguments.length?(e=t,i):e},i.sortChords=function(t){return arguments.length?(null==t?r=null:(n=t,r=function(t,e){return n(t.source.value+t.target.value,e.source.value+e.target.value)})._=t,i):r&&r._;var n},i},t.ribbon=function(){var t=Vi,n=$i,e=Wi,r=Zi,i=Qi,o=null;function a(){var a,u=Bi.call(arguments),f=t.apply(this,u),c=n.apply(this,u),s=+e.apply(this,(u[0]=f,u)),l=r.apply(this,u)-qi,h=i.apply(this,u)-qi,d=s*Li(l),p=s*Di(l),v=+e.apply(this,(u[0]=c,u)),g=r.apply(this,u)-qi,y=i.apply(this,u)-qi;if(o||(o=a=Gi()),o.moveTo(d,p),o.arc(0,0,s,l,h),l===g&&h===y||(o.quadraticCurveTo(0,0,v*Li(g),v*Di(g)),o.arc(0,0,v,g,y)),o.quadraticCurveTo(0,0,d,p),o.closePath(),a)return o=null,a+""||null}return a.radius=function(t){return arguments.length?(e="function"==typeof t?t:Fi(+t),a):e},a.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:Fi(+t),a):r},a.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:Fi(+t),a):i},a.source=function(n){return arguments.length?(t=n,a):t},a.target=function(t){return arguments.length?(n=t,a):n},a.context=function(t){return arguments.length?(o=null==t?null:t,a):o},a},t.nest=function(){var t,n,e,r=[],i=[];function o(e,i,a,u){if(i>=r.length)return null!=t&&e.sort(t),null!=n?n(e):e;for(var f,c,s,l=-1,h=e.length,d=r[i++],p=Ki(),v=a();++l<h;)(s=p.get(f=d(c=e[l])+""))?s.push(c):p.set(f,[c]);return p.each(function(t,n){u(v,n,o(t,i,a,u))}),v}return e={object:function(t){return o(t,0,to,no)},map:function(t){return o(t,0,eo,ro)},entries:function(t){return function t(e,o){if(++o>r.length)return e;var a,u=i[o-1];return null!=n&&o>=r.length?a=e.entries():(a=[],e.each(function(n,e){a.push({key:e,values:t(n,o)})})),null!=u?a.sort(function(t,n){return u(t.key,n.key)}):a}(o(t,0,eo,ro),0)},key:function(t){return r.push(t),e},sortKeys:function(t){return i[r.length-1]=t,e},sortValues:function(n){return t=n,e},rollup:function(t){return n=t,e}}},t.set=ao,t.map=Ki,t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.entries=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},t.color=vn,t.rgb=bn,t.hsl=Mn,t.lab=Un,t.hcl=Hn,t.lch=function(t,n,e,r){return 1===arguments.length?In(t):new jn(e,n,t,null==r?1:r)},t.gray=function(t,n){return new qn(t,0,0,null==n?1:n)},t.cubehelix=Kn,t.contours=go,t.contourDensity=function(){var t=bo,n=mo,e=xo,r=960,i=500,o=20,a=2,u=3*o,f=r+2*u>>a,c=i+2*u>>a,s=co(20);function l(r){var i=new Float32Array(f*c),l=new Float32Array(f*c);r.forEach(function(r,o,s){var l=+t(r,o,s)+u>>a,h=+n(r,o,s)+u>>a,d=+e(r,o,s);l>=0&&l<f&&h>=0&&h<c&&(i[l+h*f]+=d)}),yo({width:f,height:c,data:i},{width:f,height:c,data:l},o>>a),_o({width:f,height:c,data:l},{width:f,height:c,data:i},o>>a),yo({width:f,height:c,data:i},{width:f,height:c,data:l},o>>a),_o({width:f,height:c,data:l},{width:f,height:c,data:i},o>>a),yo({width:f,height:c,data:i},{width:f,height:c,data:l},o>>a),_o({width:f,height:c,data:l},{width:f,height:c,data:i},o>>a);var d=s(i);if(!Array.isArray(d)){var p=T(i);d=w(0,p,d),(d=g(0,Math.floor(p/d)*d,d)).shift()}return go().thresholds(d).size([f,c])(i).map(h)}function h(t){return t.value*=Math.pow(2,-2*a),t.coordinates.forEach(d),t}function d(t){t.forEach(p)}function p(t){t.forEach(v)}function v(t){t[0]=t[0]*Math.pow(2,a)-u,t[1]=t[1]*Math.pow(2,a)-u}function y(){return f=r+2*(u=3*o)>>a,c=i+2*u>>a,l}return l.x=function(n){return arguments.length?(t="function"==typeof n?n:co(+n),l):t},l.y=function(t){return arguments.length?(n="function"==typeof t?t:co(+t),l):n},l.weight=function(t){return arguments.length?(e="function"==typeof t?t:co(+t),l):e},l.size=function(t){if(!arguments.length)return[r,i];var n=Math.ceil(t[0]),e=Math.ceil(t[1]);if(!(n>=0||n>=0))throw new Error("invalid size");return r=n,i=e,y()},l.cellSize=function(t){if(!arguments.length)return 1<<a;if(!((t=+t)>=1))throw new Error("invalid cell size");return a=Math.floor(Math.log(t)/Math.LN2),y()},l.thresholds=function(t){return arguments.length?(s="function"==typeof t?t:Array.isArray(t)?co(uo.call(t)):co(t),l):s},l.bandwidth=function(t){if(!arguments.length)return Math.sqrt(o*(o+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return o=Math.round((Math.sqrt(4*t*t+1)-1)/2),y()},l},t.dispatch=I,t.drag=function(){var n,e,r,i,o=Wt,a=Zt,u=Qt,f=Jt,c={},s=I("start","drag","end"),l=0,h=0;function d(t){t.on("mousedown.drag",p).filter(f).on("touchstart.drag",y).on("touchmove.drag",_).on("touchend.drag touchcancel.drag",b).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(){if(!i&&o.apply(this,arguments)){var u=m("mouse",a.apply(this,arguments),Ft,this,arguments);u&&(Dt(t.event.view).on("mousemove.drag",v,!0).on("mouseup.drag",g,!0),Xt(t.event.view),Ht(),r=!1,n=t.event.clientX,e=t.event.clientY,u("start"))}}function v(){if(jt(),!r){var i=t.event.clientX-n,o=t.event.clientY-e;r=i*i+o*o>h}c.mouse("drag")}function g(){Dt(t.event.view).on("mousemove.drag mouseup.drag",null),Gt(t.event.view,r),jt(),c.mouse("end")}function y(){if(o.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=a.apply(this,arguments),u=r.length;for(n=0;n<u;++n)(e=m(r[n].identifier,i,It,this,arguments))&&(Ht(),e("start"))}}function _(){var n,e,r=t.event.changedTouches,i=r.length;for(n=0;n<i;++n)(e=c[r[n].identifier])&&(jt(),e("drag"))}function b(){var n,e,r=t.event.changedTouches,o=r.length;for(i&&clearTimeout(i),i=setTimeout(function(){i=null},500),n=0;n<o;++n)(e=c[r[n].identifier])&&(Ht(),e("end"))}function m(n,e,r,i,o){var a,f,h,p=r(e,n),v=s.copy();if(Ct(new $t(d,"beforestart",a,n,l,p[0],p[1],0,0,v),function(){return null!=(t.event.subject=a=u.apply(i,o))&&(f=a.x-p[0]||0,h=a.y-p[1]||0,!0)}))return function t(u){var s,g=p;switch(u){case"start":c[n]=t,s=l++;break;case"end":delete c[n],--l;case"drag":p=r(e,n),s=l}Ct(new $t(d,u,a,n,s,p[0]+f,p[1]+h,p[0]-g[0],p[1]-g[1],v),v.apply,v,[u,i,o])}}return d.filter=function(t){return arguments.length?(o="function"==typeof t?t:Vt(!!t),d):o},d.container=function(t){return arguments.length?(a="function"==typeof t?t:Vt(t),d):a},d.subject=function(t){return arguments.length?(u="function"==typeof t?t:Vt(t),d):u},d.touchable=function(t){return arguments.length?(f="function"==typeof t?t:Vt(!!t),d):f},d.on=function(){var t=s.on.apply(s,arguments);return t===s?d:t},d.clickDistance=function(t){return arguments.length?(h=(t=+t)*t,d):Math.sqrt(h)},d},t.dragDisable=Xt,t.dragEnable=Gt,t.dsvFormat=Eo,t.csvParse=Co,t.csvParseRows=Po,t.csvFormat=zo,t.csvFormatRows=Ro,t.tsvParse=Do,t.tsvParseRows=Uo,t.tsvFormat=qo,t.tsvFormatRows=Oo,t.easeLinear=function(t){return+t},t.easeQuad=Dr,t.easeQuadIn=function(t){return t*t},t.easeQuadOut=function(t){return t*(2-t)},t.easeQuadInOut=Dr,t.easeCubic=Ur,t.easeCubicIn=function(t){return t*t*t},t.easeCubicOut=function(t){return--t*t*t+1},t.easeCubicInOut=Ur,t.easePoly=Yr,t.easePolyIn=qr,t.easePolyOut=Or,t.easePolyInOut=Yr,t.easeSin=Ir,t.easeSinIn=function(t){return 1-Math.cos(t*Fr)},t.easeSinOut=function(t){return Math.sin(t*Fr)},t.easeSinInOut=Ir,t.easeExp=Hr,t.easeExpIn=function(t){return Math.pow(2,10*t-10)},t.easeExpOut=function(t){return 1-Math.pow(2,-10*t)},t.easeExpInOut=Hr,t.easeCircle=jr,t.easeCircleIn=function(t){return 1-Math.sqrt(1-t*t)},t.easeCircleOut=function(t){return Math.sqrt(1- --t*t)},t.easeCircleInOut=jr,t.easeBounce=ni,t.easeBounceIn=function(t){return 1-ni(1-t)},t.easeBounceOut=ni,t.easeBounceInOut=function(t){return((t*=2)<=1?1-ni(1-t):ni(t-1)+1)/2},t.easeBack=ii,t.easeBackIn=ei,t.easeBackOut=ri,t.easeBackInOut=ii,t.easeElastic=ui,t.easeElasticIn=ai,t.easeElasticOut=ui,t.easeElasticInOut=fi,t.blob=function(t,n){return fetch(t,n).then(Yo)},t.buffer=function(t,n){return fetch(t,n).then(Bo)},t.dsv=function(t,n,e,r){3===arguments.length&&"function"==typeof e&&(r=e,e=void 0);var i=Eo(t);return Io(n,e).then(function(t){return i.parse(t,r)})},t.csv=jo,t.tsv=Xo,t.image=function(t,n){return new Promise(function(e,r){var i=new Image;for(var o in n)i[o]=n[o];i.onerror=r,i.onload=function(){e(i)},i.src=t})},t.json=function(t,n){return fetch(t,n).then(Go)},t.text=Io,t.xml=$o,t.html=Wo,t.svg=Zo,t.forceCenter=function(t,n){var e;function r(){var r,i,o=e.length,a=0,u=0;for(r=0;r<o;++r)a+=(i=e[r]).x,u+=i.y;for(a=a/o-t,u=u/o-n,r=0;r<o;++r)(i=e[r]).x-=a,i.y-=u}return null==t&&(t=0),null==n&&(n=0),r.initialize=function(t){e=t},r.x=function(n){return arguments.length?(t=+n,r):t},r.y=function(t){return arguments.length?(n=+t,r):n},r},t.forceCollide=function(t){var n,e,r=1,i=1;function o(){for(var t,o,u,f,c,s,l,h=n.length,d=0;d<i;++d)for(o=ra(n,ua,fa).visitAfter(a),t=0;t<h;++t)u=n[t],s=e[u.index],l=s*s,f=u.x+u.vx,c=u.y+u.vy,o.visit(p);function p(t,n,e,i,o){var a=t.data,h=t.r,d=s+h;if(!a)return n>f+d||i<f-d||e>c+d||o<c-d;if(a.index>u.index){var p=f-a.x-a.vx,v=c-a.y-a.vy,g=p*p+v*v;g<d*d&&(0===p&&(g+=(p=Jo())*p),0===v&&(g+=(v=Jo())*v),g=(d-(g=Math.sqrt(g)))/g*r,u.vx+=(p*=g)*(d=(h*=h)/(l+h)),u.vy+=(v*=g)*d,a.vx-=p*(d=1-d),a.vy-=v*d)}}}function a(t){if(t.data)return t.r=e[t.data.index];for(var n=t.r=0;n<4;++n)t[n]&&t[n].r>t.r&&(t.r=t[n].r)}function u(){if(n){var r,i,o=n.length;for(e=new Array(o),r=0;r<o;++r)i=n[r],e[i.index]=+t(i,r,n)}}return"function"!=typeof t&&(t=Qo(null==t?1:+t)),o.initialize=function(t){n=t,u()},o.iterations=function(t){return arguments.length?(i=+t,o):i},o.strength=function(t){return arguments.length?(r=+t,o):r},o.radius=function(n){return arguments.length?(t="function"==typeof n?n:Qo(+n),u(),o):t},o},t.forceLink=function(t){var n,e,r,i,o,a=ca,u=function(t){return 1/Math.min(i[t.source.index],i[t.target.index])},f=Qo(30),c=1;function s(r){for(var i=0,a=t.length;i<c;++i)for(var u,f,s,l,h,d,p,v=0;v<a;++v)f=(u=t[v]).source,l=(s=u.target).x+s.vx-f.x-f.vx||Jo(),h=s.y+s.vy-f.y-f.vy||Jo(),l*=d=((d=Math.sqrt(l*l+h*h))-e[v])/d*r*n[v],h*=d,s.vx-=l*(p=o[v]),s.vy-=h*p,f.vx+=l*(p=1-p),f.vy+=h*p}function l(){if(r){var u,f,c=r.length,s=t.length,l=Ki(r,a);for(u=0,i=new Array(c);u<s;++u)(f=t[u]).index=u,"object"!=typeof f.source&&(f.source=sa(l,f.source)),"object"!=typeof f.target&&(f.target=sa(l,f.target)),i[f.source.index]=(i[f.source.index]||0)+1,i[f.target.index]=(i[f.target.index]||0)+1;for(u=0,o=new Array(s);u<s;++u)f=t[u],o[u]=i[f.source.index]/(i[f.source.index]+i[f.target.index]);n=new Array(s),h(),e=new Array(s),d()}}function h(){if(r)for(var e=0,i=t.length;e<i;++e)n[e]=+u(t[e],e,t)}function d(){if(r)for(var n=0,i=t.length;n<i;++n)e[n]=+f(t[n],n,t)}return null==t&&(t=[]),s.initialize=function(t){r=t,l()},s.links=function(n){return arguments.length?(t=n,l(),s):t},s.id=function(t){return arguments.length?(a=t,s):a},s.iterations=function(t){return arguments.length?(c=+t,s):c},s.strength=function(t){return arguments.length?(u="function"==typeof t?t:Qo(+t),h(),s):u},s.distance=function(t){return arguments.length?(f="function"==typeof t?t:Qo(+t),d(),s):f},s},t.forceManyBody=function(){var t,n,e,r,i=Qo(-30),o=1,a=1/0,u=.81;function f(r){var i,o=t.length,a=ra(t,la,ha).visitAfter(s);for(e=r,i=0;i<o;++i)n=t[i],a.visit(l)}function c(){if(t){var n,e,o=t.length;for(r=new Array(o),n=0;n<o;++n)e=t[n],r[e.index]=+i(e,n,t)}}function s(t){var n,e,i,o,a,u=0,f=0;if(t.length){for(i=o=a=0;a<4;++a)(n=t[a])&&(e=Math.abs(n.value))&&(u+=n.value,f+=e,i+=e*n.x,o+=e*n.y);t.x=i/f,t.y=o/f}else{(n=t).x=n.data.x,n.y=n.data.y;do{u+=r[n.data.index]}while(n=n.next)}t.value=u}function l(t,i,f,c){if(!t.value)return!0;var s=t.x-n.x,l=t.y-n.y,h=c-i,d=s*s+l*l;if(h*h/u<d)return d<a&&(0===s&&(d+=(s=Jo())*s),0===l&&(d+=(l=Jo())*l),d<o&&(d=Math.sqrt(o*d)),n.vx+=s*t.value*e/d,n.vy+=l*t.value*e/d),!0;if(!(t.length||d>=a)){(t.data!==n||t.next)&&(0===s&&(d+=(s=Jo())*s),0===l&&(d+=(l=Jo())*l),d<o&&(d=Math.sqrt(o*d)));do{t.data!==n&&(h=r[t.data.index]*e/d,n.vx+=s*h,n.vy+=l*h)}while(t=t.next)}}return f.initialize=function(n){t=n,c()},f.strength=function(t){return arguments.length?(i="function"==typeof t?t:Qo(+t),c(),f):i},f.distanceMin=function(t){return arguments.length?(o=t*t,f):Math.sqrt(o)},f.distanceMax=function(t){return arguments.length?(a=t*t,f):Math.sqrt(a)},f.theta=function(t){return arguments.length?(u=t*t,f):Math.sqrt(u)},f},t.forceRadial=function(t,n,e){var r,i,o,a=Qo(.1);function u(t){for(var a=0,u=r.length;a<u;++a){var f=r[a],c=f.x-n||1e-6,s=f.y-e||1e-6,l=Math.sqrt(c*c+s*s),h=(o[a]-l)*i[a]*t/l;f.vx+=c*h,f.vy+=s*h}}function f(){if(r){var n,e=r.length;for(i=new Array(e),o=new Array(e),n=0;n<e;++n)o[n]=+t(r[n],n,r),i[n]=isNaN(o[n])?0:+a(r[n],n,r)}}return"function"!=typeof t&&(t=Qo(+t)),null==n&&(n=0),null==e&&(e=0),u.initialize=function(t){r=t,f()},u.strength=function(t){return arguments.length?(a="function"==typeof t?t:Qo(+t),f(),u):a},u.radius=function(n){return arguments.length?(t="function"==typeof n?n:Qo(+n),f(),u):t},u.x=function(t){return arguments.length?(n=+t,u):n},u.y=function(t){return arguments.length?(e=+t,u):e},u},t.forceSimulation=function(t){var n,e=1,r=.001,i=1-Math.pow(r,1/300),o=0,a=.6,u=Ki(),f=ur(s),c=I("tick","end");function s(){l(),c.call("tick",n),e<r&&(f.stop(),c.call("end",n))}function l(){var n,r,f=t.length;for(e+=(o-e)*i,u.each(function(t){t(e)}),n=0;n<f;++n)null==(r=t[n]).fx?r.x+=r.vx*=a:(r.x=r.fx,r.vx=0),null==r.fy?r.y+=r.vy*=a:(r.y=r.fy,r.vy=0)}function h(){for(var n,e=0,r=t.length;e<r;++e){if((n=t[e]).index=e,isNaN(n.x)||isNaN(n.y)){var i=da*Math.sqrt(e),o=e*pa;n.x=i*Math.cos(o),n.y=i*Math.sin(o)}(isNaN(n.vx)||isNaN(n.vy))&&(n.vx=n.vy=0)}}function d(n){return n.initialize&&n.initialize(t),n}return null==t&&(t=[]),h(),n={tick:l,restart:function(){return f.restart(s),n},stop:function(){return f.stop(),n},nodes:function(e){return arguments.length?(t=e,h(),u.each(d),n):t},alpha:function(t){return arguments.length?(e=+t,n):e},alphaMin:function(t){return arguments.length?(r=+t,n):r},alphaDecay:function(t){return arguments.length?(i=+t,n):+i},alphaTarget:function(t){return arguments.length?(o=+t,n):o},velocityDecay:function(t){return arguments.length?(a=1-t,n):1-a},force:function(t,e){return arguments.length>1?(null==e?u.remove(t):u.set(t,d(e)),n):u.get(t)},find:function(n,e,r){var i,o,a,u,f,c=0,s=t.length;for(null==r?r=1/0:r*=r,c=0;c<s;++c)(a=(i=n-(u=t[c]).x)*i+(o=e-u.y)*o)<r&&(f=u,r=a);return f},on:function(t,e){return arguments.length>1?(c.on(t,e),n):c.on(t)}}},t.forceX=function(t){var n,e,r,i=Qo(.1);function o(t){for(var i,o=0,a=n.length;o<a;++o)(i=n[o]).vx+=(r[o]-i.x)*e[o]*t}function a(){if(n){var o,a=n.length;for(e=new Array(a),r=new Array(a),o=0;o<a;++o)e[o]=isNaN(r[o]=+t(n[o],o,n))?0:+i(n[o],o,n)}}return"function"!=typeof t&&(t=Qo(null==t?0:+t)),o.initialize=function(t){n=t,a()},o.strength=function(t){return arguments.length?(i="function"==typeof t?t:Qo(+t),a(),o):i},o.x=function(n){return arguments.length?(t="function"==typeof n?n:Qo(+n),a(),o):t},o},t.forceY=function(t){var n,e,r,i=Qo(.1);function o(t){for(var i,o=0,a=n.length;o<a;++o)(i=n[o]).vy+=(r[o]-i.y)*e[o]*t}function a(){if(n){var o,a=n.length;for(e=new Array(a),r=new Array(a),o=0;o<a;++o)e[o]=isNaN(r[o]=+t(n[o],o,n))?0:+i(n[o],o,n)}}return"function"!=typeof t&&(t=Qo(null==t?0:+t)),o.initialize=function(t){n=t,a()},o.strength=function(t){return arguments.length?(i="function"==typeof t?t:Qo(+t),a(),o):i},o.y=function(n){return arguments.length?(t="function"==typeof n?n:Qo(+n),a(),o):t},o},t.formatDefaultLocale=Sa,t.formatLocale=Na,t.formatSpecifier=ba,t.precisionFixed=Ea,t.precisionPrefix=ka,t.precisionRound=Ca,t.geoArea=function(t){return yu.reset(),su(t,_u),2*yu},t.geoBounds=function(t){var n,e,r,i,o,a,u;if(Ru=zu=-(Cu=Pu=1/0),Ou=[],su(t,rf),e=Ou.length){for(Ou.sort(df),n=1,o=[r=Ou[0]];n<e;++n)pf(r,(i=Ou[n])[0])||pf(r,i[1])?(hf(r[0],i[1])>hf(r[0],r[1])&&(r[1]=i[1]),hf(i[0],r[1])>hf(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(u=hf(r[1],i[0]))>a&&(a=u,Cu=i[0],zu=r[1])}return Ou=Yu=null,Cu===1/0||Pu===1/0?[[NaN,NaN],[NaN,NaN]]:[[Cu,Pu],[zu,Ru]]},t.geoCentroid=function(t){Bu=Fu=Iu=Hu=ju=Xu=Gu=Vu=$u=Wu=Zu=0,su(t,vf);var n=$u,e=Wu,r=Zu,i=n*n+e*e+r*r;return i<Ua&&(n=Xu,e=Gu,r=Vu,Fu<Da&&(n=Iu,e=Hu,r=ju),(i=n*n+e*e+r*r)<Ua)?[NaN,NaN]:[Xa(e,n)*Fa,eu(r/Ka(i))*Fa]},t.geoCircle=function(){var t,n,e=Nf([0,0]),r=Nf(90),i=Nf(6),o={point:function(e,r){t.push(e=n(e,r)),e[0]*=Fa,e[1]*=Fa}};function a(){var a=e.apply(this,arguments),u=r.apply(this,arguments)*Ia,f=i.apply(this,arguments)*Ia;return t=[],n=kf(-a[0]*Ia,-a[1]*Ia,0).invert,Lf(o,u,f,1),a={type:"Polygon",coordinates:[t]},t=n=null,a}return a.center=function(t){return arguments.length?(e="function"==typeof t?t:Nf([+t[0],+t[1]]),a):e},a.radius=function(t){return arguments.length?(r="function"==typeof t?t:Nf(+t),a):r},a.precision=function(t){return arguments.length?(i="function"==typeof t?t:Nf(+t),a):i},a},t.geoClipAntimeridian=Gf,t.geoClipCircle=Vf,t.geoClipExtent=function(){var t,n,e,r=0,i=0,o=960,a=500;return e={stream:function(e){return t&&n===e?t:t=Zf(r,i,o,a)(n=e)},extent:function(u){return arguments.length?(r=+u[0][0],i=+u[0][1],o=+u[1][0],a=+u[1][1],t=n=null,e):[[r,i],[o,a]]}}},t.geoClipRectangle=Zf,t.geoContains=function(t,n){return(t&&cc.hasOwnProperty(t.type)?cc[t.type]:lc)(t,n)},t.geoDistance=fc,t.geoGraticule=bc,t.geoGraticule10=function(){return bc()()},t.geoInterpolate=function(t,n){var e=t[0]*Ia,r=t[1]*Ia,i=n[0]*Ia,o=n[1]*Ia,a=Ga(r),u=Qa(r),f=Ga(o),c=Qa(o),s=a*Ga(e),l=a*Qa(e),h=f*Ga(i),d=f*Qa(i),p=2*eu(Ka(ru(o-r)+a*f*ru(i-e))),v=Qa(p),g=p?function(t){var n=Qa(t*=p)/v,e=Qa(p-t)/v,r=e*s+n*h,i=e*l+n*d,o=e*u+n*c;return[Xa(i,r)*Fa,Xa(o,Ka(r*r+i*i))*Fa]}:function(){return[e*Fa,r*Fa]};return g.distance=p,g},t.geoLength=oc,t.geoPath=function(t,n){var e,r,i=4.5;function o(t){return t&&("function"==typeof i&&r.pointRadius(+i.apply(this,arguments)),su(t,e(r))),r.result()}return o.area=function(t){return su(t,e(Sc)),Sc.result()},o.measure=function(t){return su(t,e(ds)),ds.result()},o.bounds=function(t){return su(t,e(Uc)),Uc.result()},o.centroid=function(t){return su(t,e(Zc)),Zc.result()},o.projection=function(n){return arguments.length?(e=null==n?(t=null,mc):(t=n).stream,o):t},o.context=function(t){return arguments.length?(r=null==t?(n=null,new gs):new as(n=t),"function"!=typeof i&&r.pointRadius(i),o):n},o.pointRadius=function(t){return arguments.length?(i="function"==typeof t?t:(r.pointRadius(+t),+t),o):i},o.projection(t).context(n)},t.geoAlbers=Ds,t.geoAlbersUsa=function(){var t,n,e,r,i,o,a=Ds(),u=Ls().rotate([154,0]).center([-2,58.5]).parallels([55,65]),f=Ls().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(t,n){o=[t,n]}};function s(t){var n=t[0],a=t[1];return o=null,e.point(n,a),o||(r.point(n,a),o)||(i.point(n,a),o)}function l(){return t=n=null,s}return s.invert=function(t){var n=a.scale(),e=a.translate(),r=(t[0]-e[0])/n,i=(t[1]-e[1])/n;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?u:i>=.166&&i<.234&&r>=-.214&&r<-.115?f:a).invert(t)},s.stream=function(e){return t&&n===e?t:(r=[a.stream(n=e),u.stream(e),f.stream(e)],i=r.length,t={point:function(t,n){for(var e=-1;++e<i;)r[e].point(t,n)},sphere:function(){for(var t=-1;++t<i;)r[t].sphere()},lineStart:function(){for(var t=-1;++t<i;)r[t].lineStart()},lineEnd:function(){for(var t=-1;++t<i;)r[t].lineEnd()},polygonStart:function(){for(var t=-1;++t<i;)r[t].polygonStart()},polygonEnd:function(){for(var t=-1;++t<i;)r[t].polygonEnd()}});var r,i},s.precision=function(t){return arguments.length?(a.precision(t),u.precision(t),f.precision(t),l()):a.precision()},s.scale=function(t){return arguments.length?(a.scale(t),u.scale(.35*t),f.scale(t),s.translate(a.translate())):a.scale()},s.translate=function(t){if(!arguments.length)return a.translate();var n=a.scale(),o=+t[0],s=+t[1];return e=a.translate(t).clipExtent([[o-.455*n,s-.238*n],[o+.455*n,s+.238*n]]).stream(c),r=u.translate([o-.307*n,s+.201*n]).clipExtent([[o-.425*n+Da,s+.12*n+Da],[o-.214*n-Da,s+.234*n-Da]]).stream(c),i=f.translate([o-.205*n,s+.212*n]).clipExtent([[o-.214*n+Da,s+.166*n+Da],[o-.115*n-Da,s+.234*n-Da]]).stream(c),l()},s.fitExtent=function(t,n){return xs(s,t,n)},s.fitSize=function(t,n){return ws(s,t,n)},s.fitWidth=function(t,n){return Ms(s,t,n)},s.fitHeight=function(t,n){return As(s,t,n)},s.scale(1070)},t.geoAzimuthalEqualArea=function(){return Cs(Os).scale(124.75).clipAngle(179.999)},t.geoAzimuthalEqualAreaRaw=Os,t.geoAzimuthalEquidistant=function(){return Cs(Ys).scale(79.4188).clipAngle(179.999)},t.geoAzimuthalEquidistantRaw=Ys,t.geoConicConformal=function(){return zs(Hs).scale(109.5).parallels([30,30])},t.geoConicConformalRaw=Hs,t.geoConicEqualArea=Ls,t.geoConicEqualAreaRaw=Rs,t.geoConicEquidistant=function(){return zs(Xs).scale(131.154).center([0,13.9389])},t.geoConicEquidistantRaw=Xs,t.geoEqualEarth=function(){return Cs(Qs).scale(177.158)},t.geoEqualEarthRaw=Qs,t.geoEquirectangular=function(){return Cs(js).scale(152.63)},t.geoEquirectangularRaw=js,t.geoGnomonic=function(){return Cs(Js).scale(144.049).clipAngle(60)},t.geoGnomonicRaw=Js,t.geoIdentity=function(){var t,n,e,r,i,o,a=1,u=0,f=0,c=1,s=1,l=mc,h=null,d=mc;function p(){return r=i=null,o}return o={stream:function(t){return r&&i===t?r:r=l(d(i=t))},postclip:function(r){return arguments.length?(d=r,h=t=n=e=null,p()):d},clipExtent:function(r){return arguments.length?(d=null==r?(h=t=n=e=null,mc):Zf(h=+r[0][0],t=+r[0][1],n=+r[1][0],e=+r[1][1]),p()):null==h?null:[[h,t],[n,e]]},scale:function(t){return arguments.length?(l=Ks((a=+t)*c,a*s,u,f),p()):a},translate:function(t){return arguments.length?(l=Ks(a*c,a*s,u=+t[0],f=+t[1]),p()):[u,f]},reflectX:function(t){return arguments.length?(l=Ks(a*(c=t?-1:1),a*s,u,f),p()):c<0},reflectY:function(t){return arguments.length?(l=Ks(a*c,a*(s=t?-1:1),u,f),p()):s<0},fitExtent:function(t,n){return xs(o,t,n)},fitSize:function(t,n){return ws(o,t,n)},fitWidth:function(t,n){return Ms(o,t,n)},fitHeight:function(t,n){return As(o,t,n)}}},t.geoProjection=Cs,t.geoProjectionMutator=Ps,t.geoMercator=function(){return Fs(Bs).scale(961/Ba)},t.geoMercatorRaw=Bs,t.geoNaturalEarth1=function(){return Cs(tl).scale(175.295)},t.geoNaturalEarth1Raw=tl,t.geoOrthographic=function(){return Cs(nl).scale(249.5).clipAngle(90+Da)},t.geoOrthographicRaw=nl,t.geoStereographic=function(){return Cs(el).scale(250).clipAngle(142)},t.geoStereographicRaw=el,t.geoTransverseMercator=function(){var t=Fs(rl),n=t.center,e=t.rotate;return t.center=function(t){return arguments.length?n([-t[1],t[0]]):[(t=n())[1],-t[0]]},t.rotate=function(t){return arguments.length?e([t[0],t[1],t.length>2?t[2]+90:90]):[(t=e())[0],t[1],t[2]-90]},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=rl,t.geoRotation=Rf,t.geoStream=su,t.geoTransform=function(t){return{stream:_s(t)}},t.cluster=function(){var t=il,n=1,e=1,r=!1;function i(i){var o,a=0;i.eachAfter(function(n){var e=n.children;e?(n.x=function(t){return t.reduce(ol,0)/t.length}(e),n.y=function(t){return 1+t.reduce(al,0)}(e)):(n.x=o?a+=t(n,o):0,n.y=0,o=n)});var u=function(t){for(var n;n=t.children;)t=n[0];return t}(i),f=function(t){for(var n;n=t.children;)t=n[n.length-1];return t}(i),c=u.x-t(u,f)/2,s=f.x+t(f,u)/2;return i.eachAfter(r?function(t){t.x=(t.x-i.x)*n,t.y=(i.y-t.y)*e}:function(t){t.x=(t.x-c)/(s-c)*n,t.y=(1-(i.y?t.y/i.y:1))*e})}return i.separation=function(n){return arguments.length?(t=n,i):t},i.size=function(t){return arguments.length?(r=!1,n=+t[0],e=+t[1],i):r?null:[n,e]},i.nodeSize=function(t){return arguments.length?(r=!0,n=+t[0],e=+t[1],i):r?[n,e]:null},i},t.hierarchy=fl,t.pack=function(){var t=null,n=1,e=1,r=El;function i(i){return i.x=n/2,i.y=e/2,t?i.eachBefore(Pl(t)).eachAfter(zl(r,.5)).eachBefore(Rl(1)):i.eachBefore(Pl(Cl)).eachAfter(zl(El,1)).eachAfter(zl(r,i.r/Math.min(n,e))).eachBefore(Rl(Math.min(n,e)/(2*i.r))),i}return i.radius=function(n){return arguments.length?(t=null==(e=n)?null:Sl(e),i):t;var e},i.size=function(t){return arguments.length?(n=+t[0],e=+t[1],i):[n,e]},i.padding=function(t){return arguments.length?(r="function"==typeof t?t:kl(+t),i):r},i},t.packSiblings=function(t){return Nl(t),t},t.packEnclose=pl,t.partition=function(){var t=1,n=1,e=0,r=!1;function i(i){var o=i.height+1;return i.x0=i.y0=e,i.x1=t,i.y1=n/o,i.eachBefore(function(t,n){return function(r){r.children&&Dl(r,r.x0,t*(r.depth+1)/n,r.x1,t*(r.depth+2)/n);var i=r.x0,o=r.y0,a=r.x1-e,u=r.y1-e;a<i&&(i=a=(i+a)/2),u<o&&(o=u=(o+u)/2),r.x0=i,r.y0=o,r.x1=a,r.y1=u}}(n,o)),r&&i.eachBefore(Ll),i}return i.round=function(t){return arguments.length?(r=!!t,i):r},i.size=function(e){return arguments.length?(t=+e[0],n=+e[1],i):[t,n]},i.padding=function(t){return arguments.length?(e=+t,i):e},i},t.stratify=function(){var t=Yl,n=Bl;function e(e){var r,i,o,a,u,f,c,s=e.length,l=new Array(s),h={};for(i=0;i<s;++i)r=e[i],u=l[i]=new hl(r),null!=(f=t(r,i,e))&&(f+="")&&(h[c=Ul+(u.id=f)]=c in h?Ol:u);for(i=0;i<s;++i)if(u=l[i],null!=(f=n(e[i],i,e))&&(f+="")){if(!(a=h[Ul+f]))throw new Error("missing: "+f);if(a===Ol)throw new Error("ambiguous: "+f);a.children?a.children.push(u):a.children=[u],u.parent=a}else{if(o)throw new Error("multiple roots");o=u}if(!o)throw new Error("no root");if(o.parent=ql,o.eachBefore(function(t){t.depth=t.parent.depth+1,--s}).eachBefore(ll),o.parent=null,s>0)throw new Error("cycle");return o}return e.id=function(n){return arguments.length?(t=Sl(n),e):t},e.parentId=function(t){return arguments.length?(n=Sl(t),e):n},e},t.tree=function(){var t=Fl,n=1,e=1,r=null;function i(i){var f=function(t){for(var n,e,r,i,o,a=new Gl(t,0),u=[a];n=u.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)u.push(e=n.children[i]=new Gl(r[i],i)),e.parent=n;return(a.parent=new Gl(null,0)).children=[a],a}(i);if(f.eachAfter(o),f.parent.m=-f.z,f.eachBefore(a),r)i.eachBefore(u);else{var c=i,s=i,l=i;i.eachBefore(function(t){t.x<c.x&&(c=t),t.x>s.x&&(s=t),t.depth>l.depth&&(l=t)});var h=c===s?1:t(c,s)/2,d=h-c.x,p=n/(s.x+h+d),v=e/(l.depth||1);i.eachBefore(function(t){t.x=(t.x+d)*p,t.y=t.depth*v})}return i}function o(n){var e=n.children,r=n.parent.children,i=n.i?r[n.i-1]:null;if(e){!function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)}(n);var o=(e[0].z+e[e.length-1].z)/2;i?(n.z=i.z+t(n._,i._),n.m=n.z-o):n.z=o}else i&&(n.z=i.z+t(n._,i._));n.parent.A=function(n,e,r){if(e){for(var i,o=n,a=n,u=e,f=o.parent.children[0],c=o.m,s=a.m,l=u.m,h=f.m;u=Hl(u),o=Il(o),u&&o;)f=Il(f),(a=Hl(a)).a=n,(i=u.z+l-o.z-c+t(u._,o._))>0&&(jl(Xl(u,n,r),n,i),c+=i,s+=i),l+=u.m,c+=o.m,h+=f.m,s+=a.m;u&&!Hl(a)&&(a.t=u,a.m+=l-s),o&&!Il(f)&&(f.t=o,f.m+=c-h,r=n)}return r}(n,i,n.parent.A||r[0])}function a(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function u(t){t.x*=n,t.y=t.depth*e}return i.separation=function(n){return arguments.length?(t=n,i):t},i.size=function(t){return arguments.length?(r=!1,n=+t[0],e=+t[1],i):r?null:[n,e]},i.nodeSize=function(t){return arguments.length?(r=!0,n=+t[0],e=+t[1],i):r?[n,e]:null},i},t.treemap=function(){var t=Zl,n=!1,e=1,r=1,i=[0],o=El,a=El,u=El,f=El,c=El;function s(t){return t.x0=t.y0=0,t.x1=e,t.y1=r,t.eachBefore(l),i=[0],n&&t.eachBefore(Ll),t}function l(n){var e=i[n.depth],r=n.x0+e,s=n.y0+e,l=n.x1-e,h=n.y1-e;l<r&&(r=l=(r+l)/2),h<s&&(s=h=(s+h)/2),n.x0=r,n.y0=s,n.x1=l,n.y1=h,n.children&&(e=i[n.depth+1]=o(n)/2,r+=c(n)-e,s+=a(n)-e,(l-=u(n)-e)<r&&(r=l=(r+l)/2),(h-=f(n)-e)<s&&(s=h=(s+h)/2),t(n,r,s,l,h))}return s.round=function(t){return arguments.length?(n=!!t,s):n},s.size=function(t){return arguments.length?(e=+t[0],r=+t[1],s):[e,r]},s.tile=function(n){return arguments.length?(t=Sl(n),s):t},s.padding=function(t){return arguments.length?s.paddingInner(t).paddingOuter(t):s.paddingInner()},s.paddingInner=function(t){return arguments.length?(o="function"==typeof t?t:kl(+t),s):o},s.paddingOuter=function(t){return arguments.length?s.paddingTop(t).paddingRight(t).paddingBottom(t).paddingLeft(t):s.paddingTop()},s.paddingTop=function(t){return arguments.length?(a="function"==typeof t?t:kl(+t),s):a},s.paddingRight=function(t){return arguments.length?(u="function"==typeof t?t:kl(+t),s):u},s.paddingBottom=function(t){return arguments.length?(f="function"==typeof t?t:kl(+t),s):f},s.paddingLeft=function(t){return arguments.length?(c="function"==typeof t?t:kl(+t),s):c},s},t.treemapBinary=function(t,n,e,r,i){var o,a,u=t.children,f=u.length,c=new Array(f+1);for(c[0]=a=o=0;o<f;++o)c[o+1]=a+=u[o].value;!function t(n,e,r,i,o,a,f){if(n>=e-1){var s=u[n];return s.x0=i,s.y0=o,s.x1=a,void(s.y1=f)}for(var l=c[n],h=r/2+l,d=n+1,p=e-1;d<p;){var v=d+p>>>1;c[v]<h?d=v+1:p=v}h-c[d-1]<c[d]-h&&n+1<d&&--d;var g=c[d]-l,y=r-g;if(a-i>f-o){var _=(i*y+a*g)/r;t(n,d,g,i,o,_,f),t(d,e,y,_,o,a,f)}else{var b=(o*y+f*g)/r;t(n,d,g,i,o,a,b),t(d,e,y,i,b,a,f)}}(0,f,t.value,n,e,r,i)},t.treemapDice=Dl,t.treemapSlice=Vl,t.treemapSliceDice=function(t,n,e,r,i){(1&t.depth?Vl:Dl)(t,n,e,r,i)},t.treemapSquarify=Zl,t.treemapResquarify=Ql,t.interpolate=me,t.interpolateArray=de,t.interpolateBasis=ee,t.interpolateBasisClosed=re,t.interpolateDate=pe,t.interpolateDiscrete=function(t){var n=t.length;return function(e){return t[Math.max(0,Math.min(n-1,Math.floor(e*n)))]}},t.interpolateHue=function(t,n){var e=ae(+t,+n);return function(t){var n=e(t);return n-360*Math.floor(n/360)}},t.interpolateNumber=ve,t.interpolateObject=ge,t.interpolateRound=xe,t.interpolateString=be,t.interpolateTransformCss=Ce,t.interpolateTransformSvg=Pe,t.interpolateZoom=qe,t.interpolateRgb=ce,t.interpolateRgbBasis=le,t.interpolateRgbBasisClosed=he,t.interpolateHsl=Ye,t.interpolateHslLong=Be,t.interpolateLab=function(t,n){var e=fe((t=Un(t)).l,(n=Un(n)).l),r=fe(t.a,n.a),i=fe(t.b,n.b),o=fe(t.opacity,n.opacity);return function(n){return t.l=e(n),t.a=r(n),t.b=i(n),t.opacity=o(n),t+""}},t.interpolateHcl=Ie,t.interpolateHclLong=He,t.interpolateCubehelix=Xe,t.interpolateCubehelixLong=Ge,t.piecewise=function(t,n){for(var e=0,r=n.length-1,i=n[0],o=new Array(r<0?0:r);e<r;)o[e]=t(i,i=n[++e]);return function(t){var n=Math.max(0,Math.min(r-1,Math.floor(t*=r)));return o[n](t-n)}},t.quantize=function(t,n){for(var e=new Array(n),r=0;r<n;++r)e[r]=t(r/(n-1));return e},t.path=Gi,t.polygonArea=function(t){for(var n,e=-1,r=t.length,i=t[r-1],o=0;++e<r;)n=i,i=t[e],o+=n[1]*i[0]-n[0]*i[1];return o/2},t.polygonCentroid=function(t){for(var n,e,r=-1,i=t.length,o=0,a=0,u=t[i-1],f=0;++r<i;)n=u,u=t[r],f+=e=n[0]*u[1]-u[0]*n[1],o+=(n[0]+u[0])*e,a+=(n[1]+u[1])*e;return[o/(f*=3),a/f]},t.polygonHull=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n<e;++n)r[n]=[+t[n][0],+t[n][1],n];for(r.sort(Jl),n=0;n<e;++n)i[n]=[r[n][0],-r[n][1]];var o=Kl(r),a=Kl(i),u=a[0]===o[0],f=a[a.length-1]===o[o.length-1],c=[];for(n=o.length-1;n>=0;--n)c.push(t[r[o[n]][2]]);for(n=+u;n<a.length-f;++n)c.push(t[r[a[n]][2]]);return c},t.polygonContains=function(t,n){for(var e,r,i=t.length,o=t[i-1],a=n[0],u=n[1],f=o[0],c=o[1],s=!1,l=0;l<i;++l)e=(o=t[l])[0],(r=o[1])>u!=c>u&&a<(f-e)*(u-r)/(c-r)+e&&(s=!s),f=e,c=r;return s},t.polygonLength=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],a=o[0],u=o[1],f=0;++r<i;)n=a,e=u,n-=a=(o=t[r])[0],e-=u=o[1],f+=Math.sqrt(n*n+e*e);return f},t.quadtree=ra,t.randomUniform=nh,t.randomNormal=eh,t.randomLogNormal=rh,t.randomBates=oh,t.randomIrwinHall=ih,t.randomExponential=ah,t.scaleBand=hh,t.scalePoint=function(){return function t(n){var e=n.copy;return n.padding=n.paddingOuter,delete n.paddingInner,delete n.paddingOuter,n.copy=function(){return t(e())},n}(hh().paddingInner(1))},t.scaleIdentity=function t(){var n=[0,1];function e(t){return+t}return e.invert=e,e.domain=e.range=function(t){return arguments.length?(n=fh.call(t,ph),e):n.slice()},e.copy=function(){return t().domain(n)},xh(e)},t.scaleLinear=function t(){var n=mh(gh,ve);return n.copy=function(){return bh(n,t())},xh(n)},t.scaleLog=function n(){var e=mh(Mh,Ah).domain([1,10]),r=e.domain,i=10,o=Sh(10),a=Nh(10);function u(){return o=Sh(i),a=Nh(i),r()[0]<0&&(o=Eh(o),a=Eh(a)),e}return e.base=function(t){return arguments.length?(i=+t,u()):i},e.domain=function(t){return arguments.length?(r(t),u()):r()},e.ticks=function(t){var n,e=r(),u=e[0],f=e[e.length-1];(n=f<u)&&(h=u,u=f,f=h);var c,s,l,h=o(u),d=o(f),p=null==t?10:+t,v=[];if(!(i%1)&&d-h<p){if(h=Math.round(h)-1,d=Math.round(d)+1,u>0){for(;h<d;++h)for(s=1,c=a(h);s<i;++s)if(!((l=c*s)<u)){if(l>f)break;v.push(l)}}else for(;h<d;++h)for(s=i-1,c=a(h);s>=1;--s)if(!((l=c*s)<u)){if(l>f)break;v.push(l)}}else v=m(h,d,Math.min(d-h,p)).map(a);return n?v.reverse():v},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var u=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/a(Math.round(o(t)));return n*i<i-.5&&(n*=i),n<=u?r(t):""}},e.nice=function(){return r(wh(r(),{floor:function(t){return a(Math.floor(o(t)))},ceil:function(t){return a(Math.ceil(o(t)))}}))},e.copy=function(){return bh(e,n().base(i))},e},t.scaleOrdinal=lh,t.scaleImplicit=sh,t.scalePow=Ch,t.scaleSqrt=function(){return Ch().exponent(.5)},t.scaleQuantile=function t(){var e=[],r=[],o=[];function a(){var t=0,n=Math.max(1,r.length);for(o=new Array(n-1);++t<n;)o[t-1]=A(e,t/n);return u}function u(t){if(!isNaN(t=+t))return r[i(o,t)]}return u.invertExtent=function(t){var n=r.indexOf(t);return n<0?[NaN,NaN]:[n>0?o[n-1]:e[0],n<o.length?o[n]:e[e.length-1]]},u.domain=function(t){if(!arguments.length)return e.slice();e=[];for(var r,i=0,o=t.length;i<o;++i)null==(r=t[i])||isNaN(r=+r)||e.push(r);return e.sort(n),a()},u.range=function(t){return arguments.length?(r=ch.call(t),a()):r.slice()},u.quantiles=function(){return o.slice()},u.copy=function(){return t().domain(e).range(r)},u},t.scaleQuantize=function t(){var n=0,e=1,r=1,o=[.5],a=[0,1];function u(t){if(t<=t)return a[i(o,t,0,r)]}function f(){var t=-1;for(o=new Array(r);++t<r;)o[t]=((t+1)*e-(t-r)*n)/(r+1);return u}return u.domain=function(t){return arguments.length?(n=+t[0],e=+t[1],f()):[n,e]},u.range=function(t){return arguments.length?(r=(a=ch.call(t)).length-1,f()):a.slice()},u.invertExtent=function(t){var i=a.indexOf(t);return i<0?[NaN,NaN]:i<1?[n,o[0]]:i>=r?[o[r-1],e]:[o[i-1],o[i]]},u.copy=function(){return t().domain([n,e]).range(a)},xh(u)},t.scaleThreshold=function t(){var n=[.5],e=[0,1],r=1;function o(t){if(t<=t)return e[i(n,t,0,r)]}return o.domain=function(t){return arguments.length?(n=ch.call(t),r=Math.min(n.length,e.length-1),o):n.slice()},o.range=function(t){return arguments.length?(e=ch.call(t),r=Math.min(n.length,e.length-1),o):e.slice()},o.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},o.copy=function(){return t().domain(n).range(e)},o},t.scaleTime=function(){return cv(cd,ud,Vh,jh,Ih,Bh,Oh,Lh,t.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])},t.scaleUtc=function(){return cv(Ld,zd,_d,vd,dd,ld,Oh,Lh,t.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])},t.scaleSequential=function t(n){var e=0,r=1,i=1,o=!1;function a(t){var r=(t-e)*i;return n(o?Math.max(0,Math.min(1,r)):r)}return a.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],i=e===r?0:1/(r-e),a):[e,r]},a.clamp=function(t){return arguments.length?(o=!!t,a):o},a.interpolator=function(t){return arguments.length?(n=t,a):n},a.copy=function(){return t(n).domain([e,r]).clamp(o)},xh(a)},t.scaleDiverging=function t(n){var e=0,r=.5,i=1,o=1,a=1,u=!1;function f(t){var e=.5+((t=+t)-r)*(t<r?o:a);return n(u?Math.max(0,Math.min(1,e)):e)}return f.domain=function(t){return arguments.length?(e=+t[0],r=+t[1],i=+t[2],o=e===r?0:.5/(r-e),a=r===i?0:.5/(i-r),f):[e,r,i]},f.clamp=function(t){return arguments.length?(u=!!t,f):u},f.interpolator=function(t){return arguments.length?(n=t,f):n},f.copy=function(){return t(n).domain([e,r,i]).clamp(u)},xh(f)},t.schemeCategory10=lv,t.schemeAccent=hv,t.schemeDark2=dv,t.schemePaired=pv,t.schemePastel1=vv,t.schemePastel2=gv,t.schemeSet1=yv,t.schemeSet2=_v,t.schemeSet3=bv,t.interpolateBrBG=wv,t.schemeBrBG=xv,t.interpolatePRGn=Av,t.schemePRGn=Mv,t.interpolatePiYG=Nv,t.schemePiYG=Tv,t.interpolatePuOr=Ev,t.schemePuOr=Sv,t.interpolateRdBu=Cv,t.schemeRdBu=kv,t.interpolateRdGy=zv,t.schemeRdGy=Pv,t.interpolateRdYlBu=Lv,t.schemeRdYlBu=Rv,t.interpolateRdYlGn=Uv,t.schemeRdYlGn=Dv,t.interpolateSpectral=Ov,t.schemeSpectral=qv,t.interpolateBuGn=Bv,t.schemeBuGn=Yv,t.interpolateBuPu=Iv,t.schemeBuPu=Fv,t.interpolateGnBu=jv,t.schemeGnBu=Hv,t.interpolateOrRd=Gv,t.schemeOrRd=Xv,t.interpolatePuBuGn=$v,t.schemePuBuGn=Vv,t.interpolatePuBu=Zv,t.schemePuBu=Wv,t.interpolatePuRd=Jv,t.schemePuRd=Qv,t.interpolateRdPu=tg,t.schemeRdPu=Kv,t.interpolateYlGnBu=eg,t.schemeYlGnBu=ng,t.interpolateYlGn=ig,t.schemeYlGn=rg,t.interpolateYlOrBr=ag,t.schemeYlOrBr=og,t.interpolateYlOrRd=fg,t.schemeYlOrRd=ug,t.interpolateBlues=sg,t.schemeBlues=cg,t.interpolateGreens=hg,t.schemeGreens=lg,t.interpolateGreys=pg,t.schemeGreys=dg,t.interpolatePurples=gg,t.schemePurples=vg,t.interpolateReds=_g,t.schemeReds=yg,t.interpolateOranges=mg,t.schemeOranges=bg,t.interpolateCubehelixDefault=xg,t.interpolateRainbow=function(t){(t<0||t>1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return Ag.h=360*t-100,Ag.s=1.5-1.5*n,Ag.l=.8-.9*n,Ag+""},t.interpolateWarm=wg,t.interpolateCool=Mg,t.interpolateSinebow=function(t){var n;return t=(.5-t)*Math.PI,Tg.r=255*(n=Math.sin(t))*n,Tg.g=255*(n=Math.sin(t+Ng))*n,Tg.b=255*(n=Math.sin(t+Sg))*n,Tg+""},t.interpolateViridis=kg,t.interpolateMagma=Cg,t.interpolateInferno=Pg,t.interpolatePlasma=zg,t.create=function(t){return Dt(W(t).call(document.documentElement))},t.creator=W,t.local=qt,t.matcher=rt,t.mouse=Ft,t.namespace=$,t.namespaces=V,t.clientPoint=Bt,t.select=Dt,t.selectAll=function(t){return"string"==typeof t?new Rt([document.querySelectorAll(t)],[document.documentElement]):new Rt([null==t?[]:t],zt)},t.selection=Lt,t.selector=Q,t.selectorAll=K,t.style=lt,t.touch=It,t.touches=function(t,n){null==n&&(n=Yt().touches);for(var e=0,r=n?n.length:0,i=new Array(r);e<r;++e)i[e]=Bt(t,n[e]);return i},t.window=st,t.customEvent=Ct,t.arc=function(){var t=Gg,n=Vg,e=Rg(0),r=null,i=$g,o=Wg,a=Zg,u=null;function f(){var f,c,s,l=+t.apply(this,arguments),h=+n.apply(this,arguments),d=i.apply(this,arguments)-Hg,p=o.apply(this,arguments)-Hg,v=Lg(p-d),g=p>d;if(u||(u=f=Gi()),h<l&&(c=h,h=l,l=c),h>Fg)if(v>jg-Fg)u.moveTo(h*Ug(d),h*Yg(d)),u.arc(0,0,h,d,p,!g),l>Fg&&(u.moveTo(l*Ug(p),l*Yg(p)),u.arc(0,0,l,p,d,g));else{var y,_,b=d,m=p,x=d,w=p,M=v,A=v,T=a.apply(this,arguments)/2,N=T>Fg&&(r?+r.apply(this,arguments):Bg(l*l+h*h)),S=Og(Lg(h-l)/2,+e.apply(this,arguments)),E=S,k=S;if(N>Fg){var C=Xg(N/l*Yg(T)),P=Xg(N/h*Yg(T));(M-=2*C)>Fg?(x+=C*=g?1:-1,w-=C):(M=0,x=w=(d+p)/2),(A-=2*P)>Fg?(b+=P*=g?1:-1,m-=P):(A=0,b=m=(d+p)/2)}var z=h*Ug(b),R=h*Yg(b),L=l*Ug(w),D=l*Yg(w);if(S>Fg){var U=h*Ug(m),q=h*Yg(m),O=l*Ug(x),Y=l*Yg(x);if(v<Ig){var B=M>Fg?function(t,n,e,r,i,o,a,u){var f=e-t,c=r-n,s=a-i,l=u-o,h=(s*(n-o)-l*(t-i))/(l*f-s*c);return[t+h*f,n+h*c]}(z,R,O,Y,U,q,L,D):[L,D],F=z-B[0],I=R-B[1],H=U-B[0],j=q-B[1],X=1/Yg(((s=(F*H+I*j)/(Bg(F*F+I*I)*Bg(H*H+j*j)))>1?0:s<-1?Ig:Math.acos(s))/2),G=Bg(B[0]*B[0]+B[1]*B[1]);E=Og(S,(l-G)/(X-1)),k=Og(S,(h-G)/(X+1))}}A>Fg?k>Fg?(y=Qg(O,Y,z,R,h,k,g),_=Qg(U,q,L,D,h,k,g),u.moveTo(y.cx+y.x01,y.cy+y.y01),k<S?u.arc(y.cx,y.cy,k,Dg(y.y01,y.x01),Dg(_.y01,_.x01),!g):(u.arc(y.cx,y.cy,k,Dg(y.y01,y.x01),Dg(y.y11,y.x11),!g),u.arc(0,0,h,Dg(y.cy+y.y11,y.cx+y.x11),Dg(_.cy+_.y11,_.cx+_.x11),!g),u.arc(_.cx,_.cy,k,Dg(_.y11,_.x11),Dg(_.y01,_.x01),!g))):(u.moveTo(z,R),u.arc(0,0,h,b,m,!g)):u.moveTo(z,R),l>Fg&&M>Fg?E>Fg?(y=Qg(L,D,U,q,l,-E,g),_=Qg(z,R,O,Y,l,-E,g),u.lineTo(y.cx+y.x01,y.cy+y.y01),E<S?u.arc(y.cx,y.cy,E,Dg(y.y01,y.x01),Dg(_.y01,_.x01),!g):(u.arc(y.cx,y.cy,E,Dg(y.y01,y.x01),Dg(y.y11,y.x11),!g),u.arc(0,0,l,Dg(y.cy+y.y11,y.cx+y.x11),Dg(_.cy+_.y11,_.cx+_.x11),g),u.arc(_.cx,_.cy,E,Dg(_.y11,_.x11),Dg(_.y01,_.x01),!g))):u.arc(0,0,l,w,x,g):u.lineTo(L,D)}else u.moveTo(0,0);if(u.closePath(),f)return u=null,f+""||null}return f.centroid=function(){var e=(+t.apply(this,arguments)+ +n.apply(this,arguments))/2,r=(+i.apply(this,arguments)+ +o.apply(this,arguments))/2-Ig/2;return[Ug(r)*e,Yg(r)*e]},f.innerRadius=function(n){return arguments.length?(t="function"==typeof n?n:Rg(+n),f):t},f.outerRadius=function(t){return arguments.length?(n="function"==typeof t?t:Rg(+t),f):n},f.cornerRadius=function(t){return arguments.length?(e="function"==typeof t?t:Rg(+t),f):e},f.padRadius=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:Rg(+t),f):r},f.startAngle=function(t){return arguments.length?(i="function"==typeof t?t:Rg(+t),f):i},f.endAngle=function(t){return arguments.length?(o="function"==typeof t?t:Rg(+t),f):o},f.padAngle=function(t){return arguments.length?(a="function"==typeof t?t:Rg(+t),f):a},f.context=function(t){return arguments.length?(u=null==t?null:t,f):u},f},t.area=ry,t.line=ey,t.pie=function(){var t=oy,n=iy,e=null,r=Rg(0),i=Rg(jg),o=Rg(0);function a(a){var u,f,c,s,l,h=a.length,d=0,p=new Array(h),v=new Array(h),g=+r.apply(this,arguments),y=Math.min(jg,Math.max(-jg,i.apply(this,arguments)-g)),_=Math.min(Math.abs(y)/h,o.apply(this,arguments)),b=_*(y<0?-1:1);for(u=0;u<h;++u)(l=v[p[u]=u]=+t(a[u],u,a))>0&&(d+=l);for(null!=n?p.sort(function(t,e){return n(v[t],v[e])}):null!=e&&p.sort(function(t,n){return e(a[t],a[n])}),u=0,c=d?(y-h*b)/d:0;u<h;++u,g=s)f=p[u],s=g+((l=v[f])>0?l*c:0)+b,v[f]={data:a[f],index:u,value:l,startAngle:g,endAngle:s,padAngle:_};return v}return a.value=function(n){return arguments.length?(t="function"==typeof n?n:Rg(+n),a):t},a.sortValues=function(t){return arguments.length?(n=t,e=null,a):n},a.sort=function(t){return arguments.length?(e=t,n=null,a):e},a.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:Rg(+t),a):r},a.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:Rg(+t),a):i},a.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:Rg(+t),a):o},a},t.areaRadial=ly,t.radialArea=ly,t.lineRadial=sy,t.radialLine=sy,t.pointRadial=hy,t.linkHorizontal=function(){return gy(yy)},t.linkVertical=function(){return gy(_y)},t.linkRadial=function(){var t=gy(by);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){var t=Rg(my),n=Rg(64),e=null;function r(){var r;if(e||(e=r=Gi()),t.apply(this,arguments).draw(e,+n.apply(this,arguments)),r)return e=null,r+""||null}return r.type=function(n){return arguments.length?(t="function"==typeof n?n:Rg(n),r):t},r.size=function(t){return arguments.length?(n="function"==typeof t?t:Rg(+t),r):n},r.context=function(t){return arguments.length?(e=null==t?null:t,r):e},r},t.symbols=Uy,t.symbolCircle=my,t.symbolCross=xy,t.symbolDiamond=Ay,t.symbolSquare=ky,t.symbolStar=Ey,t.symbolTriangle=Py,t.symbolWye=Dy,t.curveBasisClosed=function(t){return new By(t)},t.curveBasisOpen=function(t){return new Fy(t)},t.curveBasis=function(t){return new Yy(t)},t.curveBundle=Hy,t.curveCardinalClosed=$y,t.curveCardinalOpen=Zy,t.curveCardinal=Gy,t.curveCatmullRomClosed=n_,t.curveCatmullRomOpen=r_,t.curveCatmullRom=Ky,t.curveLinearClosed=function(t){return new i_(t)},t.curveLinear=Kg,t.curveMonotoneX=function(t){return new c_(t)},t.curveMonotoneY=function(t){return new s_(t)},t.curveNatural=function(t){return new h_(t)},t.curveStep=function(t){return new p_(t,.5)},t.curveStepAfter=function(t){return new p_(t,1)},t.curveStepBefore=function(t){return new p_(t,0)},t.stack=function(){var t=Rg([]),n=g_,e=v_,r=y_;function i(i){var o,a,u=t.apply(this,arguments),f=i.length,c=u.length,s=new Array(c);for(o=0;o<c;++o){for(var l,h=u[o],d=s[o]=new Array(f),p=0;p<f;++p)d[p]=l=[0,+r(i[p],h,p,i)],l.data=i[p];d.key=h}for(o=0,a=n(s);o<c;++o)s[a[o]].index=o;return e(s,a),s}return i.keys=function(n){return arguments.length?(t="function"==typeof n?n:Rg(dy.call(n)),i):t},i.value=function(t){return arguments.length?(r="function"==typeof t?t:Rg(+t),i):r},i.order=function(t){return arguments.length?(n=null==t?g_:"function"==typeof t?t:Rg(dy.call(t)),i):n},i.offset=function(t){return arguments.length?(e=null==t?v_:t,i):e},i},t.stackOffsetExpand=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,a=t[0].length;o<a;++o){for(i=e=0;e<r;++e)i+=t[e][o][1]||0;if(i)for(e=0;e<r;++e)t[e][o][1]/=i}v_(t,n)}},t.stackOffsetDiverging=function(t,n){if((u=t.length)>1)for(var e,r,i,o,a,u,f=0,c=t[n[0]].length;f<c;++f)for(o=a=0,e=0;e<u;++e)(i=(r=t[n[e]][f])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):r[0]=o},t.stackOffsetNone=v_,t.stackOffsetSilhouette=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r<o;++r){for(var a=0,u=0;a<e;++a)u+=t[a][r][1]||0;i[r][1]+=i[r][0]=-u/2}v_(t,n)}},t.stackOffsetWiggle=function(t,n){if((i=t.length)>0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,a=1;a<r;++a){for(var u=0,f=0,c=0;u<i;++u){for(var s=t[n[u]],l=s[a][1]||0,h=(l-(s[a-1][1]||0))/2,d=0;d<u;++d){var p=t[n[d]];h+=(p[a][1]||0)-(p[a-1][1]||0)}f+=l,c+=h*l}e[a-1][1]+=e[a-1][0]=o,f&&(o-=c/f)}e[a-1][1]+=e[a-1][0]=o,v_(t,n)}},t.stackOrderAscending=__,t.stackOrderDescending=function(t){return __(t).reverse()},t.stackOrderInsideOut=function(t){var n,e,r=t.length,i=t.map(b_),o=g_(t).sort(function(t,n){return i[n]-i[t]}),a=0,u=0,f=[],c=[];for(n=0;n<r;++n)e=o[n],a<u?(a+=i[e],f.push(e)):(u+=i[e],c.push(e));return c.reverse().concat(f)},t.stackOrderNone=g_,t.stackOrderReverse=function(t){return g_(t).reverse()},t.timeInterval=Rh,t.timeMillisecond=Lh,t.timeMilliseconds=Dh,t.utcMillisecond=Lh,t.utcMilliseconds=Dh,t.timeSecond=Oh,t.timeSeconds=Yh,t.utcSecond=Oh,t.utcSeconds=Yh,t.timeMinute=Bh,t.timeMinutes=Fh,t.timeHour=Ih,t.timeHours=Hh,t.timeDay=jh,t.timeDays=Xh,t.timeWeek=Vh,t.timeWeeks=td,t.timeSunday=Vh,t.timeSundays=td,t.timeMonday=$h,t.timeMondays=nd,t.timeTuesday=Wh,t.timeTuesdays=ed,t.timeWednesday=Zh,t.timeWednesdays=rd,t.timeThursday=Qh,t.timeThursdays=id,t.timeFriday=Jh,t.timeFridays=od,t.timeSaturday=Kh,t.timeSaturdays=ad,t.timeMonth=ud,t.timeMonths=fd,t.timeYear=cd,t.timeYears=sd,t.utcMinute=ld,t.utcMinutes=hd,t.utcHour=dd,t.utcHours=pd,t.utcDay=vd,t.utcDays=gd,t.utcWeek=_d,t.utcWeeks=Td,t.utcSunday=_d,t.utcSundays=Td,t.utcMonday=bd,t.utcMondays=Nd,t.utcTuesday=md,t.utcTuesdays=Sd,t.utcWednesday=xd,t.utcWednesdays=Ed,t.utcThursday=wd,t.utcThursdays=kd,t.utcFriday=Md,t.utcFridays=Cd,t.utcSaturday=Ad,t.utcSaturdays=Pd,t.utcMonth=zd,t.utcMonths=Rd,t.utcYear=Ld,t.utcYears=Dd,t.timeFormatDefaultLocale=Qp,t.timeFormatLocale=Yd,t.isoFormat=Jp,t.isoParse=Kp,t.now=ir,t.timer=ur,t.timerFlush=fr,t.timeout=hr,t.interval=function(t,n,e){var r=new ar,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?ir():+e,r.restart(function o(a){a+=i,r.restart(o,i+=n,e),t(a)},n,e),r)},t.transition=zr,t.active=function(t,n){var e,r,i=t.__transition;if(i)for(r in n=null==n?null:n+"",i)if((e=i[r]).state>gr&&e.name===n)return new Pr([[t]],li,n,+r);return null},t.interrupt=Nr,t.voronoi=function(){var t=x_,n=w_,e=null;function r(r){return new eb(r.map(function(e,i){var o=[Math.round(t(e,i,r)/K_)*K_,Math.round(n(e,i,r)/K_)*K_];return o.index=i,o.data=e,o}),e)}return r.polygons=function(t){return r(t).polygons()},r.links=function(t){return r(t).links()},r.triangles=function(t){return r(t).triangles()},r.x=function(n){return arguments.length?(t="function"==typeof n?n:m_(+n),r):t},r.y=function(t){return arguments.length?(n="function"==typeof t?t:m_(+t),r):n},r.extent=function(t){return arguments.length?(e=null==t?null:[[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]],r):e&&[[e[0][0],e[0][1]],[e[1][0],e[1][1]]]},r.size=function(t){return arguments.length?(e=null==t?null:[[0,0],[+t[0],+t[1]]],r):e&&[e[1][0]-e[0][0],e[1][1]-e[0][1]]},r},t.zoom=function(){var n,e,r=sb,i=lb,o=vb,a=db,u=pb,f=[0,1/0],c=[[-1/0,-1/0],[1/0,1/0]],s=250,l=qe,h=[],d=I("start","zoom","end"),p=500,v=150,g=0;function y(t){t.property("__zoom",hb).on("wheel.zoom",A).on("mousedown.zoom",T).on("dblclick.zoom",N).filter(u).on("touchstart.zoom",S).on("touchmove.zoom",E).on("touchend.zoom touchcancel.zoom",k).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function _(t,n){return(n=Math.max(f[0],Math.min(f[1],n)))===t.k?t:new ob(n,t.x,t.y)}function b(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new ob(t.k,r,i)}function m(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function x(t,n,e){t.on("start.zoom",function(){w(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){w(this,arguments).end()}).tween("zoom",function(){var t=arguments,r=w(this,t),o=i.apply(this,t),a=e||m(o),u=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),f=this.__zoom,c="function"==typeof n?n.apply(this,t):n,s=l(f.invert(a).concat(u/f.k),c.invert(a).concat(u/c.k));return function(t){if(1===t)t=c;else{var n=s(t),e=u/n[2];t=new ob(e,a[0]-n[0]*e,a[1]-n[1]*e)}r.zoom(null,t)}})}function w(t,n){for(var e,r=0,i=h.length;r<i;++r)if((e=h[r]).that===t)return e;return new M(t,n)}function M(t,n){this.that=t,this.args=n,this.index=-1,this.active=0,this.extent=i.apply(t,n)}function A(){if(r.apply(this,arguments)){var t=w(this,arguments),n=this.__zoom,e=Math.max(f[0],Math.min(f[1],n.k*Math.pow(2,a.apply(this,arguments)))),i=Ft(this);if(t.wheel)t.mouse[0][0]===i[0]&&t.mouse[0][1]===i[1]||(t.mouse[1]=n.invert(t.mouse[0]=i)),clearTimeout(t.wheel);else{if(n.k===e)return;t.mouse=[i,n.invert(i)],Nr(this),t.start()}cb(),t.wheel=setTimeout(function(){t.wheel=null,t.end()},v),t.zoom("mouse",o(b(_(n,e),t.mouse[0],t.mouse[1]),t.extent,c))}}function T(){if(!e&&r.apply(this,arguments)){var n=w(this,arguments),i=Dt(t.event.view).on("mousemove.zoom",function(){if(cb(),!n.moved){var e=t.event.clientX-u,r=t.event.clientY-f;n.moved=e*e+r*r>g}n.zoom("mouse",o(b(n.that.__zoom,n.mouse[0]=Ft(n.that),n.mouse[1]),n.extent,c))},!0).on("mouseup.zoom",function(){i.on("mousemove.zoom mouseup.zoom",null),Gt(t.event.view,n.moved),cb(),n.end()},!0),a=Ft(this),u=t.event.clientX,f=t.event.clientY;Xt(t.event.view),fb(),n.mouse=[a,this.__zoom.invert(a)],Nr(this),n.start()}}function N(){if(r.apply(this,arguments)){var n=this.__zoom,e=Ft(this),a=n.invert(e),u=n.k*(t.event.shiftKey?.5:2),f=o(b(_(n,u),e,a),i.apply(this,arguments),c);cb(),s>0?Dt(this).transition().duration(s).call(x,f,e):Dt(this).call(y.transform,f)}}function S(){if(r.apply(this,arguments)){var e,i,o,a,u=w(this,arguments),f=t.event.changedTouches,c=f.length;for(fb(),i=0;i<c;++i)a=[a=It(this,f,(o=f[i]).identifier),this.__zoom.invert(a),o.identifier],u.touch0?u.touch1||(u.touch1=a):(u.touch0=a,e=!0);if(n&&(n=clearTimeout(n),!u.touch1))return u.end(),void((a=Dt(this).on("dblclick.zoom"))&&a.apply(this,arguments));e&&(n=setTimeout(function(){n=null},p),Nr(this),u.start())}}function E(){var e,r,i,a,u=w(this,arguments),f=t.event.changedTouches,s=f.length;for(cb(),n&&(n=clearTimeout(n)),e=0;e<s;++e)i=It(this,f,(r=f[e]).identifier),u.touch0&&u.touch0[2]===r.identifier?u.touch0[0]=i:u.touch1&&u.touch1[2]===r.identifier&&(u.touch1[0]=i);if(r=u.that.__zoom,u.touch1){var l=u.touch0[0],h=u.touch0[1],d=u.touch1[0],p=u.touch1[1],v=(v=d[0]-l[0])*v+(v=d[1]-l[1])*v,g=(g=p[0]-h[0])*g+(g=p[1]-h[1])*g;r=_(r,Math.sqrt(v/g)),i=[(l[0]+d[0])/2,(l[1]+d[1])/2],a=[(h[0]+p[0])/2,(h[1]+p[1])/2]}else{if(!u.touch0)return;i=u.touch0[0],a=u.touch0[1]}u.zoom("touch",o(b(r,i,a),u.extent,c))}function k(){var n,r,i=w(this,arguments),o=t.event.changedTouches,a=o.length;for(fb(),e&&clearTimeout(e),e=setTimeout(function(){e=null},p),n=0;n<a;++n)r=o[n],i.touch0&&i.touch0[2]===r.identifier?delete i.touch0:i.touch1&&i.touch1[2]===r.identifier&&delete i.touch1;i.touch1&&!i.touch0&&(i.touch0=i.touch1,delete i.touch1),i.touch0?i.touch0[1]=this.__zoom.invert(i.touch0[0]):i.end()}return y.transform=function(t,n){var e=t.selection?t.selection():t;e.property("__zoom",hb),t!==e?x(t,n):e.interrupt().each(function(){w(this,arguments).start().zoom(null,"function"==typeof n?n.apply(this,arguments):n).end()})},y.scaleBy=function(t,n){y.scaleTo(t,function(){return this.__zoom.k*("function"==typeof n?n.apply(this,arguments):n)})},y.scaleTo=function(t,n){y.transform(t,function(){var t=i.apply(this,arguments),e=this.__zoom,r=m(t),a=e.invert(r),u="function"==typeof n?n.apply(this,arguments):n;return o(b(_(e,u),r,a),t,c)})},y.translateBy=function(t,n,e){y.transform(t,function(){return o(this.__zoom.translate("function"==typeof n?n.apply(this,arguments):n,"function"==typeof e?e.apply(this,arguments):e),i.apply(this,arguments),c)})},y.translateTo=function(t,n,e){y.transform(t,function(){var t=i.apply(this,arguments),r=this.__zoom,a=m(t);return o(ab.translate(a[0],a[1]).scale(r.k).translate("function"==typeof n?-n.apply(this,arguments):-n,"function"==typeof e?-e.apply(this,arguments):-e),t,c)})},M.prototype={start:function(){return 1==++this.active&&(this.index=h.push(this)-1,this.emit("start")),this},zoom:function(t,n){return this.mouse&&"mouse"!==t&&(this.mouse[1]=n.invert(this.mouse[0])),this.touch0&&"touch"!==t&&(this.touch0[1]=n.invert(this.touch0[0])),this.touch1&&"touch"!==t&&(this.touch1[1]=n.invert(this.touch1[0])),this.that.__zoom=n,this.emit("zoom"),this},end:function(){return 0==--this.active&&(h.splice(this.index,1),this.index=-1,this.emit("end")),this},emit:function(t){Ct(new ib(y,t,this.that.__zoom),d.apply,d,[t,this.that,this.args])}},y.wheelDelta=function(t){return arguments.length?(a="function"==typeof t?t:rb(+t),y):a},y.filter=function(t){return arguments.length?(r="function"==typeof t?t:rb(!!t),y):r},y.touchable=function(t){return arguments.length?(u="function"==typeof t?t:rb(!!t),y):u},y.extent=function(t){return arguments.length?(i="function"==typeof t?t:rb([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),y):i},y.scaleExtent=function(t){return arguments.length?(f[0]=+t[0],f[1]=+t[1],y):[f[0],f[1]]},y.translateExtent=function(t){return arguments.length?(c[0][0]=+t[0][0],c[1][0]=+t[1][0],c[0][1]=+t[0][1],c[1][1]=+t[1][1],y):[[c[0][0],c[0][1]],[c[1][0],c[1][1]]]},y.constrain=function(t){return arguments.length?(o=t,y):o},y.duration=function(t){return arguments.length?(s=+t,y):s},y.interpolate=function(t){return arguments.length?(l=t,y):l},y.on=function(){var t=d.on.apply(d,arguments);return t===d?y:t},y.clickDistance=function(t){return arguments.length?(g=(t=+t)*t,y):Math.sqrt(g)},y},t.zoomTransform=ub,t.zoomIdentity=ab,Object.defineProperty(t,"__esModule",{value:!0})});