Created
December 9, 2016 04:55
-
-
Save jrnold/8f16858cb198c44bdaee471ffc60661a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| d3 = function() { | |
| var d3 = { | |
| version: "3.2.7" | |
| }; | |
| if (!Date.now) Date.now = function() { | |
| return +new Date(); | |
| }; | |
| var d3_document = document, d3_documentElement = d3_document.documentElement, d3_window = window; | |
| try { | |
| d3_document.createElement("div").style.setProperty("opacity", 0, ""); | |
| } catch (error) { | |
| var d3_element_prototype = d3_window.Element.prototype, d3_element_setAttribute = d3_element_prototype.setAttribute, d3_element_setAttributeNS = d3_element_prototype.setAttributeNS, d3_style_prototype = d3_window.CSSStyleDeclaration.prototype, d3_style_setProperty = d3_style_prototype.setProperty; | |
| d3_element_prototype.setAttribute = function(name, value) { | |
| d3_element_setAttribute.call(this, name, value + ""); | |
| }; | |
| d3_element_prototype.setAttributeNS = function(space, local, value) { | |
| d3_element_setAttributeNS.call(this, space, local, value + ""); | |
| }; | |
| d3_style_prototype.setProperty = function(name, value, priority) { | |
| d3_style_setProperty.call(this, name, value + "", priority); | |
| }; | |
| } | |
| d3.ascending = function(a, b) { | |
| return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN; | |
| }; | |
| d3.descending = function(a, b) { | |
| return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN; | |
| }; | |
| d3.min = function(array, f) { | |
| var i = -1, n = array.length, a, b; | |
| if (arguments.length === 1) { | |
| while (++i < n && !((a = array[i]) != null && a <= a)) a = undefined; | |
| while (++i < n) if ((b = array[i]) != null && a > b) a = b; | |
| } else { | |
| while (++i < n && !((a = f.call(array, array[i], i)) != null && a <= a)) a = undefined; | |
| while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b; | |
| } | |
| return a; | |
| }; | |
| d3.max = function(array, f) { | |
| var i = -1, n = array.length, a, b; | |
| if (arguments.length === 1) { | |
| while (++i < n && !((a = array[i]) != null && a <= a)) a = undefined; | |
| while (++i < n) if ((b = array[i]) != null && b > a) a = b; | |
| } else { | |
| while (++i < n && !((a = f.call(array, array[i], i)) != null && a <= a)) a = undefined; | |
| while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b; | |
| } | |
| return a; | |
| }; | |
| d3.extent = function(array, f) { | |
| var i = -1, n = array.length, a, b, c; | |
| if (arguments.length === 1) { | |
| while (++i < n && !((a = c = array[i]) != null && a <= a)) a = c = undefined; | |
| while (++i < n) if ((b = array[i]) != null) { | |
| if (a > b) a = b; | |
| if (c < b) c = b; | |
| } | |
| } else { | |
| while (++i < n && !((a = c = f.call(array, array[i], i)) != null && a <= a)) a = undefined; | |
| while (++i < n) if ((b = f.call(array, array[i], i)) != null) { | |
| if (a > b) a = b; | |
| if (c < b) c = b; | |
| } | |
| } | |
| return [ a, c ]; | |
| }; | |
| d3.sum = function(array, f) { | |
| var s = 0, n = array.length, a, i = -1; | |
| if (arguments.length === 1) { | |
| while (++i < n) if (!isNaN(a = +array[i])) s += a; | |
| } else { | |
| while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a; | |
| } | |
| return s; | |
| }; | |
| function d3_number(x) { | |
| return x != null && !isNaN(x); | |
| } | |
| d3.mean = function(array, f) { | |
| var n = array.length, a, m = 0, i = -1, j = 0; | |
| if (arguments.length === 1) { | |
| while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j; | |
| } else { | |
| while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j; | |
| } | |
| return j ? m : undefined; | |
| }; | |
| d3.quantile = function(values, p) { | |
| var H = (values.length - 1) * p + 1, h = Math.floor(H), v = +values[h - 1], e = H - h; | |
| return e ? v + e * (values[h] - v) : v; | |
| }; | |
| d3.median = function(array, f) { | |
| if (arguments.length > 1) array = array.map(f); | |
| array = array.filter(d3_number); | |
| return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined; | |
| }; | |
| d3.bisector = function(f) { | |
| return { | |
| left: function(a, x, lo, hi) { | |
| if (arguments.length < 3) lo = 0; | |
| if (arguments.length < 4) hi = a.length; | |
| while (lo < hi) { | |
| var mid = lo + hi >>> 1; | |
| if (f.call(a, a[mid], mid) < x) lo = mid + 1; else hi = mid; | |
| } | |
| return lo; | |
| }, | |
| right: function(a, x, lo, hi) { | |
| if (arguments.length < 3) lo = 0; | |
| if (arguments.length < 4) hi = a.length; | |
| while (lo < hi) { | |
| var mid = lo + hi >>> 1; | |
| if (x < f.call(a, a[mid], mid)) hi = mid; else lo = mid + 1; | |
| } | |
| return lo; | |
| } | |
| }; | |
| }; | |
| var d3_bisector = d3.bisector(function(d) { | |
| return d; | |
| }); | |
| d3.bisectLeft = d3_bisector.left; | |
| d3.bisect = d3.bisectRight = d3_bisector.right; | |
| d3.shuffle = function(array) { | |
| var m = array.length, t, i; | |
| while (m) { | |
| i = Math.random() * m-- | 0; | |
| t = array[m], array[m] = array[i], array[i] = t; | |
| } | |
| return array; | |
| }; | |
| d3.permute = function(array, indexes) { | |
| var permutes = [], i = -1, n = indexes.length; | |
| while (++i < n) permutes[i] = array[indexes[i]]; | |
| return permutes; | |
| }; | |
| d3.zip = function() { | |
| if (!(n = arguments.length)) return []; | |
| for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m; ) { | |
| for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n; ) { | |
| zip[j] = arguments[j][i]; | |
| } | |
| } | |
| return zips; | |
| }; | |
| function d3_zipLength(d) { | |
| return d.length; | |
| } | |
| d3.transpose = function(matrix) { | |
| return d3.zip.apply(d3, matrix); | |
| }; | |
| d3.keys = function(map) { | |
| var keys = []; | |
| for (var key in map) keys.push(key); | |
| return keys; | |
| }; | |
| d3.values = function(map) { | |
| var values = []; | |
| for (var key in map) values.push(map[key]); | |
| return values; | |
| }; | |
| d3.entries = function(map) { | |
| var entries = []; | |
| for (var key in map) entries.push({ | |
| key: key, | |
| value: map[key] | |
| }); | |
| return entries; | |
| }; | |
| d3.merge = function(arrays) { | |
| return Array.prototype.concat.apply([], arrays); | |
| }; | |
| d3.range = function(start, stop, step) { | |
| if (arguments.length < 3) { | |
| step = 1; | |
| if (arguments.length < 2) { | |
| stop = start; | |
| start = 0; | |
| } | |
| } | |
| if ((stop - start) / step === Infinity) throw new Error("infinite range"); | |
| var range = [], k = d3_range_integerScale(Math.abs(step)), i = -1, j; | |
| start *= k, stop *= k, step *= k; | |
| if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k); else while ((j = start + step * ++i) < stop) range.push(j / k); | |
| return range; | |
| }; | |
| function d3_range_integerScale(x) { | |
| var k = 1; | |
| while (x * k % 1) k *= 10; | |
| return k; | |
| } | |
| function d3_class(ctor, properties) { | |
| try { | |
| for (var key in properties) { | |
| Object.defineProperty(ctor.prototype, key, { | |
| value: properties[key], | |
| enumerable: false | |
| }); | |
| } | |
| } catch (e) { | |
| ctor.prototype = properties; | |
| } | |
| } | |
| d3.map = function(object) { | |
| var map = new d3_Map(); | |
| for (var key in object) map.set(key, object[key]); | |
| return map; | |
| }; | |
| function d3_Map() {} | |
| d3_class(d3_Map, { | |
| has: function(key) { | |
| return d3_map_prefix + key in this; | |
| }, | |
| get: function(key) { | |
| return this[d3_map_prefix + key]; | |
| }, | |
| set: function(key, value) { | |
| return this[d3_map_prefix + key] = value; | |
| }, | |
| remove: function(key) { | |
| key = d3_map_prefix + key; | |
| return key in this && delete this[key]; | |
| }, | |
| keys: function() { | |
| var keys = []; | |
| this.forEach(function(key) { | |
| keys.push(key); | |
| }); | |
| return keys; | |
| }, | |
| values: function() { | |
| var values = []; | |
| this.forEach(function(key, value) { | |
| values.push(value); | |
| }); | |
| return values; | |
| }, | |
| entries: function() { | |
| var entries = []; | |
| this.forEach(function(key, value) { | |
| entries.push({ | |
| key: key, | |
| value: value | |
| }); | |
| }); | |
| return entries; | |
| }, | |
| forEach: function(f) { | |
| for (var key in this) { | |
| if (key.charCodeAt(0) === d3_map_prefixCode) { | |
| f.call(this, key.substring(1), this[key]); | |
| } | |
| } | |
| } | |
| }); | |
| var d3_map_prefix = "\0", d3_map_prefixCode = d3_map_prefix.charCodeAt(0); | |
| d3.nest = function() { | |
| var nest = {}, keys = [], sortKeys = [], sortValues, rollup; | |
| function map(mapType, array, depth) { | |
| if (depth >= keys.length) return rollup ? rollup.call(nest, array) : sortValues ? array.sort(sortValues) : array; | |
| var i = -1, n = array.length, key = keys[depth++], keyValue, object, setter, valuesByKey = new d3_Map(), values; | |
| while (++i < n) { | |
| if (values = valuesByKey.get(keyValue = key(object = array[i]))) { | |
| values.push(object); | |
| } else { | |
| valuesByKey.set(keyValue, [ object ]); | |
| } | |
| } | |
| if (mapType) { | |
| object = mapType(); | |
| setter = function(keyValue, values) { | |
| object.set(keyValue, map(mapType, values, depth)); | |
| }; | |
| } else { | |
| object = {}; | |
| setter = function(keyValue, values) { | |
| object[keyValue] = map(mapType, values, depth); | |
| }; | |
| } | |
| valuesByKey.forEach(setter); | |
| return object; | |
| } | |
| function entries(map, depth) { | |
| if (depth >= keys.length) return map; | |
| var array = [], sortKey = sortKeys[depth++]; | |
| map.forEach(function(key, keyMap) { | |
| array.push({ | |
| key: key, | |
| values: entries(keyMap, depth) | |
| }); | |
| }); | |
| return sortKey ? array.sort(function(a, b) { | |
| return sortKey(a.key, b.key); | |
| }) : array; | |
| } | |
| nest.map = function(array, mapType) { | |
| return map(mapType, array, 0); | |
| }; | |
| nest.entries = function(array) { | |
| return entries(map(d3.map, array, 0), 0); | |
| }; | |
| nest.key = function(d) { | |
| keys.push(d); | |
| return nest; | |
| }; | |
| nest.sortKeys = function(order) { | |
| sortKeys[keys.length - 1] = order; | |
| return nest; | |
| }; | |
| nest.sortValues = function(order) { | |
| sortValues = order; | |
| return nest; | |
| }; | |
| nest.rollup = function(f) { | |
| rollup = f; | |
| return nest; | |
| }; | |
| return nest; | |
| }; | |
| d3.set = function(array) { | |
| var set = new d3_Set(); | |
| if (array) for (var i = 0; i < array.length; i++) set.add(array[i]); | |
| return set; | |
| }; | |
| function d3_Set() {} | |
| d3_class(d3_Set, { | |
| has: function(value) { | |
| return d3_map_prefix + value in this; | |
| }, | |
| add: function(value) { | |
| this[d3_map_prefix + value] = true; | |
| return value; | |
| }, | |
| remove: function(value) { | |
| value = d3_map_prefix + value; | |
| return value in this && delete this[value]; | |
| }, | |
| values: function() { | |
| var values = []; | |
| this.forEach(function(value) { | |
| values.push(value); | |
| }); | |
| return values; | |
| }, | |
| forEach: function(f) { | |
| for (var value in this) { | |
| if (value.charCodeAt(0) === d3_map_prefixCode) { | |
| f.call(this, value.substring(1)); | |
| } | |
| } | |
| } | |
| }); | |
| d3.behavior = {}; | |
| d3.rebind = function(target, source) { | |
| var i = 1, n = arguments.length, method; | |
| while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]); | |
| return target; | |
| }; | |
| function d3_rebind(target, source, method) { | |
| return function() { | |
| var value = method.apply(source, arguments); | |
| return value === source ? target : value; | |
| }; | |
| } | |
| function d3_vendorSymbol(object, name) { | |
| if (name in object) return name; | |
| name = name.charAt(0).toUpperCase() + name.substring(1); | |
| for (var i = 0, n = d3_vendorPrefixes.length; i < n; ++i) { | |
| var prefixName = d3_vendorPrefixes[i] + name; | |
| if (prefixName in object) return prefixName; | |
| } | |
| } | |
| var d3_vendorPrefixes = [ "webkit", "ms", "moz", "Moz", "o", "O" ]; | |
| var d3_array = d3_arraySlice; | |
| function d3_arrayCopy(pseudoarray) { | |
| var i = -1, n = pseudoarray.length, array = []; | |
| while (++i < n) array.push(pseudoarray[i]); | |
| return array; | |
| } | |
| function d3_arraySlice(pseudoarray) { | |
| return Array.prototype.slice.call(pseudoarray); | |
| } | |
| try { | |
| d3_array(d3_documentElement.childNodes)[0].nodeType; | |
| } catch (e) { | |
| d3_array = d3_arrayCopy; | |
| } | |
| function d3_noop() {} | |
| d3.dispatch = function() { | |
| var dispatch = new d3_dispatch(), i = -1, n = arguments.length; | |
| while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch); | |
| return dispatch; | |
| }; | |
| function d3_dispatch() {} | |
| d3_dispatch.prototype.on = function(type, listener) { | |
| var i = type.indexOf("."), name = ""; | |
| if (i >= 0) { | |
| name = type.substring(i + 1); | |
| type = type.substring(0, i); | |
| } | |
| if (type) return arguments.length < 2 ? this[type].on(name) : this[type].on(name, listener); | |
| if (arguments.length === 2) { | |
| if (listener == null) for (type in this) { | |
| if (this.hasOwnProperty(type)) this[type].on(name, null); | |
| } | |
| return this; | |
| } | |
| }; | |
| function d3_dispatch_event(dispatch) { | |
| var listeners = [], listenerByName = new d3_Map(); | |
| function event() { | |
| var z = listeners, i = -1, n = z.length, l; | |
| while (++i < n) if (l = z[i].on) l.apply(this, arguments); | |
| return dispatch; | |
| } | |
| event.on = function(name, listener) { | |
| var l = listenerByName.get(name), i; | |
| if (arguments.length < 2) return l && l.on; | |
| if (l) { | |
| l.on = null; | |
| listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1)); | |
| listenerByName.remove(name); | |
| } | |
| if (listener) listeners.push(listenerByName.set(name, { | |
| on: listener | |
| })); | |
| return dispatch; | |
| }; | |
| return event; | |
| } | |
| d3.event = null; | |
| function d3_eventPreventDefault() { | |
| d3.event.preventDefault(); | |
| } | |
| function d3_eventSource() { | |
| var e = d3.event, s; | |
| while (s = e.sourceEvent) e = s; | |
| return e; | |
| } | |
| function d3_eventDispatch(target) { | |
| var dispatch = new d3_dispatch(), i = 0, n = arguments.length; | |
| while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch); | |
| dispatch.of = function(thiz, argumentz) { | |
| return function(e1) { | |
| try { | |
| var e0 = e1.sourceEvent = d3.event; | |
| e1.target = target; | |
| d3.event = e1; | |
| dispatch[e1.type].apply(thiz, argumentz); | |
| } finally { | |
| d3.event = e0; | |
| } | |
| }; | |
| }; | |
| return dispatch; | |
| } | |
| d3.requote = function(s) { | |
| return s.replace(d3_requote_re, "\\$&"); | |
| }; | |
| var d3_requote_re = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g; | |
| var d3_subclass = {}.__proto__ ? function(object, prototype) { | |
| object.__proto__ = prototype; | |
| } : function(object, prototype) { | |
| for (var property in prototype) object[property] = prototype[property]; | |
| }; | |
| function d3_selection(groups) { | |
| d3_subclass(groups, d3_selectionPrototype); | |
| return groups; | |
| } | |
| var d3_select = function(s, n) { | |
| return n.querySelector(s); | |
| }, d3_selectAll = function(s, n) { | |
| return n.querySelectorAll(s); | |
| }, d3_selectMatcher = d3_documentElement[d3_vendorSymbol(d3_documentElement, "matchesSelector")], d3_selectMatches = function(n, s) { | |
| return d3_selectMatcher.call(n, s); | |
| }; | |
| if (typeof Sizzle === "function") { | |
| d3_select = function(s, n) { | |
| return Sizzle(s, n)[0] || null; | |
| }; | |
| d3_selectAll = function(s, n) { | |
| return Sizzle.uniqueSort(Sizzle(s, n)); | |
| }; | |
| d3_selectMatches = Sizzle.matchesSelector; | |
| } | |
| d3.selection = function() { | |
| return d3_selectionRoot; | |
| }; | |
| var d3_selectionPrototype = d3.selection.prototype = []; | |
| d3_selectionPrototype.select = function(selector) { | |
| var subgroups = [], subgroup, subnode, group, node; | |
| selector = d3_selection_selector(selector); | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| subgroups.push(subgroup = []); | |
| subgroup.parentNode = (group = this[j]).parentNode; | |
| for (var i = -1, n = group.length; ++i < n; ) { | |
| if (node = group[i]) { | |
| subgroup.push(subnode = selector.call(node, node.__data__, i, j)); | |
| if (subnode && "__data__" in node) subnode.__data__ = node.__data__; | |
| } else { | |
| subgroup.push(null); | |
| } | |
| } | |
| } | |
| return d3_selection(subgroups); | |
| }; | |
| function d3_selection_selector(selector) { | |
| return typeof selector === "function" ? selector : function() { | |
| return d3_select(selector, this); | |
| }; | |
| } | |
| d3_selectionPrototype.selectAll = function(selector) { | |
| var subgroups = [], subgroup, node; | |
| selector = d3_selection_selectorAll(selector); | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| for (var group = this[j], i = -1, n = group.length; ++i < n; ) { | |
| if (node = group[i]) { | |
| subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i, j))); | |
| subgroup.parentNode = node; | |
| } | |
| } | |
| } | |
| return d3_selection(subgroups); | |
| }; | |
| function d3_selection_selectorAll(selector) { | |
| return typeof selector === "function" ? selector : function() { | |
| return d3_selectAll(selector, this); | |
| }; | |
| } | |
| var d3_nsPrefix = { | |
| svg: "http://www.w3.org/2000/svg", | |
| xhtml: "http://www.w3.org/1999/xhtml", | |
| xlink: "http://www.w3.org/1999/xlink", | |
| xml: "http://www.w3.org/XML/1998/namespace", | |
| xmlns: "http://www.w3.org/2000/xmlns/" | |
| }; | |
| d3.ns = { | |
| prefix: d3_nsPrefix, | |
| qualify: function(name) { | |
| var i = name.indexOf(":"), prefix = name; | |
| if (i >= 0) { | |
| prefix = name.substring(0, i); | |
| name = name.substring(i + 1); | |
| } | |
| return d3_nsPrefix.hasOwnProperty(prefix) ? { | |
| space: d3_nsPrefix[prefix], | |
| local: name | |
| } : name; | |
| } | |
| }; | |
| d3_selectionPrototype.attr = function(name, value) { | |
| if (arguments.length < 2) { | |
| if (typeof name === "string") { | |
| var node = this.node(); | |
| name = d3.ns.qualify(name); | |
| return name.local ? node.getAttributeNS(name.space, name.local) : node.getAttribute(name); | |
| } | |
| for (value in name) this.each(d3_selection_attr(value, name[value])); | |
| return this; | |
| } | |
| return this.each(d3_selection_attr(name, value)); | |
| }; | |
| function d3_selection_attr(name, value) { | |
| name = d3.ns.qualify(name); | |
| function attrNull() { | |
| this.removeAttribute(name); | |
| } | |
| function attrNullNS() { | |
| this.removeAttributeNS(name.space, name.local); | |
| } | |
| function attrConstant() { | |
| this.setAttribute(name, value); | |
| } | |
| function attrConstantNS() { | |
| this.setAttributeNS(name.space, name.local, value); | |
| } | |
| function attrFunction() { | |
| var x = value.apply(this, arguments); | |
| if (x == null) this.removeAttribute(name); else this.setAttribute(name, x); | |
| } | |
| function attrFunctionNS() { | |
| var x = value.apply(this, arguments); | |
| if (x == null) this.removeAttributeNS(name.space, name.local); else this.setAttributeNS(name.space, name.local, x); | |
| } | |
| return value == null ? name.local ? attrNullNS : attrNull : typeof value === "function" ? name.local ? attrFunctionNS : attrFunction : name.local ? attrConstantNS : attrConstant; | |
| } | |
| function d3_collapse(s) { | |
| return s.trim().replace(/\s+/g, " "); | |
| } | |
| d3_selectionPrototype.classed = function(name, value) { | |
| if (arguments.length < 2) { | |
| if (typeof name === "string") { | |
| var node = this.node(), n = (name = name.trim().split(/^|\s+/g)).length, i = -1; | |
| if (value = node.classList) { | |
| while (++i < n) if (!value.contains(name[i])) return false; | |
| } else { | |
| value = node.getAttribute("class"); | |
| while (++i < n) if (!d3_selection_classedRe(name[i]).test(value)) return false; | |
| } | |
| return true; | |
| } | |
| for (value in name) this.each(d3_selection_classed(value, name[value])); | |
| return this; | |
| } | |
| return this.each(d3_selection_classed(name, value)); | |
| }; | |
| function d3_selection_classedRe(name) { | |
| return new RegExp("(?:^|\\s+)" + d3.requote(name) + "(?:\\s+|$)", "g"); | |
| } | |
| function d3_selection_classed(name, value) { | |
| name = name.trim().split(/\s+/).map(d3_selection_classedName); | |
| var n = name.length; | |
| function classedConstant() { | |
| var i = -1; | |
| while (++i < n) name[i](this, value); | |
| } | |
| function classedFunction() { | |
| var i = -1, x = value.apply(this, arguments); | |
| while (++i < n) name[i](this, x); | |
| } | |
| return typeof value === "function" ? classedFunction : classedConstant; | |
| } | |
| function d3_selection_classedName(name) { | |
| var re = d3_selection_classedRe(name); | |
| return function(node, value) { | |
| if (c = node.classList) return value ? c.add(name) : c.remove(name); | |
| var c = node.getAttribute("class") || ""; | |
| if (value) { | |
| re.lastIndex = 0; | |
| if (!re.test(c)) node.setAttribute("class", d3_collapse(c + " " + name)); | |
| } else { | |
| node.setAttribute("class", d3_collapse(c.replace(re, " "))); | |
| } | |
| }; | |
| } | |
| d3_selectionPrototype.style = function(name, value, priority) { | |
| var n = arguments.length; | |
| if (n < 3) { | |
| if (typeof name !== "string") { | |
| if (n < 2) value = ""; | |
| for (priority in name) this.each(d3_selection_style(priority, name[priority], value)); | |
| return this; | |
| } | |
| if (n < 2) return d3_window.getComputedStyle(this.node(), null).getPropertyValue(name); | |
| priority = ""; | |
| } | |
| return this.each(d3_selection_style(name, value, priority)); | |
| }; | |
| function d3_selection_style(name, value, priority) { | |
| function styleNull() { | |
| this.style.removeProperty(name); | |
| } | |
| function styleConstant() { | |
| this.style.setProperty(name, value, priority); | |
| } | |
| function styleFunction() { | |
| var x = value.apply(this, arguments); | |
| if (x == null) this.style.removeProperty(name); else this.style.setProperty(name, x, priority); | |
| } | |
| return value == null ? styleNull : typeof value === "function" ? styleFunction : styleConstant; | |
| } | |
| d3_selectionPrototype.property = function(name, value) { | |
| if (arguments.length < 2) { | |
| if (typeof name === "string") return this.node()[name]; | |
| for (value in name) this.each(d3_selection_property(value, name[value])); | |
| return this; | |
| } | |
| return this.each(d3_selection_property(name, value)); | |
| }; | |
| function d3_selection_property(name, value) { | |
| function propertyNull() { | |
| delete this[name]; | |
| } | |
| function propertyConstant() { | |
| this[name] = value; | |
| } | |
| function propertyFunction() { | |
| var x = value.apply(this, arguments); | |
| if (x == null) delete this[name]; else this[name] = x; | |
| } | |
| return value == null ? propertyNull : typeof value === "function" ? propertyFunction : propertyConstant; | |
| } | |
| d3_selectionPrototype.text = function(value) { | |
| return arguments.length ? this.each(typeof value === "function" ? function() { | |
| var v = value.apply(this, arguments); | |
| this.textContent = v == null ? "" : v; | |
| } : value == null ? function() { | |
| this.textContent = ""; | |
| } : function() { | |
| this.textContent = value; | |
| }) : this.node().textContent; | |
| }; | |
| d3_selectionPrototype.html = function(value) { | |
| return arguments.length ? this.each(typeof value === "function" ? function() { | |
| var v = value.apply(this, arguments); | |
| this.innerHTML = v == null ? "" : v; | |
| } : value == null ? function() { | |
| this.innerHTML = ""; | |
| } : function() { | |
| this.innerHTML = value; | |
| }) : this.node().innerHTML; | |
| }; | |
| d3_selectionPrototype.append = function(name) { | |
| name = d3_selection_creator(name); | |
| return this.select(function() { | |
| return this.appendChild(name.apply(this, arguments)); | |
| }); | |
| }; | |
| function d3_selection_creator(name) { | |
| return typeof name === "function" ? name : (name = d3.ns.qualify(name)).local ? function() { | |
| return d3_document.createElementNS(name.space, name.local); | |
| } : function() { | |
| return d3_document.createElementNS(this.namespaceURI, name); | |
| }; | |
| } | |
| d3_selectionPrototype.insert = function(name, before) { | |
| name = d3_selection_creator(name); | |
| before = d3_selection_selector(before); | |
| return this.select(function() { | |
| return this.insertBefore(name.apply(this, arguments), before.apply(this, arguments)); | |
| }); | |
| }; | |
| d3_selectionPrototype.remove = function() { | |
| return this.each(function() { | |
| var parent = this.parentNode; | |
| if (parent) parent.removeChild(this); | |
| }); | |
| }; | |
| d3_selectionPrototype.data = function(value, key) { | |
| var i = -1, n = this.length, group, node; | |
| if (!arguments.length) { | |
| value = new Array(n = (group = this[0]).length); | |
| while (++i < n) { | |
| if (node = group[i]) { | |
| value[i] = node.__data__; | |
| } | |
| } | |
| return value; | |
| } | |
| function bind(group, groupData) { | |
| var i, n = group.length, m = groupData.length, n0 = Math.min(n, m), updateNodes = new Array(m), enterNodes = new Array(m), exitNodes = new Array(n), node, nodeData; | |
| if (key) { | |
| var nodeByKeyValue = new d3_Map(), dataByKeyValue = new d3_Map(), keyValues = [], keyValue; | |
| for (i = -1; ++i < n; ) { | |
| keyValue = key.call(node = group[i], node.__data__, i); | |
| if (nodeByKeyValue.has(keyValue)) { | |
| exitNodes[i] = node; | |
| } else { | |
| nodeByKeyValue.set(keyValue, node); | |
| } | |
| keyValues.push(keyValue); | |
| } | |
| for (i = -1; ++i < m; ) { | |
| keyValue = key.call(groupData, nodeData = groupData[i], i); | |
| if (node = nodeByKeyValue.get(keyValue)) { | |
| updateNodes[i] = node; | |
| node.__data__ = nodeData; | |
| } else if (!dataByKeyValue.has(keyValue)) { | |
| enterNodes[i] = d3_selection_dataNode(nodeData); | |
| } | |
| dataByKeyValue.set(keyValue, nodeData); | |
| nodeByKeyValue.remove(keyValue); | |
| } | |
| for (i = -1; ++i < n; ) { | |
| if (nodeByKeyValue.has(keyValues[i])) { | |
| exitNodes[i] = group[i]; | |
| } | |
| } | |
| } else { | |
| for (i = -1; ++i < n0; ) { | |
| node = group[i]; | |
| nodeData = groupData[i]; | |
| if (node) { | |
| node.__data__ = nodeData; | |
| updateNodes[i] = node; | |
| } else { | |
| enterNodes[i] = d3_selection_dataNode(nodeData); | |
| } | |
| } | |
| for (;i < m; ++i) { | |
| enterNodes[i] = d3_selection_dataNode(groupData[i]); | |
| } | |
| for (;i < n; ++i) { | |
| exitNodes[i] = group[i]; | |
| } | |
| } | |
| enterNodes.update = updateNodes; | |
| enterNodes.parentNode = updateNodes.parentNode = exitNodes.parentNode = group.parentNode; | |
| enter.push(enterNodes); | |
| update.push(updateNodes); | |
| exit.push(exitNodes); | |
| } | |
| var enter = d3_selection_enter([]), update = d3_selection([]), exit = d3_selection([]); | |
| if (typeof value === "function") { | |
| while (++i < n) { | |
| bind(group = this[i], value.call(group, group.parentNode.__data__, i)); | |
| } | |
| } else { | |
| while (++i < n) { | |
| bind(group = this[i], value); | |
| } | |
| } | |
| update.enter = function() { | |
| return enter; | |
| }; | |
| update.exit = function() { | |
| return exit; | |
| }; | |
| return update; | |
| }; | |
| function d3_selection_dataNode(data) { | |
| return { | |
| __data__: data | |
| }; | |
| } | |
| d3_selectionPrototype.datum = function(value) { | |
| return arguments.length ? this.property("__data__", value) : this.property("__data__"); | |
| }; | |
| d3_selectionPrototype.filter = function(filter) { | |
| var subgroups = [], subgroup, group, node; | |
| if (typeof filter !== "function") filter = d3_selection_filter(filter); | |
| for (var j = 0, m = this.length; j < m; j++) { | |
| subgroups.push(subgroup = []); | |
| subgroup.parentNode = (group = this[j]).parentNode; | |
| for (var i = 0, n = group.length; i < n; i++) { | |
| if ((node = group[i]) && filter.call(node, node.__data__, i)) { | |
| subgroup.push(node); | |
| } | |
| } | |
| } | |
| return d3_selection(subgroups); | |
| }; | |
| function d3_selection_filter(selector) { | |
| return function() { | |
| return d3_selectMatches(this, selector); | |
| }; | |
| } | |
| d3_selectionPrototype.order = function() { | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0; ) { | |
| if (node = group[i]) { | |
| if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next); | |
| next = node; | |
| } | |
| } | |
| } | |
| return this; | |
| }; | |
| d3_selectionPrototype.sort = function(comparator) { | |
| comparator = d3_selection_sortComparator.apply(this, arguments); | |
| for (var j = -1, m = this.length; ++j < m; ) this[j].sort(comparator); | |
| return this.order(); | |
| }; | |
| function d3_selection_sortComparator(comparator) { | |
| if (!arguments.length) comparator = d3.ascending; | |
| return function(a, b) { | |
| return !a - !b || comparator(a.__data__, b.__data__); | |
| }; | |
| } | |
| d3_selectionPrototype.each = function(callback) { | |
| return d3_selection_each(this, function(node, i, j) { | |
| callback.call(node, node.__data__, i, j); | |
| }); | |
| }; | |
| function d3_selection_each(groups, callback) { | |
| for (var j = 0, m = groups.length; j < m; j++) { | |
| for (var group = groups[j], i = 0, n = group.length, node; i < n; i++) { | |
| if (node = group[i]) callback(node, i, j); | |
| } | |
| } | |
| return groups; | |
| } | |
| d3_selectionPrototype.call = function(callback) { | |
| var args = d3_array(arguments); | |
| callback.apply(args[0] = this, args); | |
| return this; | |
| }; | |
| d3_selectionPrototype.empty = function() { | |
| return !this.node(); | |
| }; | |
| d3_selectionPrototype.node = function() { | |
| for (var j = 0, m = this.length; j < m; j++) { | |
| for (var group = this[j], i = 0, n = group.length; i < n; i++) { | |
| var node = group[i]; | |
| if (node) return node; | |
| } | |
| } | |
| return null; | |
| }; | |
| d3_selectionPrototype.size = function() { | |
| var n = 0; | |
| this.each(function() { | |
| ++n; | |
| }); | |
| return n; | |
| }; | |
| function d3_selection_enter(selection) { | |
| d3_subclass(selection, d3_selection_enterPrototype); | |
| return selection; | |
| } | |
| var d3_selection_enterPrototype = []; | |
| d3.selection.enter = d3_selection_enter; | |
| d3.selection.enter.prototype = d3_selection_enterPrototype; | |
| d3_selection_enterPrototype.append = d3_selectionPrototype.append; | |
| d3_selection_enterPrototype.empty = d3_selectionPrototype.empty; | |
| d3_selection_enterPrototype.node = d3_selectionPrototype.node; | |
| d3_selection_enterPrototype.call = d3_selectionPrototype.call; | |
| d3_selection_enterPrototype.size = d3_selectionPrototype.size; | |
| d3_selection_enterPrototype.select = function(selector) { | |
| var subgroups = [], subgroup, subnode, upgroup, group, node; | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| upgroup = (group = this[j]).update; | |
| subgroups.push(subgroup = []); | |
| subgroup.parentNode = group.parentNode; | |
| for (var i = -1, n = group.length; ++i < n; ) { | |
| if (node = group[i]) { | |
| subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i, j)); | |
| subnode.__data__ = node.__data__; | |
| } else { | |
| subgroup.push(null); | |
| } | |
| } | |
| } | |
| return d3_selection(subgroups); | |
| }; | |
| d3_selection_enterPrototype.insert = function(name, before) { | |
| if (arguments.length < 2) before = d3_selection_enterInsertBefore(this); | |
| return d3_selectionPrototype.insert.call(this, name, before); | |
| }; | |
| function d3_selection_enterInsertBefore(enter) { | |
| var i0, j0; | |
| return function(d, i, j) { | |
| var group = enter[j].update, n = group.length, node; | |
| if (j != j0) j0 = j, i0 = 0; | |
| if (i >= i0) i0 = i + 1; | |
| while (!(node = group[i0]) && ++i0 < n) ; | |
| return node; | |
| }; | |
| } | |
| d3_selectionPrototype.transition = function() { | |
| var id = d3_transitionInheritId || ++d3_transitionId, subgroups = [], subgroup, node, transition = d3_transitionInherit || { | |
| time: Date.now(), | |
| ease: d3_ease_cubicInOut, | |
| delay: 0, | |
| duration: 250 | |
| }; | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| subgroups.push(subgroup = []); | |
| for (var group = this[j], i = -1, n = group.length; ++i < n; ) { | |
| if (node = group[i]) d3_transitionNode(node, i, id, transition); | |
| subgroup.push(node); | |
| } | |
| } | |
| return d3_transition(subgroups, id); | |
| }; | |
| d3.select = function(node) { | |
| var group = [ typeof node === "string" ? d3_select(node, d3_document) : node ]; | |
| group.parentNode = d3_documentElement; | |
| return d3_selection([ group ]); | |
| }; | |
| d3.selectAll = function(nodes) { | |
| var group = d3_array(typeof nodes === "string" ? d3_selectAll(nodes, d3_document) : nodes); | |
| group.parentNode = d3_documentElement; | |
| return d3_selection([ group ]); | |
| }; | |
| var d3_selectionRoot = d3.select(d3_documentElement); | |
| d3_selectionPrototype.on = function(type, listener, capture) { | |
| var n = arguments.length; | |
| if (n < 3) { | |
| if (typeof type !== "string") { | |
| if (n < 2) listener = false; | |
| for (capture in type) this.each(d3_selection_on(capture, type[capture], listener)); | |
| return this; | |
| } | |
| if (n < 2) return (n = this.node()["__on" + type]) && n._; | |
| capture = false; | |
| } | |
| return this.each(d3_selection_on(type, listener, capture)); | |
| }; | |
| function d3_selection_on(type, listener, capture) { | |
| var name = "__on" + type, i = type.indexOf("."), wrap = d3_selection_onListener; | |
| if (i > 0) type = type.substring(0, i); | |
| var filter = d3_selection_onFilters.get(type); | |
| if (filter) type = filter, wrap = d3_selection_onFilter; | |
| function onRemove() { | |
| var l = this[name]; | |
| if (l) { | |
| this.removeEventListener(type, l, l.$); | |
| delete this[name]; | |
| } | |
| } | |
| function onAdd() { | |
| var l = wrap(listener, d3_array(arguments)); | |
| onRemove.call(this); | |
| this.addEventListener(type, this[name] = l, l.$ = capture); | |
| l._ = listener; | |
| } | |
| function removeAll() { | |
| var re = new RegExp("^__on([^.]+)" + d3.requote(type) + "$"), match; | |
| for (var name in this) { | |
| if (match = name.match(re)) { | |
| var l = this[name]; | |
| this.removeEventListener(match[1], l, l.$); | |
| delete this[name]; | |
| } | |
| } | |
| } | |
| return i ? listener ? onAdd : onRemove : listener ? d3_noop : removeAll; | |
| } | |
| var d3_selection_onFilters = d3.map({ | |
| mouseenter: "mouseover", | |
| mouseleave: "mouseout" | |
| }); | |
| d3_selection_onFilters.forEach(function(k) { | |
| if ("on" + k in d3_document) d3_selection_onFilters.remove(k); | |
| }); | |
| function d3_selection_onListener(listener, argumentz) { | |
| return function(e) { | |
| var o = d3.event; | |
| d3.event = e; | |
| argumentz[0] = this.__data__; | |
| try { | |
| listener.apply(this, argumentz); | |
| } finally { | |
| d3.event = o; | |
| } | |
| }; | |
| } | |
| function d3_selection_onFilter(listener, argumentz) { | |
| var l = d3_selection_onListener(listener, argumentz); | |
| return function(e) { | |
| var target = this, related = e.relatedTarget; | |
| if (!related || related !== target && !(related.compareDocumentPosition(target) & 8)) { | |
| l.call(target, e); | |
| } | |
| }; | |
| } | |
| var d3_event_dragSelect = d3_vendorSymbol(d3_documentElement.style, "userSelect"), d3_event_dragId = 0; | |
| function d3_event_dragSuppress() { | |
| var name = ".dragsuppress-" + ++d3_event_dragId, touchmove = "touchmove" + name, selectstart = "selectstart" + name, dragstart = "dragstart" + name, click = "click" + name, w = d3.select(d3_window).on(touchmove, d3_eventPreventDefault).on(selectstart, d3_eventPreventDefault).on(dragstart, d3_eventPreventDefault), style = d3_documentElement.style, select = style[d3_event_dragSelect]; | |
| style[d3_event_dragSelect] = "none"; | |
| return function(suppressClick) { | |
| w.on(name, null); | |
| style[d3_event_dragSelect] = select; | |
| if (suppressClick) { | |
| function off() { | |
| w.on(click, null); | |
| } | |
| w.on(click, function() { | |
| d3_eventPreventDefault(); | |
| off(); | |
| }, true); | |
| setTimeout(off, 0); | |
| } | |
| }; | |
| } | |
| d3.mouse = function(container) { | |
| return d3_mousePoint(container, d3_eventSource()); | |
| }; | |
| var d3_mouse_bug44083 = /WebKit/.test(d3_window.navigator.userAgent) ? -1 : 0; | |
| function d3_mousePoint(container, e) { | |
| var svg = container.ownerSVGElement || container; | |
| if (svg.createSVGPoint) { | |
| var point = svg.createSVGPoint(); | |
| if (d3_mouse_bug44083 < 0 && (d3_window.scrollX || d3_window.scrollY)) { | |
| svg = d3.select("body").append("svg").style({ | |
| position: "absolute", | |
| top: 0, | |
| left: 0, | |
| margin: 0, | |
| padding: 0, | |
| border: "none" | |
| }, "important"); | |
| var ctm = svg[0][0].getScreenCTM(); | |
| d3_mouse_bug44083 = !(ctm.f || ctm.e); | |
| svg.remove(); | |
| } | |
| if (d3_mouse_bug44083) { | |
| point.x = e.pageX; | |
| point.y = e.pageY; | |
| } else { | |
| point.x = e.clientX; | |
| point.y = e.clientY; | |
| } | |
| point = point.matrixTransform(container.getScreenCTM().inverse()); | |
| return [ point.x, point.y ]; | |
| } | |
| var rect = container.getBoundingClientRect(); | |
| return [ e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop ]; | |
| } | |
| d3.touches = function(container, touches) { | |
| if (arguments.length < 2) touches = d3_eventSource().touches; | |
| return touches ? d3_array(touches).map(function(touch) { | |
| var point = d3_mousePoint(container, touch); | |
| point.identifier = touch.identifier; | |
| return point; | |
| }) : []; | |
| }; | |
| d3.behavior.drag = function() { | |
| var event = d3_eventDispatch(drag, "drag", "dragstart", "dragend"), origin = null, mousedown = dragstart(d3_noop, d3.mouse, "mousemove", "mouseup"), touchstart = dragstart(touchid, touchposition, "touchmove", "touchend"); | |
| function drag() { | |
| this.on("mousedown.drag", mousedown).on("touchstart.drag", touchstart); | |
| } | |
| function touchid() { | |
| return d3.event.changedTouches[0].identifier; | |
| } | |
| function touchposition(parent, id) { | |
| return d3.touches(parent).filter(function(p) { | |
| return p.identifier === id; | |
| })[0]; | |
| } | |
| function dragstart(id, position, move, end) { | |
| return function() { | |
| var target = this, parent = target.parentNode, event_ = event.of(target, arguments), eventTarget = d3.event.target, eventId = id(), drag = eventId == null ? "drag" : "drag-" + eventId, origin_ = position(parent, eventId), dragged = 0, offset, w = d3.select(d3_window).on(move + "." + drag, moved).on(end + "." + drag, ended), dragRestore = d3_event_dragSuppress(); | |
| if (origin) { | |
| offset = origin.apply(target, arguments); | |
| offset = [ offset.x - origin_[0], offset.y - origin_[1] ]; | |
| } else { | |
| offset = [ 0, 0 ]; | |
| } | |
| event_({ | |
| type: "dragstart" | |
| }); | |
| function moved() { | |
| if (!parent) return ended(); | |
| var p = position(parent, eventId), dx = p[0] - origin_[0], dy = p[1] - origin_[1]; | |
| dragged |= dx | dy; | |
| origin_ = p; | |
| event_({ | |
| type: "drag", | |
| x: p[0] + offset[0], | |
| y: p[1] + offset[1], | |
| dx: dx, | |
| dy: dy | |
| }); | |
| } | |
| function ended() { | |
| w.on(move + "." + drag, null).on(end + "." + drag, null); | |
| dragRestore(dragged && d3.event.target === eventTarget); | |
| event_({ | |
| type: "dragend" | |
| }); | |
| } | |
| }; | |
| } | |
| drag.origin = function(x) { | |
| if (!arguments.length) return origin; | |
| origin = x; | |
| return drag; | |
| }; | |
| return d3.rebind(drag, event, "on"); | |
| }; | |
| d3.behavior.zoom = function() { | |
| var translate = [ 0, 0 ], translate0, scale = 1, scaleExtent = d3_behavior_zoomInfinity, mousedown = "mousedown.zoom", mousemove = "mousemove.zoom", mouseup = "mouseup.zoom", event = d3_eventDispatch(zoom, "zoom"), x0, x1, y0, y1, touchtime; | |
| function zoom() { | |
| this.on(mousedown, mousedowned).on(d3_behavior_zoomWheel + ".zoom", mousewheeled).on(mousemove, mousewheelreset).on("dblclick.zoom", dblclicked).on("touchstart.zoom", touchstarted); | |
| } | |
| zoom.translate = function(x) { | |
| if (!arguments.length) return translate; | |
| translate = x.map(Number); | |
| rescale(); | |
| return zoom; | |
| }; | |
| zoom.scale = function(x) { | |
| if (!arguments.length) return scale; | |
| scale = +x; | |
| rescale(); | |
| return zoom; | |
| }; | |
| zoom.scaleExtent = function(x) { | |
| if (!arguments.length) return scaleExtent; | |
| scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number); | |
| return zoom; | |
| }; | |
| zoom.x = function(z) { | |
| if (!arguments.length) return x1; | |
| x1 = z; | |
| x0 = z.copy(); | |
| translate = [ 0, 0 ]; | |
| scale = 1; | |
| return zoom; | |
| }; | |
| zoom.y = function(z) { | |
| if (!arguments.length) return y1; | |
| y1 = z; | |
| y0 = z.copy(); | |
| translate = [ 0, 0 ]; | |
| scale = 1; | |
| return zoom; | |
| }; | |
| function location(p) { | |
| return [ (p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale ]; | |
| } | |
| function point(l) { | |
| return [ l[0] * scale + translate[0], l[1] * scale + translate[1] ]; | |
| } | |
| function scaleTo(s) { | |
| scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s)); | |
| } | |
| function translateTo(p, l) { | |
| l = point(l); | |
| translate[0] += p[0] - l[0]; | |
| translate[1] += p[1] - l[1]; | |
| } | |
| function rescale() { | |
| if (x1) x1.domain(x0.range().map(function(x) { | |
| return (x - translate[0]) / scale; | |
| }).map(x0.invert)); | |
| if (y1) y1.domain(y0.range().map(function(y) { | |
| return (y - translate[1]) / scale; | |
| }).map(y0.invert)); | |
| } | |
| function dispatch(event) { | |
| rescale(); | |
| event({ | |
| type: "zoom", | |
| scale: scale, | |
| translate: translate | |
| }); | |
| } | |
| function mousedowned() { | |
| var target = this, event_ = event.of(target, arguments), eventTarget = d3.event.target, dragged = 0, w = d3.select(d3_window).on(mousemove, moved).on(mouseup, ended), l = location(d3.mouse(target)), dragRestore = d3_event_dragSuppress(); | |
| function moved() { | |
| dragged = 1; | |
| translateTo(d3.mouse(target), l); | |
| dispatch(event_); | |
| } | |
| function ended() { | |
| w.on(mousemove, d3_window === target ? mousewheelreset : null).on(mouseup, null); | |
| dragRestore(dragged && d3.event.target === eventTarget); | |
| } | |
| } | |
| function touchstarted() { | |
| var target = this, event_ = event.of(target, arguments), touches = d3.touches(target), locations = {}, distance0 = 0, scale0 = scale, now = Date.now(), name = "zoom-" + d3.event.changedTouches[0].identifier, touchmove = "touchmove." + name, touchend = "touchend." + name, w = d3.select(d3_window).on(touchmove, moved).on(touchend, ended), t = d3.select(target).on(mousedown, null), dragRestore = d3_event_dragSuppress(); | |
| touches.forEach(function(t) { | |
| locations[t.identifier] = location(t); | |
| }); | |
| if (touches.length === 1) { | |
| if (now - touchtime < 500) { | |
| var p = touches[0], l = location(touches[0]); | |
| scaleTo(scale * 2); | |
| translateTo(p, l); | |
| d3_eventPreventDefault(); | |
| dispatch(event_); | |
| } | |
| touchtime = now; | |
| } else if (touches.length > 1) { | |
| var p = touches[0], q = touches[1], dx = p[0] - q[0], dy = p[1] - q[1]; | |
| distance0 = dx * dx + dy * dy; | |
| } | |
| function moved() { | |
| var touches = d3.touches(target), p0 = touches[0], l0 = locations[p0.identifier]; | |
| if (p1 = touches[1]) { | |
| var p1, l1 = locations[p1.identifier], scale1 = d3.event.scale; | |
| if (scale1 == null) { | |
| var distance1 = (distance1 = p1[0] - p0[0]) * distance1 + (distance1 = p1[1] - p0[1]) * distance1; | |
| scale1 = distance0 && Math.sqrt(distance1 / distance0); | |
| } | |
| p0 = [ (p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2 ]; | |
| l0 = [ (l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2 ]; | |
| scaleTo(scale1 * scale0); | |
| } | |
| touchtime = null; | |
| translateTo(p0, l0); | |
| dispatch(event_); | |
| } | |
| function ended() { | |
| w.on(touchmove, null).on(touchend, null); | |
| t.on(mousedown, mousedowned); | |
| dragRestore(); | |
| } | |
| } | |
| function mousewheeled() { | |
| d3_eventPreventDefault(); | |
| if (!translate0) translate0 = location(d3.mouse(this)); | |
| scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale); | |
| translateTo(d3.mouse(this), translate0); | |
| dispatch(event.of(this, arguments)); | |
| } | |
| function mousewheelreset() { | |
| translate0 = null; | |
| } | |
| function dblclicked() { | |
| var p = d3.mouse(this), l = location(p), k = Math.log(scale) / Math.LN2; | |
| scaleTo(Math.pow(2, d3.event.shiftKey ? Math.ceil(k) - 1 : Math.floor(k) + 1)); | |
| translateTo(p, l); | |
| dispatch(event.of(this, arguments)); | |
| } | |
| return d3.rebind(zoom, event, "on"); | |
| }; | |
| var d3_behavior_zoomInfinity = [ 0, Infinity ]; | |
| var d3_behavior_zoomDelta, d3_behavior_zoomWheel = "onwheel" in d3_document ? (d3_behavior_zoomDelta = function() { | |
| return -d3.event.deltaY * (d3.event.deltaMode ? 120 : 1); | |
| }, "wheel") : "onmousewheel" in d3_document ? (d3_behavior_zoomDelta = function() { | |
| return d3.event.wheelDelta; | |
| }, "mousewheel") : (d3_behavior_zoomDelta = function() { | |
| return -d3.event.detail; | |
| }, "MozMousePixelScroll"); | |
| function d3_Color() {} | |
| d3_Color.prototype.toString = function() { | |
| return this.rgb() + ""; | |
| }; | |
| d3.hsl = function(h, s, l) { | |
| return arguments.length === 1 ? h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l) : d3_rgb_parse("" + h, d3_rgb_hsl, d3_hsl) : d3_hsl(+h, +s, +l); | |
| }; | |
| function d3_hsl(h, s, l) { | |
| return new d3_Hsl(h, s, l); | |
| } | |
| function d3_Hsl(h, s, l) { | |
| this.h = h; | |
| this.s = s; | |
| this.l = l; | |
| } | |
| var d3_hslPrototype = d3_Hsl.prototype = new d3_Color(); | |
| d3_hslPrototype.brighter = function(k) { | |
| k = Math.pow(.7, arguments.length ? k : 1); | |
| return d3_hsl(this.h, this.s, this.l / k); | |
| }; | |
| d3_hslPrototype.darker = function(k) { | |
| k = Math.pow(.7, arguments.length ? k : 1); | |
| return d3_hsl(this.h, this.s, k * this.l); | |
| }; | |
| d3_hslPrototype.rgb = function() { | |
| return d3_hsl_rgb(this.h, this.s, this.l); | |
| }; | |
| function d3_hsl_rgb(h, s, l) { | |
| var m1, m2; | |
| h = isNaN(h) ? 0 : (h %= 360) < 0 ? h + 360 : h; | |
| s = isNaN(s) ? 0 : s < 0 ? 0 : s > 1 ? 1 : s; | |
| l = l < 0 ? 0 : l > 1 ? 1 : l; | |
| m2 = l <= .5 ? l * (1 + s) : l + s - l * s; | |
| m1 = 2 * l - m2; | |
| function v(h) { | |
| if (h > 360) h -= 360; else if (h < 0) h += 360; | |
| if (h < 60) return m1 + (m2 - m1) * h / 60; | |
| if (h < 180) return m2; | |
| if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60; | |
| return m1; | |
| } | |
| function vv(h) { | |
| return Math.round(v(h) * 255); | |
| } | |
| return d3_rgb(vv(h + 120), vv(h), vv(h - 120)); | |
| } | |
| var π = Math.PI, ε = 1e-6, ε2 = ε * ε, d3_radians = π / 180, d3_degrees = 180 / π; | |
| function d3_sgn(x) { | |
| return x > 0 ? 1 : x < 0 ? -1 : 0; | |
| } | |
| function d3_acos(x) { | |
| return x > 1 ? 0 : x < -1 ? π : Math.acos(x); | |
| } | |
| function d3_asin(x) { | |
| return x > 1 ? π / 2 : x < -1 ? -π / 2 : Math.asin(x); | |
| } | |
| function d3_sinh(x) { | |
| return (Math.exp(x) - Math.exp(-x)) / 2; | |
| } | |
| function d3_cosh(x) { | |
| return (Math.exp(x) + Math.exp(-x)) / 2; | |
| } | |
| function d3_haversin(x) { | |
| return (x = Math.sin(x / 2)) * x; | |
| } | |
| d3.hcl = function(h, c, l) { | |
| return arguments.length === 1 ? h instanceof d3_Hcl ? d3_hcl(h.h, h.c, h.l) : h instanceof d3_Lab ? d3_lab_hcl(h.l, h.a, h.b) : d3_lab_hcl((h = d3_rgb_lab((h = d3.rgb(h)).r, h.g, h.b)).l, h.a, h.b) : d3_hcl(+h, +c, +l); | |
| }; | |
| function d3_hcl(h, c, l) { | |
| return new d3_Hcl(h, c, l); | |
| } | |
| function d3_Hcl(h, c, l) { | |
| this.h = h; | |
| this.c = c; | |
| this.l = l; | |
| } | |
| var d3_hclPrototype = d3_Hcl.prototype = new d3_Color(); | |
| d3_hclPrototype.brighter = function(k) { | |
| return d3_hcl(this.h, this.c, Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1))); | |
| }; | |
| d3_hclPrototype.darker = function(k) { | |
| return d3_hcl(this.h, this.c, Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1))); | |
| }; | |
| d3_hclPrototype.rgb = function() { | |
| return d3_hcl_lab(this.h, this.c, this.l).rgb(); | |
| }; | |
| function d3_hcl_lab(h, c, l) { | |
| if (isNaN(h)) h = 0; | |
| if (isNaN(c)) c = 0; | |
| return d3_lab(l, Math.cos(h *= d3_radians) * c, Math.sin(h) * c); | |
| } | |
| d3.lab = function(l, a, b) { | |
| return arguments.length === 1 ? l instanceof d3_Lab ? d3_lab(l.l, l.a, l.b) : l instanceof d3_Hcl ? d3_hcl_lab(l.l, l.c, l.h) : d3_rgb_lab((l = d3.rgb(l)).r, l.g, l.b) : d3_lab(+l, +a, +b); | |
| }; | |
| function d3_lab(l, a, b) { | |
| return new d3_Lab(l, a, b); | |
| } | |
| function d3_Lab(l, a, b) { | |
| this.l = l; | |
| this.a = a; | |
| this.b = b; | |
| } | |
| var d3_lab_K = 18; | |
| var d3_lab_X = .95047, d3_lab_Y = 1, d3_lab_Z = 1.08883; | |
| var d3_labPrototype = d3_Lab.prototype = new d3_Color(); | |
| d3_labPrototype.brighter = function(k) { | |
| return d3_lab(Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1)), this.a, this.b); | |
| }; | |
| d3_labPrototype.darker = function(k) { | |
| return d3_lab(Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1)), this.a, this.b); | |
| }; | |
| d3_labPrototype.rgb = function() { | |
| return d3_lab_rgb(this.l, this.a, this.b); | |
| }; | |
| function d3_lab_rgb(l, a, b) { | |
| var y = (l + 16) / 116, x = y + a / 500, z = y - b / 200; | |
| x = d3_lab_xyz(x) * d3_lab_X; | |
| y = d3_lab_xyz(y) * d3_lab_Y; | |
| z = d3_lab_xyz(z) * d3_lab_Z; | |
| return d3_rgb(d3_xyz_rgb(3.2404542 * x - 1.5371385 * y - .4985314 * z), d3_xyz_rgb(-.969266 * x + 1.8760108 * y + .041556 * z), d3_xyz_rgb(.0556434 * x - .2040259 * y + 1.0572252 * z)); | |
| } | |
| function d3_lab_hcl(l, a, b) { | |
| return l > 0 ? d3_hcl(Math.atan2(b, a) * d3_degrees, Math.sqrt(a * a + b * b), l) : d3_hcl(NaN, NaN, l); | |
| } | |
| function d3_lab_xyz(x) { | |
| return x > .206893034 ? x * x * x : (x - 4 / 29) / 7.787037; | |
| } | |
| function d3_xyz_lab(x) { | |
| return x > .008856 ? Math.pow(x, 1 / 3) : 7.787037 * x + 4 / 29; | |
| } | |
| function d3_xyz_rgb(r) { | |
| return Math.round(255 * (r <= .00304 ? 12.92 * r : 1.055 * Math.pow(r, 1 / 2.4) - .055)); | |
| } | |
| d3.rgb = function(r, g, b) { | |
| return arguments.length === 1 ? r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b) : d3_rgb_parse("" + r, d3_rgb, d3_hsl_rgb) : d3_rgb(~~r, ~~g, ~~b); | |
| }; | |
| function d3_rgbNumber(value) { | |
| return d3_rgb(value >> 16, value >> 8 & 255, value & 255); | |
| } | |
| function d3_rgbString(value) { | |
| return d3_rgbNumber(value) + ""; | |
| } | |
| function d3_rgb(r, g, b) { | |
| return new d3_Rgb(r, g, b); | |
| } | |
| function d3_Rgb(r, g, b) { | |
| this.r = r; | |
| this.g = g; | |
| this.b = b; | |
| } | |
| var d3_rgbPrototype = d3_Rgb.prototype = new d3_Color(); | |
| d3_rgbPrototype.brighter = function(k) { | |
| k = Math.pow(.7, arguments.length ? k : 1); | |
| var r = this.r, g = this.g, b = this.b, i = 30; | |
| if (!r && !g && !b) return d3_rgb(i, i, i); | |
| if (r && r < i) r = i; | |
| if (g && g < i) g = i; | |
| if (b && b < i) b = i; | |
| return d3_rgb(Math.min(255, ~~(r / k)), Math.min(255, ~~(g / k)), Math.min(255, ~~(b / k))); | |
| }; | |
| d3_rgbPrototype.darker = function(k) { | |
| k = Math.pow(.7, arguments.length ? k : 1); | |
| return d3_rgb(~~(k * this.r), ~~(k * this.g), ~~(k * this.b)); | |
| }; | |
| d3_rgbPrototype.hsl = function() { | |
| return d3_rgb_hsl(this.r, this.g, this.b); | |
| }; | |
| d3_rgbPrototype.toString = function() { | |
| return "#" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b); | |
| }; | |
| function d3_rgb_hex(v) { | |
| return v < 16 ? "0" + Math.max(0, v).toString(16) : Math.min(255, v).toString(16); | |
| } | |
| function d3_rgb_parse(format, rgb, hsl) { | |
| var r = 0, g = 0, b = 0, m1, m2, name; | |
| m1 = /([a-z]+)\((.*)\)/i.exec(format); | |
| if (m1) { | |
| m2 = m1[2].split(","); | |
| switch (m1[1]) { | |
| case "hsl": | |
| { | |
| return hsl(parseFloat(m2[0]), parseFloat(m2[1]) / 100, parseFloat(m2[2]) / 100); | |
| } | |
| case "rgb": | |
| { | |
| return rgb(d3_rgb_parseNumber(m2[0]), d3_rgb_parseNumber(m2[1]), d3_rgb_parseNumber(m2[2])); | |
| } | |
| } | |
| } | |
| if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b); | |
| if (format != null && format.charAt(0) === "#") { | |
| if (format.length === 4) { | |
| r = format.charAt(1); | |
| r += r; | |
| g = format.charAt(2); | |
| g += g; | |
| b = format.charAt(3); | |
| b += b; | |
| } else if (format.length === 7) { | |
| r = format.substring(1, 3); | |
| g = format.substring(3, 5); | |
| b = format.substring(5, 7); | |
| } | |
| r = parseInt(r, 16); | |
| g = parseInt(g, 16); | |
| b = parseInt(b, 16); | |
| } | |
| return rgb(r, g, b); | |
| } | |
| function d3_rgb_hsl(r, g, b) { | |
| var min = Math.min(r /= 255, g /= 255, b /= 255), max = Math.max(r, g, b), d = max - min, h, s, l = (max + min) / 2; | |
| if (d) { | |
| s = l < .5 ? d / (max + min) : d / (2 - max - min); | |
| if (r == max) h = (g - b) / d + (g < b ? 6 : 0); else if (g == max) h = (b - r) / d + 2; else h = (r - g) / d + 4; | |
| h *= 60; | |
| } else { | |
| h = NaN; | |
| s = l > 0 && l < 1 ? 0 : h; | |
| } | |
| return d3_hsl(h, s, l); | |
| } | |
| function d3_rgb_lab(r, g, b) { | |
| r = d3_rgb_xyz(r); | |
| g = d3_rgb_xyz(g); | |
| b = d3_rgb_xyz(b); | |
| var x = d3_xyz_lab((.4124564 * r + .3575761 * g + .1804375 * b) / d3_lab_X), y = d3_xyz_lab((.2126729 * r + .7151522 * g + .072175 * b) / d3_lab_Y), z = d3_xyz_lab((.0193339 * r + .119192 * g + .9503041 * b) / d3_lab_Z); | |
| return d3_lab(116 * y - 16, 500 * (x - y), 200 * (y - z)); | |
| } | |
| function d3_rgb_xyz(r) { | |
| return (r /= 255) <= .04045 ? r / 12.92 : Math.pow((r + .055) / 1.055, 2.4); | |
| } | |
| function d3_rgb_parseNumber(c) { | |
| var f = parseFloat(c); | |
| return c.charAt(c.length - 1) === "%" ? Math.round(f * 2.55) : f; | |
| } | |
| var d3_rgb_names = d3.map({ | |
| 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, | |
| 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 | |
| }); | |
| d3_rgb_names.forEach(function(key, value) { | |
| d3_rgb_names.set(key, d3_rgbNumber(value)); | |
| }); | |
| function d3_functor(v) { | |
| return typeof v === "function" ? v : function() { | |
| return v; | |
| }; | |
| } | |
| d3.functor = d3_functor; | |
| function d3_identity(d) { | |
| return d; | |
| } | |
| d3.xhr = d3_xhrType(d3_identity); | |
| function d3_xhrType(response) { | |
| return function(url, mimeType, callback) { | |
| if (arguments.length === 2 && typeof mimeType === "function") callback = mimeType, | |
| mimeType = null; | |
| return d3_xhr(url, mimeType, response, callback); | |
| }; | |
| } | |
| function d3_xhr(url, mimeType, response, callback) { | |
| var xhr = {}, dispatch = d3.dispatch("progress", "load", "error"), headers = {}, request = new XMLHttpRequest(), responseType = null; | |
| if (d3_window.XDomainRequest && !("withCredentials" in request) && /^(http(s)?:)?\/\//.test(url)) request = new XDomainRequest(); | |
| "onload" in request ? request.onload = request.onerror = respond : request.onreadystatechange = function() { | |
| request.readyState > 3 && respond(); | |
| }; | |
| function respond() { | |
| var status = request.status, result; | |
| if (!status && request.responseText || status >= 200 && status < 300 || status === 304) { | |
| try { | |
| result = response.call(xhr, request); | |
| } catch (e) { | |
| dispatch.error.call(xhr, e); | |
| return; | |
| } | |
| dispatch.load.call(xhr, result); | |
| } else { | |
| dispatch.error.call(xhr, request); | |
| } | |
| } | |
| request.onprogress = function(event) { | |
| var o = d3.event; | |
| d3.event = event; | |
| try { | |
| dispatch.progress.call(xhr, request); | |
| } finally { | |
| d3.event = o; | |
| } | |
| }; | |
| xhr.header = function(name, value) { | |
| name = (name + "").toLowerCase(); | |
| if (arguments.length < 2) return headers[name]; | |
| if (value == null) delete headers[name]; else headers[name] = value + ""; | |
| return xhr; | |
| }; | |
| xhr.mimeType = function(value) { | |
| if (!arguments.length) return mimeType; | |
| mimeType = value == null ? null : value + ""; | |
| return xhr; | |
| }; | |
| xhr.responseType = function(value) { | |
| if (!arguments.length) return responseType; | |
| responseType = value; | |
| return xhr; | |
| }; | |
| xhr.response = function(value) { | |
| response = value; | |
| return xhr; | |
| }; | |
| [ "get", "post" ].forEach(function(method) { | |
| xhr[method] = function() { | |
| return xhr.send.apply(xhr, [ method ].concat(d3_array(arguments))); | |
| }; | |
| }); | |
| xhr.send = function(method, data, callback) { | |
| if (arguments.length === 2 && typeof data === "function") callback = data, data = null; | |
| request.open(method, url, true); | |
| if (mimeType != null && !("accept" in headers)) headers["accept"] = mimeType + ",*/*"; | |
| if (request.setRequestHeader) for (var name in headers) request.setRequestHeader(name, headers[name]); | |
| if (mimeType != null && request.overrideMimeType) request.overrideMimeType(mimeType); | |
| if (responseType != null) request.responseType = responseType; | |
| if (callback != null) xhr.on("error", callback).on("load", function(request) { | |
| callback(null, request); | |
| }); | |
| request.send(data == null ? null : data); | |
| return xhr; | |
| }; | |
| xhr.abort = function() { | |
| request.abort(); | |
| return xhr; | |
| }; | |
| d3.rebind(xhr, dispatch, "on"); | |
| return callback == null ? xhr : xhr.get(d3_xhr_fixCallback(callback)); | |
| } | |
| function d3_xhr_fixCallback(callback) { | |
| return callback.length === 1 ? function(error, request) { | |
| callback(error == null ? request : null); | |
| } : callback; | |
| } | |
| d3.dsv = function(delimiter, mimeType) { | |
| var reFormat = new RegExp('["' + delimiter + "\n]"), delimiterCode = delimiter.charCodeAt(0); | |
| function dsv(url, row, callback) { | |
| if (arguments.length < 3) callback = row, row = null; | |
| var xhr = d3.xhr(url, mimeType, callback); | |
| xhr.row = function(_) { | |
| return arguments.length ? xhr.response((row = _) == null ? response : typedResponse(_)) : row; | |
| }; | |
| return xhr.row(row); | |
| } | |
| function response(request) { | |
| return dsv.parse(request.responseText); | |
| } | |
| function typedResponse(f) { | |
| return function(request) { | |
| return dsv.parse(request.responseText, f); | |
| }; | |
| } | |
| dsv.parse = function(text, f) { | |
| var o; | |
| return dsv.parseRows(text, function(row, i) { | |
| if (o) return o(row, i - 1); | |
| var a = new Function("d", "return {" + row.map(function(name, i) { | |
| return JSON.stringify(name) + ": d[" + i + "]"; | |
| }).join(",") + "}"); | |
| o = f ? function(row, i) { | |
| return f(a(row), i); | |
| } : a; | |
| }); | |
| }; | |
| dsv.parseRows = function(text, f) { | |
| var EOL = {}, EOF = {}, rows = [], N = text.length, I = 0, n = 0, t, eol; | |
| function token() { | |
| if (I >= N) return EOF; | |
| if (eol) return eol = false, EOL; | |
| var j = I; | |
| if (text.charCodeAt(j) === 34) { | |
| var i = j; | |
| while (i++ < N) { | |
| if (text.charCodeAt(i) === 34) { | |
| if (text.charCodeAt(i + 1) !== 34) break; | |
| ++i; | |
| } | |
| } | |
| I = i + 2; | |
| var c = text.charCodeAt(i + 1); | |
| if (c === 13) { | |
| eol = true; | |
| if (text.charCodeAt(i + 2) === 10) ++I; | |
| } else if (c === 10) { | |
| eol = true; | |
| } | |
| return text.substring(j + 1, i).replace(/""/g, '"'); | |
| } | |
| while (I < N) { | |
| var c = text.charCodeAt(I++), k = 1; | |
| if (c === 10) eol = true; else if (c === 13) { | |
| eol = true; | |
| if (text.charCodeAt(I) === 10) ++I, ++k; | |
| } else if (c !== delimiterCode) continue; | |
| return text.substring(j, I - k); | |
| } | |
| return text.substring(j); | |
| } | |
| while ((t = token()) !== EOF) { | |
| var a = []; | |
| while (t !== EOL && t !== EOF) { | |
| a.push(t); | |
| t = token(); | |
| } | |
| if (f && !(a = f(a, n++))) continue; | |
| rows.push(a); | |
| } | |
| return rows; | |
| }; | |
| dsv.format = function(rows) { | |
| if (Array.isArray(rows[0])) return dsv.formatRows(rows); | |
| var fieldSet = new d3_Set(), fields = []; | |
| rows.forEach(function(row) { | |
| for (var field in row) { | |
| if (!fieldSet.has(field)) { | |
| fields.push(fieldSet.add(field)); | |
| } | |
| } | |
| }); | |
| return [ fields.map(formatValue).join(delimiter) ].concat(rows.map(function(row) { | |
| return fields.map(function(field) { | |
| return formatValue(row[field]); | |
| }).join(delimiter); | |
| })).join("\n"); | |
| }; | |
| dsv.formatRows = function(rows) { | |
| return rows.map(formatRow).join("\n"); | |
| }; | |
| function formatRow(row) { | |
| return row.map(formatValue).join(delimiter); | |
| } | |
| function formatValue(text) { | |
| return reFormat.test(text) ? '"' + text.replace(/\"/g, '""') + '"' : text; | |
| } | |
| return dsv; | |
| }; | |
| d3.csv = d3.dsv(",", "text/csv"); | |
| d3.tsv = d3.dsv(" ", "text/tab-separated-values"); | |
| var d3_timer_queueHead, d3_timer_queueTail, d3_timer_interval, d3_timer_timeout, d3_timer_active, d3_timer_frame = d3_window[d3_vendorSymbol(d3_window, "requestAnimationFrame")] || function(callback) { | |
| setTimeout(callback, 17); | |
| }; | |
| d3.timer = function(callback, delay, then) { | |
| var n = arguments.length; | |
| if (n < 2) delay = 0; | |
| if (n < 3) then = Date.now(); | |
| var time = then + delay, timer = { | |
| callback: callback, | |
| time: time, | |
| next: null | |
| }; | |
| if (d3_timer_queueTail) d3_timer_queueTail.next = timer; else d3_timer_queueHead = timer; | |
| d3_timer_queueTail = timer; | |
| if (!d3_timer_interval) { | |
| d3_timer_timeout = clearTimeout(d3_timer_timeout); | |
| d3_timer_interval = 1; | |
| d3_timer_frame(d3_timer_step); | |
| } | |
| }; | |
| function d3_timer_step() { | |
| var now = d3_timer_mark(), delay = d3_timer_sweep() - now; | |
| if (delay > 24) { | |
| if (isFinite(delay)) { | |
| clearTimeout(d3_timer_timeout); | |
| d3_timer_timeout = setTimeout(d3_timer_step, delay); | |
| } | |
| d3_timer_interval = 0; | |
| } else { | |
| d3_timer_interval = 1; | |
| d3_timer_frame(d3_timer_step); | |
| } | |
| } | |
| d3.timer.flush = function() { | |
| d3_timer_mark(); | |
| d3_timer_sweep(); | |
| }; | |
| function d3_timer_replace(callback, delay, then) { | |
| var n = arguments.length; | |
| if (n < 2) delay = 0; | |
| if (n < 3) then = Date.now(); | |
| d3_timer_active.callback = callback; | |
| d3_timer_active.time = then + delay; | |
| } | |
| function d3_timer_mark() { | |
| var now = Date.now(); | |
| d3_timer_active = d3_timer_queueHead; | |
| while (d3_timer_active) { | |
| if (now >= d3_timer_active.time) d3_timer_active.flush = d3_timer_active.callback(now - d3_timer_active.time); | |
| d3_timer_active = d3_timer_active.next; | |
| } | |
| return now; | |
| } | |
| function d3_timer_sweep() { | |
| var t0, t1 = d3_timer_queueHead, time = Infinity; | |
| while (t1) { | |
| if (t1.flush) { | |
| t1 = t0 ? t0.next = t1.next : d3_timer_queueHead = t1.next; | |
| } else { | |
| if (t1.time < time) time = t1.time; | |
| t1 = (t0 = t1).next; | |
| } | |
| } | |
| d3_timer_queueTail = t0; | |
| return time; | |
| } | |
| var d3_format_decimalPoint = ".", d3_format_thousandsSeparator = ",", d3_format_grouping = [ 3, 3 ], d3_format_currencySymbol = "$"; | |
| var d3_formatPrefixes = [ "y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y" ].map(d3_formatPrefix); | |
| d3.formatPrefix = function(value, precision) { | |
| var i = 0; | |
| if (value) { | |
| if (value < 0) value *= -1; | |
| if (precision) value = d3.round(value, d3_format_precision(value, precision)); | |
| i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10); | |
| i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3)); | |
| } | |
| return d3_formatPrefixes[8 + i / 3]; | |
| }; | |
| function d3_formatPrefix(d, i) { | |
| var k = Math.pow(10, Math.abs(8 - i) * 3); | |
| return { | |
| scale: i > 8 ? function(d) { | |
| return d / k; | |
| } : function(d) { | |
| return d * k; | |
| }, | |
| symbol: d | |
| }; | |
| } | |
| d3.round = function(x, n) { | |
| return n ? Math.round(x * (n = Math.pow(10, n))) / n : Math.round(x); | |
| }; | |
| d3.format = function(specifier) { | |
| var match = d3_format_re.exec(specifier), fill = match[1] || " ", align = match[2] || ">", sign = match[3] || "", symbol = match[4] || "", zfill = match[5], width = +match[6], comma = match[7], precision = match[8], type = match[9], scale = 1, suffix = "", integer = false; | |
| if (precision) precision = +precision.substring(1); | |
| if (zfill || fill === "0" && align === "=") { | |
| zfill = fill = "0"; | |
| align = "="; | |
| if (comma) width -= Math.floor((width - 1) / 4); | |
| } | |
| switch (type) { | |
| case "n": | |
| comma = true; | |
| type = "g"; | |
| break; | |
| case "%": | |
| scale = 100; | |
| suffix = "%"; | |
| type = "f"; | |
| break; | |
| case "p": | |
| scale = 100; | |
| suffix = "%"; | |
| type = "r"; | |
| break; | |
| case "b": | |
| case "o": | |
| case "x": | |
| case "X": | |
| if (symbol === "#") symbol = "0" + type.toLowerCase(); | |
| case "c": | |
| case "d": | |
| integer = true; | |
| precision = 0; | |
| break; | |
| case "s": | |
| scale = -1; | |
| type = "r"; | |
| break; | |
| } | |
| if (symbol === "#") symbol = ""; else if (symbol === "$") symbol = d3_format_currencySymbol; | |
| if (type == "r" && !precision) type = "g"; | |
| if (precision != null) { | |
| if (type == "g") precision = Math.max(1, Math.min(21, precision)); else if (type == "e" || type == "f") precision = Math.max(0, Math.min(20, precision)); | |
| } | |
| type = d3_format_types.get(type) || d3_format_typeDefault; | |
| var zcomma = zfill && comma; | |
| return function(value) { | |
| if (integer && value % 1) return ""; | |
| var negative = value < 0 || value === 0 && 1 / value < 0 ? (value = -value, "-") : sign; | |
| if (scale < 0) { | |
| var prefix = d3.formatPrefix(value, precision); | |
| value = prefix.scale(value); | |
| suffix = prefix.symbol; | |
| } else { | |
| value *= scale; | |
| } | |
| value = type(value, precision); | |
| var i = value.lastIndexOf("."), before = i < 0 ? value : value.substring(0, i), after = i < 0 ? "" : d3_format_decimalPoint + value.substring(i + 1); | |
| if (!zfill && comma) before = d3_format_group(before); | |
| var length = symbol.length + before.length + after.length + (zcomma ? 0 : negative.length), padding = length < width ? new Array(length = width - length + 1).join(fill) : ""; | |
| if (zcomma) before = d3_format_group(padding + before); | |
| negative += symbol; | |
| value = before + after; | |
| return (align === "<" ? negative + value + padding : align === ">" ? padding + negative + value : align === "^" ? padding.substring(0, length >>= 1) + negative + value + padding.substring(length) : negative + (zcomma ? value : padding + value)) + suffix; | |
| }; | |
| }; | |
| var d3_format_re = /(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i; | |
| var d3_format_types = d3.map({ | |
| b: function(x) { | |
| return x.toString(2); | |
| }, | |
| c: function(x) { | |
| return String.fromCharCode(x); | |
| }, | |
| o: function(x) { | |
| return x.toString(8); | |
| }, | |
| x: function(x) { | |
| return x.toString(16); | |
| }, | |
| X: function(x) { | |
| return x.toString(16).toUpperCase(); | |
| }, | |
| g: function(x, p) { | |
| return x.toPrecision(p); | |
| }, | |
| e: function(x, p) { | |
| return x.toExponential(p); | |
| }, | |
| f: function(x, p) { | |
| return x.toFixed(p); | |
| }, | |
| r: function(x, p) { | |
| return (x = d3.round(x, d3_format_precision(x, p))).toFixed(Math.max(0, Math.min(20, d3_format_precision(x * (1 + 1e-15), p)))); | |
| } | |
| }); | |
| function d3_format_precision(x, p) { | |
| return p - (x ? Math.ceil(Math.log(x) / Math.LN10) : 1); | |
| } | |
| function d3_format_typeDefault(x) { | |
| return x + ""; | |
| } | |
| var d3_format_group = d3_identity; | |
| if (d3_format_grouping) { | |
| var d3_format_groupingLength = d3_format_grouping.length; | |
| d3_format_group = function(value) { | |
| var i = value.length, t = [], j = 0, g = d3_format_grouping[0]; | |
| while (i > 0 && g > 0) { | |
| t.push(value.substring(i -= g, i + g)); | |
| g = d3_format_grouping[j = (j + 1) % d3_format_groupingLength]; | |
| } | |
| return t.reverse().join(d3_format_thousandsSeparator); | |
| }; | |
| } | |
| d3.geo = {}; | |
| function d3_adder() {} | |
| d3_adder.prototype = { | |
| s: 0, | |
| t: 0, | |
| add: function(y) { | |
| d3_adderSum(y, this.t, d3_adderTemp); | |
| d3_adderSum(d3_adderTemp.s, this.s, this); | |
| if (this.s) this.t += d3_adderTemp.t; else this.s = d3_adderTemp.t; | |
| }, | |
| reset: function() { | |
| this.s = this.t = 0; | |
| }, | |
| valueOf: function() { | |
| return this.s; | |
| } | |
| }; | |
| var d3_adderTemp = new d3_adder(); | |
| function d3_adderSum(a, b, o) { | |
| var x = o.s = a + b, bv = x - a, av = x - bv; | |
| o.t = a - av + (b - bv); | |
| } | |
| d3.geo.stream = function(object, listener) { | |
| if (object && d3_geo_streamObjectType.hasOwnProperty(object.type)) { | |
| d3_geo_streamObjectType[object.type](object, listener); | |
| } else { | |
| d3_geo_streamGeometry(object, listener); | |
| } | |
| }; | |
| function d3_geo_streamGeometry(geometry, listener) { | |
| if (geometry && d3_geo_streamGeometryType.hasOwnProperty(geometry.type)) { | |
| d3_geo_streamGeometryType[geometry.type](geometry, listener); | |
| } | |
| } | |
| var d3_geo_streamObjectType = { | |
| Feature: function(feature, listener) { | |
| d3_geo_streamGeometry(feature.geometry, listener); | |
| }, | |
| FeatureCollection: function(object, listener) { | |
| var features = object.features, i = -1, n = features.length; | |
| while (++i < n) d3_geo_streamGeometry(features[i].geometry, listener); | |
| } | |
| }; | |
| var d3_geo_streamGeometryType = { | |
| Sphere: function(object, listener) { | |
| listener.sphere(); | |
| }, | |
| Point: function(object, listener) { | |
| var coordinate = object.coordinates; | |
| listener.point(coordinate[0], coordinate[1]); | |
| }, | |
| MultiPoint: function(object, listener) { | |
| var coordinates = object.coordinates, i = -1, n = coordinates.length, coordinate; | |
| while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]); | |
| }, | |
| LineString: function(object, listener) { | |
| d3_geo_streamLine(object.coordinates, listener, 0); | |
| }, | |
| MultiLineString: function(object, listener) { | |
| var coordinates = object.coordinates, i = -1, n = coordinates.length; | |
| while (++i < n) d3_geo_streamLine(coordinates[i], listener, 0); | |
| }, | |
| Polygon: function(object, listener) { | |
| d3_geo_streamPolygon(object.coordinates, listener); | |
| }, | |
| MultiPolygon: function(object, listener) { | |
| var coordinates = object.coordinates, i = -1, n = coordinates.length; | |
| while (++i < n) d3_geo_streamPolygon(coordinates[i], listener); | |
| }, | |
| GeometryCollection: function(object, listener) { | |
| var geometries = object.geometries, i = -1, n = geometries.length; | |
| while (++i < n) d3_geo_streamGeometry(geometries[i], listener); | |
| } | |
| }; | |
| function d3_geo_streamLine(coordinates, listener, closed) { | |
| var i = -1, n = coordinates.length - closed, coordinate; | |
| listener.lineStart(); | |
| while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]); | |
| listener.lineEnd(); | |
| } | |
| function d3_geo_streamPolygon(coordinates, listener) { | |
| var i = -1, n = coordinates.length; | |
| listener.polygonStart(); | |
| while (++i < n) d3_geo_streamLine(coordinates[i], listener, 1); | |
| listener.polygonEnd(); | |
| } | |
| d3.geo.area = function(object) { | |
| d3_geo_areaSum = 0; | |
| d3.geo.stream(object, d3_geo_area); | |
| return d3_geo_areaSum; | |
| }; | |
| var d3_geo_areaSum, d3_geo_areaRingSum = new d3_adder(); | |
| var d3_geo_area = { | |
| sphere: function() { | |
| d3_geo_areaSum += 4 * π; | |
| }, | |
| point: d3_noop, | |
| lineStart: d3_noop, | |
| lineEnd: d3_noop, | |
| polygonStart: function() { | |
| d3_geo_areaRingSum.reset(); | |
| d3_geo_area.lineStart = d3_geo_areaRingStart; | |
| }, | |
| polygonEnd: function() { | |
| var area = 2 * d3_geo_areaRingSum; | |
| d3_geo_areaSum += area < 0 ? 4 * π + area : area; | |
| d3_geo_area.lineStart = d3_geo_area.lineEnd = d3_geo_area.point = d3_noop; | |
| } | |
| }; | |
| function d3_geo_areaRingStart() { | |
| var λ00, φ00, λ0, cosφ0, sinφ0; | |
| d3_geo_area.point = function(λ, φ) { | |
| d3_geo_area.point = nextPoint; | |
| λ0 = (λ00 = λ) * d3_radians, cosφ0 = Math.cos(φ = (φ00 = φ) * d3_radians / 2 + π / 4), | |
| sinφ0 = Math.sin(φ); | |
| }; | |
| function nextPoint(λ, φ) { | |
| λ *= d3_radians; | |
| φ = φ * d3_radians / 2 + π / 4; | |
| var dλ = λ - λ0, cosφ = Math.cos(φ), sinφ = Math.sin(φ), k = sinφ0 * sinφ, u = cosφ0 * cosφ + k * Math.cos(dλ), v = k * Math.sin(dλ); | |
| d3_geo_areaRingSum.add(Math.atan2(v, u)); | |
| λ0 = λ, cosφ0 = cosφ, sinφ0 = sinφ; | |
| } | |
| d3_geo_area.lineEnd = function() { | |
| nextPoint(λ00, φ00); | |
| }; | |
| } | |
| function d3_geo_cartesian(spherical) { | |
| var λ = spherical[0], φ = spherical[1], cosφ = Math.cos(φ); | |
| return [ cosφ * Math.cos(λ), cosφ * Math.sin(λ), Math.sin(φ) ]; | |
| } | |
| function d3_geo_cartesianDot(a, b) { | |
| return a[0] * b[0] + a[1] * b[1] + a[2] * b[2]; | |
| } | |
| function d3_geo_cartesianCross(a, b) { | |
| return [ a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], a[0] * b[1] - a[1] * b[0] ]; | |
| } | |
| function d3_geo_cartesianAdd(a, b) { | |
| a[0] += b[0]; | |
| a[1] += b[1]; | |
| a[2] += b[2]; | |
| } | |
| function d3_geo_cartesianScale(vector, k) { | |
| return [ vector[0] * k, vector[1] * k, vector[2] * k ]; | |
| } | |
| function d3_geo_cartesianNormalize(d) { | |
| var l = Math.sqrt(d[0] * d[0] + d[1] * d[1] + d[2] * d[2]); | |
| d[0] /= l; | |
| d[1] /= l; | |
| d[2] /= l; | |
| } | |
| function d3_geo_spherical(cartesian) { | |
| return [ Math.atan2(cartesian[1], cartesian[0]), d3_asin(cartesian[2]) ]; | |
| } | |
| function d3_geo_sphericalEqual(a, b) { | |
| return Math.abs(a[0] - b[0]) < ε && Math.abs(a[1] - b[1]) < ε; | |
| } | |
| d3.geo.bounds = function() { | |
| var λ0, φ0, λ1, φ1, λ_, λ__, φ__, p0, dλSum, ranges, range; | |
| var bound = { | |
| point: point, | |
| lineStart: lineStart, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| bound.point = ringPoint; | |
| bound.lineStart = ringStart; | |
| bound.lineEnd = ringEnd; | |
| dλSum = 0; | |
| d3_geo_area.polygonStart(); | |
| }, | |
| polygonEnd: function() { | |
| d3_geo_area.polygonEnd(); | |
| bound.point = point; | |
| bound.lineStart = lineStart; | |
| bound.lineEnd = lineEnd; | |
| if (d3_geo_areaRingSum < 0) λ0 = -(λ1 = 180), φ0 = -(φ1 = 90); else if (dλSum > ε) φ1 = 90; else if (dλSum < -ε) φ0 = -90; | |
| range[0] = λ0, range[1] = λ1; | |
| } | |
| }; | |
| function point(λ, φ) { | |
| ranges.push(range = [ λ0 = λ, λ1 = λ ]); | |
| if (φ < φ0) φ0 = φ; | |
| if (φ > φ1) φ1 = φ; | |
| } | |
| function linePoint(λ, φ) { | |
| var p = d3_geo_cartesian([ λ * d3_radians, φ * d3_radians ]); | |
| if (p0) { | |
| var normal = d3_geo_cartesianCross(p0, p), equatorial = [ normal[1], -normal[0], 0 ], inflection = d3_geo_cartesianCross(equatorial, normal); | |
| d3_geo_cartesianNormalize(inflection); | |
| inflection = d3_geo_spherical(inflection); | |
| var dλ = λ - λ_, s = dλ > 0 ? 1 : -1, λi = inflection[0] * d3_degrees * s, antimeridian = Math.abs(dλ) > 180; | |
| if (antimeridian ^ (s * λ_ < λi && λi < s * λ)) { | |
| var φi = inflection[1] * d3_degrees; | |
| if (φi > φ1) φ1 = φi; | |
| } else if (λi = (λi + 360) % 360 - 180, antimeridian ^ (s * λ_ < λi && λi < s * λ)) { | |
| var φi = -inflection[1] * d3_degrees; | |
| if (φi < φ0) φ0 = φi; | |
| } else { | |
| if (φ < φ0) φ0 = φ; | |
| if (φ > φ1) φ1 = φ; | |
| } | |
| if (antimeridian) { | |
| if (λ < λ_) { | |
| if (angle(λ0, λ) > angle(λ0, λ1)) λ1 = λ; | |
| } else { | |
| if (angle(λ, λ1) > angle(λ0, λ1)) λ0 = λ; | |
| } | |
| } else { | |
| if (λ1 >= λ0) { | |
| if (λ < λ0) λ0 = λ; | |
| if (λ > λ1) λ1 = λ; | |
| } else { | |
| if (λ > λ_) { | |
| if (angle(λ0, λ) > angle(λ0, λ1)) λ1 = λ; | |
| } else { | |
| if (angle(λ, λ1) > angle(λ0, λ1)) λ0 = λ; | |
| } | |
| } | |
| } | |
| } else { | |
| point(λ, φ); | |
| } | |
| p0 = p, λ_ = λ; | |
| } | |
| function lineStart() { | |
| bound.point = linePoint; | |
| } | |
| function lineEnd() { | |
| range[0] = λ0, range[1] = λ1; | |
| bound.point = point; | |
| p0 = null; | |
| } | |
| function ringPoint(λ, φ) { | |
| if (p0) { | |
| var dλ = λ - λ_; | |
| dλSum += Math.abs(dλ) > 180 ? dλ + (dλ > 0 ? 360 : -360) : dλ; | |
| } else λ__ = λ, φ__ = φ; | |
| d3_geo_area.point(λ, φ); | |
| linePoint(λ, φ); | |
| } | |
| function ringStart() { | |
| d3_geo_area.lineStart(); | |
| } | |
| function ringEnd() { | |
| ringPoint(λ__, φ__); | |
| d3_geo_area.lineEnd(); | |
| if (Math.abs(dλSum) > ε) λ0 = -(λ1 = 180); | |
| range[0] = λ0, range[1] = λ1; | |
| p0 = null; | |
| } | |
| function angle(λ0, λ1) { | |
| return (λ1 -= λ0) < 0 ? λ1 + 360 : λ1; | |
| } | |
| function compareRanges(a, b) { | |
| return a[0] - b[0]; | |
| } | |
| function withinRange(x, range) { | |
| return range[0] <= range[1] ? range[0] <= x && x <= range[1] : x < range[0] || range[1] < x; | |
| } | |
| return function(feature) { | |
| φ1 = λ1 = -(λ0 = φ0 = Infinity); | |
| ranges = []; | |
| d3.geo.stream(feature, bound); | |
| var n = ranges.length; | |
| if (n) { | |
| ranges.sort(compareRanges); | |
| for (var i = 1, a = ranges[0], b, merged = [ a ]; i < n; ++i) { | |
| b = ranges[i]; | |
| if (withinRange(b[0], a) || withinRange(b[1], a)) { | |
| if (angle(a[0], b[1]) > angle(a[0], a[1])) a[1] = b[1]; | |
| if (angle(b[0], a[1]) > angle(a[0], a[1])) a[0] = b[0]; | |
| } else { | |
| merged.push(a = b); | |
| } | |
| } | |
| var best = -Infinity, dλ; | |
| for (var n = merged.length - 1, i = 0, a = merged[n], b; i <= n; a = b, ++i) { | |
| b = merged[i]; | |
| if ((dλ = angle(a[1], b[0])) > best) best = dλ, λ0 = b[0], λ1 = a[1]; | |
| } | |
| } | |
| ranges = range = null; | |
| return λ0 === Infinity || φ0 === Infinity ? [ [ NaN, NaN ], [ NaN, NaN ] ] : [ [ λ0, φ0 ], [ λ1, φ1 ] ]; | |
| }; | |
| }(); | |
| d3.geo.centroid = function(object) { | |
| d3_geo_centroidW0 = d3_geo_centroidW1 = d3_geo_centroidX0 = d3_geo_centroidY0 = d3_geo_centroidZ0 = d3_geo_centroidX1 = d3_geo_centroidY1 = d3_geo_centroidZ1 = d3_geo_centroidX2 = d3_geo_centroidY2 = d3_geo_centroidZ2 = 0; | |
| d3.geo.stream(object, d3_geo_centroid); | |
| var x = d3_geo_centroidX2, y = d3_geo_centroidY2, z = d3_geo_centroidZ2, m = x * x + y * y + z * z; | |
| if (m < ε2) { | |
| x = d3_geo_centroidX1, y = d3_geo_centroidY1, z = d3_geo_centroidZ1; | |
| if (d3_geo_centroidW1 < ε) x = d3_geo_centroidX0, y = d3_geo_centroidY0, z = d3_geo_centroidZ0; | |
| m = x * x + y * y + z * z; | |
| if (m < ε2) return [ NaN, NaN ]; | |
| } | |
| return [ Math.atan2(y, x) * d3_degrees, d3_asin(z / Math.sqrt(m)) * d3_degrees ]; | |
| }; | |
| var d3_geo_centroidW0, d3_geo_centroidW1, d3_geo_centroidX0, d3_geo_centroidY0, d3_geo_centroidZ0, d3_geo_centroidX1, d3_geo_centroidY1, d3_geo_centroidZ1, d3_geo_centroidX2, d3_geo_centroidY2, d3_geo_centroidZ2; | |
| var d3_geo_centroid = { | |
| sphere: d3_noop, | |
| point: d3_geo_centroidPoint, | |
| lineStart: d3_geo_centroidLineStart, | |
| lineEnd: d3_geo_centroidLineEnd, | |
| polygonStart: function() { | |
| d3_geo_centroid.lineStart = d3_geo_centroidRingStart; | |
| }, | |
| polygonEnd: function() { | |
| d3_geo_centroid.lineStart = d3_geo_centroidLineStart; | |
| } | |
| }; | |
| function d3_geo_centroidPoint(λ, φ) { | |
| λ *= d3_radians; | |
| var cosφ = Math.cos(φ *= d3_radians); | |
| d3_geo_centroidPointXYZ(cosφ * Math.cos(λ), cosφ * Math.sin(λ), Math.sin(φ)); | |
| } | |
| function d3_geo_centroidPointXYZ(x, y, z) { | |
| ++d3_geo_centroidW0; | |
| d3_geo_centroidX0 += (x - d3_geo_centroidX0) / d3_geo_centroidW0; | |
| d3_geo_centroidY0 += (y - d3_geo_centroidY0) / d3_geo_centroidW0; | |
| d3_geo_centroidZ0 += (z - d3_geo_centroidZ0) / d3_geo_centroidW0; | |
| } | |
| function d3_geo_centroidLineStart() { | |
| var x0, y0, z0; | |
| d3_geo_centroid.point = function(λ, φ) { | |
| λ *= d3_radians; | |
| var cosφ = Math.cos(φ *= d3_radians); | |
| x0 = cosφ * Math.cos(λ); | |
| y0 = cosφ * Math.sin(λ); | |
| z0 = Math.sin(φ); | |
| d3_geo_centroid.point = nextPoint; | |
| d3_geo_centroidPointXYZ(x0, y0, z0); | |
| }; | |
| function nextPoint(λ, φ) { | |
| λ *= d3_radians; | |
| var cosφ = Math.cos(φ *= d3_radians), x = cosφ * Math.cos(λ), y = cosφ * Math.sin(λ), z = Math.sin(φ), w = Math.atan2(Math.sqrt((w = y0 * z - z0 * y) * w + (w = z0 * x - x0 * z) * w + (w = x0 * y - y0 * x) * w), x0 * x + y0 * y + z0 * z); | |
| d3_geo_centroidW1 += w; | |
| d3_geo_centroidX1 += w * (x0 + (x0 = x)); | |
| d3_geo_centroidY1 += w * (y0 + (y0 = y)); | |
| d3_geo_centroidZ1 += w * (z0 + (z0 = z)); | |
| d3_geo_centroidPointXYZ(x0, y0, z0); | |
| } | |
| } | |
| function d3_geo_centroidLineEnd() { | |
| d3_geo_centroid.point = d3_geo_centroidPoint; | |
| } | |
| function d3_geo_centroidRingStart() { | |
| var λ00, φ00, x0, y0, z0; | |
| d3_geo_centroid.point = function(λ, φ) { | |
| λ00 = λ, φ00 = φ; | |
| d3_geo_centroid.point = nextPoint; | |
| λ *= d3_radians; | |
| var cosφ = Math.cos(φ *= d3_radians); | |
| x0 = cosφ * Math.cos(λ); | |
| y0 = cosφ * Math.sin(λ); | |
| z0 = Math.sin(φ); | |
| d3_geo_centroidPointXYZ(x0, y0, z0); | |
| }; | |
| d3_geo_centroid.lineEnd = function() { | |
| nextPoint(λ00, φ00); | |
| d3_geo_centroid.lineEnd = d3_geo_centroidLineEnd; | |
| d3_geo_centroid.point = d3_geo_centroidPoint; | |
| }; | |
| function nextPoint(λ, φ) { | |
| λ *= d3_radians; | |
| var cosφ = Math.cos(φ *= d3_radians), x = cosφ * Math.cos(λ), y = cosφ * Math.sin(λ), z = Math.sin(φ), cx = y0 * z - z0 * y, cy = z0 * x - x0 * z, cz = x0 * y - y0 * x, m = Math.sqrt(cx * cx + cy * cy + cz * cz), u = x0 * x + y0 * y + z0 * z, v = m && -d3_acos(u) / m, w = Math.atan2(m, u); | |
| d3_geo_centroidX2 += v * cx; | |
| d3_geo_centroidY2 += v * cy; | |
| d3_geo_centroidZ2 += v * cz; | |
| d3_geo_centroidW1 += w; | |
| d3_geo_centroidX1 += w * (x0 + (x0 = x)); | |
| d3_geo_centroidY1 += w * (y0 + (y0 = y)); | |
| d3_geo_centroidZ1 += w * (z0 + (z0 = z)); | |
| d3_geo_centroidPointXYZ(x0, y0, z0); | |
| } | |
| } | |
| function d3_true() { | |
| return true; | |
| } | |
| function d3_geo_clipPolygon(segments, compare, inside, interpolate, listener) { | |
| var subject = [], clip = []; | |
| segments.forEach(function(segment) { | |
| if ((n = segment.length - 1) <= 0) return; | |
| var n, p0 = segment[0], p1 = segment[n]; | |
| if (d3_geo_sphericalEqual(p0, p1)) { | |
| listener.lineStart(); | |
| for (var i = 0; i < n; ++i) listener.point((p0 = segment[i])[0], p0[1]); | |
| listener.lineEnd(); | |
| return; | |
| } | |
| var a = { | |
| point: p0, | |
| points: segment, | |
| other: null, | |
| visited: false, | |
| entry: true, | |
| subject: true | |
| }, b = { | |
| point: p0, | |
| points: [ p0 ], | |
| other: a, | |
| visited: false, | |
| entry: false, | |
| subject: false | |
| }; | |
| a.other = b; | |
| subject.push(a); | |
| clip.push(b); | |
| a = { | |
| point: p1, | |
| points: [ p1 ], | |
| other: null, | |
| visited: false, | |
| entry: false, | |
| subject: true | |
| }; | |
| b = { | |
| point: p1, | |
| points: [ p1 ], | |
| other: a, | |
| visited: false, | |
| entry: true, | |
| subject: false | |
| }; | |
| a.other = b; | |
| subject.push(a); | |
| clip.push(b); | |
| }); | |
| clip.sort(compare); | |
| d3_geo_clipPolygonLinkCircular(subject); | |
| d3_geo_clipPolygonLinkCircular(clip); | |
| if (!subject.length) return; | |
| if (inside) for (var i = 1, e = !inside(clip[0].point), n = clip.length; i < n; ++i) { | |
| clip[i].entry = e = !e; | |
| } | |
| var start = subject[0], current, points, point; | |
| while (1) { | |
| current = start; | |
| while (current.visited) if ((current = current.next) === start) return; | |
| points = current.points; | |
| listener.lineStart(); | |
| do { | |
| current.visited = current.other.visited = true; | |
| if (current.entry) { | |
| if (current.subject) { | |
| for (var i = 0; i < points.length; i++) listener.point((point = points[i])[0], point[1]); | |
| } else { | |
| interpolate(current.point, current.next.point, 1, listener); | |
| } | |
| current = current.next; | |
| } else { | |
| if (current.subject) { | |
| points = current.prev.points; | |
| for (var i = points.length; --i >= 0; ) listener.point((point = points[i])[0], point[1]); | |
| } else { | |
| interpolate(current.point, current.prev.point, -1, listener); | |
| } | |
| current = current.prev; | |
| } | |
| current = current.other; | |
| points = current.points; | |
| } while (!current.visited); | |
| listener.lineEnd(); | |
| } | |
| } | |
| function d3_geo_clipPolygonLinkCircular(array) { | |
| if (!(n = array.length)) return; | |
| var n, i = 0, a = array[0], b; | |
| while (++i < n) { | |
| a.next = b = array[i]; | |
| b.prev = a; | |
| a = b; | |
| } | |
| a.next = b = array[0]; | |
| b.prev = a; | |
| } | |
| function d3_geo_clip(pointVisible, clipLine, interpolate, polygonContains) { | |
| return function(listener) { | |
| var line = clipLine(listener); | |
| var clip = { | |
| point: point, | |
| lineStart: lineStart, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| clip.point = pointRing; | |
| clip.lineStart = ringStart; | |
| clip.lineEnd = ringEnd; | |
| segments = []; | |
| polygon = []; | |
| listener.polygonStart(); | |
| }, | |
| polygonEnd: function() { | |
| clip.point = point; | |
| clip.lineStart = lineStart; | |
| clip.lineEnd = lineEnd; | |
| segments = d3.merge(segments); | |
| if (segments.length) { | |
| d3_geo_clipPolygon(segments, d3_geo_clipSort, null, interpolate, listener); | |
| } else if (polygonContains(polygon)) { | |
| listener.lineStart(); | |
| interpolate(null, null, 1, listener); | |
| listener.lineEnd(); | |
| } | |
| listener.polygonEnd(); | |
| segments = polygon = null; | |
| }, | |
| sphere: function() { | |
| listener.polygonStart(); | |
| listener.lineStart(); | |
| interpolate(null, null, 1, listener); | |
| listener.lineEnd(); | |
| listener.polygonEnd(); | |
| } | |
| }; | |
| function point(λ, φ) { | |
| if (pointVisible(λ, φ)) listener.point(λ, φ); | |
| } | |
| function pointLine(λ, φ) { | |
| line.point(λ, φ); | |
| } | |
| function lineStart() { | |
| clip.point = pointLine; | |
| line.lineStart(); | |
| } | |
| function lineEnd() { | |
| clip.point = point; | |
| line.lineEnd(); | |
| } | |
| var segments; | |
| var buffer = d3_geo_clipBufferListener(), ringListener = clipLine(buffer), polygon, ring; | |
| function pointRing(λ, φ) { | |
| ringListener.point(λ, φ); | |
| ring.push([ λ, φ ]); | |
| } | |
| function ringStart() { | |
| ringListener.lineStart(); | |
| ring = []; | |
| } | |
| function ringEnd() { | |
| pointRing(ring[0][0], ring[0][1]); | |
| ringListener.lineEnd(); | |
| var clean = ringListener.clean(), ringSegments = buffer.buffer(), segment, n = ringSegments.length; | |
| ring.pop(); | |
| polygon.push(ring); | |
| ring = null; | |
| if (!n) return; | |
| if (clean & 1) { | |
| segment = ringSegments[0]; | |
| var n = segment.length - 1, i = -1, point; | |
| listener.lineStart(); | |
| while (++i < n) listener.point((point = segment[i])[0], point[1]); | |
| listener.lineEnd(); | |
| return; | |
| } | |
| if (n > 1 && clean & 2) ringSegments.push(ringSegments.pop().concat(ringSegments.shift())); | |
| segments.push(ringSegments.filter(d3_geo_clipSegmentLength1)); | |
| } | |
| return clip; | |
| }; | |
| } | |
| function d3_geo_clipSegmentLength1(segment) { | |
| return segment.length > 1; | |
| } | |
| function d3_geo_clipBufferListener() { | |
| var lines = [], line; | |
| return { | |
| lineStart: function() { | |
| lines.push(line = []); | |
| }, | |
| point: function(λ, φ) { | |
| line.push([ λ, φ ]); | |
| }, | |
| lineEnd: d3_noop, | |
| buffer: function() { | |
| var buffer = lines; | |
| lines = []; | |
| line = null; | |
| return buffer; | |
| }, | |
| rejoin: function() { | |
| if (lines.length > 1) lines.push(lines.pop().concat(lines.shift())); | |
| } | |
| }; | |
| } | |
| function d3_geo_clipSort(a, b) { | |
| return ((a = a.point)[0] < 0 ? a[1] - π / 2 - ε : π / 2 - a[1]) - ((b = b.point)[0] < 0 ? b[1] - π / 2 - ε : π / 2 - b[1]); | |
| } | |
| function d3_geo_pointInPolygon(point, polygon) { | |
| var meridian = point[0], parallel = point[1], meridianNormal = [ Math.sin(meridian), -Math.cos(meridian), 0 ], polarAngle = 0, polar = false, southPole = false, winding = 0; | |
| d3_geo_areaRingSum.reset(); | |
| for (var i = 0, n = polygon.length; i < n; ++i) { | |
| var ring = polygon[i], m = ring.length; | |
| if (!m) continue; | |
| var point0 = ring[0], λ0 = point0[0], φ0 = point0[1] / 2 + π / 4, sinφ0 = Math.sin(φ0), cosφ0 = Math.cos(φ0), j = 1; | |
| while (true) { | |
| if (j === m) j = 0; | |
| point = ring[j]; | |
| var λ = point[0], φ = point[1] / 2 + π / 4, sinφ = Math.sin(φ), cosφ = Math.cos(φ), dλ = λ - λ0, antimeridian = Math.abs(dλ) > π, k = sinφ0 * sinφ; | |
| d3_geo_areaRingSum.add(Math.atan2(k * Math.sin(dλ), cosφ0 * cosφ + k * Math.cos(dλ))); | |
| if (Math.abs(φ) < ε) southPole = true; | |
| polarAngle += antimeridian ? dλ + (dλ >= 0 ? 2 : -2) * π : dλ; | |
| if (antimeridian ^ λ0 >= meridian ^ λ >= meridian) { | |
| var arc = d3_geo_cartesianCross(d3_geo_cartesian(point0), d3_geo_cartesian(point)); | |
| d3_geo_cartesianNormalize(arc); | |
| var intersection = d3_geo_cartesianCross(meridianNormal, arc); | |
| d3_geo_cartesianNormalize(intersection); | |
| var φarc = (antimeridian ^ dλ >= 0 ? -1 : 1) * d3_asin(intersection[2]); | |
| if (parallel > φarc) { | |
| winding += antimeridian ^ dλ >= 0 ? 1 : -1; | |
| } | |
| } | |
| if (!j++) break; | |
| λ0 = λ, sinφ0 = sinφ, cosφ0 = cosφ, point0 = point; | |
| } | |
| if (Math.abs(polarAngle) > ε) polar = true; | |
| } | |
| return (!southPole && !polar && d3_geo_areaRingSum < 0 || polarAngle < -ε) ^ winding & 1; | |
| } | |
| var d3_geo_clipAntimeridian = d3_geo_clip(d3_true, d3_geo_clipAntimeridianLine, d3_geo_clipAntimeridianInterpolate, d3_geo_clipAntimeridianPolygonContains); | |
| function d3_geo_clipAntimeridianLine(listener) { | |
| var λ0 = NaN, φ0 = NaN, sλ0 = NaN, clean; | |
| return { | |
| lineStart: function() { | |
| listener.lineStart(); | |
| clean = 1; | |
| }, | |
| point: function(λ1, φ1) { | |
| var sλ1 = λ1 > 0 ? π : -π, dλ = Math.abs(λ1 - λ0); | |
| if (Math.abs(dλ - π) < ε) { | |
| listener.point(λ0, φ0 = (φ0 + φ1) / 2 > 0 ? π / 2 : -π / 2); | |
| listener.point(sλ0, φ0); | |
| listener.lineEnd(); | |
| listener.lineStart(); | |
| listener.point(sλ1, φ0); | |
| listener.point(λ1, φ0); | |
| clean = 0; | |
| } else if (sλ0 !== sλ1 && dλ >= π) { | |
| if (Math.abs(λ0 - sλ0) < ε) λ0 -= sλ0 * ε; | |
| if (Math.abs(λ1 - sλ1) < ε) λ1 -= sλ1 * ε; | |
| φ0 = d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1); | |
| listener.point(sλ0, φ0); | |
| listener.lineEnd(); | |
| listener.lineStart(); | |
| listener.point(sλ1, φ0); | |
| clean = 0; | |
| } | |
| listener.point(λ0 = λ1, φ0 = φ1); | |
| sλ0 = sλ1; | |
| }, | |
| lineEnd: function() { | |
| listener.lineEnd(); | |
| λ0 = φ0 = NaN; | |
| }, | |
| clean: function() { | |
| return 2 - clean; | |
| } | |
| }; | |
| } | |
| function d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1) { | |
| var cosφ0, cosφ1, sinλ0_λ1 = Math.sin(λ0 - λ1); | |
| return Math.abs(sinλ0_λ1) > ε ? Math.atan((Math.sin(φ0) * (cosφ1 = Math.cos(φ1)) * Math.sin(λ1) - Math.sin(φ1) * (cosφ0 = Math.cos(φ0)) * Math.sin(λ0)) / (cosφ0 * cosφ1 * sinλ0_λ1)) : (φ0 + φ1) / 2; | |
| } | |
| function d3_geo_clipAntimeridianInterpolate(from, to, direction, listener) { | |
| var φ; | |
| if (from == null) { | |
| φ = direction * π / 2; | |
| listener.point(-π, φ); | |
| listener.point(0, φ); | |
| listener.point(π, φ); | |
| listener.point(π, 0); | |
| listener.point(π, -φ); | |
| listener.point(0, -φ); | |
| listener.point(-π, -φ); | |
| listener.point(-π, 0); | |
| listener.point(-π, φ); | |
| } else if (Math.abs(from[0] - to[0]) > ε) { | |
| var s = (from[0] < to[0] ? 1 : -1) * π; | |
| φ = direction * s / 2; | |
| listener.point(-s, φ); | |
| listener.point(0, φ); | |
| listener.point(s, φ); | |
| } else { | |
| listener.point(to[0], to[1]); | |
| } | |
| } | |
| var d3_geo_clipAntimeridianPoint = [ -π, 0 ]; | |
| function d3_geo_clipAntimeridianPolygonContains(polygon) { | |
| return d3_geo_pointInPolygon(d3_geo_clipAntimeridianPoint, polygon); | |
| } | |
| function d3_geo_clipCircle(radius) { | |
| var cr = Math.cos(radius), smallRadius = cr > 0, point = [ radius, 0 ], notHemisphere = Math.abs(cr) > ε, interpolate = d3_geo_circleInterpolate(radius, 6 * d3_radians); | |
| return d3_geo_clip(visible, clipLine, interpolate, polygonContains); | |
| function visible(λ, φ) { | |
| return Math.cos(λ) * Math.cos(φ) > cr; | |
| } | |
| function clipLine(listener) { | |
| var point0, c0, v0, v00, clean; | |
| return { | |
| lineStart: function() { | |
| v00 = v0 = false; | |
| clean = 1; | |
| }, | |
| point: function(λ, φ) { | |
| var point1 = [ λ, φ ], point2, v = visible(λ, φ), c = smallRadius ? v ? 0 : code(λ, φ) : v ? code(λ + (λ < 0 ? π : -π), φ) : 0; | |
| if (!point0 && (v00 = v0 = v)) listener.lineStart(); | |
| if (v !== v0) { | |
| point2 = intersect(point0, point1); | |
| if (d3_geo_sphericalEqual(point0, point2) || d3_geo_sphericalEqual(point1, point2)) { | |
| point1[0] += ε; | |
| point1[1] += ε; | |
| v = visible(point1[0], point1[1]); | |
| } | |
| } | |
| if (v !== v0) { | |
| clean = 0; | |
| if (v) { | |
| listener.lineStart(); | |
| point2 = intersect(point1, point0); | |
| listener.point(point2[0], point2[1]); | |
| } else { | |
| point2 = intersect(point0, point1); | |
| listener.point(point2[0], point2[1]); | |
| listener.lineEnd(); | |
| } | |
| point0 = point2; | |
| } else if (notHemisphere && point0 && smallRadius ^ v) { | |
| var t; | |
| if (!(c & c0) && (t = intersect(point1, point0, true))) { | |
| clean = 0; | |
| if (smallRadius) { | |
| listener.lineStart(); | |
| listener.point(t[0][0], t[0][1]); | |
| listener.point(t[1][0], t[1][1]); | |
| listener.lineEnd(); | |
| } else { | |
| listener.point(t[1][0], t[1][1]); | |
| listener.lineEnd(); | |
| listener.lineStart(); | |
| listener.point(t[0][0], t[0][1]); | |
| } | |
| } | |
| } | |
| if (v && (!point0 || !d3_geo_sphericalEqual(point0, point1))) { | |
| listener.point(point1[0], point1[1]); | |
| } | |
| point0 = point1, v0 = v, c0 = c; | |
| }, | |
| lineEnd: function() { | |
| if (v0) listener.lineEnd(); | |
| point0 = null; | |
| }, | |
| clean: function() { | |
| return clean | (v00 && v0) << 1; | |
| } | |
| }; | |
| } | |
| function intersect(a, b, two) { | |
| var pa = d3_geo_cartesian(a), pb = d3_geo_cartesian(b); | |
| var n1 = [ 1, 0, 0 ], n2 = d3_geo_cartesianCross(pa, pb), n2n2 = d3_geo_cartesianDot(n2, n2), n1n2 = n2[0], determinant = n2n2 - n1n2 * n1n2; | |
| if (!determinant) return !two && a; | |
| var c1 = cr * n2n2 / determinant, c2 = -cr * n1n2 / determinant, n1xn2 = d3_geo_cartesianCross(n1, n2), A = d3_geo_cartesianScale(n1, c1), B = d3_geo_cartesianScale(n2, c2); | |
| d3_geo_cartesianAdd(A, B); | |
| var u = n1xn2, w = d3_geo_cartesianDot(A, u), uu = d3_geo_cartesianDot(u, u), t2 = w * w - uu * (d3_geo_cartesianDot(A, A) - 1); | |
| if (t2 < 0) return; | |
| var t = Math.sqrt(t2), q = d3_geo_cartesianScale(u, (-w - t) / uu); | |
| d3_geo_cartesianAdd(q, A); | |
| q = d3_geo_spherical(q); | |
| if (!two) return q; | |
| var λ0 = a[0], λ1 = b[0], φ0 = a[1], φ1 = b[1], z; | |
| if (λ1 < λ0) z = λ0, λ0 = λ1, λ1 = z; | |
| var δλ = λ1 - λ0, polar = Math.abs(δλ - π) < ε, meridian = polar || δλ < ε; | |
| if (!polar && φ1 < φ0) z = φ0, φ0 = φ1, φ1 = z; | |
| if (meridian ? polar ? φ0 + φ1 > 0 ^ q[1] < (Math.abs(q[0] - λ0) < ε ? φ0 : φ1) : φ0 <= q[1] && q[1] <= φ1 : δλ > π ^ (λ0 <= q[0] && q[0] <= λ1)) { | |
| var q1 = d3_geo_cartesianScale(u, (-w + t) / uu); | |
| d3_geo_cartesianAdd(q1, A); | |
| return [ q, d3_geo_spherical(q1) ]; | |
| } | |
| } | |
| function code(λ, φ) { | |
| var r = smallRadius ? radius : π - radius, code = 0; | |
| if (λ < -r) code |= 1; else if (λ > r) code |= 2; | |
| if (φ < -r) code |= 4; else if (φ > r) code |= 8; | |
| return code; | |
| } | |
| function polygonContains(polygon) { | |
| return d3_geo_pointInPolygon(point, polygon); | |
| } | |
| } | |
| var d3_geo_clipViewMAX = 1e9; | |
| function d3_geo_clipView(x0, y0, x1, y1) { | |
| return function(listener) { | |
| var listener_ = listener, bufferListener = d3_geo_clipBufferListener(), segments, polygon, ring; | |
| var clip = { | |
| point: point, | |
| lineStart: lineStart, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| listener = bufferListener; | |
| segments = []; | |
| polygon = []; | |
| }, | |
| polygonEnd: function() { | |
| listener = listener_; | |
| if ((segments = d3.merge(segments)).length) { | |
| listener.polygonStart(); | |
| d3_geo_clipPolygon(segments, compare, inside, interpolate, listener); | |
| listener.polygonEnd(); | |
| } else if (insidePolygon([ x0, y0 ])) { | |
| listener.polygonStart(), listener.lineStart(); | |
| interpolate(null, null, 1, listener); | |
| listener.lineEnd(), listener.polygonEnd(); | |
| } | |
| segments = polygon = ring = null; | |
| } | |
| }; | |
| function inside(point) { | |
| var a = corner(point, -1), i = insidePolygon([ a === 0 || a === 3 ? x0 : x1, a > 1 ? y1 : y0 ]); | |
| return i; | |
| } | |
| function insidePolygon(p) { | |
| var wn = 0, n = polygon.length, y = p[1]; | |
| for (var i = 0; i < n; ++i) { | |
| for (var j = 1, v = polygon[i], m = v.length, a = v[0], b; j < m; ++j) { | |
| b = v[j]; | |
| if (a[1] <= y) { | |
| if (b[1] > y && isLeft(a, b, p) > 0) ++wn; | |
| } else { | |
| if (b[1] <= y && isLeft(a, b, p) < 0) --wn; | |
| } | |
| a = b; | |
| } | |
| } | |
| return wn !== 0; | |
| } | |
| function isLeft(a, b, c) { | |
| return (b[0] - a[0]) * (c[1] - a[1]) - (c[0] - a[0]) * (b[1] - a[1]); | |
| } | |
| function interpolate(from, to, direction, listener) { | |
| var a = 0, a1 = 0; | |
| if (from == null || (a = corner(from, direction)) !== (a1 = corner(to, direction)) || comparePoints(from, to) < 0 ^ direction > 0) { | |
| do { | |
| listener.point(a === 0 || a === 3 ? x0 : x1, a > 1 ? y1 : y0); | |
| } while ((a = (a + direction + 4) % 4) !== a1); | |
| } else { | |
| listener.point(to[0], to[1]); | |
| } | |
| } | |
| function visible(x, y) { | |
| return x0 <= x && x <= x1 && y0 <= y && y <= y1; | |
| } | |
| function point(x, y) { | |
| if (visible(x, y)) listener.point(x, y); | |
| } | |
| var x__, y__, v__, x_, y_, v_, first; | |
| function lineStart() { | |
| clip.point = linePoint; | |
| if (polygon) polygon.push(ring = []); | |
| first = true; | |
| v_ = false; | |
| x_ = y_ = NaN; | |
| } | |
| function lineEnd() { | |
| if (segments) { | |
| linePoint(x__, y__); | |
| if (v__ && v_) bufferListener.rejoin(); | |
| segments.push(bufferListener.buffer()); | |
| } | |
| clip.point = point; | |
| if (v_) listener.lineEnd(); | |
| } | |
| function linePoint(x, y) { | |
| x = Math.max(-d3_geo_clipViewMAX, Math.min(d3_geo_clipViewMAX, x)); | |
| y = Math.max(-d3_geo_clipViewMAX, Math.min(d3_geo_clipViewMAX, y)); | |
| var v = visible(x, y); | |
| if (polygon) ring.push([ x, y ]); | |
| if (first) { | |
| x__ = x, y__ = y, v__ = v; | |
| first = false; | |
| if (v) { | |
| listener.lineStart(); | |
| listener.point(x, y); | |
| } | |
| } else { | |
| if (v && v_) listener.point(x, y); else { | |
| var a = [ x_, y_ ], b = [ x, y ]; | |
| if (clipLine(a, b)) { | |
| if (!v_) { | |
| listener.lineStart(); | |
| listener.point(a[0], a[1]); | |
| } | |
| listener.point(b[0], b[1]); | |
| if (!v) listener.lineEnd(); | |
| } else if (v) { | |
| listener.lineStart(); | |
| listener.point(x, y); | |
| } | |
| } | |
| } | |
| x_ = x, y_ = y, v_ = v; | |
| } | |
| return clip; | |
| }; | |
| function corner(p, direction) { | |
| return Math.abs(p[0] - x0) < ε ? direction > 0 ? 0 : 3 : Math.abs(p[0] - x1) < ε ? direction > 0 ? 2 : 1 : Math.abs(p[1] - y0) < ε ? direction > 0 ? 1 : 0 : direction > 0 ? 3 : 2; | |
| } | |
| function compare(a, b) { | |
| return comparePoints(a.point, b.point); | |
| } | |
| function comparePoints(a, b) { | |
| var ca = corner(a, 1), cb = corner(b, 1); | |
| return ca !== cb ? ca - cb : ca === 0 ? b[1] - a[1] : ca === 1 ? a[0] - b[0] : ca === 2 ? a[1] - b[1] : b[0] - a[0]; | |
| } | |
| function clipLine(a, b) { | |
| var dx = b[0] - a[0], dy = b[1] - a[1], t = [ 0, 1 ]; | |
| if (Math.abs(dx) < ε && Math.abs(dy) < ε) return x0 <= a[0] && a[0] <= x1 && y0 <= a[1] && a[1] <= y1; | |
| if (d3_geo_clipViewT(x0 - a[0], dx, t) && d3_geo_clipViewT(a[0] - x1, -dx, t) && d3_geo_clipViewT(y0 - a[1], dy, t) && d3_geo_clipViewT(a[1] - y1, -dy, t)) { | |
| if (t[1] < 1) { | |
| b[0] = a[0] + t[1] * dx; | |
| b[1] = a[1] + t[1] * dy; | |
| } | |
| if (t[0] > 0) { | |
| a[0] += t[0] * dx; | |
| a[1] += t[0] * dy; | |
| } | |
| return true; | |
| } | |
| return false; | |
| } | |
| } | |
| function d3_geo_clipViewT(num, denominator, t) { | |
| if (Math.abs(denominator) < ε) return num <= 0; | |
| var u = num / denominator; | |
| if (denominator > 0) { | |
| if (u > t[1]) return false; | |
| if (u > t[0]) t[0] = u; | |
| } else { | |
| if (u < t[0]) return false; | |
| if (u < t[1]) t[1] = u; | |
| } | |
| return true; | |
| } | |
| function d3_geo_compose(a, b) { | |
| function compose(x, y) { | |
| return x = a(x, y), b(x[0], x[1]); | |
| } | |
| if (a.invert && b.invert) compose.invert = function(x, y) { | |
| return x = b.invert(x, y), x && a.invert(x[0], x[1]); | |
| }; | |
| return compose; | |
| } | |
| function d3_geo_conic(projectAt) { | |
| var φ0 = 0, φ1 = π / 3, m = d3_geo_projectionMutator(projectAt), p = m(φ0, φ1); | |
| p.parallels = function(_) { | |
| if (!arguments.length) return [ φ0 / π * 180, φ1 / π * 180 ]; | |
| return m(φ0 = _[0] * π / 180, φ1 = _[1] * π / 180); | |
| }; | |
| return p; | |
| } | |
| function d3_geo_conicEqualArea(φ0, φ1) { | |
| var sinφ0 = Math.sin(φ0), n = (sinφ0 + Math.sin(φ1)) / 2, C = 1 + sinφ0 * (2 * n - sinφ0), ρ0 = Math.sqrt(C) / n; | |
| function forward(λ, φ) { | |
| var ρ = Math.sqrt(C - 2 * n * Math.sin(φ)) / n; | |
| return [ ρ * Math.sin(λ *= n), ρ0 - ρ * Math.cos(λ) ]; | |
| } | |
| forward.invert = function(x, y) { | |
| var ρ0_y = ρ0 - y; | |
| return [ Math.atan2(x, ρ0_y) / n, d3_asin((C - (x * x + ρ0_y * ρ0_y) * n * n) / (2 * n)) ]; | |
| }; | |
| return forward; | |
| } | |
| (d3.geo.conicEqualArea = function() { | |
| return d3_geo_conic(d3_geo_conicEqualArea); | |
| }).raw = d3_geo_conicEqualArea; | |
| d3.geo.albers = function() { | |
| return d3.geo.conicEqualArea().rotate([ 96, 0 ]).center([ -.6, 38.7 ]).parallels([ 29.5, 45.5 ]).scale(1070); | |
| }; | |
| d3.geo.albersUsa = function() { | |
| var lower48 = d3.geo.albers(); | |
| var alaska = d3.geo.conicEqualArea().rotate([ 154, 0 ]).center([ -2, 58.5 ]).parallels([ 55, 65 ]); | |
| var hawaii = d3.geo.conicEqualArea().rotate([ 157, 0 ]).center([ -3, 19.9 ]).parallels([ 8, 18 ]); | |
| var point, pointStream = { | |
| point: function(x, y) { | |
| point = [ x, y ]; | |
| } | |
| }, lower48Point, alaskaPoint, hawaiiPoint; | |
| function albersUsa(coordinates) { | |
| var x = coordinates[0], y = coordinates[1]; | |
| point = null; | |
| (lower48Point(x, y), point) || (alaskaPoint(x, y), point) || hawaiiPoint(x, y); | |
| return point; | |
| } | |
| albersUsa.invert = function(coordinates) { | |
| var k = lower48.scale(), t = lower48.translate(), x = (coordinates[0] - t[0]) / k, y = (coordinates[1] - t[1]) / k; | |
| return (y >= .12 && y < .234 && x >= -.425 && x < -.214 ? alaska : y >= .166 && y < .234 && x >= -.214 && x < -.115 ? hawaii : lower48).invert(coordinates); | |
| }; | |
| albersUsa.stream = function(stream) { | |
| var lower48Stream = lower48.stream(stream), alaskaStream = alaska.stream(stream), hawaiiStream = hawaii.stream(stream); | |
| return { | |
| point: function(x, y) { | |
| lower48Stream.point(x, y); | |
| alaskaStream.point(x, y); | |
| hawaiiStream.point(x, y); | |
| }, | |
| sphere: function() { | |
| lower48Stream.sphere(); | |
| alaskaStream.sphere(); | |
| hawaiiStream.sphere(); | |
| }, | |
| lineStart: function() { | |
| lower48Stream.lineStart(); | |
| alaskaStream.lineStart(); | |
| hawaiiStream.lineStart(); | |
| }, | |
| lineEnd: function() { | |
| lower48Stream.lineEnd(); | |
| alaskaStream.lineEnd(); | |
| hawaiiStream.lineEnd(); | |
| }, | |
| polygonStart: function() { | |
| lower48Stream.polygonStart(); | |
| alaskaStream.polygonStart(); | |
| hawaiiStream.polygonStart(); | |
| }, | |
| polygonEnd: function() { | |
| lower48Stream.polygonEnd(); | |
| alaskaStream.polygonEnd(); | |
| hawaiiStream.polygonEnd(); | |
| } | |
| }; | |
| }; | |
| albersUsa.precision = function(_) { | |
| if (!arguments.length) return lower48.precision(); | |
| lower48.precision(_); | |
| alaska.precision(_); | |
| hawaii.precision(_); | |
| return albersUsa; | |
| }; | |
| albersUsa.scale = function(_) { | |
| if (!arguments.length) return lower48.scale(); | |
| lower48.scale(_); | |
| alaska.scale(_ * .35); | |
| hawaii.scale(_); | |
| return albersUsa.translate(lower48.translate()); | |
| }; | |
| albersUsa.translate = function(_) { | |
| if (!arguments.length) return lower48.translate(); | |
| var k = lower48.scale(), x = +_[0], y = +_[1]; | |
| lower48Point = lower48.translate(_).clipExtent([ [ x - .455 * k, y - .238 * k ], [ x + .455 * k, y + .238 * k ] ]).stream(pointStream).point; | |
| alaskaPoint = alaska.translate([ x - .307 * k, y + .201 * k ]).clipExtent([ [ x - .425 * k + ε, y + .12 * k + ε ], [ x - .214 * k - ε, y + .234 * k - ε ] ]).stream(pointStream).point; | |
| hawaiiPoint = hawaii.translate([ x - .205 * k, y + .212 * k ]).clipExtent([ [ x - .214 * k + ε, y + .166 * k + ε ], [ x - .115 * k - ε, y + .234 * k - ε ] ]).stream(pointStream).point; | |
| return albersUsa; | |
| }; | |
| return albersUsa.scale(1070); | |
| }; | |
| var d3_geo_pathAreaSum, d3_geo_pathAreaPolygon, d3_geo_pathArea = { | |
| point: d3_noop, | |
| lineStart: d3_noop, | |
| lineEnd: d3_noop, | |
| polygonStart: function() { | |
| d3_geo_pathAreaPolygon = 0; | |
| d3_geo_pathArea.lineStart = d3_geo_pathAreaRingStart; | |
| }, | |
| polygonEnd: function() { | |
| d3_geo_pathArea.lineStart = d3_geo_pathArea.lineEnd = d3_geo_pathArea.point = d3_noop; | |
| d3_geo_pathAreaSum += Math.abs(d3_geo_pathAreaPolygon / 2); | |
| } | |
| }; | |
| function d3_geo_pathAreaRingStart() { | |
| var x00, y00, x0, y0; | |
| d3_geo_pathArea.point = function(x, y) { | |
| d3_geo_pathArea.point = nextPoint; | |
| x00 = x0 = x, y00 = y0 = y; | |
| }; | |
| function nextPoint(x, y) { | |
| d3_geo_pathAreaPolygon += y0 * x - x0 * y; | |
| x0 = x, y0 = y; | |
| } | |
| d3_geo_pathArea.lineEnd = function() { | |
| nextPoint(x00, y00); | |
| }; | |
| } | |
| var d3_geo_pathBoundsX0, d3_geo_pathBoundsY0, d3_geo_pathBoundsX1, d3_geo_pathBoundsY1; | |
| var d3_geo_pathBounds = { | |
| point: d3_geo_pathBoundsPoint, | |
| lineStart: d3_noop, | |
| lineEnd: d3_noop, | |
| polygonStart: d3_noop, | |
| polygonEnd: d3_noop | |
| }; | |
| function d3_geo_pathBoundsPoint(x, y) { | |
| if (x < d3_geo_pathBoundsX0) d3_geo_pathBoundsX0 = x; | |
| if (x > d3_geo_pathBoundsX1) d3_geo_pathBoundsX1 = x; | |
| if (y < d3_geo_pathBoundsY0) d3_geo_pathBoundsY0 = y; | |
| if (y > d3_geo_pathBoundsY1) d3_geo_pathBoundsY1 = y; | |
| } | |
| function d3_geo_pathBuffer() { | |
| var pointCircle = d3_geo_pathBufferCircle(4.5), buffer = []; | |
| var stream = { | |
| point: point, | |
| lineStart: function() { | |
| stream.point = pointLineStart; | |
| }, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| stream.lineEnd = lineEndPolygon; | |
| }, | |
| polygonEnd: function() { | |
| stream.lineEnd = lineEnd; | |
| stream.point = point; | |
| }, | |
| pointRadius: function(_) { | |
| pointCircle = d3_geo_pathBufferCircle(_); | |
| return stream; | |
| }, | |
| result: function() { | |
| if (buffer.length) { | |
| var result = buffer.join(""); | |
| buffer = []; | |
| return result; | |
| } | |
| } | |
| }; | |
| function point(x, y) { | |
| buffer.push("M", x, ",", y, pointCircle); | |
| } | |
| function pointLineStart(x, y) { | |
| buffer.push("M", x, ",", y); | |
| stream.point = pointLine; | |
| } | |
| function pointLine(x, y) { | |
| buffer.push("L", x, ",", y); | |
| } | |
| function lineEnd() { | |
| stream.point = point; | |
| } | |
| function lineEndPolygon() { | |
| buffer.push("Z"); | |
| } | |
| return stream; | |
| } | |
| function d3_geo_pathBufferCircle(radius) { | |
| return "m0," + radius + "a" + radius + "," + radius + " 0 1,1 0," + -2 * radius + "a" + radius + "," + radius + " 0 1,1 0," + 2 * radius + "z"; | |
| } | |
| var d3_geo_pathCentroid = { | |
| point: d3_geo_pathCentroidPoint, | |
| lineStart: d3_geo_pathCentroidLineStart, | |
| lineEnd: d3_geo_pathCentroidLineEnd, | |
| polygonStart: function() { | |
| d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidRingStart; | |
| }, | |
| polygonEnd: function() { | |
| d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint; | |
| d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidLineStart; | |
| d3_geo_pathCentroid.lineEnd = d3_geo_pathCentroidLineEnd; | |
| } | |
| }; | |
| function d3_geo_pathCentroidPoint(x, y) { | |
| d3_geo_centroidX0 += x; | |
| d3_geo_centroidY0 += y; | |
| ++d3_geo_centroidZ0; | |
| } | |
| function d3_geo_pathCentroidLineStart() { | |
| var x0, y0; | |
| d3_geo_pathCentroid.point = function(x, y) { | |
| d3_geo_pathCentroid.point = nextPoint; | |
| d3_geo_pathCentroidPoint(x0 = x, y0 = y); | |
| }; | |
| function nextPoint(x, y) { | |
| var dx = x - x0, dy = y - y0, z = Math.sqrt(dx * dx + dy * dy); | |
| d3_geo_centroidX1 += z * (x0 + x) / 2; | |
| d3_geo_centroidY1 += z * (y0 + y) / 2; | |
| d3_geo_centroidZ1 += z; | |
| d3_geo_pathCentroidPoint(x0 = x, y0 = y); | |
| } | |
| } | |
| function d3_geo_pathCentroidLineEnd() { | |
| d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint; | |
| } | |
| function d3_geo_pathCentroidRingStart() { | |
| var x00, y00, x0, y0; | |
| d3_geo_pathCentroid.point = function(x, y) { | |
| d3_geo_pathCentroid.point = nextPoint; | |
| d3_geo_pathCentroidPoint(x00 = x0 = x, y00 = y0 = y); | |
| }; | |
| function nextPoint(x, y) { | |
| var dx = x - x0, dy = y - y0, z = Math.sqrt(dx * dx + dy * dy); | |
| d3_geo_centroidX1 += z * (x0 + x) / 2; | |
| d3_geo_centroidY1 += z * (y0 + y) / 2; | |
| d3_geo_centroidZ1 += z; | |
| z = y0 * x - x0 * y; | |
| d3_geo_centroidX2 += z * (x0 + x); | |
| d3_geo_centroidY2 += z * (y0 + y); | |
| d3_geo_centroidZ2 += z * 3; | |
| d3_geo_pathCentroidPoint(x0 = x, y0 = y); | |
| } | |
| d3_geo_pathCentroid.lineEnd = function() { | |
| nextPoint(x00, y00); | |
| }; | |
| } | |
| function d3_geo_pathContext(context) { | |
| var pointRadius = 4.5; | |
| var stream = { | |
| point: point, | |
| lineStart: function() { | |
| stream.point = pointLineStart; | |
| }, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| stream.lineEnd = lineEndPolygon; | |
| }, | |
| polygonEnd: function() { | |
| stream.lineEnd = lineEnd; | |
| stream.point = point; | |
| }, | |
| pointRadius: function(_) { | |
| pointRadius = _; | |
| return stream; | |
| }, | |
| result: d3_noop | |
| }; | |
| function point(x, y) { | |
| context.moveTo(x, y); | |
| context.arc(x, y, pointRadius, 0, 2 * π); | |
| } | |
| function pointLineStart(x, y) { | |
| context.moveTo(x, y); | |
| stream.point = pointLine; | |
| } | |
| function pointLine(x, y) { | |
| context.lineTo(x, y); | |
| } | |
| function lineEnd() { | |
| stream.point = point; | |
| } | |
| function lineEndPolygon() { | |
| context.closePath(); | |
| } | |
| return stream; | |
| } | |
| function d3_geo_resample(project) { | |
| var δ2 = .5, cosMinDistance = Math.cos(30 * d3_radians), maxDepth = 16; | |
| function resample(stream) { | |
| var λ00, φ00, x00, y00, a00, b00, c00, λ0, x0, y0, a0, b0, c0; | |
| var resample = { | |
| point: point, | |
| lineStart: lineStart, | |
| lineEnd: lineEnd, | |
| polygonStart: function() { | |
| stream.polygonStart(); | |
| resample.lineStart = ringStart; | |
| }, | |
| polygonEnd: function() { | |
| stream.polygonEnd(); | |
| resample.lineStart = lineStart; | |
| } | |
| }; | |
| function point(x, y) { | |
| x = project(x, y); | |
| stream.point(x[0], x[1]); | |
| } | |
| function lineStart() { | |
| x0 = NaN; | |
| resample.point = linePoint; | |
| stream.lineStart(); | |
| } | |
| function linePoint(λ, φ) { | |
| var c = d3_geo_cartesian([ λ, φ ]), p = project(λ, φ); | |
| resampleLineTo(x0, y0, λ0, a0, b0, c0, x0 = p[0], y0 = p[1], λ0 = λ, a0 = c[0], b0 = c[1], c0 = c[2], maxDepth, stream); | |
| stream.point(x0, y0); | |
| } | |
| function lineEnd() { | |
| resample.point = point; | |
| stream.lineEnd(); | |
| } | |
| function ringStart() { | |
| lineStart(); | |
| resample.point = ringPoint; | |
| resample.lineEnd = ringEnd; | |
| } | |
| function ringPoint(λ, φ) { | |
| linePoint(λ00 = λ, φ00 = φ), x00 = x0, y00 = y0, a00 = a0, b00 = b0, c00 = c0; | |
| resample.point = linePoint; | |
| } | |
| function ringEnd() { | |
| resampleLineTo(x0, y0, λ0, a0, b0, c0, x00, y00, λ00, a00, b00, c00, maxDepth, stream); | |
| resample.lineEnd = lineEnd; | |
| lineEnd(); | |
| } | |
| return resample; | |
| } | |
| function resampleLineTo(x0, y0, λ0, a0, b0, c0, x1, y1, λ1, a1, b1, c1, depth, stream) { | |
| var dx = x1 - x0, dy = y1 - y0, d2 = dx * dx + dy * dy; | |
| if (d2 > 4 * δ2 && depth--) { | |
| var a = a0 + a1, b = b0 + b1, c = c0 + c1, m = Math.sqrt(a * a + b * b + c * c), φ2 = Math.asin(c /= m), λ2 = Math.abs(Math.abs(c) - 1) < ε ? (λ0 + λ1) / 2 : Math.atan2(b, a), p = project(λ2, φ2), x2 = p[0], y2 = p[1], dx2 = x2 - x0, dy2 = y2 - y0, dz = dy * dx2 - dx * dy2; | |
| if (dz * dz / d2 > δ2 || Math.abs((dx * dx2 + dy * dy2) / d2 - .5) > .3 || a0 * a1 + b0 * b1 + c0 * c1 < cosMinDistance) { | |
| resampleLineTo(x0, y0, λ0, a0, b0, c0, x2, y2, λ2, a /= m, b /= m, c, depth, stream); | |
| stream.point(x2, y2); | |
| resampleLineTo(x2, y2, λ2, a, b, c, x1, y1, λ1, a1, b1, c1, depth, stream); | |
| } | |
| } | |
| } | |
| resample.precision = function(_) { | |
| if (!arguments.length) return Math.sqrt(δ2); | |
| maxDepth = (δ2 = _ * _) > 0 && 16; | |
| return resample; | |
| }; | |
| return resample; | |
| } | |
| d3.geo.path = function() { | |
| var pointRadius = 4.5, projection, context, projectStream, contextStream, cacheStream; | |
| function path(object) { | |
| if (object) { | |
| if (typeof pointRadius === "function") contextStream.pointRadius(+pointRadius.apply(this, arguments)); | |
| if (!cacheStream || !cacheStream.valid) cacheStream = projectStream(contextStream); | |
| d3.geo.stream(object, cacheStream); | |
| } | |
| return contextStream.result(); | |
| } | |
| path.area = function(object) { | |
| d3_geo_pathAreaSum = 0; | |
| d3.geo.stream(object, projectStream(d3_geo_pathArea)); | |
| return d3_geo_pathAreaSum; | |
| }; | |
| path.centroid = function(object) { | |
| d3_geo_centroidX0 = d3_geo_centroidY0 = d3_geo_centroidZ0 = d3_geo_centroidX1 = d3_geo_centroidY1 = d3_geo_centroidZ1 = d3_geo_centroidX2 = d3_geo_centroidY2 = d3_geo_centroidZ2 = 0; | |
| d3.geo.stream(object, projectStream(d3_geo_pathCentroid)); | |
| return d3_geo_centroidZ2 ? [ d3_geo_centroidX2 / d3_geo_centroidZ2, d3_geo_centroidY2 / d3_geo_centroidZ2 ] : d3_geo_centroidZ1 ? [ d3_geo_centroidX1 / d3_geo_centroidZ1, d3_geo_centroidY1 / d3_geo_centroidZ1 ] : d3_geo_centroidZ0 ? [ d3_geo_centroidX0 / d3_geo_centroidZ0, d3_geo_centroidY0 / d3_geo_centroidZ0 ] : [ NaN, NaN ]; | |
| }; | |
| path.bounds = function(object) { | |
| d3_geo_pathBoundsX1 = d3_geo_pathBoundsY1 = -(d3_geo_pathBoundsX0 = d3_geo_pathBoundsY0 = Infinity); | |
| d3.geo.stream(object, projectStream(d3_geo_pathBounds)); | |
| return [ [ d3_geo_pathBoundsX0, d3_geo_pathBoundsY0 ], [ d3_geo_pathBoundsX1, d3_geo_pathBoundsY1 ] ]; | |
| }; | |
| path.projection = function(_) { | |
| if (!arguments.length) return projection; | |
| projectStream = (projection = _) ? _.stream || d3_geo_pathProjectStream(_) : d3_identity; | |
| return reset(); | |
| }; | |
| path.context = function(_) { | |
| if (!arguments.length) return context; | |
| contextStream = (context = _) == null ? new d3_geo_pathBuffer() : new d3_geo_pathContext(_); | |
| if (typeof pointRadius !== "function") contextStream.pointRadius(pointRadius); | |
| return reset(); | |
| }; | |
| path.pointRadius = function(_) { | |
| if (!arguments.length) return pointRadius; | |
| pointRadius = typeof _ === "function" ? _ : (contextStream.pointRadius(+_), +_); | |
| return path; | |
| }; | |
| function reset() { | |
| cacheStream = null; | |
| return path; | |
| } | |
| return path.projection(d3.geo.albersUsa()).context(null); | |
| }; | |
| function d3_geo_pathProjectStream(project) { | |
| var resample = d3_geo_resample(function(λ, φ) { | |
| return project([ λ * d3_degrees, φ * d3_degrees ]); | |
| }); | |
| return function(stream) { | |
| stream = resample(stream); | |
| return { | |
| point: function(λ, φ) { | |
| stream.point(λ * d3_radians, φ * d3_radians); | |
| }, | |
| sphere: function() { | |
| stream.sphere(); | |
| }, | |
| lineStart: function() { | |
| stream.lineStart(); | |
| }, | |
| lineEnd: function() { | |
| stream.lineEnd(); | |
| }, | |
| polygonStart: function() { | |
| stream.polygonStart(); | |
| }, | |
| polygonEnd: function() { | |
| stream.polygonEnd(); | |
| } | |
| }; | |
| }; | |
| } | |
| d3.geo.projection = d3_geo_projection; | |
| d3.geo.projectionMutator = d3_geo_projectionMutator; | |
| function d3_geo_projection(project) { | |
| return d3_geo_projectionMutator(function() { | |
| return project; | |
| })(); | |
| } | |
| function d3_geo_projectionMutator(projectAt) { | |
| var project, rotate, projectRotate, projectResample = d3_geo_resample(function(x, y) { | |
| x = project(x, y); | |
| return [ x[0] * k + δx, δy - x[1] * k ]; | |
| }), k = 150, x = 480, y = 250, λ = 0, φ = 0, δλ = 0, δφ = 0, δγ = 0, δx, δy, preclip = d3_geo_clipAntimeridian, postclip = d3_identity, clipAngle = null, clipExtent = null, stream; | |
| function projection(point) { | |
| point = projectRotate(point[0] * d3_radians, point[1] * d3_radians); | |
| return [ point[0] * k + δx, δy - point[1] * k ]; | |
| } | |
| function invert(point) { | |
| point = projectRotate.invert((point[0] - δx) / k, (δy - point[1]) / k); | |
| return point && [ point[0] * d3_degrees, point[1] * d3_degrees ]; | |
| } | |
| projection.stream = function(output) { | |
| if (stream) stream.valid = false; | |
| stream = d3_geo_projectionRadiansRotate(rotate, preclip(projectResample(postclip(output)))); | |
| stream.valid = true; | |
| return stream; | |
| }; | |
| projection.clipAngle = function(_) { | |
| if (!arguments.length) return clipAngle; | |
| preclip = _ == null ? (clipAngle = _, d3_geo_clipAntimeridian) : d3_geo_clipCircle((clipAngle = +_) * d3_radians); | |
| return invalidate(); | |
| }; | |
| projection.clipExtent = function(_) { | |
| if (!arguments.length) return clipExtent; | |
| clipExtent = _; | |
| postclip = _ == null ? d3_identity : d3_geo_clipView(_[0][0], _[0][1], _[1][0], _[1][1]); | |
| return invalidate(); | |
| }; | |
| projection.scale = function(_) { | |
| if (!arguments.length) return k; | |
| k = +_; | |
| return reset(); | |
| }; | |
| projection.translate = function(_) { | |
| if (!arguments.length) return [ x, y ]; | |
| x = +_[0]; | |
| y = +_[1]; | |
| return reset(); | |
| }; | |
| projection.center = function(_) { | |
| if (!arguments.length) return [ λ * d3_degrees, φ * d3_degrees ]; | |
| λ = _[0] % 360 * d3_radians; | |
| φ = _[1] % 360 * d3_radians; | |
| return reset(); | |
| }; | |
| projection.rotate = function(_) { | |
| if (!arguments.length) return [ δλ * d3_degrees, δφ * d3_degrees, δγ * d3_degrees ]; | |
| δλ = _[0] % 360 * d3_radians; | |
| δφ = _[1] % 360 * d3_radians; | |
| δγ = _.length > 2 ? _[2] % 360 * d3_radians : 0; | |
| return reset(); | |
| }; | |
| d3.rebind(projection, projectResample, "precision"); | |
| function reset() { | |
| projectRotate = d3_geo_compose(rotate = d3_geo_rotation(δλ, δφ, δγ), project); | |
| var center = project(λ, φ); | |
| δx = x - center[0] * k; | |
| δy = y + center[1] * k; | |
| return invalidate(); | |
| } | |
| function invalidate() { | |
| if (stream) { | |
| stream.valid = false; | |
| stream = null; | |
| } | |
| return projection; | |
| } | |
| return function() { | |
| project = projectAt.apply(this, arguments); | |
| projection.invert = project.invert && invert; | |
| return reset(); | |
| }; | |
| } | |
| function d3_geo_projectionRadiansRotate(rotate, stream) { | |
| return { | |
| point: function(x, y) { | |
| y = rotate(x * d3_radians, y * d3_radians), x = y[0]; | |
| stream.point(x > π ? x - 2 * π : x < -π ? x + 2 * π : x, y[1]); | |
| }, | |
| sphere: function() { | |
| stream.sphere(); | |
| }, | |
| lineStart: function() { | |
| stream.lineStart(); | |
| }, | |
| lineEnd: function() { | |
| stream.lineEnd(); | |
| }, | |
| polygonStart: function() { | |
| stream.polygonStart(); | |
| }, | |
| polygonEnd: function() { | |
| stream.polygonEnd(); | |
| } | |
| }; | |
| } | |
| function d3_geo_equirectangular(λ, φ) { | |
| return [ λ, φ ]; | |
| } | |
| (d3.geo.equirectangular = function() { | |
| return d3_geo_projection(d3_geo_equirectangular); | |
| }).raw = d3_geo_equirectangular.invert = d3_geo_equirectangular; | |
| d3.geo.rotation = function(rotate) { | |
| rotate = d3_geo_rotation(rotate[0] % 360 * d3_radians, rotate[1] * d3_radians, rotate.length > 2 ? rotate[2] * d3_radians : 0); | |
| function forward(coordinates) { | |
| coordinates = rotate(coordinates[0] * d3_radians, coordinates[1] * d3_radians); | |
| return coordinates[0] *= d3_degrees, coordinates[1] *= d3_degrees, coordinates; | |
| } | |
| forward.invert = function(coordinates) { | |
| coordinates = rotate.invert(coordinates[0] * d3_radians, coordinates[1] * d3_radians); | |
| return coordinates[0] *= d3_degrees, coordinates[1] *= d3_degrees, coordinates; | |
| }; | |
| return forward; | |
| }; | |
| function d3_geo_rotation(δλ, δφ, δγ) { | |
| return δλ ? δφ || δγ ? d3_geo_compose(d3_geo_rotationλ(δλ), d3_geo_rotationφγ(δφ, δγ)) : d3_geo_rotationλ(δλ) : δφ || δγ ? d3_geo_rotationφγ(δφ, δγ) : d3_geo_equirectangular; | |
| } | |
| function d3_geo_forwardRotationλ(δλ) { | |
| return function(λ, φ) { | |
| return λ += δλ, [ λ > π ? λ - 2 * π : λ < -π ? λ + 2 * π : λ, φ ]; | |
| }; | |
| } | |
| function d3_geo_rotationλ(δλ) { | |
| var rotation = d3_geo_forwardRotationλ(δλ); | |
| rotation.invert = d3_geo_forwardRotationλ(-δλ); | |
| return rotation; | |
| } | |
| function d3_geo_rotationφγ(δφ, δγ) { | |
| var cosδφ = Math.cos(δφ), sinδφ = Math.sin(δφ), cosδγ = Math.cos(δγ), sinδγ = Math.sin(δγ); | |
| function rotation(λ, φ) { | |
| var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδφ + x * sinδφ; | |
| return [ Math.atan2(y * cosδγ - k * sinδγ, x * cosδφ - z * sinδφ), d3_asin(k * cosδγ + y * sinδγ) ]; | |
| } | |
| rotation.invert = function(λ, φ) { | |
| var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδγ - y * sinδγ; | |
| return [ Math.atan2(y * cosδγ + z * sinδγ, x * cosδφ + k * sinδφ), d3_asin(k * cosδφ - x * sinδφ) ]; | |
| }; | |
| return rotation; | |
| } | |
| d3.geo.circle = function() { | |
| var origin = [ 0, 0 ], angle, precision = 6, interpolate; | |
| function circle() { | |
| var center = typeof origin === "function" ? origin.apply(this, arguments) : origin, rotate = d3_geo_rotation(-center[0] * d3_radians, -center[1] * d3_radians, 0).invert, ring = []; | |
| interpolate(null, null, 1, { | |
| point: function(x, y) { | |
| ring.push(x = rotate(x, y)); | |
| x[0] *= d3_degrees, x[1] *= d3_degrees; | |
| } | |
| }); | |
| return { | |
| type: "Polygon", | |
| coordinates: [ ring ] | |
| }; | |
| } | |
| circle.origin = function(x) { | |
| if (!arguments.length) return origin; | |
| origin = x; | |
| return circle; | |
| }; | |
| circle.angle = function(x) { | |
| if (!arguments.length) return angle; | |
| interpolate = d3_geo_circleInterpolate((angle = +x) * d3_radians, precision * d3_radians); | |
| return circle; | |
| }; | |
| circle.precision = function(_) { | |
| if (!arguments.length) return precision; | |
| interpolate = d3_geo_circleInterpolate(angle * d3_radians, (precision = +_) * d3_radians); | |
| return circle; | |
| }; | |
| return circle.angle(90); | |
| }; | |
| function d3_geo_circleInterpolate(radius, precision) { | |
| var cr = Math.cos(radius), sr = Math.sin(radius); | |
| return function(from, to, direction, listener) { | |
| if (from != null) { | |
| from = d3_geo_circleAngle(cr, from); | |
| to = d3_geo_circleAngle(cr, to); | |
| if (direction > 0 ? from < to : from > to) from += direction * 2 * π; | |
| } else { | |
| from = radius + direction * 2 * π; | |
| to = radius; | |
| } | |
| var point; | |
| for (var step = direction * precision, t = from; direction > 0 ? t > to : t < to; t -= step) { | |
| listener.point((point = d3_geo_spherical([ cr, -sr * Math.cos(t), -sr * Math.sin(t) ]))[0], point[1]); | |
| } | |
| }; | |
| } | |
| function d3_geo_circleAngle(cr, point) { | |
| var a = d3_geo_cartesian(point); | |
| a[0] -= cr; | |
| d3_geo_cartesianNormalize(a); | |
| var angle = d3_acos(-a[1]); | |
| return ((-a[2] < 0 ? -angle : angle) + 2 * Math.PI - ε) % (2 * Math.PI); | |
| } | |
| d3.geo.distance = function(a, b) { | |
| var Δλ = (b[0] - a[0]) * d3_radians, φ0 = a[1] * d3_radians, φ1 = b[1] * d3_radians, sinΔλ = Math.sin(Δλ), cosΔλ = Math.cos(Δλ), sinφ0 = Math.sin(φ0), cosφ0 = Math.cos(φ0), sinφ1 = Math.sin(φ1), cosφ1 = Math.cos(φ1), t; | |
| return Math.atan2(Math.sqrt((t = cosφ1 * sinΔλ) * t + (t = cosφ0 * sinφ1 - sinφ0 * cosφ1 * cosΔλ) * t), sinφ0 * sinφ1 + cosφ0 * cosφ1 * cosΔλ); | |
| }; | |
| d3.geo.graticule = function() { | |
| var x1, x0, X1, X0, y1, y0, Y1, Y0, dx = 10, dy = dx, DX = 90, DY = 360, x, y, X, Y, precision = 2.5; | |
| function graticule() { | |
| return { | |
| type: "MultiLineString", | |
| coordinates: lines() | |
| }; | |
| } | |
| function lines() { | |
| return d3.range(Math.ceil(X0 / DX) * DX, X1, DX).map(X).concat(d3.range(Math.ceil(Y0 / DY) * DY, Y1, DY).map(Y)).concat(d3.range(Math.ceil(x0 / dx) * dx, x1, dx).filter(function(x) { | |
| return Math.abs(x % DX) > ε; | |
| }).map(x)).concat(d3.range(Math.ceil(y0 / dy) * dy, y1, dy).filter(function(y) { | |
| return Math.abs(y % DY) > ε; | |
| }).map(y)); | |
| } | |
| graticule.lines = function() { | |
| return lines().map(function(coordinates) { | |
| return { | |
| type: "LineString", | |
| coordinates: coordinates | |
| }; | |
| }); | |
| }; | |
| graticule.outline = function() { | |
| return { | |
| type: "Polygon", | |
| coordinates: [ X(X0).concat(Y(Y1).slice(1), X(X1).reverse().slice(1), Y(Y0).reverse().slice(1)) ] | |
| }; | |
| }; | |
| graticule.extent = function(_) { | |
| if (!arguments.length) return graticule.minorExtent(); | |
| return graticule.majorExtent(_).minorExtent(_); | |
| }; | |
| graticule.majorExtent = function(_) { | |
| if (!arguments.length) return [ [ X0, Y0 ], [ X1, Y1 ] ]; | |
| X0 = +_[0][0], X1 = +_[1][0]; | |
| Y0 = +_[0][1], Y1 = +_[1][1]; | |
| if (X0 > X1) _ = X0, X0 = X1, X1 = _; | |
| if (Y0 > Y1) _ = Y0, Y0 = Y1, Y1 = _; | |
| return graticule.precision(precision); | |
| }; | |
| graticule.minorExtent = function(_) { | |
| if (!arguments.length) return [ [ x0, y0 ], [ x1, y1 ] ]; | |
| x0 = +_[0][0], x1 = +_[1][0]; | |
| y0 = +_[0][1], y1 = +_[1][1]; | |
| if (x0 > x1) _ = x0, x0 = x1, x1 = _; | |
| if (y0 > y1) _ = y0, y0 = y1, y1 = _; | |
| return graticule.precision(precision); | |
| }; | |
| graticule.step = function(_) { | |
| if (!arguments.length) return graticule.minorStep(); | |
| return graticule.majorStep(_).minorStep(_); | |
| }; | |
| graticule.majorStep = function(_) { | |
| if (!arguments.length) return [ DX, DY ]; | |
| DX = +_[0], DY = +_[1]; | |
| return graticule; | |
| }; | |
| graticule.minorStep = function(_) { | |
| if (!arguments.length) return [ dx, dy ]; | |
| dx = +_[0], dy = +_[1]; | |
| return graticule; | |
| }; | |
| graticule.precision = function(_) { | |
| if (!arguments.length) return precision; | |
| precision = +_; | |
| x = d3_geo_graticuleX(y0, y1, 90); | |
| y = d3_geo_graticuleY(x0, x1, precision); | |
| X = d3_geo_graticuleX(Y0, Y1, 90); | |
| Y = d3_geo_graticuleY(X0, X1, precision); | |
| return graticule; | |
| }; | |
| return graticule.majorExtent([ [ -180, -90 + ε ], [ 180, 90 - ε ] ]).minorExtent([ [ -180, -80 - ε ], [ 180, 80 + ε ] ]); | |
| }; | |
| function d3_geo_graticuleX(y0, y1, dy) { | |
| var y = d3.range(y0, y1 - ε, dy).concat(y1); | |
| return function(x) { | |
| return y.map(function(y) { | |
| return [ x, y ]; | |
| }); | |
| }; | |
| } | |
| function d3_geo_graticuleY(x0, x1, dx) { | |
| var x = d3.range(x0, x1 - ε, dx).concat(x1); | |
| return function(y) { | |
| return x.map(function(x) { | |
| return [ x, y ]; | |
| }); | |
| }; | |
| } | |
| function d3_source(d) { | |
| return d.source; | |
| } | |
| function d3_target(d) { | |
| return d.target; | |
| } | |
| d3.geo.greatArc = function() { | |
| var source = d3_source, source_, target = d3_target, target_; | |
| function greatArc() { | |
| return { | |
| type: "LineString", | |
| coordinates: [ source_ || source.apply(this, arguments), target_ || target.apply(this, arguments) ] | |
| }; | |
| } | |
| greatArc.distance = function() { | |
| return d3.geo.distance(source_ || source.apply(this, arguments), target_ || target.apply(this, arguments)); | |
| }; | |
| greatArc.source = function(_) { | |
| if (!arguments.length) return source; | |
| source = _, source_ = typeof _ === "function" ? null : _; | |
| return greatArc; | |
| }; | |
| greatArc.target = function(_) { | |
| if (!arguments.length) return target; | |
| target = _, target_ = typeof _ === "function" ? null : _; | |
| return greatArc; | |
| }; | |
| greatArc.precision = function() { | |
| return arguments.length ? greatArc : 0; | |
| }; | |
| return greatArc; | |
| }; | |
| d3.geo.interpolate = function(source, target) { | |
| return d3_geo_interpolate(source[0] * d3_radians, source[1] * d3_radians, target[0] * d3_radians, target[1] * d3_radians); | |
| }; | |
| function d3_geo_interpolate(x0, y0, x1, y1) { | |
| var cy0 = Math.cos(y0), sy0 = Math.sin(y0), cy1 = Math.cos(y1), sy1 = Math.sin(y1), kx0 = cy0 * Math.cos(x0), ky0 = cy0 * Math.sin(x0), kx1 = cy1 * Math.cos(x1), ky1 = cy1 * Math.sin(x1), d = 2 * Math.asin(Math.sqrt(d3_haversin(y1 - y0) + cy0 * cy1 * d3_haversin(x1 - x0))), k = 1 / Math.sin(d); | |
| var interpolate = d ? function(t) { | |
| var B = Math.sin(t *= d) * k, A = Math.sin(d - t) * k, x = A * kx0 + B * kx1, y = A * ky0 + B * ky1, z = A * sy0 + B * sy1; | |
| return [ Math.atan2(y, x) * d3_degrees, Math.atan2(z, Math.sqrt(x * x + y * y)) * d3_degrees ]; | |
| } : function() { | |
| return [ x0 * d3_degrees, y0 * d3_degrees ]; | |
| }; | |
| interpolate.distance = d; | |
| return interpolate; | |
| } | |
| d3.geo.length = function(object) { | |
| d3_geo_lengthSum = 0; | |
| d3.geo.stream(object, d3_geo_length); | |
| return d3_geo_lengthSum; | |
| }; | |
| var d3_geo_lengthSum; | |
| var d3_geo_length = { | |
| sphere: d3_noop, | |
| point: d3_noop, | |
| lineStart: d3_geo_lengthLineStart, | |
| lineEnd: d3_noop, | |
| polygonStart: d3_noop, | |
| polygonEnd: d3_noop | |
| }; | |
| function d3_geo_lengthLineStart() { | |
| var λ0, sinφ0, cosφ0; | |
| d3_geo_length.point = function(λ, φ) { | |
| λ0 = λ * d3_radians, sinφ0 = Math.sin(φ *= d3_radians), cosφ0 = Math.cos(φ); | |
| d3_geo_length.point = nextPoint; | |
| }; | |
| d3_geo_length.lineEnd = function() { | |
| d3_geo_length.point = d3_geo_length.lineEnd = d3_noop; | |
| }; | |
| function nextPoint(λ, φ) { | |
| var sinφ = Math.sin(φ *= d3_radians), cosφ = Math.cos(φ), t = Math.abs((λ *= d3_radians) - λ0), cosΔλ = Math.cos(t); | |
| d3_geo_lengthSum += Math.atan2(Math.sqrt((t = cosφ * Math.sin(t)) * t + (t = cosφ0 * sinφ - sinφ0 * cosφ * cosΔλ) * t), sinφ0 * sinφ + cosφ0 * cosφ * cosΔλ); | |
| λ0 = λ, sinφ0 = sinφ, cosφ0 = cosφ; | |
| } | |
| } | |
| function d3_geo_azimuthal(scale, angle) { | |
| function azimuthal(λ, φ) { | |
| var cosλ = Math.cos(λ), cosφ = Math.cos(φ), k = scale(cosλ * cosφ); | |
| return [ k * cosφ * Math.sin(λ), k * Math.sin(φ) ]; | |
| } | |
| azimuthal.invert = function(x, y) { | |
| var ρ = Math.sqrt(x * x + y * y), c = angle(ρ), sinc = Math.sin(c), cosc = Math.cos(c); | |
| return [ Math.atan2(x * sinc, ρ * cosc), Math.asin(ρ && y * sinc / ρ) ]; | |
| }; | |
| return azimuthal; | |
| } | |
| var d3_geo_azimuthalEqualArea = d3_geo_azimuthal(function(cosλcosφ) { | |
| return Math.sqrt(2 / (1 + cosλcosφ)); | |
| }, function(ρ) { | |
| return 2 * Math.asin(ρ / 2); | |
| }); | |
| (d3.geo.azimuthalEqualArea = function() { | |
| return d3_geo_projection(d3_geo_azimuthalEqualArea); | |
| }).raw = d3_geo_azimuthalEqualArea; | |
| var d3_geo_azimuthalEquidistant = d3_geo_azimuthal(function(cosλcosφ) { | |
| var c = Math.acos(cosλcosφ); | |
| return c && c / Math.sin(c); | |
| }, d3_identity); | |
| (d3.geo.azimuthalEquidistant = function() { | |
| return d3_geo_projection(d3_geo_azimuthalEquidistant); | |
| }).raw = d3_geo_azimuthalEquidistant; | |
| function d3_geo_conicConformal(φ0, φ1) { | |
| var cosφ0 = Math.cos(φ0), t = function(φ) { | |
| return Math.tan(π / 4 + φ / 2); | |
| }, n = φ0 === φ1 ? Math.sin(φ0) : Math.log(cosφ0 / Math.cos(φ1)) / Math.log(t(φ1) / t(φ0)), F = cosφ0 * Math.pow(t(φ0), n) / n; | |
| if (!n) return d3_geo_mercator; | |
| function forward(λ, φ) { | |
| var ρ = Math.abs(Math.abs(φ) - π / 2) < ε ? 0 : F / Math.pow(t(φ), n); | |
| return [ ρ * Math.sin(n * λ), F - ρ * Math.cos(n * λ) ]; | |
| } | |
| forward.invert = function(x, y) { | |
| var ρ0_y = F - y, ρ = d3_sgn(n) * Math.sqrt(x * x + ρ0_y * ρ0_y); | |
| return [ Math.atan2(x, ρ0_y) / n, 2 * Math.atan(Math.pow(F / ρ, 1 / n)) - π / 2 ]; | |
| }; | |
| return forward; | |
| } | |
| (d3.geo.conicConformal = function() { | |
| return d3_geo_conic(d3_geo_conicConformal); | |
| }).raw = d3_geo_conicConformal; | |
| function d3_geo_conicEquidistant(φ0, φ1) { | |
| var cosφ0 = Math.cos(φ0), n = φ0 === φ1 ? Math.sin(φ0) : (cosφ0 - Math.cos(φ1)) / (φ1 - φ0), G = cosφ0 / n + φ0; | |
| if (Math.abs(n) < ε) return d3_geo_equirectangular; | |
| function forward(λ, φ) { | |
| var ρ = G - φ; | |
| return [ ρ * Math.sin(n * λ), G - ρ * Math.cos(n * λ) ]; | |
| } | |
| forward.invert = function(x, y) { | |
| var ρ0_y = G - y; | |
| return [ Math.atan2(x, ρ0_y) / n, G - d3_sgn(n) * Math.sqrt(x * x + ρ0_y * ρ0_y) ]; | |
| }; | |
| return forward; | |
| } | |
| (d3.geo.conicEquidistant = function() { | |
| return d3_geo_conic(d3_geo_conicEquidistant); | |
| }).raw = d3_geo_conicEquidistant; | |
| var d3_geo_gnomonic = d3_geo_azimuthal(function(cosλcosφ) { | |
| return 1 / cosλcosφ; | |
| }, Math.atan); | |
| (d3.geo.gnomonic = function() { | |
| return d3_geo_projection(d3_geo_gnomonic); | |
| }).raw = d3_geo_gnomonic; | |
| function d3_geo_mercator(λ, φ) { | |
| return [ λ, Math.log(Math.tan(π / 4 + φ / 2)) ]; | |
| } | |
| d3_geo_mercator.invert = function(x, y) { | |
| return [ x, 2 * Math.atan(Math.exp(y)) - π / 2 ]; | |
| }; | |
| function d3_geo_mercatorProjection(project) { | |
| var m = d3_geo_projection(project), scale = m.scale, translate = m.translate, clipExtent = m.clipExtent, clipAuto; | |
| m.scale = function() { | |
| var v = scale.apply(m, arguments); | |
| return v === m ? clipAuto ? m.clipExtent(null) : m : v; | |
| }; | |
| m.translate = function() { | |
| var v = translate.apply(m, arguments); | |
| return v === m ? clipAuto ? m.clipExtent(null) : m : v; | |
| }; | |
| m.clipExtent = function(_) { | |
| var v = clipExtent.apply(m, arguments); | |
| if (v === m) { | |
| if (clipAuto = _ == null) { | |
| var k = π * scale(), t = translate(); | |
| clipExtent([ [ t[0] - k, t[1] - k ], [ t[0] + k, t[1] + k ] ]); | |
| } | |
| } else if (clipAuto) { | |
| v = null; | |
| } | |
| return v; | |
| }; | |
| return m.clipExtent(null); | |
| } | |
| (d3.geo.mercator = function() { | |
| return d3_geo_mercatorProjection(d3_geo_mercator); | |
| }).raw = d3_geo_mercator; | |
| var d3_geo_orthographic = d3_geo_azimuthal(function() { | |
| return 1; | |
| }, Math.asin); | |
| (d3.geo.orthographic = function() { | |
| return d3_geo_projection(d3_geo_orthographic); | |
| }).raw = d3_geo_orthographic; | |
| var d3_geo_stereographic = d3_geo_azimuthal(function(cosλcosφ) { | |
| return 1 / (1 + cosλcosφ); | |
| }, function(ρ) { | |
| return 2 * Math.atan(ρ); | |
| }); | |
| (d3.geo.stereographic = function() { | |
| return d3_geo_projection(d3_geo_stereographic); | |
| }).raw = d3_geo_stereographic; | |
| function d3_geo_transverseMercator(λ, φ) { | |
| var B = Math.cos(φ) * Math.sin(λ); | |
| return [ Math.log((1 + B) / (1 - B)) / 2, Math.atan2(Math.tan(φ), Math.cos(λ)) ]; | |
| } | |
| d3_geo_transverseMercator.invert = function(x, y) { | |
| return [ Math.atan2(d3_sinh(x), Math.cos(y)), d3_asin(Math.sin(y) / d3_cosh(x)) ]; | |
| }; | |
| (d3.geo.transverseMercator = function() { | |
| return d3_geo_mercatorProjection(d3_geo_transverseMercator); | |
| }).raw = d3_geo_transverseMercator; | |
| d3.geom = {}; | |
| d3.svg = {}; | |
| function d3_svg_line(projection) { | |
| var x = d3_svg_lineX, y = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, tension = .7; | |
| function line(data) { | |
| var segments = [], points = [], i = -1, n = data.length, d, fx = d3_functor(x), fy = d3_functor(y); | |
| function segment() { | |
| segments.push("M", interpolate(projection(points), tension)); | |
| } | |
| while (++i < n) { | |
| if (defined.call(this, d = data[i], i)) { | |
| points.push([ +fx.call(this, d, i), +fy.call(this, d, i) ]); | |
| } else if (points.length) { | |
| segment(); | |
| points = []; | |
| } | |
| } | |
| if (points.length) segment(); | |
| return segments.length ? segments.join("") : null; | |
| } | |
| line.x = function(_) { | |
| if (!arguments.length) return x; | |
| x = _; | |
| return line; | |
| }; | |
| line.y = function(_) { | |
| if (!arguments.length) return y; | |
| y = _; | |
| return line; | |
| }; | |
| line.defined = function(_) { | |
| if (!arguments.length) return defined; | |
| defined = _; | |
| return line; | |
| }; | |
| line.interpolate = function(_) { | |
| if (!arguments.length) return interpolateKey; | |
| if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key; | |
| return line; | |
| }; | |
| line.tension = function(_) { | |
| if (!arguments.length) return tension; | |
| tension = _; | |
| return line; | |
| }; | |
| return line; | |
| } | |
| d3.svg.line = function() { | |
| return d3_svg_line(d3_identity); | |
| }; | |
| function d3_svg_lineX(d) { | |
| return d[0]; | |
| } | |
| function d3_svg_lineY(d) { | |
| return d[1]; | |
| } | |
| var d3_svg_lineInterpolators = d3.map({ | |
| linear: d3_svg_lineLinear, | |
| "linear-closed": d3_svg_lineLinearClosed, | |
| step: d3_svg_lineStep, | |
| "step-before": d3_svg_lineStepBefore, | |
| "step-after": d3_svg_lineStepAfter, | |
| basis: d3_svg_lineBasis, | |
| "basis-open": d3_svg_lineBasisOpen, | |
| "basis-closed": d3_svg_lineBasisClosed, | |
| bundle: d3_svg_lineBundle, | |
| cardinal: d3_svg_lineCardinal, | |
| "cardinal-open": d3_svg_lineCardinalOpen, | |
| "cardinal-closed": d3_svg_lineCardinalClosed, | |
| monotone: d3_svg_lineMonotone | |
| }); | |
| d3_svg_lineInterpolators.forEach(function(key, value) { | |
| value.key = key; | |
| value.closed = /-closed$/.test(key); | |
| }); | |
| function d3_svg_lineLinear(points) { | |
| return points.join("L"); | |
| } | |
| function d3_svg_lineLinearClosed(points) { | |
| return d3_svg_lineLinear(points) + "Z"; | |
| } | |
| function d3_svg_lineStep(points) { | |
| var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ]; | |
| while (++i < n) path.push("H", (p[0] + (p = points[i])[0]) / 2, "V", p[1]); | |
| if (n > 1) path.push("H", p[0]); | |
| return path.join(""); | |
| } | |
| function d3_svg_lineStepBefore(points) { | |
| var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ]; | |
| while (++i < n) path.push("V", (p = points[i])[1], "H", p[0]); | |
| return path.join(""); | |
| } | |
| function d3_svg_lineStepAfter(points) { | |
| var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ]; | |
| while (++i < n) path.push("H", (p = points[i])[0], "V", p[1]); | |
| return path.join(""); | |
| } | |
| function d3_svg_lineCardinalOpen(points, tension) { | |
| return points.length < 4 ? d3_svg_lineLinear(points) : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1), d3_svg_lineCardinalTangents(points, tension)); | |
| } | |
| function d3_svg_lineCardinalClosed(points, tension) { | |
| return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite((points.push(points[0]), | |
| points), d3_svg_lineCardinalTangents([ points[points.length - 2] ].concat(points, [ points[1] ]), tension)); | |
| } | |
| function d3_svg_lineCardinal(points, tension) { | |
| return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineCardinalTangents(points, tension)); | |
| } | |
| function d3_svg_lineHermite(points, tangents) { | |
| if (tangents.length < 1 || points.length != tangents.length && points.length != tangents.length + 2) { | |
| return d3_svg_lineLinear(points); | |
| } | |
| var quad = points.length != tangents.length, path = "", p0 = points[0], p = points[1], t0 = tangents[0], t = t0, pi = 1; | |
| if (quad) { | |
| path += "Q" + (p[0] - t0[0] * 2 / 3) + "," + (p[1] - t0[1] * 2 / 3) + "," + p[0] + "," + p[1]; | |
| p0 = points[1]; | |
| pi = 2; | |
| } | |
| if (tangents.length > 1) { | |
| t = tangents[1]; | |
| p = points[pi]; | |
| pi++; | |
| path += "C" + (p0[0] + t0[0]) + "," + (p0[1] + t0[1]) + "," + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1]; | |
| for (var i = 2; i < tangents.length; i++, pi++) { | |
| p = points[pi]; | |
| t = tangents[i]; | |
| path += "S" + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1]; | |
| } | |
| } | |
| if (quad) { | |
| var lp = points[pi]; | |
| path += "Q" + (p[0] + t[0] * 2 / 3) + "," + (p[1] + t[1] * 2 / 3) + "," + lp[0] + "," + lp[1]; | |
| } | |
| return path; | |
| } | |
| function d3_svg_lineCardinalTangents(points, tension) { | |
| var tangents = [], a = (1 - tension) / 2, p0, p1 = points[0], p2 = points[1], i = 1, n = points.length; | |
| while (++i < n) { | |
| p0 = p1; | |
| p1 = p2; | |
| p2 = points[i]; | |
| tangents.push([ a * (p2[0] - p0[0]), a * (p2[1] - p0[1]) ]); | |
| } | |
| return tangents; | |
| } | |
| function d3_svg_lineBasis(points) { | |
| if (points.length < 3) return d3_svg_lineLinear(points); | |
| var i = 1, n = points.length, pi = points[0], x0 = pi[0], y0 = pi[1], px = [ x0, x0, x0, (pi = points[1])[0] ], py = [ y0, y0, y0, pi[1] ], path = [ x0, ",", y0, "L", d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, py) ]; | |
| points.push(points[n - 1]); | |
| while (++i <= n) { | |
| pi = points[i]; | |
| px.shift(); | |
| px.push(pi[0]); | |
| py.shift(); | |
| py.push(pi[1]); | |
| d3_svg_lineBasisBezier(path, px, py); | |
| } | |
| points.pop(); | |
| path.push("L", pi); | |
| return path.join(""); | |
| } | |
| function d3_svg_lineBasisOpen(points) { | |
| if (points.length < 4) return d3_svg_lineLinear(points); | |
| var path = [], i = -1, n = points.length, pi, px = [ 0 ], py = [ 0 ]; | |
| while (++i < 3) { | |
| pi = points[i]; | |
| px.push(pi[0]); | |
| py.push(pi[1]); | |
| } | |
| path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px) + "," + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)); | |
| --i; | |
| while (++i < n) { | |
| pi = points[i]; | |
| px.shift(); | |
| px.push(pi[0]); | |
| py.shift(); | |
| py.push(pi[1]); | |
| d3_svg_lineBasisBezier(path, px, py); | |
| } | |
| return path.join(""); | |
| } | |
| function d3_svg_lineBasisClosed(points) { | |
| var path, i = -1, n = points.length, m = n + 4, pi, px = [], py = []; | |
| while (++i < 4) { | |
| pi = points[i % n]; | |
| px.push(pi[0]); | |
| py.push(pi[1]); | |
| } | |
| path = [ d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, py) ]; | |
| --i; | |
| while (++i < m) { | |
| pi = points[i % n]; | |
| px.shift(); | |
| px.push(pi[0]); | |
| py.shift(); | |
| py.push(pi[1]); | |
| d3_svg_lineBasisBezier(path, px, py); | |
| } | |
| return path.join(""); | |
| } | |
| function d3_svg_lineBundle(points, tension) { | |
| var n = points.length - 1; | |
| if (n) { | |
| var x0 = points[0][0], y0 = points[0][1], dx = points[n][0] - x0, dy = points[n][1] - y0, i = -1, p, t; | |
| while (++i <= n) { | |
| p = points[i]; | |
| t = i / n; | |
| p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx); | |
| p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy); | |
| } | |
| } | |
| return d3_svg_lineBasis(points); | |
| } | |
| function d3_svg_lineDot4(a, b) { | |
| return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3]; | |
| } | |
| var d3_svg_lineBasisBezier1 = [ 0, 2 / 3, 1 / 3, 0 ], d3_svg_lineBasisBezier2 = [ 0, 1 / 3, 2 / 3, 0 ], d3_svg_lineBasisBezier3 = [ 0, 1 / 6, 2 / 3, 1 / 6 ]; | |
| function d3_svg_lineBasisBezier(path, x, y) { | |
| path.push("C", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y)); | |
| } | |
| function d3_svg_lineSlope(p0, p1) { | |
| return (p1[1] - p0[1]) / (p1[0] - p0[0]); | |
| } | |
| function d3_svg_lineFiniteDifferences(points) { | |
| var i = 0, j = points.length - 1, m = [], p0 = points[0], p1 = points[1], d = m[0] = d3_svg_lineSlope(p0, p1); | |
| while (++i < j) { | |
| m[i] = (d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]))) / 2; | |
| } | |
| m[i] = d; | |
| return m; | |
| } | |
| function d3_svg_lineMonotoneTangents(points) { | |
| var tangents = [], d, a, b, s, m = d3_svg_lineFiniteDifferences(points), i = -1, j = points.length - 1; | |
| while (++i < j) { | |
| d = d3_svg_lineSlope(points[i], points[i + 1]); | |
| if (Math.abs(d) < 1e-6) { | |
| m[i] = m[i + 1] = 0; | |
| } else { | |
| a = m[i] / d; | |
| b = m[i + 1] / d; | |
| s = a * a + b * b; | |
| if (s > 9) { | |
| s = d * 3 / Math.sqrt(s); | |
| m[i] = s * a; | |
| m[i + 1] = s * b; | |
| } | |
| } | |
| } | |
| i = -1; | |
| while (++i <= j) { | |
| s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0]) / (6 * (1 + m[i] * m[i])); | |
| tangents.push([ s || 0, m[i] * s || 0 ]); | |
| } | |
| return tangents; | |
| } | |
| function d3_svg_lineMonotone(points) { | |
| return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points)); | |
| } | |
| d3.geom.hull = function(vertices) { | |
| var x = d3_svg_lineX, y = d3_svg_lineY; | |
| if (arguments.length) return hull(vertices); | |
| function hull(data) { | |
| if (data.length < 3) return []; | |
| var fx = d3_functor(x), fy = d3_functor(y), n = data.length, vertices, plen = n - 1, points = [], stack = [], d, i, j, h = 0, x1, y1, x2, y2, u, v, a, sp; | |
| if (fx === d3_svg_lineX && y === d3_svg_lineY) vertices = data; else for (i = 0, | |
| vertices = []; i < n; ++i) { | |
| vertices.push([ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]); | |
| } | |
| for (i = 1; i < n; ++i) { | |
| if (vertices[i][1] < vertices[h][1] || vertices[i][1] == vertices[h][1] && vertices[i][0] < vertices[h][0]) h = i; | |
| } | |
| for (i = 0; i < n; ++i) { | |
| if (i === h) continue; | |
| y1 = vertices[i][1] - vertices[h][1]; | |
| x1 = vertices[i][0] - vertices[h][0]; | |
| points.push({ | |
| angle: Math.atan2(y1, x1), | |
| index: i | |
| }); | |
| } | |
| points.sort(function(a, b) { | |
| return a.angle - b.angle; | |
| }); | |
| a = points[0].angle; | |
| v = points[0].index; | |
| u = 0; | |
| for (i = 1; i < plen; ++i) { | |
| j = points[i].index; | |
| if (a == points[i].angle) { | |
| x1 = vertices[v][0] - vertices[h][0]; | |
| y1 = vertices[v][1] - vertices[h][1]; | |
| x2 = vertices[j][0] - vertices[h][0]; | |
| y2 = vertices[j][1] - vertices[h][1]; | |
| if (x1 * x1 + y1 * y1 >= x2 * x2 + y2 * y2) { | |
| points[i].index = -1; | |
| continue; | |
| } else { | |
| points[u].index = -1; | |
| } | |
| } | |
| a = points[i].angle; | |
| u = i; | |
| v = j; | |
| } | |
| stack.push(h); | |
| for (i = 0, j = 0; i < 2; ++j) { | |
| if (points[j].index > -1) { | |
| stack.push(points[j].index); | |
| i++; | |
| } | |
| } | |
| sp = stack.length; | |
| for (;j < plen; ++j) { | |
| if (points[j].index < 0) continue; | |
| while (!d3_geom_hullCCW(stack[sp - 2], stack[sp - 1], points[j].index, vertices)) { | |
| --sp; | |
| } | |
| stack[sp++] = points[j].index; | |
| } | |
| var poly = []; | |
| for (i = sp - 1; i >= 0; --i) poly.push(data[stack[i]]); | |
| return poly; | |
| } | |
| hull.x = function(_) { | |
| return arguments.length ? (x = _, hull) : x; | |
| }; | |
| hull.y = function(_) { | |
| return arguments.length ? (y = _, hull) : y; | |
| }; | |
| return hull; | |
| }; | |
| function d3_geom_hullCCW(i1, i2, i3, v) { | |
| var t, a, b, c, d, e, f; | |
| t = v[i1]; | |
| a = t[0]; | |
| b = t[1]; | |
| t = v[i2]; | |
| c = t[0]; | |
| d = t[1]; | |
| t = v[i3]; | |
| e = t[0]; | |
| f = t[1]; | |
| return (f - b) * (c - a) - (d - b) * (e - a) > 0; | |
| } | |
| d3.geom.polygon = function(coordinates) { | |
| d3_subclass(coordinates, d3_geom_polygonPrototype); | |
| return coordinates; | |
| }; | |
| var d3_geom_polygonPrototype = d3.geom.polygon.prototype = []; | |
| d3_geom_polygonPrototype.area = function() { | |
| var i = -1, n = this.length, a, b = this[n - 1], area = 0; | |
| while (++i < n) { | |
| a = b; | |
| b = this[i]; | |
| area += a[1] * b[0] - a[0] * b[1]; | |
| } | |
| return area * .5; | |
| }; | |
| d3_geom_polygonPrototype.centroid = function(k) { | |
| var i = -1, n = this.length, x = 0, y = 0, a, b = this[n - 1], c; | |
| if (!arguments.length) k = -1 / (6 * this.area()); | |
| while (++i < n) { | |
| a = b; | |
| b = this[i]; | |
| c = a[0] * b[1] - b[0] * a[1]; | |
| x += (a[0] + b[0]) * c; | |
| y += (a[1] + b[1]) * c; | |
| } | |
| return [ x * k, y * k ]; | |
| }; | |
| d3_geom_polygonPrototype.clip = function(subject) { | |
| var input, closed = d3_geom_polygonClosed(subject), i = -1, n = this.length - d3_geom_polygonClosed(this), j, m, a = this[n - 1], b, c, d; | |
| while (++i < n) { | |
| input = subject.slice(); | |
| subject.length = 0; | |
| b = this[i]; | |
| c = input[(m = input.length - closed) - 1]; | |
| j = -1; | |
| while (++j < m) { | |
| d = input[j]; | |
| if (d3_geom_polygonInside(d, a, b)) { | |
| if (!d3_geom_polygonInside(c, a, b)) { | |
| subject.push(d3_geom_polygonIntersect(c, d, a, b)); | |
| } | |
| subject.push(d); | |
| } else if (d3_geom_polygonInside(c, a, b)) { | |
| subject.push(d3_geom_polygonIntersect(c, d, a, b)); | |
| } | |
| c = d; | |
| } | |
| if (closed) subject.push(subject[0]); | |
| a = b; | |
| } | |
| return subject; | |
| }; | |
| function d3_geom_polygonInside(p, a, b) { | |
| return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]); | |
| } | |
| function d3_geom_polygonIntersect(c, d, a, b) { | |
| var x1 = c[0], x3 = a[0], x21 = d[0] - x1, x43 = b[0] - x3, y1 = c[1], y3 = a[1], y21 = d[1] - y1, y43 = b[1] - y3, ua = (x43 * (y1 - y3) - y43 * (x1 - x3)) / (y43 * x21 - x43 * y21); | |
| return [ x1 + ua * x21, y1 + ua * y21 ]; | |
| } | |
| function d3_geom_polygonClosed(coordinates) { | |
| var a = coordinates[0], b = coordinates[coordinates.length - 1]; | |
| return !(a[0] - b[0] || a[1] - b[1]); | |
| } | |
| d3.geom.delaunay = function(vertices) { | |
| var edges = vertices.map(function() { | |
| return []; | |
| }), triangles = []; | |
| d3_geom_voronoiTessellate(vertices, function(e) { | |
| edges[e.region.l.index].push(vertices[e.region.r.index]); | |
| }); | |
| edges.forEach(function(edge, i) { | |
| var v = vertices[i], cx = v[0], cy = v[1]; | |
| edge.forEach(function(v) { | |
| v.angle = Math.atan2(v[0] - cx, v[1] - cy); | |
| }); | |
| edge.sort(function(a, b) { | |
| return a.angle - b.angle; | |
| }); | |
| for (var j = 0, m = edge.length - 1; j < m; j++) { | |
| triangles.push([ v, edge[j], edge[j + 1] ]); | |
| } | |
| }); | |
| return triangles; | |
| }; | |
| d3.geom.voronoi = function(points) { | |
| var x = d3_svg_lineX, y = d3_svg_lineY, clipPolygon = null; | |
| if (arguments.length) return voronoi(points); | |
| function voronoi(data) { | |
| var points, polygons = data.map(function() { | |
| return []; | |
| }), fx = d3_functor(x), fy = d3_functor(y), d, i, n = data.length, Z = 1e6; | |
| if (fx === d3_svg_lineX && fy === d3_svg_lineY) points = data; else for (points = new Array(n), | |
| i = 0; i < n; ++i) { | |
| points[i] = [ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]; | |
| } | |
| d3_geom_voronoiTessellate(points, function(e) { | |
| var s1, s2, x1, x2, y1, y2; | |
| if (e.a === 1 && e.b >= 0) { | |
| s1 = e.ep.r; | |
| s2 = e.ep.l; | |
| } else { | |
| s1 = e.ep.l; | |
| s2 = e.ep.r; | |
| } | |
| if (e.a === 1) { | |
| y1 = s1 ? s1.y : -Z; | |
| x1 = e.c - e.b * y1; | |
| y2 = s2 ? s2.y : Z; | |
| x2 = e.c - e.b * y2; | |
| } else { | |
| x1 = s1 ? s1.x : -Z; | |
| y1 = e.c - e.a * x1; | |
| x2 = s2 ? s2.x : Z; | |
| y2 = e.c - e.a * x2; | |
| } | |
| var v1 = [ x1, y1 ], v2 = [ x2, y2 ]; | |
| polygons[e.region.l.index].push(v1, v2); | |
| polygons[e.region.r.index].push(v1, v2); | |
| }); | |
| polygons = polygons.map(function(polygon, i) { | |
| var cx = points[i][0], cy = points[i][1], angle = polygon.map(function(v) { | |
| return Math.atan2(v[0] - cx, v[1] - cy); | |
| }), order = d3.range(polygon.length).sort(function(a, b) { | |
| return angle[a] - angle[b]; | |
| }); | |
| return order.filter(function(d, i) { | |
| return !i || angle[d] - angle[order[i - 1]] > ε; | |
| }).map(function(d) { | |
| return polygon[d]; | |
| }); | |
| }); | |
| polygons.forEach(function(polygon, i) { | |
| var n = polygon.length; | |
| if (!n) return polygon.push([ -Z, -Z ], [ -Z, Z ], [ Z, Z ], [ Z, -Z ]); | |
| if (n > 2) return; | |
| var p0 = points[i], p1 = polygon[0], p2 = polygon[1], x0 = p0[0], y0 = p0[1], x1 = p1[0], y1 = p1[1], x2 = p2[0], y2 = p2[1], dx = Math.abs(x2 - x1), dy = y2 - y1; | |
| if (Math.abs(dy) < ε) { | |
| var y = y0 < y1 ? -Z : Z; | |
| polygon.push([ -Z, y ], [ Z, y ]); | |
| } else if (dx < ε) { | |
| var x = x0 < x1 ? -Z : Z; | |
| polygon.push([ x, -Z ], [ x, Z ]); | |
| } else { | |
| var y = (x2 - x1) * (y1 - y0) < (x1 - x0) * (y2 - y1) ? Z : -Z, z = Math.abs(dy) - dx; | |
| if (Math.abs(z) < ε) { | |
| polygon.push([ dy < 0 ? y : -y, y ]); | |
| } else { | |
| if (z > 0) y *= -1; | |
| polygon.push([ -Z, y ], [ Z, y ]); | |
| } | |
| } | |
| }); | |
| if (clipPolygon) for (i = 0; i < n; ++i) clipPolygon.clip(polygons[i]); | |
| for (i = 0; i < n; ++i) polygons[i].point = data[i]; | |
| return polygons; | |
| } | |
| voronoi.x = function(_) { | |
| return arguments.length ? (x = _, voronoi) : x; | |
| }; | |
| voronoi.y = function(_) { | |
| return arguments.length ? (y = _, voronoi) : y; | |
| }; | |
| voronoi.clipExtent = function(_) { | |
| if (!arguments.length) return clipPolygon && [ clipPolygon[0], clipPolygon[2] ]; | |
| if (_ == null) clipPolygon = null; else { | |
| var x1 = +_[0][0], y1 = +_[0][1], x2 = +_[1][0], y2 = +_[1][1]; | |
| clipPolygon = d3.geom.polygon([ [ x1, y1 ], [ x1, y2 ], [ x2, y2 ], [ x2, y1 ] ]); | |
| } | |
| return voronoi; | |
| }; | |
| voronoi.size = function(_) { | |
| if (!arguments.length) return clipPolygon && clipPolygon[2]; | |
| return voronoi.clipExtent(_ && [ [ 0, 0 ], _ ]); | |
| }; | |
| voronoi.links = function(data) { | |
| var points, graph = data.map(function() { | |
| return []; | |
| }), links = [], fx = d3_functor(x), fy = d3_functor(y), d, i, n = data.length; | |
| if (fx === d3_svg_lineX && fy === d3_svg_lineY) points = data; else for (points = new Array(n), | |
| i = 0; i < n; ++i) { | |
| points[i] = [ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]; | |
| } | |
| d3_geom_voronoiTessellate(points, function(e) { | |
| var l = e.region.l.index, r = e.region.r.index; | |
| if (graph[l][r]) return; | |
| graph[l][r] = graph[r][l] = true; | |
| links.push({ | |
| source: data[l], | |
| target: data[r] | |
| }); | |
| }); | |
| return links; | |
| }; | |
| voronoi.triangles = function(data) { | |
| if (x === d3_svg_lineX && y === d3_svg_lineY) return d3.geom.delaunay(data); | |
| var points = new Array(n), fx = d3_functor(x), fy = d3_functor(y), d, i = -1, n = data.length; | |
| while (++i < n) { | |
| (points[i] = [ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]).data = d; | |
| } | |
| return d3.geom.delaunay(points).map(function(triangle) { | |
| return triangle.map(function(point) { | |
| return point.data; | |
| }); | |
| }); | |
| }; | |
| return voronoi; | |
| }; | |
| var d3_geom_voronoiOpposite = { | |
| l: "r", | |
| r: "l" | |
| }; | |
| function d3_geom_voronoiTessellate(points, callback) { | |
| var Sites = { | |
| list: points.map(function(v, i) { | |
| return { | |
| index: i, | |
| x: v[0], | |
| y: v[1] | |
| }; | |
| }).sort(function(a, b) { | |
| return a.y < b.y ? -1 : a.y > b.y ? 1 : a.x < b.x ? -1 : a.x > b.x ? 1 : 0; | |
| }), | |
| bottomSite: null | |
| }; | |
| var EdgeList = { | |
| list: [], | |
| leftEnd: null, | |
| rightEnd: null, | |
| init: function() { | |
| EdgeList.leftEnd = EdgeList.createHalfEdge(null, "l"); | |
| EdgeList.rightEnd = EdgeList.createHalfEdge(null, "l"); | |
| EdgeList.leftEnd.r = EdgeList.rightEnd; | |
| EdgeList.rightEnd.l = EdgeList.leftEnd; | |
| EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd); | |
| }, | |
| createHalfEdge: function(edge, side) { | |
| return { | |
| edge: edge, | |
| side: side, | |
| vertex: null, | |
| l: null, | |
| r: null | |
| }; | |
| }, | |
| insert: function(lb, he) { | |
| he.l = lb; | |
| he.r = lb.r; | |
| lb.r.l = he; | |
| lb.r = he; | |
| }, | |
| leftBound: function(p) { | |
| var he = EdgeList.leftEnd; | |
| do { | |
| he = he.r; | |
| } while (he != EdgeList.rightEnd && Geom.rightOf(he, p)); | |
| he = he.l; | |
| return he; | |
| }, | |
| del: function(he) { | |
| he.l.r = he.r; | |
| he.r.l = he.l; | |
| he.edge = null; | |
| }, | |
| right: function(he) { | |
| return he.r; | |
| }, | |
| left: function(he) { | |
| return he.l; | |
| }, | |
| leftRegion: function(he) { | |
| return he.edge == null ? Sites.bottomSite : he.edge.region[he.side]; | |
| }, | |
| rightRegion: function(he) { | |
| return he.edge == null ? Sites.bottomSite : he.edge.region[d3_geom_voronoiOpposite[he.side]]; | |
| } | |
| }; | |
| var Geom = { | |
| bisect: function(s1, s2) { | |
| var newEdge = { | |
| region: { | |
| l: s1, | |
| r: s2 | |
| }, | |
| ep: { | |
| l: null, | |
| r: null | |
| } | |
| }; | |
| var dx = s2.x - s1.x, dy = s2.y - s1.y, adx = dx > 0 ? dx : -dx, ady = dy > 0 ? dy : -dy; | |
| newEdge.c = s1.x * dx + s1.y * dy + (dx * dx + dy * dy) * .5; | |
| if (adx > ady) { | |
| newEdge.a = 1; | |
| newEdge.b = dy / dx; | |
| newEdge.c /= dx; | |
| } else { | |
| newEdge.b = 1; | |
| newEdge.a = dx / dy; | |
| newEdge.c /= dy; | |
| } | |
| return newEdge; | |
| }, | |
| intersect: function(el1, el2) { | |
| var e1 = el1.edge, e2 = el2.edge; | |
| if (!e1 || !e2 || e1.region.r == e2.region.r) { | |
| return null; | |
| } | |
| var d = e1.a * e2.b - e1.b * e2.a; | |
| if (Math.abs(d) < 1e-10) { | |
| return null; | |
| } | |
| var xint = (e1.c * e2.b - e2.c * e1.b) / d, yint = (e2.c * e1.a - e1.c * e2.a) / d, e1r = e1.region.r, e2r = e2.region.r, el, e; | |
| if (e1r.y < e2r.y || e1r.y == e2r.y && e1r.x < e2r.x) { | |
| el = el1; | |
| e = e1; | |
| } else { | |
| el = el2; | |
| e = e2; | |
| } | |
| var rightOfSite = xint >= e.region.r.x; | |
| if (rightOfSite && el.side === "l" || !rightOfSite && el.side === "r") { | |
| return null; | |
| } | |
| return { | |
| x: xint, | |
| y: yint | |
| }; | |
| }, | |
| rightOf: function(he, p) { | |
| var e = he.edge, topsite = e.region.r, rightOfSite = p.x > topsite.x; | |
| if (rightOfSite && he.side === "l") { | |
| return 1; | |
| } | |
| if (!rightOfSite && he.side === "r") { | |
| return 0; | |
| } | |
| if (e.a === 1) { | |
| var dyp = p.y - topsite.y, dxp = p.x - topsite.x, fast = 0, above = 0; | |
| if (!rightOfSite && e.b < 0 || rightOfSite && e.b >= 0) { | |
| above = fast = dyp >= e.b * dxp; | |
| } else { | |
| above = p.x + p.y * e.b > e.c; | |
| if (e.b < 0) { | |
| above = !above; | |
| } | |
| if (!above) { | |
| fast = 1; | |
| } | |
| } | |
| if (!fast) { | |
| var dxs = topsite.x - e.region.l.x; | |
| above = e.b * (dxp * dxp - dyp * dyp) < dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b); | |
| if (e.b < 0) { | |
| above = !above; | |
| } | |
| } | |
| } else { | |
| var yl = e.c - e.a * p.x, t1 = p.y - yl, t2 = p.x - topsite.x, t3 = yl - topsite.y; | |
| above = t1 * t1 > t2 * t2 + t3 * t3; | |
| } | |
| return he.side === "l" ? above : !above; | |
| }, | |
| endPoint: function(edge, side, site) { | |
| edge.ep[side] = site; | |
| if (!edge.ep[d3_geom_voronoiOpposite[side]]) return; | |
| callback(edge); | |
| }, | |
| distance: function(s, t) { | |
| var dx = s.x - t.x, dy = s.y - t.y; | |
| return Math.sqrt(dx * dx + dy * dy); | |
| } | |
| }; | |
| var EventQueue = { | |
| list: [], | |
| insert: function(he, site, offset) { | |
| he.vertex = site; | |
| he.ystar = site.y + offset; | |
| for (var i = 0, list = EventQueue.list, l = list.length; i < l; i++) { | |
| var next = list[i]; | |
| if (he.ystar > next.ystar || he.ystar == next.ystar && site.x > next.vertex.x) { | |
| continue; | |
| } else { | |
| break; | |
| } | |
| } | |
| list.splice(i, 0, he); | |
| }, | |
| del: function(he) { | |
| for (var i = 0, ls = EventQueue.list, l = ls.length; i < l && ls[i] != he; ++i) {} | |
| ls.splice(i, 1); | |
| }, | |
| empty: function() { | |
| return EventQueue.list.length === 0; | |
| }, | |
| nextEvent: function(he) { | |
| for (var i = 0, ls = EventQueue.list, l = ls.length; i < l; ++i) { | |
| if (ls[i] == he) return ls[i + 1]; | |
| } | |
| return null; | |
| }, | |
| min: function() { | |
| var elem = EventQueue.list[0]; | |
| return { | |
| x: elem.vertex.x, | |
| y: elem.ystar | |
| }; | |
| }, | |
| extractMin: function() { | |
| return EventQueue.list.shift(); | |
| } | |
| }; | |
| EdgeList.init(); | |
| Sites.bottomSite = Sites.list.shift(); | |
| var newSite = Sites.list.shift(), newIntStar; | |
| var lbnd, rbnd, llbnd, rrbnd, bisector; | |
| var bot, top, temp, p, v; | |
| var e, pm; | |
| while (true) { | |
| if (!EventQueue.empty()) { | |
| newIntStar = EventQueue.min(); | |
| } | |
| if (newSite && (EventQueue.empty() || newSite.y < newIntStar.y || newSite.y == newIntStar.y && newSite.x < newIntStar.x)) { | |
| lbnd = EdgeList.leftBound(newSite); | |
| rbnd = EdgeList.right(lbnd); | |
| bot = EdgeList.rightRegion(lbnd); | |
| e = Geom.bisect(bot, newSite); | |
| bisector = EdgeList.createHalfEdge(e, "l"); | |
| EdgeList.insert(lbnd, bisector); | |
| p = Geom.intersect(lbnd, bisector); | |
| if (p) { | |
| EventQueue.del(lbnd); | |
| EventQueue.insert(lbnd, p, Geom.distance(p, newSite)); | |
| } | |
| lbnd = bisector; | |
| bisector = EdgeList.createHalfEdge(e, "r"); | |
| EdgeList.insert(lbnd, bisector); | |
| p = Geom.intersect(bisector, rbnd); | |
| if (p) { | |
| EventQueue.insert(bisector, p, Geom.distance(p, newSite)); | |
| } | |
| newSite = Sites.list.shift(); | |
| } else if (!EventQueue.empty()) { | |
| lbnd = EventQueue.extractMin(); | |
| llbnd = EdgeList.left(lbnd); | |
| rbnd = EdgeList.right(lbnd); | |
| rrbnd = EdgeList.right(rbnd); | |
| bot = EdgeList.leftRegion(lbnd); | |
| top = EdgeList.rightRegion(rbnd); | |
| v = lbnd.vertex; | |
| Geom.endPoint(lbnd.edge, lbnd.side, v); | |
| Geom.endPoint(rbnd.edge, rbnd.side, v); | |
| EdgeList.del(lbnd); | |
| EventQueue.del(rbnd); | |
| EdgeList.del(rbnd); | |
| pm = "l"; | |
| if (bot.y > top.y) { | |
| temp = bot; | |
| bot = top; | |
| top = temp; | |
| pm = "r"; | |
| } | |
| e = Geom.bisect(bot, top); | |
| bisector = EdgeList.createHalfEdge(e, pm); | |
| EdgeList.insert(llbnd, bisector); | |
| Geom.endPoint(e, d3_geom_voronoiOpposite[pm], v); | |
| p = Geom.intersect(llbnd, bisector); | |
| if (p) { | |
| EventQueue.del(llbnd); | |
| EventQueue.insert(llbnd, p, Geom.distance(p, bot)); | |
| } | |
| p = Geom.intersect(bisector, rrbnd); | |
| if (p) { | |
| EventQueue.insert(bisector, p, Geom.distance(p, bot)); | |
| } | |
| } else { | |
| break; | |
| } | |
| } | |
| for (lbnd = EdgeList.right(EdgeList.leftEnd); lbnd != EdgeList.rightEnd; lbnd = EdgeList.right(lbnd)) { | |
| callback(lbnd.edge); | |
| } | |
| } | |
| d3.geom.quadtree = function(points, x1, y1, x2, y2) { | |
| var x = d3_svg_lineX, y = d3_svg_lineY, compat; | |
| if (compat = arguments.length) { | |
| x = d3_geom_quadtreeCompatX; | |
| y = d3_geom_quadtreeCompatY; | |
| if (compat === 3) { | |
| y2 = y1; | |
| x2 = x1; | |
| y1 = x1 = 0; | |
| } | |
| return quadtree(points); | |
| } | |
| function quadtree(data) { | |
| var d, fx = d3_functor(x), fy = d3_functor(y), xs, ys, i, n, x1_, y1_, x2_, y2_; | |
| if (x1 != null) { | |
| x1_ = x1, y1_ = y1, x2_ = x2, y2_ = y2; | |
| } else { | |
| x2_ = y2_ = -(x1_ = y1_ = Infinity); | |
| xs = [], ys = []; | |
| n = data.length; | |
| if (compat) for (i = 0; i < n; ++i) { | |
| d = data[i]; | |
| if (d.x < x1_) x1_ = d.x; | |
| if (d.y < y1_) y1_ = d.y; | |
| if (d.x > x2_) x2_ = d.x; | |
| if (d.y > y2_) y2_ = d.y; | |
| xs.push(d.x); | |
| ys.push(d.y); | |
| } else for (i = 0; i < n; ++i) { | |
| var x_ = +fx(d = data[i], i), y_ = +fy(d, i); | |
| if (x_ < x1_) x1_ = x_; | |
| if (y_ < y1_) y1_ = y_; | |
| if (x_ > x2_) x2_ = x_; | |
| if (y_ > y2_) y2_ = y_; | |
| xs.push(x_); | |
| ys.push(y_); | |
| } | |
| } | |
| var dx = x2_ - x1_, dy = y2_ - y1_; | |
| if (dx > dy) y2_ = y1_ + dx; else x2_ = x1_ + dy; | |
| function insert(n, d, x, y, x1, y1, x2, y2) { | |
| if (isNaN(x) || isNaN(y)) return; | |
| if (n.leaf) { | |
| var nx = n.x, ny = n.y; | |
| if (nx != null) { | |
| if (Math.abs(nx - x) + Math.abs(ny - y) < .01) { | |
| insertChild(n, d, x, y, x1, y1, x2, y2); | |
| } else { | |
| var nPoint = n.point; | |
| n.x = n.y = n.point = null; | |
| insertChild(n, nPoint, nx, ny, x1, y1, x2, y2); | |
| insertChild(n, d, x, y, x1, y1, x2, y2); | |
| } | |
| } else { | |
| n.x = x, n.y = y, n.point = d; | |
| } | |
| } else { | |
| insertChild(n, d, x, y, x1, y1, x2, y2); | |
| } | |
| } | |
| function insertChild(n, d, x, y, x1, y1, x2, y2) { | |
| var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, right = x >= sx, bottom = y >= sy, i = (bottom << 1) + right; | |
| n.leaf = false; | |
| n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode()); | |
| if (right) x1 = sx; else x2 = sx; | |
| if (bottom) y1 = sy; else y2 = sy; | |
| insert(n, d, x, y, x1, y1, x2, y2); | |
| } | |
| var root = d3_geom_quadtreeNode(); | |
| root.add = function(d) { | |
| insert(root, d, +fx(d, ++i), +fy(d, i), x1_, y1_, x2_, y2_); | |
| }; | |
| root.visit = function(f) { | |
| d3_geom_quadtreeVisit(f, root, x1_, y1_, x2_, y2_); | |
| }; | |
| i = -1; | |
| if (x1 == null) { | |
| while (++i < n) { | |
| insert(root, data[i], xs[i], ys[i], x1_, y1_, x2_, y2_); | |
| } | |
| --i; | |
| } else data.forEach(root.add); | |
| xs = ys = data = d = null; | |
| return root; | |
| } | |
| quadtree.x = function(_) { | |
| return arguments.length ? (x = _, quadtree) : x; | |
| }; | |
| quadtree.y = function(_) { | |
| return arguments.length ? (y = _, quadtree) : y; | |
| }; | |
| quadtree.extent = function(_) { | |
| if (!arguments.length) return x1 == null ? null : [ [ x1, y1 ], [ x2, y2 ] ]; | |
| if (_ == null) x1 = y1 = x2 = y2 = null; else x1 = +_[0][0], y1 = +_[0][1], x2 = +_[1][0], | |
| y2 = +_[1][1]; | |
| return quadtree; | |
| }; | |
| quadtree.size = function(_) { | |
| if (!arguments.length) return x1 == null ? null : [ x2 - x1, y2 - y1 ]; | |
| if (_ == null) x1 = y1 = x2 = y2 = null; else x1 = y1 = 0, x2 = +_[0], y2 = +_[1]; | |
| return quadtree; | |
| }; | |
| return quadtree; | |
| }; | |
| function d3_geom_quadtreeCompatX(d) { | |
| return d.x; | |
| } | |
| function d3_geom_quadtreeCompatY(d) { | |
| return d.y; | |
| } | |
| function d3_geom_quadtreeNode() { | |
| return { | |
| leaf: true, | |
| nodes: [], | |
| point: null, | |
| x: null, | |
| y: null | |
| }; | |
| } | |
| function d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) { | |
| if (!f(node, x1, y1, x2, y2)) { | |
| var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, children = node.nodes; | |
| if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy); | |
| if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy); | |
| if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2); | |
| if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2); | |
| } | |
| } | |
| d3.interpolateRgb = d3_interpolateRgb; | |
| function d3_interpolateRgb(a, b) { | |
| a = d3.rgb(a); | |
| b = d3.rgb(b); | |
| var ar = a.r, ag = a.g, ab = a.b, br = b.r - ar, bg = b.g - ag, bb = b.b - ab; | |
| return function(t) { | |
| return "#" + d3_rgb_hex(Math.round(ar + br * t)) + d3_rgb_hex(Math.round(ag + bg * t)) + d3_rgb_hex(Math.round(ab + bb * t)); | |
| }; | |
| } | |
| d3.interpolateObject = d3_interpolateObject; | |
| function d3_interpolateObject(a, b) { | |
| var i = {}, c = {}, k; | |
| for (k in a) { | |
| if (k in b) { | |
| i[k] = d3_interpolate(a[k], b[k]); | |
| } else { | |
| c[k] = a[k]; | |
| } | |
| } | |
| for (k in b) { | |
| if (!(k in a)) { | |
| c[k] = b[k]; | |
| } | |
| } | |
| return function(t) { | |
| for (k in i) c[k] = i[k](t); | |
| return c; | |
| }; | |
| } | |
| d3.interpolateNumber = d3_interpolateNumber; | |
| function d3_interpolateNumber(a, b) { | |
| b -= a = +a; | |
| return function(t) { | |
| return a + b * t; | |
| }; | |
| } | |
| d3.interpolateString = d3_interpolateString; | |
| function d3_interpolateString(a, b) { | |
| var m, i, j, s0 = 0, s1 = 0, s = [], q = [], n, o; | |
| a = a + "", b = b + ""; | |
| d3_interpolate_number.lastIndex = 0; | |
| for (i = 0; m = d3_interpolate_number.exec(b); ++i) { | |
| if (m.index) s.push(b.substring(s0, s1 = m.index)); | |
| q.push({ | |
| i: s.length, | |
| x: m[0] | |
| }); | |
| s.push(null); | |
| s0 = d3_interpolate_number.lastIndex; | |
| } | |
| if (s0 < b.length) s.push(b.substring(s0)); | |
| for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) { | |
| o = q[i]; | |
| if (o.x == m[0]) { | |
| if (o.i) { | |
| if (s[o.i + 1] == null) { | |
| s[o.i - 1] += o.x; | |
| s.splice(o.i, 1); | |
| for (j = i + 1; j < n; ++j) q[j].i--; | |
| } else { | |
| s[o.i - 1] += o.x + s[o.i + 1]; | |
| s.splice(o.i, 2); | |
| for (j = i + 1; j < n; ++j) q[j].i -= 2; | |
| } | |
| } else { | |
| if (s[o.i + 1] == null) { | |
| s[o.i] = o.x; | |
| } else { | |
| s[o.i] = o.x + s[o.i + 1]; | |
| s.splice(o.i + 1, 1); | |
| for (j = i + 1; j < n; ++j) q[j].i--; | |
| } | |
| } | |
| q.splice(i, 1); | |
| n--; | |
| i--; | |
| } else { | |
| o.x = d3_interpolateNumber(parseFloat(m[0]), parseFloat(o.x)); | |
| } | |
| } | |
| while (i < n) { | |
| o = q.pop(); | |
| if (s[o.i + 1] == null) { | |
| s[o.i] = o.x; | |
| } else { | |
| s[o.i] = o.x + s[o.i + 1]; | |
| s.splice(o.i + 1, 1); | |
| } | |
| n--; | |
| } | |
| if (s.length === 1) { | |
| return s[0] == null ? (o = q[0].x, function(t) { | |
| return o(t) + ""; | |
| }) : function() { | |
| return b; | |
| }; | |
| } | |
| return function(t) { | |
| for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t); | |
| return s.join(""); | |
| }; | |
| } | |
| var d3_interpolate_number = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g; | |
| d3.interpolate = d3_interpolate; | |
| function d3_interpolate(a, b) { | |
| var i = d3.interpolators.length, f; | |
| while (--i >= 0 && !(f = d3.interpolators[i](a, b))) ; | |
| return f; | |
| } | |
| d3.interpolators = [ function(a, b) { | |
| var t = typeof b; | |
| return (t === "string" ? d3_rgb_names.has(b) || /^(#|rgb\(|hsl\()/.test(b) ? d3_interpolateRgb : d3_interpolateString : b instanceof d3_Color ? d3_interpolateRgb : t === "object" ? Array.isArray(b) ? d3_interpolateArray : d3_interpolateObject : d3_interpolateNumber)(a, b); | |
| } ]; | |
| d3.interpolateArray = d3_interpolateArray; | |
| function d3_interpolateArray(a, b) { | |
| var x = [], c = [], na = a.length, nb = b.length, n0 = Math.min(a.length, b.length), i; | |
| for (i = 0; i < n0; ++i) x.push(d3_interpolate(a[i], b[i])); | |
| for (;i < na; ++i) c[i] = a[i]; | |
| for (;i < nb; ++i) c[i] = b[i]; | |
| return function(t) { | |
| for (i = 0; i < n0; ++i) c[i] = x[i](t); | |
| return c; | |
| }; | |
| } | |
| var d3_ease_default = function() { | |
| return d3_identity; | |
| }; | |
| var d3_ease = d3.map({ | |
| linear: d3_ease_default, | |
| poly: d3_ease_poly, | |
| quad: function() { | |
| return d3_ease_quad; | |
| }, | |
| cubic: function() { | |
| return d3_ease_cubic; | |
| }, | |
| sin: function() { | |
| return d3_ease_sin; | |
| }, | |
| exp: function() { | |
| return d3_ease_exp; | |
| }, | |
| circle: function() { | |
| return d3_ease_circle; | |
| }, | |
| elastic: d3_ease_elastic, | |
| back: d3_ease_back, | |
| bounce: function() { | |
| return d3_ease_bounce; | |
| } | |
| }); | |
| var d3_ease_mode = d3.map({ | |
| "in": d3_identity, | |
| out: d3_ease_reverse, | |
| "in-out": d3_ease_reflect, | |
| "out-in": function(f) { | |
| return d3_ease_reflect(d3_ease_reverse(f)); | |
| } | |
| }); | |
| d3.ease = function(name) { | |
| var i = name.indexOf("-"), t = i >= 0 ? name.substring(0, i) : name, m = i >= 0 ? name.substring(i + 1) : "in"; | |
| t = d3_ease.get(t) || d3_ease_default; | |
| m = d3_ease_mode.get(m) || d3_identity; | |
| return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1)))); | |
| }; | |
| function d3_ease_clamp(f) { | |
| return function(t) { | |
| return t <= 0 ? 0 : t >= 1 ? 1 : f(t); | |
| }; | |
| } | |
| function d3_ease_reverse(f) { | |
| return function(t) { | |
| return 1 - f(1 - t); | |
| }; | |
| } | |
| function d3_ease_reflect(f) { | |
| return function(t) { | |
| return .5 * (t < .5 ? f(2 * t) : 2 - f(2 - 2 * t)); | |
| }; | |
| } | |
| function d3_ease_quad(t) { | |
| return t * t; | |
| } | |
| function d3_ease_cubic(t) { | |
| return t * t * t; | |
| } | |
| function d3_ease_cubicInOut(t) { | |
| if (t <= 0) return 0; | |
| if (t >= 1) return 1; | |
| var t2 = t * t, t3 = t2 * t; | |
| return 4 * (t < .5 ? t3 : 3 * (t - t2) + t3 - .75); | |
| } | |
| function d3_ease_poly(e) { | |
| return function(t) { | |
| return Math.pow(t, e); | |
| }; | |
| } | |
| function d3_ease_sin(t) { | |
| return 1 - Math.cos(t * π / 2); | |
| } | |
| function d3_ease_exp(t) { | |
| return Math.pow(2, 10 * (t - 1)); | |
| } | |
| function d3_ease_circle(t) { | |
| return 1 - Math.sqrt(1 - t * t); | |
| } | |
| function d3_ease_elastic(a, p) { | |
| var s; | |
| if (arguments.length < 2) p = .45; | |
| if (arguments.length) s = p / (2 * π) * Math.asin(1 / a); else a = 1, s = p / 4; | |
| return function(t) { | |
| return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * π / p); | |
| }; | |
| } | |
| function d3_ease_back(s) { | |
| if (!s) s = 1.70158; | |
| return function(t) { | |
| return t * t * ((s + 1) * t - s); | |
| }; | |
| } | |
| function d3_ease_bounce(t) { | |
| return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375; | |
| } | |
| d3.interpolateHcl = d3_interpolateHcl; | |
| function d3_interpolateHcl(a, b) { | |
| a = d3.hcl(a); | |
| b = d3.hcl(b); | |
| var ah = a.h, ac = a.c, al = a.l, bh = b.h - ah, bc = b.c - ac, bl = b.l - al; | |
| if (isNaN(bc)) bc = 0, ac = isNaN(ac) ? b.c : ac; | |
| if (isNaN(bh)) bh = 0, ah = isNaN(ah) ? b.h : ah; else if (bh > 180) bh -= 360; else if (bh < -180) bh += 360; | |
| return function(t) { | |
| return d3_hcl_lab(ah + bh * t, ac + bc * t, al + bl * t) + ""; | |
| }; | |
| } | |
| d3.interpolateHsl = d3_interpolateHsl; | |
| function d3_interpolateHsl(a, b) { | |
| a = d3.hsl(a); | |
| b = d3.hsl(b); | |
| var ah = a.h, as = a.s, al = a.l, bh = b.h - ah, bs = b.s - as, bl = b.l - al; | |
| if (isNaN(bs)) bs = 0, as = isNaN(as) ? b.s : as; | |
| if (isNaN(bh)) bh = 0, ah = isNaN(ah) ? b.h : ah; else if (bh > 180) bh -= 360; else if (bh < -180) bh += 360; | |
| return function(t) { | |
| return d3_hsl_rgb(ah + bh * t, as + bs * t, al + bl * t) + ""; | |
| }; | |
| } | |
| d3.interpolateLab = d3_interpolateLab; | |
| function d3_interpolateLab(a, b) { | |
| a = d3.lab(a); | |
| b = d3.lab(b); | |
| var al = a.l, aa = a.a, ab = a.b, bl = b.l - al, ba = b.a - aa, bb = b.b - ab; | |
| return function(t) { | |
| return d3_lab_rgb(al + bl * t, aa + ba * t, ab + bb * t) + ""; | |
| }; | |
| } | |
| d3.interpolateRound = d3_interpolateRound; | |
| function d3_interpolateRound(a, b) { | |
| b -= a; | |
| return function(t) { | |
| return Math.round(a + b * t); | |
| }; | |
| } | |
| d3.transform = function(string) { | |
| var g = d3_document.createElementNS(d3.ns.prefix.svg, "g"); | |
| return (d3.transform = function(string) { | |
| if (string != null) { | |
| g.setAttribute("transform", string); | |
| var t = g.transform.baseVal.consolidate(); | |
| } | |
| return new d3_transform(t ? t.matrix : d3_transformIdentity); | |
| })(string); | |
| }; | |
| function d3_transform(m) { | |
| var r0 = [ m.a, m.b ], r1 = [ m.c, m.d ], kx = d3_transformNormalize(r0), kz = d3_transformDot(r0, r1), ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0; | |
| if (r0[0] * r1[1] < r1[0] * r0[1]) { | |
| r0[0] *= -1; | |
| r0[1] *= -1; | |
| kx *= -1; | |
| kz *= -1; | |
| } | |
| this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_degrees; | |
| this.translate = [ m.e, m.f ]; | |
| this.scale = [ kx, ky ]; | |
| this.skew = ky ? Math.atan2(kz, ky) * d3_degrees : 0; | |
| } | |
| d3_transform.prototype.toString = function() { | |
| return "translate(" + this.translate + ")rotate(" + this.rotate + ")skewX(" + this.skew + ")scale(" + this.scale + ")"; | |
| }; | |
| function d3_transformDot(a, b) { | |
| return a[0] * b[0] + a[1] * b[1]; | |
| } | |
| function d3_transformNormalize(a) { | |
| var k = Math.sqrt(d3_transformDot(a, a)); | |
| if (k) { | |
| a[0] /= k; | |
| a[1] /= k; | |
| } | |
| return k; | |
| } | |
| function d3_transformCombine(a, b, k) { | |
| a[0] += k * b[0]; | |
| a[1] += k * b[1]; | |
| return a; | |
| } | |
| var d3_transformIdentity = { | |
| a: 1, | |
| b: 0, | |
| c: 0, | |
| d: 1, | |
| e: 0, | |
| f: 0 | |
| }; | |
| d3.interpolateTransform = d3_interpolateTransform; | |
| function d3_interpolateTransform(a, b) { | |
| var s = [], q = [], n, A = d3.transform(a), B = d3.transform(b), ta = A.translate, tb = B.translate, ra = A.rotate, rb = B.rotate, wa = A.skew, wb = B.skew, ka = A.scale, kb = B.scale; | |
| if (ta[0] != tb[0] || ta[1] != tb[1]) { | |
| s.push("translate(", null, ",", null, ")"); | |
| q.push({ | |
| i: 1, | |
| x: d3_interpolateNumber(ta[0], tb[0]) | |
| }, { | |
| i: 3, | |
| x: d3_interpolateNumber(ta[1], tb[1]) | |
| }); | |
| } else if (tb[0] || tb[1]) { | |
| s.push("translate(" + tb + ")"); | |
| } else { | |
| s.push(""); | |
| } | |
| if (ra != rb) { | |
| if (ra - rb > 180) rb += 360; else if (rb - ra > 180) ra += 360; | |
| q.push({ | |
| i: s.push(s.pop() + "rotate(", null, ")") - 2, | |
| x: d3_interpolateNumber(ra, rb) | |
| }); | |
| } else if (rb) { | |
| s.push(s.pop() + "rotate(" + rb + ")"); | |
| } | |
| if (wa != wb) { | |
| q.push({ | |
| i: s.push(s.pop() + "skewX(", null, ")") - 2, | |
| x: d3_interpolateNumber(wa, wb) | |
| }); | |
| } else if (wb) { | |
| s.push(s.pop() + "skewX(" + wb + ")"); | |
| } | |
| if (ka[0] != kb[0] || ka[1] != kb[1]) { | |
| n = s.push(s.pop() + "scale(", null, ",", null, ")"); | |
| q.push({ | |
| i: n - 4, | |
| x: d3_interpolateNumber(ka[0], kb[0]) | |
| }, { | |
| i: n - 2, | |
| x: d3_interpolateNumber(ka[1], kb[1]) | |
| }); | |
| } else if (kb[0] != 1 || kb[1] != 1) { | |
| s.push(s.pop() + "scale(" + kb + ")"); | |
| } | |
| n = q.length; | |
| return function(t) { | |
| var i = -1, o; | |
| while (++i < n) s[(o = q[i]).i] = o.x(t); | |
| return s.join(""); | |
| }; | |
| } | |
| function d3_uninterpolateNumber(a, b) { | |
| b = b - (a = +a) ? 1 / (b - a) : 0; | |
| return function(x) { | |
| return (x - a) * b; | |
| }; | |
| } | |
| function d3_uninterpolateClamp(a, b) { | |
| b = b - (a = +a) ? 1 / (b - a) : 0; | |
| return function(x) { | |
| return Math.max(0, Math.min(1, (x - a) * b)); | |
| }; | |
| } | |
| d3.layout = {}; | |
| d3.layout.bundle = function() { | |
| return function(links) { | |
| var paths = [], i = -1, n = links.length; | |
| while (++i < n) paths.push(d3_layout_bundlePath(links[i])); | |
| return paths; | |
| }; | |
| }; | |
| function d3_layout_bundlePath(link) { | |
| var start = link.source, end = link.target, lca = d3_layout_bundleLeastCommonAncestor(start, end), points = [ start ]; | |
| while (start !== lca) { | |
| start = start.parent; | |
| points.push(start); | |
| } | |
| var k = points.length; | |
| while (end !== lca) { | |
| points.splice(k, 0, end); | |
| end = end.parent; | |
| } | |
| return points; | |
| } | |
| function d3_layout_bundleAncestors(node) { | |
| var ancestors = [], parent = node.parent; | |
| while (parent != null) { | |
| ancestors.push(node); | |
| node = parent; | |
| parent = parent.parent; | |
| } | |
| ancestors.push(node); | |
| return ancestors; | |
| } | |
| function d3_layout_bundleLeastCommonAncestor(a, b) { | |
| if (a === b) return a; | |
| var aNodes = d3_layout_bundleAncestors(a), bNodes = d3_layout_bundleAncestors(b), aNode = aNodes.pop(), bNode = bNodes.pop(), sharedNode = null; | |
| while (aNode === bNode) { | |
| sharedNode = aNode; | |
| aNode = aNodes.pop(); | |
| bNode = bNodes.pop(); | |
| } | |
| return sharedNode; | |
| } | |
| d3.layout.chord = function() { | |
| var chord = {}, chords, groups, matrix, n, padding = 0, sortGroups, sortSubgroups, sortChords; | |
| function relayout() { | |
| var subgroups = {}, groupSums = [], groupIndex = d3.range(n), subgroupIndex = [], k, x, x0, i, j; | |
| chords = []; | |
| groups = []; | |
| k = 0, i = -1; | |
| while (++i < n) { | |
| x = 0, j = -1; | |
| while (++j < n) { | |
| x += matrix[i][j]; | |
| } | |
| groupSums.push(x); | |
| subgroupIndex.push(d3.range(n)); | |
| k += x; | |
| } | |
| if (sortGroups) { | |
| groupIndex.sort(function(a, b) { | |
| return sortGroups(groupSums[a], groupSums[b]); | |
| }); | |
| } | |
| if (sortSubgroups) { | |
| subgroupIndex.forEach(function(d, i) { | |
| d.sort(function(a, b) { | |
| return sortSubgroups(matrix[i][a], matrix[i][b]); | |
| }); | |
| }); | |
| } | |
| k = (2 * π - padding * n) / k; | |
| x = 0, i = -1; | |
| while (++i < n) { | |
| x0 = x, j = -1; | |
| while (++j < n) { | |
| var di = groupIndex[i], dj = subgroupIndex[di][j], v = matrix[di][dj], a0 = x, a1 = x += v * k; | |
| subgroups[di + "-" + dj] = { | |
| index: di, | |
| subindex: dj, | |
| startAngle: a0, | |
| endAngle: a1, | |
| value: v | |
| }; | |
| } | |
| groups[di] = { | |
| index: di, | |
| startAngle: x0, | |
| endAngle: x, | |
| value: (x - x0) / k | |
| }; | |
| x += padding; | |
| } | |
| i = -1; | |
| while (++i < n) { | |
| j = i - 1; | |
| while (++j < n) { | |
| var source = subgroups[i + "-" + j], target = subgroups[j + "-" + i]; | |
| if (source.value || target.value) { | |
| chords.push(source.value < target.value ? { | |
| source: target, | |
| target: source | |
| } : { | |
| source: source, | |
| target: target | |
| }); | |
| } | |
| } | |
| } | |
| if (sortChords) resort(); | |
| } | |
| function resort() { | |
| chords.sort(function(a, b) { | |
| return sortChords((a.source.value + a.target.value) / 2, (b.source.value + b.target.value) / 2); | |
| }); | |
| } | |
| chord.matrix = function(x) { | |
| if (!arguments.length) return matrix; | |
| n = (matrix = x) && matrix.length; | |
| chords = groups = null; | |
| return chord; | |
| }; | |
| chord.padding = function(x) { | |
| if (!arguments.length) return padding; | |
| padding = x; | |
| chords = groups = null; | |
| return chord; | |
| }; | |
| chord.sortGroups = function(x) { | |
| if (!arguments.length) return sortGroups; | |
| sortGroups = x; | |
| chords = groups = null; | |
| return chord; | |
| }; | |
| chord.sortSubgroups = function(x) { | |
| if (!arguments.length) return sortSubgroups; | |
| sortSubgroups = x; | |
| chords = null; | |
| return chord; | |
| }; | |
| chord.sortChords = function(x) { | |
| if (!arguments.length) return sortChords; | |
| sortChords = x; | |
| if (chords) resort(); | |
| return chord; | |
| }; | |
| chord.chords = function() { | |
| if (!chords) relayout(); | |
| return chords; | |
| }; | |
| chord.groups = function() { | |
| if (!groups) relayout(); | |
| return groups; | |
| }; | |
| return chord; | |
| }; | |
| d3.layout.force = function() { | |
| var force = {}, event = d3.dispatch("start", "tick", "end"), size = [ 1, 1 ], drag, alpha, friction = .9, linkDistance = d3_layout_forceLinkDistance, linkStrength = d3_layout_forceLinkStrength, charge = -30, gravity = .1, theta = .8, nodes = [], links = [], distances, strengths, charges; | |
| function repulse(node) { | |
| return function(quad, x1, _, x2) { | |
| if (quad.point !== node) { | |
| var dx = quad.cx - node.x, dy = quad.cy - node.y, dn = 1 / Math.sqrt(dx * dx + dy * dy); | |
| if ((x2 - x1) * dn < theta) { | |
| var k = quad.charge * dn * dn; | |
| node.px -= dx * k; | |
| node.py -= dy * k; | |
| return true; | |
| } | |
| if (quad.point && isFinite(dn)) { | |
| var k = quad.pointCharge * dn * dn; | |
| node.px -= dx * k; | |
| node.py -= dy * k; | |
| } | |
| } | |
| return !quad.charge; | |
| }; | |
| } | |
| force.tick = function() { | |
| if ((alpha *= .99) < .005) { | |
| event.end({ | |
| type: "end", | |
| alpha: alpha = 0 | |
| }); | |
| return true; | |
| } | |
| var n = nodes.length, m = links.length, q, i, o, s, t, l, k, x, y; | |
| for (i = 0; i < m; ++i) { | |
| o = links[i]; | |
| s = o.source; | |
| t = o.target; | |
| x = t.x - s.x; | |
| y = t.y - s.y; | |
| if (l = x * x + y * y) { | |
| l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l; | |
| x *= l; | |
| y *= l; | |
| t.x -= x * (k = s.weight / (t.weight + s.weight)); | |
| t.y -= y * k; | |
| s.x += x * (k = 1 - k); | |
| s.y += y * k; | |
| } | |
| } | |
| if (k = alpha * gravity) { | |
| x = size[0] / 2; | |
| y = size[1] / 2; | |
| i = -1; | |
| if (k) while (++i < n) { | |
| o = nodes[i]; | |
| o.x += (x - o.x) * k; | |
| o.y += (y - o.y) * k; | |
| } | |
| } | |
| if (charge) { | |
| d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges); | |
| i = -1; | |
| while (++i < n) { | |
| if (!(o = nodes[i]).fixed) { | |
| q.visit(repulse(o)); | |
| } | |
| } | |
| } | |
| i = -1; | |
| while (++i < n) { | |
| o = nodes[i]; | |
| if (o.fixed) { | |
| o.x = o.px; | |
| o.y = o.py; | |
| } else { | |
| o.x -= (o.px - (o.px = o.x)) * friction; | |
| o.y -= (o.py - (o.py = o.y)) * friction; | |
| } | |
| } | |
| event.tick({ | |
| type: "tick", | |
| alpha: alpha | |
| }); | |
| }; | |
| force.nodes = function(x) { | |
| if (!arguments.length) return nodes; | |
| nodes = x; | |
| return force; | |
| }; | |
| force.links = function(x) { | |
| if (!arguments.length) return links; | |
| links = x; | |
| return force; | |
| }; | |
| force.size = function(x) { | |
| if (!arguments.length) return size; | |
| size = x; | |
| return force; | |
| }; | |
| force.linkDistance = function(x) { | |
| if (!arguments.length) return linkDistance; | |
| linkDistance = typeof x === "function" ? x : +x; | |
| return force; | |
| }; | |
| force.distance = force.linkDistance; | |
| force.linkStrength = function(x) { | |
| if (!arguments.length) return linkStrength; | |
| linkStrength = typeof x === "function" ? x : +x; | |
| return force; | |
| }; | |
| force.friction = function(x) { | |
| if (!arguments.length) return friction; | |
| friction = +x; | |
| return force; | |
| }; | |
| force.charge = function(x) { | |
| if (!arguments.length) return charge; | |
| charge = typeof x === "function" ? x : +x; | |
| return force; | |
| }; | |
| force.gravity = function(x) { | |
| if (!arguments.length) return gravity; | |
| gravity = +x; | |
| return force; | |
| }; | |
| force.theta = function(x) { | |
| if (!arguments.length) return theta; | |
| theta = +x; | |
| return force; | |
| }; | |
| force.alpha = function(x) { | |
| if (!arguments.length) return alpha; | |
| x = +x; | |
| if (alpha) { | |
| if (x > 0) alpha = x; else alpha = 0; | |
| } else if (x > 0) { | |
| event.start({ | |
| type: "start", | |
| alpha: alpha = x | |
| }); | |
| d3.timer(force.tick); | |
| } | |
| return force; | |
| }; | |
| force.start = function() { | |
| var i, j, n = nodes.length, m = links.length, w = size[0], h = size[1], neighbors, o; | |
| for (i = 0; i < n; ++i) { | |
| (o = nodes[i]).index = i; | |
| o.weight = 0; | |
| } | |
| for (i = 0; i < m; ++i) { | |
| o = links[i]; | |
| if (typeof o.source == "number") o.source = nodes[o.source]; | |
| if (typeof o.target == "number") o.target = nodes[o.target]; | |
| ++o.source.weight; | |
| ++o.target.weight; | |
| } | |
| for (i = 0; i < n; ++i) { | |
| o = nodes[i]; | |
| if (isNaN(o.x)) o.x = position("x", w); | |
| if (isNaN(o.y)) o.y = position("y", h); | |
| if (isNaN(o.px)) o.px = o.x; | |
| if (isNaN(o.py)) o.py = o.y; | |
| } | |
| distances = []; | |
| if (typeof linkDistance === "function") for (i = 0; i < m; ++i) distances[i] = +linkDistance.call(this, links[i], i); else for (i = 0; i < m; ++i) distances[i] = linkDistance; | |
| strengths = []; | |
| if (typeof linkStrength === "function") for (i = 0; i < m; ++i) strengths[i] = +linkStrength.call(this, links[i], i); else for (i = 0; i < m; ++i) strengths[i] = linkStrength; | |
| charges = []; | |
| if (typeof charge === "function") for (i = 0; i < n; ++i) charges[i] = +charge.call(this, nodes[i], i); else for (i = 0; i < n; ++i) charges[i] = charge; | |
| function position(dimension, size) { | |
| var neighbors = neighbor(i), j = -1, m = neighbors.length, x; | |
| while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x; | |
| return Math.random() * size; | |
| } | |
| function neighbor() { | |
| if (!neighbors) { | |
| neighbors = []; | |
| for (j = 0; j < n; ++j) { | |
| neighbors[j] = []; | |
| } | |
| for (j = 0; j < m; ++j) { | |
| var o = links[j]; | |
| neighbors[o.source.index].push(o.target); | |
| neighbors[o.target.index].push(o.source); | |
| } | |
| } | |
| return neighbors[i]; | |
| } | |
| return force.resume(); | |
| }; | |
| force.resume = function() { | |
| return force.alpha(.1); | |
| }; | |
| force.stop = function() { | |
| return force.alpha(0); | |
| }; | |
| force.drag = function() { | |
| if (!drag) drag = d3.behavior.drag().origin(d3_identity).on("dragstart.force", d3_layout_forceDragstart).on("drag.force", dragmove).on("dragend.force", d3_layout_forceDragend); | |
| if (!arguments.length) return drag; | |
| this.on("mouseover.force", d3_layout_forceMouseover).on("mouseout.force", d3_layout_forceMouseout).call(drag); | |
| }; | |
| function dragmove(d) { | |
| d.px = d3.event.x, d.py = d3.event.y; | |
| force.resume(); | |
| } | |
| return d3.rebind(force, event, "on"); | |
| }; | |
| function d3_layout_forceDragstart(d) { | |
| d.fixed |= 2; | |
| } | |
| function d3_layout_forceDragend(d) { | |
| d.fixed &= ~6; | |
| } | |
| function d3_layout_forceMouseover(d) { | |
| d.fixed |= 4; | |
| d.px = d.x, d.py = d.y; | |
| } | |
| function d3_layout_forceMouseout(d) { | |
| d.fixed &= ~4; | |
| } | |
| function d3_layout_forceAccumulate(quad, alpha, charges) { | |
| var cx = 0, cy = 0; | |
| quad.charge = 0; | |
| if (!quad.leaf) { | |
| var nodes = quad.nodes, n = nodes.length, i = -1, c; | |
| while (++i < n) { | |
| c = nodes[i]; | |
| if (c == null) continue; | |
| d3_layout_forceAccumulate(c, alpha, charges); | |
| quad.charge += c.charge; | |
| cx += c.charge * c.cx; | |
| cy += c.charge * c.cy; | |
| } | |
| } | |
| if (quad.point) { | |
| if (!quad.leaf) { | |
| quad.point.x += Math.random() - .5; | |
| quad.point.y += Math.random() - .5; | |
| } | |
| var k = alpha * charges[quad.point.index]; | |
| quad.charge += quad.pointCharge = k; | |
| cx += k * quad.point.x; | |
| cy += k * quad.point.y; | |
| } | |
| quad.cx = cx / quad.charge; | |
| quad.cy = cy / quad.charge; | |
| } | |
| var d3_layout_forceLinkDistance = 20, d3_layout_forceLinkStrength = 1; | |
| d3.layout.hierarchy = function() { | |
| var sort = d3_layout_hierarchySort, children = d3_layout_hierarchyChildren, value = d3_layout_hierarchyValue; | |
| function recurse(node, depth, nodes) { | |
| var childs = children.call(hierarchy, node, depth); | |
| node.depth = depth; | |
| nodes.push(node); | |
| if (childs && (n = childs.length)) { | |
| var i = -1, n, c = node.children = [], v = 0, j = depth + 1, d; | |
| while (++i < n) { | |
| d = recurse(childs[i], j, nodes); | |
| d.parent = node; | |
| c.push(d); | |
| v += d.value; | |
| } | |
| if (sort) c.sort(sort); | |
| if (value) node.value = v; | |
| } else if (value) { | |
| node.value = +value.call(hierarchy, node, depth) || 0; | |
| } | |
| return node; | |
| } | |
| function revalue(node, depth) { | |
| var children = node.children, v = 0; | |
| if (children && (n = children.length)) { | |
| var i = -1, n, j = depth + 1; | |
| while (++i < n) v += revalue(children[i], j); | |
| } else if (value) { | |
| v = +value.call(hierarchy, node, depth) || 0; | |
| } | |
| if (value) node.value = v; | |
| return v; | |
| } | |
| function hierarchy(d) { | |
| var nodes = []; | |
| recurse(d, 0, nodes); | |
| return nodes; | |
| } | |
| hierarchy.sort = function(x) { | |
| if (!arguments.length) return sort; | |
| sort = x; | |
| return hierarchy; | |
| }; | |
| hierarchy.children = function(x) { | |
| if (!arguments.length) return children; | |
| children = x; | |
| return hierarchy; | |
| }; | |
| hierarchy.value = function(x) { | |
| if (!arguments.length) return value; | |
| value = x; | |
| return hierarchy; | |
| }; | |
| hierarchy.revalue = function(root) { | |
| revalue(root, 0); | |
| return root; | |
| }; | |
| return hierarchy; | |
| }; | |
| function d3_layout_hierarchyRebind(object, hierarchy) { | |
| d3.rebind(object, hierarchy, "sort", "children", "value"); | |
| object.nodes = object; | |
| object.links = d3_layout_hierarchyLinks; | |
| return object; | |
| } | |
| function d3_layout_hierarchyChildren(d) { | |
| return d.children; | |
| } | |
| function d3_layout_hierarchyValue(d) { | |
| return d.value; | |
| } | |
| function d3_layout_hierarchySort(a, b) { | |
| return b.value - a.value; | |
| } | |
| function d3_layout_hierarchyLinks(nodes) { | |
| return d3.merge(nodes.map(function(parent) { | |
| return (parent.children || []).map(function(child) { | |
| return { | |
| source: parent, | |
| target: child | |
| }; | |
| }); | |
| })); | |
| } | |
| d3.layout.partition = function() { | |
| var hierarchy = d3.layout.hierarchy(), size = [ 1, 1 ]; | |
| function position(node, x, dx, dy) { | |
| var children = node.children; | |
| node.x = x; | |
| node.y = node.depth * dy; | |
| node.dx = dx; | |
| node.dy = dy; | |
| if (children && (n = children.length)) { | |
| var i = -1, n, c, d; | |
| dx = node.value ? dx / node.value : 0; | |
| while (++i < n) { | |
| position(c = children[i], x, d = c.value * dx, dy); | |
| x += d; | |
| } | |
| } | |
| } | |
| function depth(node) { | |
| var children = node.children, d = 0; | |
| if (children && (n = children.length)) { | |
| var i = -1, n; | |
| while (++i < n) d = Math.max(d, depth(children[i])); | |
| } | |
| return 1 + d; | |
| } | |
| function partition(d, i) { | |
| var nodes = hierarchy.call(this, d, i); | |
| position(nodes[0], 0, size[0], size[1] / depth(nodes[0])); | |
| return nodes; | |
| } | |
| partition.size = function(x) { | |
| if (!arguments.length) return size; | |
| size = x; | |
| return partition; | |
| }; | |
| return d3_layout_hierarchyRebind(partition, hierarchy); | |
| }; | |
| d3.layout.pie = function() { | |
| var value = Number, sort = d3_layout_pieSortByValue, startAngle = 0, endAngle = 2 * π; | |
| function pie(data) { | |
| var values = data.map(function(d, i) { | |
| return +value.call(pie, d, i); | |
| }); | |
| var a = +(typeof startAngle === "function" ? startAngle.apply(this, arguments) : startAngle); | |
| var k = ((typeof endAngle === "function" ? endAngle.apply(this, arguments) : endAngle) - a) / d3.sum(values); | |
| var index = d3.range(data.length); | |
| if (sort != null) index.sort(sort === d3_layout_pieSortByValue ? function(i, j) { | |
| return values[j] - values[i]; | |
| } : function(i, j) { | |
| return sort(data[i], data[j]); | |
| }); | |
| var arcs = []; | |
| index.forEach(function(i) { | |
| var d; | |
| arcs[i] = { | |
| data: data[i], | |
| value: d = values[i], | |
| startAngle: a, | |
| endAngle: a += d * k | |
| }; | |
| }); | |
| return arcs; | |
| } | |
| pie.value = function(x) { | |
| if (!arguments.length) return value; | |
| value = x; | |
| return pie; | |
| }; | |
| pie.sort = function(x) { | |
| if (!arguments.length) return sort; | |
| sort = x; | |
| return pie; | |
| }; | |
| pie.startAngle = function(x) { | |
| if (!arguments.length) return startAngle; | |
| startAngle = x; | |
| return pie; | |
| }; | |
| pie.endAngle = function(x) { | |
| if (!arguments.length) return endAngle; | |
| endAngle = x; | |
| return pie; | |
| }; | |
| return pie; | |
| }; | |
| var d3_layout_pieSortByValue = {}; | |
| d3.layout.stack = function() { | |
| var values = d3_identity, order = d3_layout_stackOrderDefault, offset = d3_layout_stackOffsetZero, out = d3_layout_stackOut, x = d3_layout_stackX, y = d3_layout_stackY; | |
| function stack(data, index) { | |
| var series = data.map(function(d, i) { | |
| return values.call(stack, d, i); | |
| }); | |
| var points = series.map(function(d) { | |
| return d.map(function(v, i) { | |
| return [ x.call(stack, v, i), y.call(stack, v, i) ]; | |
| }); | |
| }); | |
| var orders = order.call(stack, points, index); | |
| series = d3.permute(series, orders); | |
| points = d3.permute(points, orders); | |
| var offsets = offset.call(stack, points, index); | |
| var n = series.length, m = series[0].length, i, j, o; | |
| for (j = 0; j < m; ++j) { | |
| out.call(stack, series[0][j], o = offsets[j], points[0][j][1]); | |
| for (i = 1; i < n; ++i) { | |
| out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]); | |
| } | |
| } | |
| return data; | |
| } | |
| stack.values = function(x) { | |
| if (!arguments.length) return values; | |
| values = x; | |
| return stack; | |
| }; | |
| stack.order = function(x) { | |
| if (!arguments.length) return order; | |
| order = typeof x === "function" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault; | |
| return stack; | |
| }; | |
| stack.offset = function(x) { | |
| if (!arguments.length) return offset; | |
| offset = typeof x === "function" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero; | |
| return stack; | |
| }; | |
| stack.x = function(z) { | |
| if (!arguments.length) return x; | |
| x = z; | |
| return stack; | |
| }; | |
| stack.y = function(z) { | |
| if (!arguments.length) return y; | |
| y = z; | |
| return stack; | |
| }; | |
| stack.out = function(z) { | |
| if (!arguments.length) return out; | |
| out = z; | |
| return stack; | |
| }; | |
| return stack; | |
| }; | |
| function d3_layout_stackX(d) { | |
| return d.x; | |
| } | |
| function d3_layout_stackY(d) { | |
| return d.y; | |
| } | |
| function d3_layout_stackOut(d, y0, y) { | |
| d.y0 = y0; | |
| d.y = y; | |
| } | |
| var d3_layout_stackOrders = d3.map({ | |
| "inside-out": function(data) { | |
| var n = data.length, i, j, max = data.map(d3_layout_stackMaxIndex), sums = data.map(d3_layout_stackReduceSum), index = d3.range(n).sort(function(a, b) { | |
| return max[a] - max[b]; | |
| }), top = 0, bottom = 0, tops = [], bottoms = []; | |
| for (i = 0; i < n; ++i) { | |
| j = index[i]; | |
| if (top < bottom) { | |
| top += sums[j]; | |
| tops.push(j); | |
| } else { | |
| bottom += sums[j]; | |
| bottoms.push(j); | |
| } | |
| } | |
| return bottoms.reverse().concat(tops); | |
| }, | |
| reverse: function(data) { | |
| return d3.range(data.length).reverse(); | |
| }, | |
| "default": d3_layout_stackOrderDefault | |
| }); | |
| var d3_layout_stackOffsets = d3.map({ | |
| silhouette: function(data) { | |
| var n = data.length, m = data[0].length, sums = [], max = 0, i, j, o, y0 = []; | |
| for (j = 0; j < m; ++j) { | |
| for (i = 0, o = 0; i < n; i++) o += data[i][j][1]; | |
| if (o > max) max = o; | |
| sums.push(o); | |
| } | |
| for (j = 0; j < m; ++j) { | |
| y0[j] = (max - sums[j]) / 2; | |
| } | |
| return y0; | |
| }, | |
| wiggle: function(data) { | |
| var n = data.length, x = data[0], m = x.length, i, j, k, s1, s2, s3, dx, o, o0, y0 = []; | |
| y0[0] = o = o0 = 0; | |
| for (j = 1; j < m; ++j) { | |
| for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1]; | |
| for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) { | |
| for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) { | |
| s3 += (data[k][j][1] - data[k][j - 1][1]) / dx; | |
| } | |
| s2 += s3 * data[i][j][1]; | |
| } | |
| y0[j] = o -= s1 ? s2 / s1 * dx : 0; | |
| if (o < o0) o0 = o; | |
| } | |
| for (j = 0; j < m; ++j) y0[j] -= o0; | |
| return y0; | |
| }, | |
| expand: function(data) { | |
| var n = data.length, m = data[0].length, k = 1 / n, i, j, o, y0 = []; | |
| for (j = 0; j < m; ++j) { | |
| for (i = 0, o = 0; i < n; i++) o += data[i][j][1]; | |
| if (o) for (i = 0; i < n; i++) data[i][j][1] /= o; else for (i = 0; i < n; i++) data[i][j][1] = k; | |
| } | |
| for (j = 0; j < m; ++j) y0[j] = 0; | |
| return y0; | |
| }, | |
| zero: d3_layout_stackOffsetZero | |
| }); | |
| function d3_layout_stackOrderDefault(data) { | |
| return d3.range(data.length); | |
| } | |
| function d3_layout_stackOffsetZero(data) { | |
| var j = -1, m = data[0].length, y0 = []; | |
| while (++j < m) y0[j] = 0; | |
| return y0; | |
| } | |
| function d3_layout_stackMaxIndex(array) { | |
| var i = 1, j = 0, v = array[0][1], k, n = array.length; | |
| for (;i < n; ++i) { | |
| if ((k = array[i][1]) > v) { | |
| j = i; | |
| v = k; | |
| } | |
| } | |
| return j; | |
| } | |
| function d3_layout_stackReduceSum(d) { | |
| return d.reduce(d3_layout_stackSum, 0); | |
| } | |
| function d3_layout_stackSum(p, d) { | |
| return p + d[1]; | |
| } | |
| d3.layout.histogram = function() { | |
| var frequency = true, valuer = Number, ranger = d3_layout_histogramRange, binner = d3_layout_histogramBinSturges; | |
| function histogram(data, i) { | |
| var bins = [], values = data.map(valuer, this), range = ranger.call(this, values, i), thresholds = binner.call(this, range, values, i), bin, i = -1, n = values.length, m = thresholds.length - 1, k = frequency ? 1 : 1 / n, x; | |
| while (++i < m) { | |
| bin = bins[i] = []; | |
| bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]); | |
| bin.y = 0; | |
| } | |
| if (m > 0) { | |
| i = -1; | |
| while (++i < n) { | |
| x = values[i]; | |
| if (x >= range[0] && x <= range[1]) { | |
| bin = bins[d3.bisect(thresholds, x, 1, m) - 1]; | |
| bin.y += k; | |
| bin.push(data[i]); | |
| } | |
| } | |
| } | |
| return bins; | |
| } | |
| histogram.value = function(x) { | |
| if (!arguments.length) return valuer; | |
| valuer = x; | |
| return histogram; | |
| }; | |
| histogram.range = function(x) { | |
| if (!arguments.length) return ranger; | |
| ranger = d3_functor(x); | |
| return histogram; | |
| }; | |
| histogram.bins = function(x) { | |
| if (!arguments.length) return binner; | |
| binner = typeof x === "number" ? function(range) { | |
| return d3_layout_histogramBinFixed(range, x); | |
| } : d3_functor(x); | |
| return histogram; | |
| }; | |
| histogram.frequency = function(x) { | |
| if (!arguments.length) return frequency; | |
| frequency = !!x; | |
| return histogram; | |
| }; | |
| return histogram; | |
| }; | |
| function d3_layout_histogramBinSturges(range, values) { | |
| return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1)); | |
| } | |
| function d3_layout_histogramBinFixed(range, n) { | |
| var x = -1, b = +range[0], m = (range[1] - b) / n, f = []; | |
| while (++x <= n) f[x] = m * x + b; | |
| return f; | |
| } | |
| function d3_layout_histogramRange(values) { | |
| return [ d3.min(values), d3.max(values) ]; | |
| } | |
| d3.layout.tree = function() { | |
| var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ], nodeSize = false; | |
| function tree(d, i) { | |
| var nodes = hierarchy.call(this, d, i), root = nodes[0]; | |
| function firstWalk(node, previousSibling) { | |
| var children = node.children, layout = node._tree; | |
| if (children && (n = children.length)) { | |
| var n, firstChild = children[0], previousChild, ancestor = firstChild, child, i = -1; | |
| while (++i < n) { | |
| child = children[i]; | |
| firstWalk(child, previousChild); | |
| ancestor = apportion(child, previousChild, ancestor); | |
| previousChild = child; | |
| } | |
| d3_layout_treeShift(node); | |
| var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim); | |
| if (previousSibling) { | |
| layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling); | |
| layout.mod = layout.prelim - midpoint; | |
| } else { | |
| layout.prelim = midpoint; | |
| } | |
| } else { | |
| if (previousSibling) { | |
| layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling); | |
| } | |
| } | |
| } | |
| function secondWalk(node, x) { | |
| node.x = node._tree.prelim + x; | |
| var children = node.children; | |
| if (children && (n = children.length)) { | |
| var i = -1, n; | |
| x += node._tree.mod; | |
| while (++i < n) { | |
| secondWalk(children[i], x); | |
| } | |
| } | |
| } | |
| function apportion(node, previousSibling, ancestor) { | |
| if (previousSibling) { | |
| var vip = node, vop = node, vim = previousSibling, vom = node.parent.children[0], sip = vip._tree.mod, sop = vop._tree.mod, sim = vim._tree.mod, som = vom._tree.mod, shift; | |
| while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) { | |
| vom = d3_layout_treeLeft(vom); | |
| vop = d3_layout_treeRight(vop); | |
| vop._tree.ancestor = node; | |
| shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip); | |
| if (shift > 0) { | |
| d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift); | |
| sip += shift; | |
| sop += shift; | |
| } | |
| sim += vim._tree.mod; | |
| sip += vip._tree.mod; | |
| som += vom._tree.mod; | |
| sop += vop._tree.mod; | |
| } | |
| if (vim && !d3_layout_treeRight(vop)) { | |
| vop._tree.thread = vim; | |
| vop._tree.mod += sim - sop; | |
| } | |
| if (vip && !d3_layout_treeLeft(vom)) { | |
| vom._tree.thread = vip; | |
| vom._tree.mod += sip - som; | |
| ancestor = node; | |
| } | |
| } | |
| return ancestor; | |
| } | |
| d3_layout_treeVisitAfter(root, function(node, previousSibling) { | |
| node._tree = { | |
| ancestor: node, | |
| prelim: 0, | |
| mod: 0, | |
| change: 0, | |
| shift: 0, | |
| number: previousSibling ? previousSibling._tree.number + 1 : 0 | |
| }; | |
| }); | |
| firstWalk(root); | |
| secondWalk(root, -root._tree.prelim); | |
| var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost), right = d3_layout_treeSearch(root, d3_layout_treeRightmost), deep = d3_layout_treeSearch(root, d3_layout_treeDeepest), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2, y1 = deep.depth || 1; | |
| d3_layout_treeVisitAfter(root, nodeSize ? function(node) { | |
| node.x *= size[0]; | |
| node.y = node.depth * size[1]; | |
| delete node._tree; | |
| } : function(node) { | |
| node.x = (node.x - x0) / (x1 - x0) * size[0]; | |
| node.y = node.depth / y1 * size[1]; | |
| delete node._tree; | |
| }); | |
| return nodes; | |
| } | |
| tree.separation = function(x) { | |
| if (!arguments.length) return separation; | |
| separation = x; | |
| return tree; | |
| }; | |
| tree.size = function(x) { | |
| if (!arguments.length) return nodeSize ? null : size; | |
| nodeSize = (size = x) == null; | |
| return tree; | |
| }; | |
| tree.nodeSize = function(x) { | |
| if (!arguments.length) return nodeSize ? size : null; | |
| nodeSize = (size = x) != null; | |
| return tree; | |
| }; | |
| return d3_layout_hierarchyRebind(tree, hierarchy); | |
| }; | |
| function d3_layout_treeSeparation(a, b) { | |
| return a.parent == b.parent ? 1 : 2; | |
| } | |
| function d3_layout_treeLeft(node) { | |
| var children = node.children; | |
| return children && children.length ? children[0] : node._tree.thread; | |
| } | |
| function d3_layout_treeRight(node) { | |
| var children = node.children, n; | |
| return children && (n = children.length) ? children[n - 1] : node._tree.thread; | |
| } | |
| function d3_layout_treeSearch(node, compare) { | |
| var children = node.children; | |
| if (children && (n = children.length)) { | |
| var child, n, i = -1; | |
| while (++i < n) { | |
| if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) { | |
| node = child; | |
| } | |
| } | |
| } | |
| return node; | |
| } | |
| function d3_layout_treeRightmost(a, b) { | |
| return a.x - b.x; | |
| } | |
| function d3_layout_treeLeftmost(a, b) { | |
| return b.x - a.x; | |
| } | |
| function d3_layout_treeDeepest(a, b) { | |
| return a.depth - b.depth; | |
| } | |
| function d3_layout_treeVisitAfter(node, callback) { | |
| function visit(node, previousSibling) { | |
| var children = node.children; | |
| if (children && (n = children.length)) { | |
| var child, previousChild = null, i = -1, n; | |
| while (++i < n) { | |
| child = children[i]; | |
| visit(child, previousChild); | |
| previousChild = child; | |
| } | |
| } | |
| callback(node, previousSibling); | |
| } | |
| visit(node, null); | |
| } | |
| function d3_layout_treeShift(node) { | |
| var shift = 0, change = 0, children = node.children, i = children.length, child; | |
| while (--i >= 0) { | |
| child = children[i]._tree; | |
| child.prelim += shift; | |
| child.mod += shift; | |
| shift += child.shift + (change += child.change); | |
| } | |
| } | |
| function d3_layout_treeMove(ancestor, node, shift) { | |
| ancestor = ancestor._tree; | |
| node = node._tree; | |
| var change = shift / (node.number - ancestor.number); | |
| ancestor.change += change; | |
| node.change -= change; | |
| node.shift += shift; | |
| node.prelim += shift; | |
| node.mod += shift; | |
| } | |
| function d3_layout_treeAncestor(vim, node, ancestor) { | |
| return vim._tree.ancestor.parent == node.parent ? vim._tree.ancestor : ancestor; | |
| } | |
| d3.layout.pack = function() { | |
| var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort), padding = 0, size = [ 1, 1 ], radius; | |
| function pack(d, i) { | |
| var nodes = hierarchy.call(this, d, i), root = nodes[0], w = size[0], h = size[1], r = radius == null ? Math.sqrt : typeof radius === "function" ? radius : function() { | |
| return radius; | |
| }; | |
| root.x = root.y = 0; | |
| d3_layout_treeVisitAfter(root, function(d) { | |
| d.r = +r(d.value); | |
| }); | |
| d3_layout_treeVisitAfter(root, d3_layout_packSiblings); | |
| if (padding) { | |
| var dr = padding * (radius ? 1 : Math.max(2 * root.r / w, 2 * root.r / h)) / 2; | |
| d3_layout_treeVisitAfter(root, function(d) { | |
| d.r += dr; | |
| }); | |
| d3_layout_treeVisitAfter(root, d3_layout_packSiblings); | |
| d3_layout_treeVisitAfter(root, function(d) { | |
| d.r -= dr; | |
| }); | |
| } | |
| d3_layout_packTransform(root, w / 2, h / 2, radius ? 1 : 1 / Math.max(2 * root.r / w, 2 * root.r / h)); | |
| return nodes; | |
| } | |
| pack.size = function(_) { | |
| if (!arguments.length) return size; | |
| size = _; | |
| return pack; | |
| }; | |
| pack.radius = function(_) { | |
| if (!arguments.length) return radius; | |
| radius = _ == null || typeof _ === "function" ? _ : +_; | |
| return pack; | |
| }; | |
| pack.padding = function(_) { | |
| if (!arguments.length) return padding; | |
| padding = +_; | |
| return pack; | |
| }; | |
| return d3_layout_hierarchyRebind(pack, hierarchy); | |
| }; | |
| function d3_layout_packSort(a, b) { | |
| return a.value - b.value; | |
| } | |
| function d3_layout_packInsert(a, b) { | |
| var c = a._pack_next; | |
| a._pack_next = b; | |
| b._pack_prev = a; | |
| b._pack_next = c; | |
| c._pack_prev = b; | |
| } | |
| function d3_layout_packSplice(a, b) { | |
| a._pack_next = b; | |
| b._pack_prev = a; | |
| } | |
| function d3_layout_packIntersects(a, b) { | |
| var dx = b.x - a.x, dy = b.y - a.y, dr = a.r + b.r; | |
| return .999 * dr * dr > dx * dx + dy * dy; | |
| } | |
| function d3_layout_packSiblings(node) { | |
| if (!(nodes = node.children) || !(n = nodes.length)) return; | |
| var nodes, xMin = Infinity, xMax = -Infinity, yMin = Infinity, yMax = -Infinity, a, b, c, i, j, k, n; | |
| function bound(node) { | |
| xMin = Math.min(node.x - node.r, xMin); | |
| xMax = Math.max(node.x + node.r, xMax); | |
| yMin = Math.min(node.y - node.r, yMin); | |
| yMax = Math.max(node.y + node.r, yMax); | |
| } | |
| nodes.forEach(d3_layout_packLink); | |
| a = nodes[0]; | |
| a.x = -a.r; | |
| a.y = 0; | |
| bound(a); | |
| if (n > 1) { | |
| b = nodes[1]; | |
| b.x = b.r; | |
| b.y = 0; | |
| bound(b); | |
| if (n > 2) { | |
| c = nodes[2]; | |
| d3_layout_packPlace(a, b, c); | |
| bound(c); | |
| d3_layout_packInsert(a, c); | |
| a._pack_prev = c; | |
| d3_layout_packInsert(c, b); | |
| b = a._pack_next; | |
| for (i = 3; i < n; i++) { | |
| d3_layout_packPlace(a, b, c = nodes[i]); | |
| var isect = 0, s1 = 1, s2 = 1; | |
| for (j = b._pack_next; j !== b; j = j._pack_next, s1++) { | |
| if (d3_layout_packIntersects(j, c)) { | |
| isect = 1; | |
| break; | |
| } | |
| } | |
| if (isect == 1) { | |
| for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) { | |
| if (d3_layout_packIntersects(k, c)) { | |
| break; | |
| } | |
| } | |
| } | |
| if (isect) { | |
| if (s1 < s2 || s1 == s2 && b.r < a.r) d3_layout_packSplice(a, b = j); else d3_layout_packSplice(a = k, b); | |
| i--; | |
| } else { | |
| d3_layout_packInsert(a, c); | |
| b = c; | |
| bound(c); | |
| } | |
| } | |
| } | |
| } | |
| var cx = (xMin + xMax) / 2, cy = (yMin + yMax) / 2, cr = 0; | |
| for (i = 0; i < n; i++) { | |
| c = nodes[i]; | |
| c.x -= cx; | |
| c.y -= cy; | |
| cr = Math.max(cr, c.r + Math.sqrt(c.x * c.x + c.y * c.y)); | |
| } | |
| node.r = cr; | |
| nodes.forEach(d3_layout_packUnlink); | |
| } | |
| function d3_layout_packLink(node) { | |
| node._pack_next = node._pack_prev = node; | |
| } | |
| function d3_layout_packUnlink(node) { | |
| delete node._pack_next; | |
| delete node._pack_prev; | |
| } | |
| function d3_layout_packTransform(node, x, y, k) { | |
| var children = node.children; | |
| node.x = x += k * node.x; | |
| node.y = y += k * node.y; | |
| node.r *= k; | |
| if (children) { | |
| var i = -1, n = children.length; | |
| while (++i < n) d3_layout_packTransform(children[i], x, y, k); | |
| } | |
| } | |
| function d3_layout_packPlace(a, b, c) { | |
| var db = a.r + c.r, dx = b.x - a.x, dy = b.y - a.y; | |
| if (db && (dx || dy)) { | |
| var da = b.r + c.r, dc = dx * dx + dy * dy; | |
| da *= da; | |
| db *= db; | |
| var x = .5 + (db - da) / (2 * dc), y = Math.sqrt(Math.max(0, 2 * da * (db + dc) - (db -= dc) * db - da * da)) / (2 * dc); | |
| c.x = a.x + x * dx + y * dy; | |
| c.y = a.y + x * dy - y * dx; | |
| } else { | |
| c.x = a.x + db; | |
| c.y = a.y; | |
| } | |
| } | |
| d3.layout.cluster = function() { | |
| var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ], nodeSize = false; | |
| function cluster(d, i) { | |
| var nodes = hierarchy.call(this, d, i), root = nodes[0], previousNode, x = 0; | |
| d3_layout_treeVisitAfter(root, function(node) { | |
| var children = node.children; | |
| if (children && children.length) { | |
| node.x = d3_layout_clusterX(children); | |
| node.y = d3_layout_clusterY(children); | |
| } else { | |
| node.x = previousNode ? x += separation(node, previousNode) : 0; | |
| node.y = 0; | |
| previousNode = node; | |
| } | |
| }); | |
| var left = d3_layout_clusterLeft(root), right = d3_layout_clusterRight(root), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2; | |
| d3_layout_treeVisitAfter(root, nodeSize ? function(node) { | |
| node.x = (node.x - root.x) * size[0]; | |
| node.y = (root.y - node.y) * size[1]; | |
| } : function(node) { | |
| node.x = (node.x - x0) / (x1 - x0) * size[0]; | |
| node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1]; | |
| }); | |
| return nodes; | |
| } | |
| cluster.separation = function(x) { | |
| if (!arguments.length) return separation; | |
| separation = x; | |
| return cluster; | |
| }; | |
| cluster.size = function(x) { | |
| if (!arguments.length) return nodeSize ? null : size; | |
| nodeSize = (size = x) == null; | |
| return cluster; | |
| }; | |
| cluster.nodeSize = function(x) { | |
| if (!arguments.length) return nodeSize ? size : null; | |
| nodeSize = (size = x) != null; | |
| return cluster; | |
| }; | |
| return d3_layout_hierarchyRebind(cluster, hierarchy); | |
| }; | |
| function d3_layout_clusterY(children) { | |
| return 1 + d3.max(children, function(child) { | |
| return child.y; | |
| }); | |
| } | |
| function d3_layout_clusterX(children) { | |
| return children.reduce(function(x, child) { | |
| return x + child.x; | |
| }, 0) / children.length; | |
| } | |
| function d3_layout_clusterLeft(node) { | |
| var children = node.children; | |
| return children && children.length ? d3_layout_clusterLeft(children[0]) : node; | |
| } | |
| function d3_layout_clusterRight(node) { | |
| var children = node.children, n; | |
| return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node; | |
| } | |
| d3.layout.treemap = function() { | |
| var hierarchy = d3.layout.hierarchy(), round = Math.round, size = [ 1, 1 ], padding = null, pad = d3_layout_treemapPadNull, sticky = false, stickies, mode = "squarify", ratio = .5 * (1 + Math.sqrt(5)); | |
| function scale(children, k) { | |
| var i = -1, n = children.length, child, area; | |
| while (++i < n) { | |
| area = (child = children[i]).value * (k < 0 ? 0 : k); | |
| child.area = isNaN(area) || area <= 0 ? 0 : area; | |
| } | |
| } | |
| function squarify(node) { | |
| var children = node.children; | |
| if (children && children.length) { | |
| var rect = pad(node), row = [], remaining = children.slice(), child, best = Infinity, score, u = mode === "slice" ? rect.dx : mode === "dice" ? rect.dy : mode === "slice-dice" ? node.depth & 1 ? rect.dy : rect.dx : Math.min(rect.dx, rect.dy), n; | |
| scale(remaining, rect.dx * rect.dy / node.value); | |
| row.area = 0; | |
| while ((n = remaining.length) > 0) { | |
| row.push(child = remaining[n - 1]); | |
| row.area += child.area; | |
| if (mode !== "squarify" || (score = worst(row, u)) <= best) { | |
| remaining.pop(); | |
| best = score; | |
| } else { | |
| row.area -= row.pop().area; | |
| position(row, u, rect, false); | |
| u = Math.min(rect.dx, rect.dy); | |
| row.length = row.area = 0; | |
| best = Infinity; | |
| } | |
| } | |
| if (row.length) { | |
| position(row, u, rect, true); | |
| row.length = row.area = 0; | |
| } | |
| children.forEach(squarify); | |
| } | |
| } | |
| function stickify(node) { | |
| var children = node.children; | |
| if (children && children.length) { | |
| var rect = pad(node), remaining = children.slice(), child, row = []; | |
| scale(remaining, rect.dx * rect.dy / node.value); | |
| row.area = 0; | |
| while (child = remaining.pop()) { | |
| row.push(child); | |
| row.area += child.area; | |
| if (child.z != null) { | |
| position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length); | |
| row.length = row.area = 0; | |
| } | |
| } | |
| children.forEach(stickify); | |
| } | |
| } | |
| function worst(row, u) { | |
| var s = row.area, r, rmax = 0, rmin = Infinity, i = -1, n = row.length; | |
| while (++i < n) { | |
| if (!(r = row[i].area)) continue; | |
| if (r < rmin) rmin = r; | |
| if (r > rmax) rmax = r; | |
| } | |
| s *= s; | |
| u *= u; | |
| return s ? Math.max(u * rmax * ratio / s, s / (u * rmin * ratio)) : Infinity; | |
| } | |
| function position(row, u, rect, flush) { | |
| var i = -1, n = row.length, x = rect.x, y = rect.y, v = u ? round(row.area / u) : 0, o; | |
| if (u == rect.dx) { | |
| if (flush || v > rect.dy) v = rect.dy; | |
| while (++i < n) { | |
| o = row[i]; | |
| o.x = x; | |
| o.y = y; | |
| o.dy = v; | |
| x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0); | |
| } | |
| o.z = true; | |
| o.dx += rect.x + rect.dx - x; | |
| rect.y += v; | |
| rect.dy -= v; | |
| } else { | |
| if (flush || v > rect.dx) v = rect.dx; | |
| while (++i < n) { | |
| o = row[i]; | |
| o.x = x; | |
| o.y = y; | |
| o.dx = v; | |
| y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0); | |
| } | |
| o.z = false; | |
| o.dy += rect.y + rect.dy - y; | |
| rect.x += v; | |
| rect.dx -= v; | |
| } | |
| } | |
| function treemap(d) { | |
| var nodes = stickies || hierarchy(d), root = nodes[0]; | |
| root.x = 0; | |
| root.y = 0; | |
| root.dx = size[0]; | |
| root.dy = size[1]; | |
| if (stickies) hierarchy.revalue(root); | |
| scale([ root ], root.dx * root.dy / root.value); | |
| (stickies ? stickify : squarify)(root); | |
| if (sticky) stickies = nodes; | |
| return nodes; | |
| } | |
| treemap.size = function(x) { | |
| if (!arguments.length) return size; | |
| size = x; | |
| return treemap; | |
| }; | |
| treemap.padding = function(x) { | |
| if (!arguments.length) return padding; | |
| function padFunction(node) { | |
| var p = x.call(treemap, node, node.depth); | |
| return p == null ? d3_layout_treemapPadNull(node) : d3_layout_treemapPad(node, typeof p === "number" ? [ p, p, p, p ] : p); | |
| } | |
| function padConstant(node) { | |
| return d3_layout_treemapPad(node, x); | |
| } | |
| var type; | |
| pad = (padding = x) == null ? d3_layout_treemapPadNull : (type = typeof x) === "function" ? padFunction : type === "number" ? (x = [ x, x, x, x ], | |
| padConstant) : padConstant; | |
| return treemap; | |
| }; | |
| treemap.round = function(x) { | |
| if (!arguments.length) return round != Number; | |
| round = x ? Math.round : Number; | |
| return treemap; | |
| }; | |
| treemap.sticky = function(x) { | |
| if (!arguments.length) return sticky; | |
| sticky = x; | |
| stickies = null; | |
| return treemap; | |
| }; | |
| treemap.ratio = function(x) { | |
| if (!arguments.length) return ratio; | |
| ratio = x; | |
| return treemap; | |
| }; | |
| treemap.mode = function(x) { | |
| if (!arguments.length) return mode; | |
| mode = x + ""; | |
| return treemap; | |
| }; | |
| return d3_layout_hierarchyRebind(treemap, hierarchy); | |
| }; | |
| function d3_layout_treemapPadNull(node) { | |
| return { | |
| x: node.x, | |
| y: node.y, | |
| dx: node.dx, | |
| dy: node.dy | |
| }; | |
| } | |
| function d3_layout_treemapPad(node, padding) { | |
| var x = node.x + padding[3], y = node.y + padding[0], dx = node.dx - padding[1] - padding[3], dy = node.dy - padding[0] - padding[2]; | |
| if (dx < 0) { | |
| x += dx / 2; | |
| dx = 0; | |
| } | |
| if (dy < 0) { | |
| y += dy / 2; | |
| dy = 0; | |
| } | |
| return { | |
| x: x, | |
| y: y, | |
| dx: dx, | |
| dy: dy | |
| }; | |
| } | |
| d3.random = { | |
| normal: function(µ, σ) { | |
| var n = arguments.length; | |
| if (n < 2) σ = 1; | |
| if (n < 1) µ = 0; | |
| return function() { | |
| var x, y, r; | |
| do { | |
| x = Math.random() * 2 - 1; | |
| y = Math.random() * 2 - 1; | |
| r = x * x + y * y; | |
| } while (!r || r > 1); | |
| return µ + σ * x * Math.sqrt(-2 * Math.log(r) / r); | |
| }; | |
| }, | |
| logNormal: function() { | |
| var random = d3.random.normal.apply(d3, arguments); | |
| return function() { | |
| return Math.exp(random()); | |
| }; | |
| }, | |
| irwinHall: function(m) { | |
| return function() { | |
| for (var s = 0, j = 0; j < m; j++) s += Math.random(); | |
| return s / m; | |
| }; | |
| } | |
| }; | |
| d3.scale = {}; | |
| function d3_scaleExtent(domain) { | |
| var start = domain[0], stop = domain[domain.length - 1]; | |
| return start < stop ? [ start, stop ] : [ stop, start ]; | |
| } | |
| function d3_scaleRange(scale) { | |
| return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range()); | |
| } | |
| function d3_scale_bilinear(domain, range, uninterpolate, interpolate) { | |
| var u = uninterpolate(domain[0], domain[1]), i = interpolate(range[0], range[1]); | |
| return function(x) { | |
| return i(u(x)); | |
| }; | |
| } | |
| function d3_scale_nice(domain, nice) { | |
| var i0 = 0, i1 = domain.length - 1, x0 = domain[i0], x1 = domain[i1], dx; | |
| if (x1 < x0) { | |
| dx = i0, i0 = i1, i1 = dx; | |
| dx = x0, x0 = x1, x1 = dx; | |
| } | |
| domain[i0] = nice.floor(x0); | |
| domain[i1] = nice.ceil(x1); | |
| return domain; | |
| } | |
| function d3_scale_niceStep(step) { | |
| return step ? { | |
| floor: function(x) { | |
| return Math.floor(x / step) * step; | |
| }, | |
| ceil: function(x) { | |
| return Math.ceil(x / step) * step; | |
| } | |
| } : d3_scale_niceIdentity; | |
| } | |
| var d3_scale_niceIdentity = { | |
| floor: d3_identity, | |
| ceil: d3_identity | |
| }; | |
| function d3_scale_polylinear(domain, range, uninterpolate, interpolate) { | |
| var u = [], i = [], j = 0, k = Math.min(domain.length, range.length) - 1; | |
| if (domain[k] < domain[0]) { | |
| domain = domain.slice().reverse(); | |
| range = range.slice().reverse(); | |
| } | |
| while (++j <= k) { | |
| u.push(uninterpolate(domain[j - 1], domain[j])); | |
| i.push(interpolate(range[j - 1], range[j])); | |
| } | |
| return function(x) { | |
| var j = d3.bisect(domain, x, 1, k) - 1; | |
| return i[j](u[j](x)); | |
| }; | |
| } | |
| d3.scale.linear = function() { | |
| return d3_scale_linear([ 0, 1 ], [ 0, 1 ], d3_interpolate, false); | |
| }; | |
| function d3_scale_linear(domain, range, interpolate, clamp) { | |
| var output, input; | |
| function rescale() { | |
| var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear, uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber; | |
| output = linear(domain, range, uninterpolate, interpolate); | |
| input = linear(range, domain, uninterpolate, d3_interpolate); | |
| return scale; | |
| } | |
| function scale(x) { | |
| return output(x); | |
| } | |
| scale.invert = function(y) { | |
| return input(y); | |
| }; | |
| scale.domain = function(x) { | |
| if (!arguments.length) return domain; | |
| domain = x.map(Number); | |
| return rescale(); | |
| }; | |
| scale.range = function(x) { | |
| if (!arguments.length) return range; | |
| range = x; | |
| return rescale(); | |
| }; | |
| scale.rangeRound = function(x) { | |
| return scale.range(x).interpolate(d3_interpolateRound); | |
| }; | |
| scale.clamp = function(x) { | |
| if (!arguments.length) return clamp; | |
| clamp = x; | |
| return rescale(); | |
| }; | |
| scale.interpolate = function(x) { | |
| if (!arguments.length) return interpolate; | |
| interpolate = x; | |
| return rescale(); | |
| }; | |
| scale.ticks = function(m) { | |
| return d3_scale_linearTicks(domain, m); | |
| }; | |
| scale.tickFormat = function(m, format) { | |
| return d3_scale_linearTickFormat(domain, m, format); | |
| }; | |
| scale.nice = function(m) { | |
| d3_scale_linearNice(domain, m); | |
| return rescale(); | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_linear(domain, range, interpolate, clamp); | |
| }; | |
| return rescale(); | |
| } | |
| function d3_scale_linearRebind(scale, linear) { | |
| return d3.rebind(scale, linear, "range", "rangeRound", "interpolate", "clamp"); | |
| } | |
| function d3_scale_linearNice(domain, m) { | |
| return d3_scale_nice(domain, d3_scale_niceStep(m ? d3_scale_linearTickRange(domain, m)[2] : d3_scale_linearNiceStep(domain))); | |
| } | |
| function d3_scale_linearNiceStep(domain) { | |
| var extent = d3_scaleExtent(domain), span = extent[1] - extent[0]; | |
| return Math.pow(10, Math.round(Math.log(span) / Math.LN10) - 1); | |
| } | |
| function d3_scale_linearTickRange(domain, m) { | |
| var extent = d3_scaleExtent(domain), span = extent[1] - extent[0], step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)), err = m / span * step; | |
| if (err <= .15) step *= 10; else if (err <= .35) step *= 5; else if (err <= .75) step *= 2; | |
| extent[0] = Math.ceil(extent[0] / step) * step; | |
| extent[1] = Math.floor(extent[1] / step) * step + step * .5; | |
| extent[2] = step; | |
| return extent; | |
| } | |
| function d3_scale_linearTicks(domain, m) { | |
| return d3.range.apply(d3, d3_scale_linearTickRange(domain, m)); | |
| } | |
| function d3_scale_linearTickFormat(domain, m, format) { | |
| var precision = -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01); | |
| return d3.format(format ? format.replace(d3_format_re, function(a, b, c, d, e, f, g, h, i, j) { | |
| return [ b, c, d, e, f, g, h, i || "." + (precision - (j === "%") * 2), j ].join(""); | |
| }) : ",." + precision + "f"); | |
| } | |
| d3.scale.log = function() { | |
| return d3_scale_log(d3.scale.linear().domain([ 0, 1 ]), 10, true, [ 1, 10 ]); | |
| }; | |
| function d3_scale_log(linear, base, positive, domain) { | |
| function log(x) { | |
| return (positive ? Math.log(x < 0 ? 0 : x) : -Math.log(x > 0 ? 0 : -x)) / Math.log(base); | |
| } | |
| function pow(x) { | |
| return positive ? Math.pow(base, x) : -Math.pow(base, -x); | |
| } | |
| function scale(x) { | |
| return linear(log(x)); | |
| } | |
| scale.invert = function(x) { | |
| return pow(linear.invert(x)); | |
| }; | |
| scale.domain = function(x) { | |
| if (!arguments.length) return domain; | |
| positive = x[0] >= 0; | |
| linear.domain((domain = x.map(Number)).map(log)); | |
| return scale; | |
| }; | |
| scale.base = function(_) { | |
| if (!arguments.length) return base; | |
| base = +_; | |
| linear.domain(domain.map(log)); | |
| return scale; | |
| }; | |
| scale.nice = function() { | |
| var niced = d3_scale_nice(domain.map(log), positive ? Math : d3_scale_logNiceNegative); | |
| linear.domain(niced); | |
| domain = niced.map(pow); | |
| return scale; | |
| }; | |
| scale.ticks = function() { | |
| var extent = d3_scaleExtent(domain), ticks = []; | |
| if (extent.every(isFinite)) { | |
| var u = extent[0], v = extent[1], i = Math.floor(log(u)), j = Math.ceil(log(v)), n = base % 1 ? 2 : base; | |
| if (positive) { | |
| for (;i < j; i++) for (var k = 1; k < n; k++) ticks.push(pow(i) * k); | |
| ticks.push(pow(i)); | |
| } else { | |
| ticks.push(pow(i)); | |
| for (;i++ < j; ) for (var k = n - 1; k > 0; k--) ticks.push(pow(i) * k); | |
| } | |
| for (i = 0; ticks[i] < u; i++) {} | |
| for (j = ticks.length; ticks[j - 1] > v; j--) {} | |
| ticks = ticks.slice(i, j); | |
| } | |
| return ticks; | |
| }; | |
| scale.tickFormat = function(n, format) { | |
| if (!arguments.length) return d3_scale_logFormat; | |
| if (arguments.length < 2) format = d3_scale_logFormat; else if (typeof format !== "function") format = d3.format(format); | |
| var k = Math.max(.1, n / scale.ticks().length), f = positive ? (e = 1e-12, Math.ceil) : (e = -1e-12, | |
| Math.floor), e; | |
| return function(d) { | |
| return d / pow(f(log(d) + e)) <= k ? format(d) : ""; | |
| }; | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_log(linear.copy(), base, positive, domain); | |
| }; | |
| return d3_scale_linearRebind(scale, linear); | |
| } | |
| var d3_scale_logFormat = d3.format(".0e"), d3_scale_logNiceNegative = { | |
| floor: function(x) { | |
| return -Math.ceil(-x); | |
| }, | |
| ceil: function(x) { | |
| return -Math.floor(-x); | |
| } | |
| }; | |
| d3.scale.pow = function() { | |
| return d3_scale_pow(d3.scale.linear(), 1, [ 0, 1 ]); | |
| }; | |
| function d3_scale_pow(linear, exponent, domain) { | |
| var powp = d3_scale_powPow(exponent), powb = d3_scale_powPow(1 / exponent); | |
| function scale(x) { | |
| return linear(powp(x)); | |
| } | |
| scale.invert = function(x) { | |
| return powb(linear.invert(x)); | |
| }; | |
| scale.domain = function(x) { | |
| if (!arguments.length) return domain; | |
| linear.domain((domain = x.map(Number)).map(powp)); | |
| return scale; | |
| }; | |
| scale.ticks = function(m) { | |
| return d3_scale_linearTicks(domain, m); | |
| }; | |
| scale.tickFormat = function(m, format) { | |
| return d3_scale_linearTickFormat(domain, m, format); | |
| }; | |
| scale.nice = function(m) { | |
| return scale.domain(d3_scale_linearNice(domain, m)); | |
| }; | |
| scale.exponent = function(x) { | |
| if (!arguments.length) return exponent; | |
| powp = d3_scale_powPow(exponent = x); | |
| powb = d3_scale_powPow(1 / exponent); | |
| linear.domain(domain.map(powp)); | |
| return scale; | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_pow(linear.copy(), exponent, domain); | |
| }; | |
| return d3_scale_linearRebind(scale, linear); | |
| } | |
| function d3_scale_powPow(e) { | |
| return function(x) { | |
| return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e); | |
| }; | |
| } | |
| d3.scale.sqrt = function() { | |
| return d3.scale.pow().exponent(.5); | |
| }; | |
| d3.scale.ordinal = function() { | |
| return d3_scale_ordinal([], { | |
| t: "range", | |
| a: [ [] ] | |
| }); | |
| }; | |
| function d3_scale_ordinal(domain, ranger) { | |
| var index, range, rangeBand; | |
| function scale(x) { | |
| return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length]; | |
| } | |
| function steps(start, step) { | |
| return d3.range(domain.length).map(function(i) { | |
| return start + step * i; | |
| }); | |
| } | |
| scale.domain = function(x) { | |
| if (!arguments.length) return domain; | |
| domain = []; | |
| index = new d3_Map(); | |
| var i = -1, n = x.length, xi; | |
| while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi)); | |
| return scale[ranger.t].apply(scale, ranger.a); | |
| }; | |
| scale.range = function(x) { | |
| if (!arguments.length) return range; | |
| range = x; | |
| rangeBand = 0; | |
| ranger = { | |
| t: "range", | |
| a: arguments | |
| }; | |
| return scale; | |
| }; | |
| scale.rangePoints = function(x, padding) { | |
| if (arguments.length < 2) padding = 0; | |
| var start = x[0], stop = x[1], step = (stop - start) / (Math.max(1, domain.length - 1) + padding); | |
| range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step); | |
| rangeBand = 0; | |
| ranger = { | |
| t: "rangePoints", | |
| a: arguments | |
| }; | |
| return scale; | |
| }; | |
| scale.rangeBands = function(x, padding, outerPadding) { | |
| if (arguments.length < 2) padding = 0; | |
| if (arguments.length < 3) outerPadding = padding; | |
| var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = (stop - start) / (domain.length - padding + 2 * outerPadding); | |
| range = steps(start + step * outerPadding, step); | |
| if (reverse) range.reverse(); | |
| rangeBand = step * (1 - padding); | |
| ranger = { | |
| t: "rangeBands", | |
| a: arguments | |
| }; | |
| return scale; | |
| }; | |
| scale.rangeRoundBands = function(x, padding, outerPadding) { | |
| if (arguments.length < 2) padding = 0; | |
| if (arguments.length < 3) outerPadding = padding; | |
| var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = Math.floor((stop - start) / (domain.length - padding + 2 * outerPadding)), error = stop - start - (domain.length - padding) * step; | |
| range = steps(start + Math.round(error / 2), step); | |
| if (reverse) range.reverse(); | |
| rangeBand = Math.round(step * (1 - padding)); | |
| ranger = { | |
| t: "rangeRoundBands", | |
| a: arguments | |
| }; | |
| return scale; | |
| }; | |
| scale.rangeBand = function() { | |
| return rangeBand; | |
| }; | |
| scale.rangeExtent = function() { | |
| return d3_scaleExtent(ranger.a[0]); | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_ordinal(domain, ranger); | |
| }; | |
| return scale.domain(domain); | |
| } | |
| d3.scale.category10 = function() { | |
| return d3.scale.ordinal().range(d3_category10); | |
| }; | |
| d3.scale.category20 = function() { | |
| return d3.scale.ordinal().range(d3_category20); | |
| }; | |
| d3.scale.category20b = function() { | |
| return d3.scale.ordinal().range(d3_category20b); | |
| }; | |
| d3.scale.category20c = function() { | |
| return d3.scale.ordinal().range(d3_category20c); | |
| }; | |
| var d3_category10 = [ 2062260, 16744206, 2924588, 14034728, 9725885, 9197131, 14907330, 8355711, 12369186, 1556175 ].map(d3_rgbString); | |
| var d3_category20 = [ 2062260, 11454440, 16744206, 16759672, 2924588, 10018698, 14034728, 16750742, 9725885, 12955861, 9197131, 12885140, 14907330, 16234194, 8355711, 13092807, 12369186, 14408589, 1556175, 10410725 ].map(d3_rgbString); | |
| var d3_category20b = [ 3750777, 5395619, 7040719, 10264286, 6519097, 9216594, 11915115, 13556636, 9202993, 12426809, 15186514, 15190932, 8666169, 11356490, 14049643, 15177372, 8077683, 10834324, 13528509, 14589654 ].map(d3_rgbString); | |
| var d3_category20c = [ 3244733, 7057110, 10406625, 13032431, 15095053, 16616764, 16625259, 16634018, 3253076, 7652470, 10607003, 13101504, 7695281, 10394312, 12369372, 14342891, 6513507, 9868950, 12434877, 14277081 ].map(d3_rgbString); | |
| d3.scale.quantile = function() { | |
| return d3_scale_quantile([], []); | |
| }; | |
| function d3_scale_quantile(domain, range) { | |
| var thresholds; | |
| function rescale() { | |
| var k = 0, q = range.length; | |
| thresholds = []; | |
| while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q); | |
| return scale; | |
| } | |
| function scale(x) { | |
| if (!isNaN(x = +x)) return range[d3.bisect(thresholds, x)]; | |
| } | |
| scale.domain = function(x) { | |
| if (!arguments.length) return domain; | |
| domain = x.filter(function(d) { | |
| return !isNaN(d); | |
| }).sort(d3.ascending); | |
| return rescale(); | |
| }; | |
| scale.range = function(x) { | |
| if (!arguments.length) return range; | |
| range = x; | |
| return rescale(); | |
| }; | |
| scale.quantiles = function() { | |
| return thresholds; | |
| }; | |
| scale.invertExtent = function(y) { | |
| y = range.indexOf(y); | |
| return y < 0 ? [ NaN, NaN ] : [ y > 0 ? thresholds[y - 1] : domain[0], y < thresholds.length ? thresholds[y] : domain[domain.length - 1] ]; | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_quantile(domain, range); | |
| }; | |
| return rescale(); | |
| } | |
| d3.scale.quantize = function() { | |
| return d3_scale_quantize(0, 1, [ 0, 1 ]); | |
| }; | |
| function d3_scale_quantize(x0, x1, range) { | |
| var kx, i; | |
| function scale(x) { | |
| return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))]; | |
| } | |
| function rescale() { | |
| kx = range.length / (x1 - x0); | |
| i = range.length - 1; | |
| return scale; | |
| } | |
| scale.domain = function(x) { | |
| if (!arguments.length) return [ x0, x1 ]; | |
| x0 = +x[0]; | |
| x1 = +x[x.length - 1]; | |
| return rescale(); | |
| }; | |
| scale.range = function(x) { | |
| if (!arguments.length) return range; | |
| range = x; | |
| return rescale(); | |
| }; | |
| scale.invertExtent = function(y) { | |
| y = range.indexOf(y); | |
| y = y < 0 ? NaN : y / kx + x0; | |
| return [ y, y + 1 / kx ]; | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_quantize(x0, x1, range); | |
| }; | |
| return rescale(); | |
| } | |
| d3.scale.threshold = function() { | |
| return d3_scale_threshold([ .5 ], [ 0, 1 ]); | |
| }; | |
| function d3_scale_threshold(domain, range) { | |
| function scale(x) { | |
| if (x <= x) return range[d3.bisect(domain, x)]; | |
| } | |
| scale.domain = function(_) { | |
| if (!arguments.length) return domain; | |
| domain = _; | |
| return scale; | |
| }; | |
| scale.range = function(_) { | |
| if (!arguments.length) return range; | |
| range = _; | |
| return scale; | |
| }; | |
| scale.invertExtent = function(y) { | |
| y = range.indexOf(y); | |
| return [ domain[y - 1], domain[y] ]; | |
| }; | |
| scale.copy = function() { | |
| return d3_scale_threshold(domain, range); | |
| }; | |
| return scale; | |
| } | |
| d3.scale.identity = function() { | |
| return d3_scale_identity([ 0, 1 ]); | |
| }; | |
| function d3_scale_identity(domain) { | |
| function identity(x) { | |
| return +x; | |
| } | |
| identity.invert = identity; | |
| identity.domain = identity.range = function(x) { | |
| if (!arguments.length) return domain; | |
| domain = x.map(identity); | |
| return identity; | |
| }; | |
| identity.ticks = function(m) { | |
| return d3_scale_linearTicks(domain, m); | |
| }; | |
| identity.tickFormat = function(m, format) { | |
| return d3_scale_linearTickFormat(domain, m, format); | |
| }; | |
| identity.copy = function() { | |
| return d3_scale_identity(domain); | |
| }; | |
| return identity; | |
| } | |
| d3.svg.arc = function() { | |
| var innerRadius = d3_svg_arcInnerRadius, outerRadius = d3_svg_arcOuterRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle; | |
| function arc() { | |
| var r0 = innerRadius.apply(this, arguments), r1 = outerRadius.apply(this, arguments), a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset, a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset, da = (a1 < a0 && (da = a0, | |
| a0 = a1, a1 = da), a1 - a0), df = da < π ? "0" : "1", c0 = Math.cos(a0), s0 = Math.sin(a0), c1 = Math.cos(a1), s1 = Math.sin(a1); | |
| return da >= d3_svg_arcMax ? r0 ? "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "M0," + r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + -r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + r0 + "Z" : "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "Z" : r0 ? "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L" + r0 * c1 + "," + r0 * s1 + "A" + r0 + "," + r0 + " 0 " + df + ",0 " + r0 * c0 + "," + r0 * s0 + "Z" : "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L0,0" + "Z"; | |
| } | |
| arc.innerRadius = function(v) { | |
| if (!arguments.length) return innerRadius; | |
| innerRadius = d3_functor(v); | |
| return arc; | |
| }; | |
| arc.outerRadius = function(v) { | |
| if (!arguments.length) return outerRadius; | |
| outerRadius = d3_functor(v); | |
| return arc; | |
| }; | |
| arc.startAngle = function(v) { | |
| if (!arguments.length) return startAngle; | |
| startAngle = d3_functor(v); | |
| return arc; | |
| }; | |
| arc.endAngle = function(v) { | |
| if (!arguments.length) return endAngle; | |
| endAngle = d3_functor(v); | |
| return arc; | |
| }; | |
| arc.centroid = function() { | |
| var r = (innerRadius.apply(this, arguments) + outerRadius.apply(this, arguments)) / 2, a = (startAngle.apply(this, arguments) + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset; | |
| return [ Math.cos(a) * r, Math.sin(a) * r ]; | |
| }; | |
| return arc; | |
| }; | |
| var d3_svg_arcOffset = -π / 2, d3_svg_arcMax = 2 * π - 1e-6; | |
| function d3_svg_arcInnerRadius(d) { | |
| return d.innerRadius; | |
| } | |
| function d3_svg_arcOuterRadius(d) { | |
| return d.outerRadius; | |
| } | |
| function d3_svg_arcStartAngle(d) { | |
| return d.startAngle; | |
| } | |
| function d3_svg_arcEndAngle(d) { | |
| return d.endAngle; | |
| } | |
| d3.svg.line.radial = function() { | |
| var line = d3_svg_line(d3_svg_lineRadial); | |
| line.radius = line.x, delete line.x; | |
| line.angle = line.y, delete line.y; | |
| return line; | |
| }; | |
| function d3_svg_lineRadial(points) { | |
| var point, i = -1, n = points.length, r, a; | |
| while (++i < n) { | |
| point = points[i]; | |
| r = point[0]; | |
| a = point[1] + d3_svg_arcOffset; | |
| point[0] = r * Math.cos(a); | |
| point[1] = r * Math.sin(a); | |
| } | |
| return points; | |
| } | |
| function d3_svg_area(projection) { | |
| var x0 = d3_svg_lineX, x1 = d3_svg_lineX, y0 = 0, y1 = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, interpolateReverse = interpolate, L = "L", tension = .7; | |
| function area(data) { | |
| var segments = [], points0 = [], points1 = [], i = -1, n = data.length, d, fx0 = d3_functor(x0), fy0 = d3_functor(y0), fx1 = x0 === x1 ? function() { | |
| return x; | |
| } : d3_functor(x1), fy1 = y0 === y1 ? function() { | |
| return y; | |
| } : d3_functor(y1), x, y; | |
| function segment() { | |
| segments.push("M", interpolate(projection(points1), tension), L, interpolateReverse(projection(points0.reverse()), tension), "Z"); | |
| } | |
| while (++i < n) { | |
| if (defined.call(this, d = data[i], i)) { | |
| points0.push([ x = +fx0.call(this, d, i), y = +fy0.call(this, d, i) ]); | |
| points1.push([ +fx1.call(this, d, i), +fy1.call(this, d, i) ]); | |
| } else if (points0.length) { | |
| segment(); | |
| points0 = []; | |
| points1 = []; | |
| } | |
| } | |
| if (points0.length) segment(); | |
| return segments.length ? segments.join("") : null; | |
| } | |
| area.x = function(_) { | |
| if (!arguments.length) return x1; | |
| x0 = x1 = _; | |
| return area; | |
| }; | |
| area.x0 = function(_) { | |
| if (!arguments.length) return x0; | |
| x0 = _; | |
| return area; | |
| }; | |
| area.x1 = function(_) { | |
| if (!arguments.length) return x1; | |
| x1 = _; | |
| return area; | |
| }; | |
| area.y = function(_) { | |
| if (!arguments.length) return y1; | |
| y0 = y1 = _; | |
| return area; | |
| }; | |
| area.y0 = function(_) { | |
| if (!arguments.length) return y0; | |
| y0 = _; | |
| return area; | |
| }; | |
| area.y1 = function(_) { | |
| if (!arguments.length) return y1; | |
| y1 = _; | |
| return area; | |
| }; | |
| area.defined = function(_) { | |
| if (!arguments.length) return defined; | |
| defined = _; | |
| return area; | |
| }; | |
| area.interpolate = function(_) { | |
| if (!arguments.length) return interpolateKey; | |
| if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key; | |
| interpolateReverse = interpolate.reverse || interpolate; | |
| L = interpolate.closed ? "M" : "L"; | |
| return area; | |
| }; | |
| area.tension = function(_) { | |
| if (!arguments.length) return tension; | |
| tension = _; | |
| return area; | |
| }; | |
| return area; | |
| } | |
| d3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter; | |
| d3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore; | |
| d3.svg.area = function() { | |
| return d3_svg_area(d3_identity); | |
| }; | |
| d3.svg.area.radial = function() { | |
| var area = d3_svg_area(d3_svg_lineRadial); | |
| area.radius = area.x, delete area.x; | |
| area.innerRadius = area.x0, delete area.x0; | |
| area.outerRadius = area.x1, delete area.x1; | |
| area.angle = area.y, delete area.y; | |
| area.startAngle = area.y0, delete area.y0; | |
| area.endAngle = area.y1, delete area.y1; | |
| return area; | |
| }; | |
| d3.svg.chord = function() { | |
| var source = d3_source, target = d3_target, radius = d3_svg_chordRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle; | |
| function chord(d, i) { | |
| var s = subgroup(this, source, d, i), t = subgroup(this, target, d, i); | |
| return "M" + s.p0 + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t) ? curve(s.r, s.p1, s.r, s.p0) : curve(s.r, s.p1, t.r, t.p0) + arc(t.r, t.p1, t.a1 - t.a0) + curve(t.r, t.p1, s.r, s.p0)) + "Z"; | |
| } | |
| function subgroup(self, f, d, i) { | |
| var subgroup = f.call(self, d, i), r = radius.call(self, subgroup, i), a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset, a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset; | |
| return { | |
| r: r, | |
| a0: a0, | |
| a1: a1, | |
| p0: [ r * Math.cos(a0), r * Math.sin(a0) ], | |
| p1: [ r * Math.cos(a1), r * Math.sin(a1) ] | |
| }; | |
| } | |
| function equals(a, b) { | |
| return a.a0 == b.a0 && a.a1 == b.a1; | |
| } | |
| function arc(r, p, a) { | |
| return "A" + r + "," + r + " 0 " + +(a > π) + ",1 " + p; | |
| } | |
| function curve(r0, p0, r1, p1) { | |
| return "Q 0,0 " + p1; | |
| } | |
| chord.radius = function(v) { | |
| if (!arguments.length) return radius; | |
| radius = d3_functor(v); | |
| return chord; | |
| }; | |
| chord.source = function(v) { | |
| if (!arguments.length) return source; | |
| source = d3_functor(v); | |
| return chord; | |
| }; | |
| chord.target = function(v) { | |
| if (!arguments.length) return target; | |
| target = d3_functor(v); | |
| return chord; | |
| }; | |
| chord.startAngle = function(v) { | |
| if (!arguments.length) return startAngle; | |
| startAngle = d3_functor(v); | |
| return chord; | |
| }; | |
| chord.endAngle = function(v) { | |
| if (!arguments.length) return endAngle; | |
| endAngle = d3_functor(v); | |
| return chord; | |
| }; | |
| return chord; | |
| }; | |
| function d3_svg_chordRadius(d) { | |
| return d.radius; | |
| } | |
| d3.svg.diagonal = function() { | |
| var source = d3_source, target = d3_target, projection = d3_svg_diagonalProjection; | |
| function diagonal(d, i) { | |
| var p0 = source.call(this, d, i), p3 = target.call(this, d, i), m = (p0.y + p3.y) / 2, p = [ p0, { | |
| x: p0.x, | |
| y: m | |
| }, { | |
| x: p3.x, | |
| y: m | |
| }, p3 ]; | |
| p = p.map(projection); | |
| return "M" + p[0] + "C" + p[1] + " " + p[2] + " " + p[3]; | |
| } | |
| diagonal.source = function(x) { | |
| if (!arguments.length) return source; | |
| source = d3_functor(x); | |
| return diagonal; | |
| }; | |
| diagonal.target = function(x) { | |
| if (!arguments.length) return target; | |
| target = d3_functor(x); | |
| return diagonal; | |
| }; | |
| diagonal.projection = function(x) { | |
| if (!arguments.length) return projection; | |
| projection = x; | |
| return diagonal; | |
| }; | |
| return diagonal; | |
| }; | |
| function d3_svg_diagonalProjection(d) { | |
| return [ d.x, d.y ]; | |
| } | |
| d3.svg.diagonal.radial = function() { | |
| var diagonal = d3.svg.diagonal(), projection = d3_svg_diagonalProjection, projection_ = diagonal.projection; | |
| diagonal.projection = function(x) { | |
| return arguments.length ? projection_(d3_svg_diagonalRadialProjection(projection = x)) : projection; | |
| }; | |
| return diagonal; | |
| }; | |
| function d3_svg_diagonalRadialProjection(projection) { | |
| return function() { | |
| var d = projection.apply(this, arguments), r = d[0], a = d[1] + d3_svg_arcOffset; | |
| return [ r * Math.cos(a), r * Math.sin(a) ]; | |
| }; | |
| } | |
| d3.svg.symbol = function() { | |
| var type = d3_svg_symbolType, size = d3_svg_symbolSize; | |
| function symbol(d, i) { | |
| return (d3_svg_symbols.get(type.call(this, d, i)) || d3_svg_symbolCircle)(size.call(this, d, i)); | |
| } | |
| symbol.type = function(x) { | |
| if (!arguments.length) return type; | |
| type = d3_functor(x); | |
| return symbol; | |
| }; | |
| symbol.size = function(x) { | |
| if (!arguments.length) return size; | |
| size = d3_functor(x); | |
| return symbol; | |
| }; | |
| return symbol; | |
| }; | |
| function d3_svg_symbolSize() { | |
| return 64; | |
| } | |
| function d3_svg_symbolType() { | |
| return "circle"; | |
| } | |
| function d3_svg_symbolCircle(size) { | |
| var r = Math.sqrt(size / π); | |
| return "M0," + r + "A" + r + "," + r + " 0 1,1 0," + -r + "A" + r + "," + r + " 0 1,1 0," + r + "Z"; | |
| } | |
| var d3_svg_symbols = d3.map({ | |
| circle: d3_svg_symbolCircle, | |
| cross: function(size) { | |
| var r = Math.sqrt(size / 5) / 2; | |
| return "M" + -3 * r + "," + -r + "H" + -r + "V" + -3 * r + "H" + r + "V" + -r + "H" + 3 * r + "V" + r + "H" + r + "V" + 3 * r + "H" + -r + "V" + r + "H" + -3 * r + "Z"; | |
| }, | |
| diamond: function(size) { | |
| var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)), rx = ry * d3_svg_symbolTan30; | |
| return "M0," + -ry + "L" + rx + ",0" + " 0," + ry + " " + -rx + ",0" + "Z"; | |
| }, | |
| square: function(size) { | |
| var r = Math.sqrt(size) / 2; | |
| return "M" + -r + "," + -r + "L" + r + "," + -r + " " + r + "," + r + " " + -r + "," + r + "Z"; | |
| }, | |
| "triangle-down": function(size) { | |
| var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2; | |
| return "M0," + ry + "L" + rx + "," + -ry + " " + -rx + "," + -ry + "Z"; | |
| }, | |
| "triangle-up": function(size) { | |
| var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2; | |
| return "M0," + -ry + "L" + rx + "," + ry + " " + -rx + "," + ry + "Z"; | |
| } | |
| }); | |
| d3.svg.symbolTypes = d3_svg_symbols.keys(); | |
| var d3_svg_symbolSqrt3 = Math.sqrt(3), d3_svg_symbolTan30 = Math.tan(30 * d3_radians); | |
| function d3_transition(groups, id) { | |
| d3_subclass(groups, d3_transitionPrototype); | |
| groups.id = id; | |
| return groups; | |
| } | |
| var d3_transitionPrototype = [], d3_transitionId = 0, d3_transitionInheritId, d3_transitionInherit; | |
| d3_transitionPrototype.call = d3_selectionPrototype.call; | |
| d3_transitionPrototype.empty = d3_selectionPrototype.empty; | |
| d3_transitionPrototype.node = d3_selectionPrototype.node; | |
| d3_transitionPrototype.size = d3_selectionPrototype.size; | |
| d3.transition = function(selection) { | |
| return arguments.length ? d3_transitionInheritId ? selection.transition() : selection : d3_selectionRoot.transition(); | |
| }; | |
| d3.transition.prototype = d3_transitionPrototype; | |
| d3_transitionPrototype.select = function(selector) { | |
| var id = this.id, subgroups = [], subgroup, subnode, node; | |
| selector = d3_selection_selector(selector); | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| subgroups.push(subgroup = []); | |
| for (var group = this[j], i = -1, n = group.length; ++i < n; ) { | |
| if ((node = group[i]) && (subnode = selector.call(node, node.__data__, i, j))) { | |
| if ("__data__" in node) subnode.__data__ = node.__data__; | |
| d3_transitionNode(subnode, i, id, node.__transition__[id]); | |
| subgroup.push(subnode); | |
| } else { | |
| subgroup.push(null); | |
| } | |
| } | |
| } | |
| return d3_transition(subgroups, id); | |
| }; | |
| d3_transitionPrototype.selectAll = function(selector) { | |
| var id = this.id, subgroups = [], subgroup, subnodes, node, subnode, transition; | |
| selector = d3_selection_selectorAll(selector); | |
| for (var j = -1, m = this.length; ++j < m; ) { | |
| for (var group = this[j], i = -1, n = group.length; ++i < n; ) { | |
| if (node = group[i]) { | |
| transition = node.__transition__[id]; | |
| subnodes = selector.call(node, node.__data__, i, j); | |
| subgroups.push(subgroup = []); | |
| for (var k = -1, o = subnodes.length; ++k < o; ) { | |
| if (subnode = subnodes[k]) d3_transitionNode(subnode, k, id, transition); | |
| subgroup.push(subnode); | |
| } | |
| } | |
| } | |
| } | |
| return d3_transition(subgroups, id); | |
| }; | |
| d3_transitionPrototype.filter = function(filter) { | |
| var subgroups = [], subgroup, group, node; | |
| if (typeof filter !== "function") filter = d3_selection_filter(filter); | |
| for (var j = 0, m = this.length; j < m; j++) { | |
| subgroups.push(subgroup = []); | |
| for (var group = this[j], i = 0, n = group.length; i < n; i++) { | |
| if ((node = group[i]) && filter.call(node, node.__data__, i)) { | |
| subgroup.push(node); | |
| } | |
| } | |
| } | |
| return d3_transition(subgroups, this.id); | |
| }; | |
| d3_transitionPrototype.tween = function(name, tween) { | |
| var id = this.id; | |
| if (arguments.length < 2) return this.node().__transition__[id].tween.get(name); | |
| return d3_selection_each(this, tween == null ? function(node) { | |
| node.__transition__[id].tween.remove(name); | |
| } : function(node) { | |
| node.__transition__[id].tween.set(name, tween); | |
| }); | |
| }; | |
| function d3_transition_tween(groups, name, value, tween) { | |
| var id = groups.id; | |
| return d3_selection_each(groups, typeof value === "function" ? function(node, i, j) { | |
| node.__transition__[id].tween.set(name, tween(value.call(node, node.__data__, i, j))); | |
| } : (value = tween(value), function(node) { | |
| node.__transition__[id].tween.set(name, value); | |
| })); | |
| } | |
| d3_transitionPrototype.attr = function(nameNS, value) { | |
| if (arguments.length < 2) { | |
| for (value in nameNS) this.attr(value, nameNS[value]); | |
| return this; | |
| } | |
| var interpolate = nameNS == "transform" ? d3_interpolateTransform : d3_interpolate, name = d3.ns.qualify(nameNS); | |
| function attrNull() { | |
| this.removeAttribute(name); | |
| } | |
| function attrNullNS() { | |
| this.removeAttributeNS(name.space, name.local); | |
| } | |
| function attrTween(b) { | |
| return b == null ? attrNull : (b += "", function() { | |
| var a = this.getAttribute(name), i; | |
| return a !== b && (i = interpolate(a, b), function(t) { | |
| this.setAttribute(name, i(t)); | |
| }); | |
| }); | |
| } | |
| function attrTweenNS(b) { | |
| return b == null ? attrNullNS : (b += "", function() { | |
| var a = this.getAttributeNS(name.space, name.local), i; | |
| return a !== b && (i = interpolate(a, b), function(t) { | |
| this.setAttributeNS(name.space, name.local, i(t)); | |
| }); | |
| }); | |
| } | |
| return d3_transition_tween(this, "attr." + nameNS, value, name.local ? attrTweenNS : attrTween); | |
| }; | |
| d3_transitionPrototype.attrTween = function(nameNS, tween) { | |
| var name = d3.ns.qualify(nameNS); | |
| function attrTween(d, i) { | |
| var f = tween.call(this, d, i, this.getAttribute(name)); | |
| return f && function(t) { | |
| this.setAttribute(name, f(t)); | |
| }; | |
| } | |
| function attrTweenNS(d, i) { | |
| var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local)); | |
| return f && function(t) { | |
| this.setAttributeNS(name.space, name.local, f(t)); | |
| }; | |
| } | |
| return this.tween("attr." + nameNS, name.local ? attrTweenNS : attrTween); | |
| }; | |
| d3_transitionPrototype.style = function(name, value, priority) { | |
| var n = arguments.length; | |
| if (n < 3) { | |
| if (typeof name !== "string") { | |
| if (n < 2) value = ""; | |
| for (priority in name) this.style(priority, name[priority], value); | |
| return this; | |
| } | |
| priority = ""; | |
| } | |
| function styleNull() { | |
| this.style.removeProperty(name); | |
| } | |
| function styleString(b) { | |
| return b == null ? styleNull : (b += "", function() { | |
| var a = d3_window.getComputedStyle(this, null).getPropertyValue(name), i; | |
| return a !== b && (i = d3_interpolate(a, b), function(t) { | |
| this.style.setProperty(name, i(t), priority); | |
| }); | |
| }); | |
| } | |
| return d3_transition_tween(this, "style." + name, value, styleString); | |
| }; | |
| d3_transitionPrototype.styleTween = function(name, tween, priority) { | |
| if (arguments.length < 3) priority = ""; | |
| function styleTween(d, i) { | |
| var f = tween.call(this, d, i, d3_window.getComputedStyle(this, null).getPropertyValue(name)); | |
| return f && function(t) { | |
| this.style.setProperty(name, f(t), priority); | |
| }; | |
| } | |
| return this.tween("style." + name, styleTween); | |
| }; | |
| d3_transitionPrototype.text = function(value) { | |
| return d3_transition_tween(this, "text", value, d3_transition_text); | |
| }; | |
| function d3_transition_text(b) { | |
| if (b == null) b = ""; | |
| return function() { | |
| this.textContent = b; | |
| }; | |
| } | |
| d3_transitionPrototype.remove = function() { | |
| return this.each("end.transition", function() { | |
| var p; | |
| if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this); | |
| }); | |
| }; | |
| d3_transitionPrototype.ease = function(value) { | |
| var id = this.id; | |
| if (arguments.length < 1) return this.node().__transition__[id].ease; | |
| if (typeof value !== "function") value = d3.ease.apply(d3, arguments); | |
| return d3_selection_each(this, function(node) { | |
| node.__transition__[id].ease = value; | |
| }); | |
| }; | |
| d3_transitionPrototype.delay = function(value) { | |
| var id = this.id; | |
| return d3_selection_each(this, typeof value === "function" ? function(node, i, j) { | |
| node.__transition__[id].delay = value.call(node, node.__data__, i, j) | 0; | |
| } : (value |= 0, function(node) { | |
| node.__transition__[id].delay = value; | |
| })); | |
| }; | |
| d3_transitionPrototype.duration = function(value) { | |
| var id = this.id; | |
| return d3_selection_each(this, typeof value === "function" ? function(node, i, j) { | |
| node.__transition__[id].duration = Math.max(1, value.call(node, node.__data__, i, j) | 0); | |
| } : (value = Math.max(1, value | 0), function(node) { | |
| node.__transition__[id].duration = value; | |
| })); | |
| }; | |
| d3_transitionPrototype.each = function(type, listener) { | |
| var id = this.id; | |
| if (arguments.length < 2) { | |
| var inherit = d3_transitionInherit, inheritId = d3_transitionInheritId; | |
| d3_transitionInheritId = id; | |
| d3_selection_each(this, function(node, i, j) { | |
| d3_transitionInherit = node.__transition__[id]; | |
| type.call(node, node.__data__, i, j); | |
| }); | |
| d3_transitionInherit = inherit; | |
| d3_transitionInheritId = inheritId; | |
| } else { | |
| d3_selection_each(this, function(node) { | |
| var transition = node.__transition__[id]; | |
| (transition.event || (transition.event = d3.dispatch("start", "end"))).on(type, listener); | |
| }); | |
| } | |
| return this; | |
| }; | |
| d3_transitionPrototype.transition = function() { | |
| var id0 = this.id, id1 = ++d3_transitionId, subgroups = [], subgroup, group, node, transition; | |
| for (var j = 0, m = this.length; j < m; j++) { | |
| subgroups.push(subgroup = []); | |
| for (var group = this[j], i = 0, n = group.length; i < n; i++) { | |
| if (node = group[i]) { | |
| transition = Object.create(node.__transition__[id0]); | |
| transition.delay += transition.duration; | |
| d3_transitionNode(node, i, id1, transition); | |
| } | |
| subgroup.push(node); | |
| } | |
| } | |
| return d3_transition(subgroups, id1); | |
| }; | |
| function d3_transitionNode(node, i, id, inherit) { | |
| var lock = node.__transition__ || (node.__transition__ = { | |
| active: 0, | |
| count: 0 | |
| }), transition = lock[id]; | |
| if (!transition) { | |
| var time = inherit.time; | |
| transition = lock[id] = { | |
| tween: new d3_Map(), | |
| time: time, | |
| ease: inherit.ease, | |
| delay: inherit.delay, | |
| duration: inherit.duration | |
| }; | |
| ++lock.count; | |
| d3.timer(function(elapsed) { | |
| var d = node.__data__, ease = transition.ease, delay = transition.delay, duration = transition.duration, tweened = []; | |
| if (delay <= elapsed) return start(elapsed); | |
| d3_timer_replace(start, delay, time); | |
| function start(elapsed) { | |
| if (lock.active > id) return stop(); | |
| lock.active = id; | |
| transition.event && transition.event.start.call(node, d, i); | |
| transition.tween.forEach(function(key, value) { | |
| if (value = value.call(node, d, i)) { | |
| tweened.push(value); | |
| } | |
| }); | |
| if (tick(elapsed)) return 1; | |
| d3_timer_replace(tick, 0, time); | |
| } | |
| function tick(elapsed) { | |
| if (lock.active !== id) return stop(); | |
| var t = (elapsed - delay) / duration, e = ease(t), n = tweened.length; | |
| while (n > 0) { | |
| tweened[--n].call(node, e); | |
| } | |
| if (t >= 1) { | |
| stop(); | |
| transition.event && transition.event.end.call(node, d, i); | |
| return 1; | |
| } | |
| } | |
| function stop() { | |
| if (--lock.count) delete lock[id]; else delete node.__transition__; | |
| return 1; | |
| } | |
| }, 0, time); | |
| } | |
| } | |
| d3.svg.axis = function() { | |
| var scale = d3.scale.linear(), orient = d3_svg_axisDefaultOrient, tickMajorSize = 6, tickMinorSize = 6, tickEndSize = 6, tickPadding = 3, tickArguments_ = [ 10 ], tickValues = null, tickFormat_, tickSubdivide = 0; | |
| function axis(g) { | |
| g.each(function() { | |
| var g = d3.select(this); | |
| var ticks = tickValues == null ? scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain() : tickValues, tickFormat = tickFormat_ == null ? scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String : tickFormat_; | |
| var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide), subtick = g.selectAll(".tick.minor").data(subticks, String), subtickEnter = subtick.enter().insert("line", ".tick").attr("class", "tick minor").style("opacity", 1e-6), subtickExit = d3.transition(subtick.exit()).style("opacity", 1e-6).remove(), subtickUpdate = d3.transition(subtick).style("opacity", 1); | |
| var tick = g.selectAll(".tick.major").data(ticks, String), tickEnter = tick.enter().insert("g", ".domain").attr("class", "tick major").style("opacity", 1e-6), tickExit = d3.transition(tick.exit()).style("opacity", 1e-6).remove(), tickUpdate = d3.transition(tick).style("opacity", 1), tickTransform; | |
| var range = d3_scaleRange(scale), path = g.selectAll(".domain").data([ 0 ]), pathUpdate = (path.enter().append("path").attr("class", "domain"), | |
| d3.transition(path)); | |
| var scale1 = scale.copy(), scale0 = this.__chart__ || scale1; | |
| this.__chart__ = scale1; | |
| tickEnter.append("line"); | |
| tickEnter.append("text"); | |
| var lineEnter = tickEnter.select("line"), lineUpdate = tickUpdate.select("line"), text = tick.select("text").text(tickFormat), textEnter = tickEnter.select("text"), textUpdate = tickUpdate.select("text"); | |
| switch (orient) { | |
| case "bottom": | |
| { | |
| tickTransform = d3_svg_axisX; | |
| subtickEnter.attr("y2", tickMinorSize); | |
| subtickUpdate.attr("x2", 0).attr("y2", tickMinorSize); | |
| lineEnter.attr("y2", tickMajorSize); | |
| textEnter.attr("y", Math.max(tickMajorSize, 0) + tickPadding); | |
| lineUpdate.attr("x2", 0).attr("y2", tickMajorSize); | |
| textUpdate.attr("x", 0).attr("y", Math.max(tickMajorSize, 0) + tickPadding); | |
| text.attr("dy", ".71em").style("text-anchor", "middle"); | |
| pathUpdate.attr("d", "M" + range[0] + "," + tickEndSize + "V0H" + range[1] + "V" + tickEndSize); | |
| break; | |
| } | |
| case "top": | |
| { | |
| tickTransform = d3_svg_axisX; | |
| subtickEnter.attr("y2", -tickMinorSize); | |
| subtickUpdate.attr("x2", 0).attr("y2", -tickMinorSize); | |
| lineEnter.attr("y2", -tickMajorSize); | |
| textEnter.attr("y", -(Math.max(tickMajorSize, 0) + tickPadding)); | |
| lineUpdate.attr("x2", 0).attr("y2", -tickMajorSize); | |
| textUpdate.attr("x", 0).attr("y", -(Math.max(tickMajorSize, 0) + tickPadding)); | |
| text.attr("dy", "0em").style("text-anchor", "middle"); | |
| pathUpdate.attr("d", "M" + range[0] + "," + -tickEndSize + "V0H" + range[1] + "V" + -tickEndSize); | |
| break; | |
| } | |
| case "left": | |
| { | |
| tickTransform = d3_svg_axisY; | |
| subtickEnter.attr("x2", -tickMinorSize); | |
| subtickUpdate.attr("x2", -tickMinorSize).attr("y2", 0); | |
| lineEnter.attr("x2", -tickMajorSize); | |
| textEnter.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)); | |
| lineUpdate.attr("x2", -tickMajorSize).attr("y2", 0); | |
| textUpdate.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("y", 0); | |
| text.attr("dy", ".32em").style("text-anchor", "end"); | |
| pathUpdate.attr("d", "M" + -tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + -tickEndSize); | |
| break; | |
| } | |
| case "right": | |
| { | |
| tickTransform = d3_svg_axisY; | |
| subtickEnter.attr("x2", tickMinorSize); | |
| subtickUpdate.attr("x2", tickMinorSize).attr("y2", 0); | |
| lineEnter.attr("x2", tickMajorSize); | |
| textEnter.attr("x", Math.max(tickMajorSize, 0) + tickPadding); | |
| lineUpdate.attr("x2", tickMajorSize).attr("y2", 0); | |
| textUpdate.attr("x", Math.max(tickMajorSize, 0) + tickPadding).attr("y", 0); | |
| text.attr("dy", ".32em").style("text-anchor", "start"); | |
| pathUpdate.attr("d", "M" + tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + tickEndSize); | |
| break; | |
| } | |
| } | |
| if (scale.rangeBand) { | |
| var dx = scale1.rangeBand() / 2, x = function(d) { | |
| return scale1(d) + dx; | |
| }; | |
| tickEnter.call(tickTransform, x); | |
| tickUpdate.call(tickTransform, x); | |
| } else { | |
| tickEnter.call(tickTransform, scale0); | |
| tickUpdate.call(tickTransform, scale1); | |
| tickExit.call(tickTransform, scale1); | |
| subtickEnter.call(tickTransform, scale0); | |
| subtickUpdate.call(tickTransform, scale1); | |
| subtickExit.call(tickTransform, scale1); | |
| } | |
| }); | |
| } | |
| axis.scale = function(x) { | |
| if (!arguments.length) return scale; | |
| scale = x; | |
| return axis; | |
| }; | |
| axis.orient = function(x) { | |
| if (!arguments.length) return orient; | |
| orient = x in d3_svg_axisOrients ? x + "" : d3_svg_axisDefaultOrient; | |
| return axis; | |
| }; | |
| axis.ticks = function() { | |
| if (!arguments.length) return tickArguments_; | |
| tickArguments_ = arguments; | |
| return axis; | |
| }; | |
| axis.tickValues = function(x) { | |
| if (!arguments.length) return tickValues; | |
| tickValues = x; | |
| return axis; | |
| }; | |
| axis.tickFormat = function(x) { | |
| if (!arguments.length) return tickFormat_; | |
| tickFormat_ = x; | |
| return axis; | |
| }; | |
| axis.tickSize = function(x, y) { | |
| if (!arguments.length) return tickMajorSize; | |
| var n = arguments.length - 1; | |
| tickMajorSize = +x; | |
| tickMinorSize = n > 1 ? +y : tickMajorSize; | |
| tickEndSize = n > 0 ? +arguments[n] : tickMajorSize; | |
| return axis; | |
| }; | |
| axis.tickPadding = function(x) { | |
| if (!arguments.length) return tickPadding; | |
| tickPadding = +x; | |
| return axis; | |
| }; | |
| axis.tickSubdivide = function(x) { | |
| if (!arguments.length) return tickSubdivide; | |
| tickSubdivide = +x; | |
| return axis; | |
| }; | |
| return axis; | |
| }; | |
| var d3_svg_axisDefaultOrient = "bottom", d3_svg_axisOrients = { | |
| top: 1, | |
| right: 1, | |
| bottom: 1, | |
| left: 1 | |
| }; | |
| function d3_svg_axisX(selection, x) { | |
| selection.attr("transform", function(d) { | |
| return "translate(" + x(d) + ",0)"; | |
| }); | |
| } | |
| function d3_svg_axisY(selection, y) { | |
| selection.attr("transform", function(d) { | |
| return "translate(0," + y(d) + ")"; | |
| }); | |
| } | |
| function d3_svg_axisSubdivide(scale, ticks, m) { | |
| subticks = []; | |
| if (m && ticks.length > 1) { | |
| var extent = d3_scaleExtent(scale.domain()), subticks, i = -1, n = ticks.length, d = (ticks[1] - ticks[0]) / ++m, j, v; | |
| while (++i < n) { | |
| for (j = m; --j > 0; ) { | |
| if ((v = +ticks[i] - j * d) >= extent[0]) { | |
| subticks.push(v); | |
| } | |
| } | |
| } | |
| for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1]; ) { | |
| subticks.push(v); | |
| } | |
| } | |
| return subticks; | |
| } | |
| d3.svg.brush = function() { | |
| var event = d3_eventDispatch(brush, "brushstart", "brush", "brushend"), x = null, y = null, resizes = d3_svg_brushResizes[0], extent = [ [ 0, 0 ], [ 0, 0 ] ], clamp = [ true, true ], extentDomain; | |
| function brush(g) { | |
| g.each(function() { | |
| var g = d3.select(this), bg = g.selectAll(".background").data([ 0 ]), fg = g.selectAll(".extent").data([ 0 ]), tz = g.selectAll(".resize").data(resizes, String), e; | |
| g.style("pointer-events", "all").on("mousedown.brush", brushstart).on("touchstart.brush", brushstart); | |
| bg.enter().append("rect").attr("class", "background").style("visibility", "hidden").style("cursor", "crosshair"); | |
| fg.enter().append("rect").attr("class", "extent").style("cursor", "move"); | |
| tz.enter().append("g").attr("class", function(d) { | |
| return "resize " + d; | |
| }).style("cursor", function(d) { | |
| return d3_svg_brushCursor[d]; | |
| }).append("rect").attr("x", function(d) { | |
| return /[ew]$/.test(d) ? -3 : null; | |
| }).attr("y", function(d) { | |
| return /^[ns]/.test(d) ? -3 : null; | |
| }).attr("width", 6).attr("height", 6).style("visibility", "hidden"); | |
| tz.style("display", brush.empty() ? "none" : null); | |
| tz.exit().remove(); | |
| if (x) { | |
| e = d3_scaleRange(x); | |
| bg.attr("x", e[0]).attr("width", e[1] - e[0]); | |
| redrawX(g); | |
| } | |
| if (y) { | |
| e = d3_scaleRange(y); | |
| bg.attr("y", e[0]).attr("height", e[1] - e[0]); | |
| redrawY(g); | |
| } | |
| redraw(g); | |
| }); | |
| } | |
| function redraw(g) { | |
| g.selectAll(".resize").attr("transform", function(d) { | |
| return "translate(" + extent[+/e$/.test(d)][0] + "," + extent[+/^s/.test(d)][1] + ")"; | |
| }); | |
| } | |
| function redrawX(g) { | |
| g.select(".extent").attr("x", extent[0][0]); | |
| g.selectAll(".extent,.n>rect,.s>rect").attr("width", extent[1][0] - extent[0][0]); | |
| } | |
| function redrawY(g) { | |
| g.select(".extent").attr("y", extent[0][1]); | |
| g.selectAll(".extent,.e>rect,.w>rect").attr("height", extent[1][1] - extent[0][1]); | |
| } | |
| function brushstart() { | |
| var target = this, eventTarget = d3.select(d3.event.target), event_ = event.of(target, arguments), g = d3.select(target), resizing = eventTarget.datum(), resizingX = !/^(n|s)$/.test(resizing) && x, resizingY = !/^(e|w)$/.test(resizing) && y, dragging = eventTarget.classed("extent"), dragRestore = d3_event_dragSuppress(), center, origin = mouse(), offset; | |
| var w = d3.select(d3_window).on("keydown.brush", keydown).on("keyup.brush", keyup); | |
| if (d3.event.changedTouches) { | |
| w.on("touchmove.brush", brushmove).on("touchend.brush", brushend); | |
| } else { | |
| w.on("mousemove.brush", brushmove).on("mouseup.brush", brushend); | |
| } | |
| if (dragging) { | |
| origin[0] = extent[0][0] - origin[0]; | |
| origin[1] = extent[0][1] - origin[1]; | |
| } else if (resizing) { | |
| var ex = +/w$/.test(resizing), ey = +/^n/.test(resizing); | |
| offset = [ extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1] ]; | |
| origin[0] = extent[ex][0]; | |
| origin[1] = extent[ey][1]; | |
| } else if (d3.event.altKey) center = origin.slice(); | |
| g.style("pointer-events", "none").selectAll(".resize").style("display", null); | |
| d3.select("body").style("cursor", eventTarget.style("cursor")); | |
| event_({ | |
| type: "brushstart" | |
| }); | |
| brushmove(); | |
| function mouse() { | |
| var touches = d3.event.changedTouches; | |
| return touches ? d3.touches(target, touches)[0] : d3.mouse(target); | |
| } | |
| function keydown() { | |
| if (d3.event.keyCode == 32) { | |
| if (!dragging) { | |
| center = null; | |
| origin[0] -= extent[1][0]; | |
| origin[1] -= extent[1][1]; | |
| dragging = 2; | |
| } | |
| d3_eventPreventDefault(); | |
| } | |
| } | |
| function keyup() { | |
| if (d3.event.keyCode == 32 && dragging == 2) { | |
| origin[0] += extent[1][0]; | |
| origin[1] += extent[1][1]; | |
| dragging = 0; | |
| d3_eventPreventDefault(); | |
| } | |
| } | |
| function brushmove() { | |
| var point = mouse(), moved = false; | |
| if (offset) { | |
| point[0] += offset[0]; | |
| point[1] += offset[1]; | |
| } | |
| if (!dragging) { | |
| if (d3.event.altKey) { | |
| if (!center) center = [ (extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2 ]; | |
| origin[0] = extent[+(point[0] < center[0])][0]; | |
| origin[1] = extent[+(point[1] < center[1])][1]; | |
| } else center = null; | |
| } | |
| if (resizingX && move1(point, x, 0)) { | |
| redrawX(g); | |
| moved = true; | |
| } | |
| if (resizingY && move1(point, y, 1)) { | |
| redrawY(g); | |
| moved = true; | |
| } | |
| if (moved) { | |
| redraw(g); | |
| event_({ | |
| type: "brush", | |
| mode: dragging ? "move" : "resize" | |
| }); | |
| } | |
| } | |
| function move1(point, scale, i) { | |
| var range = d3_scaleRange(scale), r0 = range[0], r1 = range[1], position = origin[i], size = extent[1][i] - extent[0][i], min, max; | |
| if (dragging) { | |
| r0 -= position; | |
| r1 -= size + position; | |
| } | |
| min = clamp[i] ? Math.max(r0, Math.min(r1, point[i])) : point[i]; | |
| if (dragging) { | |
| max = (min += position) + size; | |
| } else { | |
| if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min)); | |
| if (position < min) { | |
| max = min; | |
| min = position; | |
| } else { | |
| max = position; | |
| } | |
| } | |
| if (extent[0][i] !== min || extent[1][i] !== max) { | |
| extentDomain = null; | |
| extent[0][i] = min; | |
| extent[1][i] = max; | |
| return true; | |
| } | |
| } | |
| function brushend() { | |
| brushmove(); | |
| g.style("pointer-events", "all").selectAll(".resize").style("display", brush.empty() ? "none" : null); | |
| d3.select("body").style("cursor", null); | |
| w.on("mousemove.brush", null).on("mouseup.brush", null).on("touchmove.brush", null).on("touchend.brush", null).on("keydown.brush", null).on("keyup.brush", null); | |
| dragRestore(); | |
| event_({ | |
| type: "brushend" | |
| }); | |
| } | |
| } | |
| brush.x = function(z) { | |
| if (!arguments.length) return x; | |
| x = z; | |
| resizes = d3_svg_brushResizes[!x << 1 | !y]; | |
| return brush; | |
| }; | |
| brush.y = function(z) { | |
| if (!arguments.length) return y; | |
| y = z; | |
| resizes = d3_svg_brushResizes[!x << 1 | !y]; | |
| return brush; | |
| }; | |
| brush.clamp = function(z) { | |
| if (!arguments.length) return x && y ? clamp : x || y ? clamp[+!x] : null; | |
| if (x && y) clamp = [ !!z[0], !!z[1] ]; else if (x || y) clamp[+!x] = !!z; | |
| return brush; | |
| }; | |
| brush.extent = function(z) { | |
| var x0, x1, y0, y1, t; | |
| if (!arguments.length) { | |
| z = extentDomain || extent; | |
| if (x) { | |
| x0 = z[0][0], x1 = z[1][0]; | |
| if (!extentDomain) { | |
| x0 = extent[0][0], x1 = extent[1][0]; | |
| if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1); | |
| if (x1 < x0) t = x0, x0 = x1, x1 = t; | |
| } | |
| } | |
| if (y) { | |
| y0 = z[0][1], y1 = z[1][1]; | |
| if (!extentDomain) { | |
| y0 = extent[0][1], y1 = extent[1][1]; | |
| if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1); | |
| if (y1 < y0) t = y0, y0 = y1, y1 = t; | |
| } | |
| } | |
| return x && y ? [ [ x0, y0 ], [ x1, y1 ] ] : x ? [ x0, x1 ] : y && [ y0, y1 ]; | |
| } | |
| extentDomain = [ [ 0, 0 ], [ 0, 0 ] ]; | |
| if (x) { | |
| x0 = z[0], x1 = z[1]; | |
| if (y) x0 = x0[0], x1 = x1[0]; | |
| extentDomain[0][0] = x0, extentDomain[1][0] = x1; | |
| if (x.invert) x0 = x(x0), x1 = x(x1); | |
| if (x1 < x0) t = x0, x0 = x1, x1 = t; | |
| extent[0][0] = x0 | 0, extent[1][0] = x1 | 0; | |
| } | |
| if (y) { | |
| y0 = z[0], y1 = z[1]; | |
| if (x) y0 = y0[1], y1 = y1[1]; | |
| extentDomain[0][1] = y0, extentDomain[1][1] = y1; | |
| if (y.invert) y0 = y(y0), y1 = y(y1); | |
| if (y1 < y0) t = y0, y0 = y1, y1 = t; | |
| extent[0][1] = y0 | 0, extent[1][1] = y1 | 0; | |
| } | |
| return brush; | |
| }; | |
| brush.clear = function() { | |
| extentDomain = null; | |
| extent[0][0] = extent[0][1] = extent[1][0] = extent[1][1] = 0; | |
| return brush; | |
| }; | |
| brush.empty = function() { | |
| return x && extent[0][0] === extent[1][0] || y && extent[0][1] === extent[1][1]; | |
| }; | |
| return d3.rebind(brush, event, "on"); | |
| }; | |
| var d3_svg_brushCursor = { | |
| n: "ns-resize", | |
| e: "ew-resize", | |
| s: "ns-resize", | |
| w: "ew-resize", | |
| nw: "nwse-resize", | |
| ne: "nesw-resize", | |
| se: "nwse-resize", | |
| sw: "nesw-resize" | |
| }; | |
| var d3_svg_brushResizes = [ [ "n", "e", "s", "w", "nw", "ne", "se", "sw" ], [ "e", "w" ], [ "n", "s" ], [] ]; | |
| d3.time = {}; | |
| var d3_time = Date, d3_time_daySymbols = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]; | |
| function d3_time_utc() { | |
| this._ = new Date(arguments.length > 1 ? Date.UTC.apply(this, arguments) : arguments[0]); | |
| } | |
| d3_time_utc.prototype = { | |
| getDate: function() { | |
| return this._.getUTCDate(); | |
| }, | |
| getDay: function() { | |
| return this._.getUTCDay(); | |
| }, | |
| getFullYear: function() { | |
| return this._.getUTCFullYear(); | |
| }, | |
| getHours: function() { | |
| return this._.getUTCHours(); | |
| }, | |
| getMilliseconds: function() { | |
| return this._.getUTCMilliseconds(); | |
| }, | |
| getMinutes: function() { | |
| return this._.getUTCMinutes(); | |
| }, | |
| getMonth: function() { | |
| return this._.getUTCMonth(); | |
| }, | |
| getSeconds: function() { | |
| return this._.getUTCSeconds(); | |
| }, | |
| getTime: function() { | |
| return this._.getTime(); | |
| }, | |
| getTimezoneOffset: function() { | |
| return 0; | |
| }, | |
| valueOf: function() { | |
| return this._.valueOf(); | |
| }, | |
| setDate: function() { | |
| d3_time_prototype.setUTCDate.apply(this._, arguments); | |
| }, | |
| setDay: function() { | |
| d3_time_prototype.setUTCDay.apply(this._, arguments); | |
| }, | |
| setFullYear: function() { | |
| d3_time_prototype.setUTCFullYear.apply(this._, arguments); | |
| }, | |
| setHours: function() { | |
| d3_time_prototype.setUTCHours.apply(this._, arguments); | |
| }, | |
| setMilliseconds: function() { | |
| d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); | |
| }, | |
| setMinutes: function() { | |
| d3_time_prototype.setUTCMinutes.apply(this._, arguments); | |
| }, | |
| setMonth: function() { | |
| d3_time_prototype.setUTCMonth.apply(this._, arguments); | |
| }, | |
| setSeconds: function() { | |
| d3_time_prototype.setUTCSeconds.apply(this._, arguments); | |
| }, | |
| setTime: function() { | |
| d3_time_prototype.setTime.apply(this._, arguments); | |
| } | |
| }; | |
| var d3_time_prototype = Date.prototype; | |
| var d3_time_formatDateTime = "%a %b %e %X %Y", d3_time_formatDate = "%m/%d/%Y", d3_time_formatTime = "%H:%M:%S"; | |
| var d3_time_days = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ], d3_time_dayAbbreviations = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ], d3_time_months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ], d3_time_monthAbbreviations = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]; | |
| function d3_time_interval(local, step, number) { | |
| function round(date) { | |
| var d0 = local(date), d1 = offset(d0, 1); | |
| return date - d0 < d1 - date ? d0 : d1; | |
| } | |
| function ceil(date) { | |
| step(date = local(new d3_time(date - 1)), 1); | |
| return date; | |
| } | |
| function offset(date, k) { | |
| step(date = new d3_time(+date), k); | |
| return date; | |
| } | |
| function range(t0, t1, dt) { | |
| var time = ceil(t0), times = []; | |
| if (dt > 1) { | |
| while (time < t1) { | |
| if (!(number(time) % dt)) times.push(new Date(+time)); | |
| step(time, 1); | |
| } | |
| } else { | |
| while (time < t1) times.push(new Date(+time)), step(time, 1); | |
| } | |
| return times; | |
| } | |
| function range_utc(t0, t1, dt) { | |
| try { | |
| d3_time = d3_time_utc; | |
| var utc = new d3_time_utc(); | |
| utc._ = t0; | |
| return range(utc, t1, dt); | |
| } finally { | |
| d3_time = Date; | |
| } | |
| } | |
| local.floor = local; | |
| local.round = round; | |
| local.ceil = ceil; | |
| local.offset = offset; | |
| local.range = range; | |
| var utc = local.utc = d3_time_interval_utc(local); | |
| utc.floor = utc; | |
| utc.round = d3_time_interval_utc(round); | |
| utc.ceil = d3_time_interval_utc(ceil); | |
| utc.offset = d3_time_interval_utc(offset); | |
| utc.range = range_utc; | |
| return local; | |
| } | |
| function d3_time_interval_utc(method) { | |
| return function(date, k) { | |
| try { | |
| d3_time = d3_time_utc; | |
| var utc = new d3_time_utc(); | |
| utc._ = date; | |
| return method(utc, k)._; | |
| } finally { | |
| d3_time = Date; | |
| } | |
| }; | |
| } | |
| d3.time.year = d3_time_interval(function(date) { | |
| date = d3.time.day(date); | |
| date.setMonth(0, 1); | |
| return date; | |
| }, function(date, offset) { | |
| date.setFullYear(date.getFullYear() + offset); | |
| }, function(date) { | |
| return date.getFullYear(); | |
| }); | |
| d3.time.years = d3.time.year.range; | |
| d3.time.years.utc = d3.time.year.utc.range; | |
| d3.time.day = d3_time_interval(function(date) { | |
| var day = new d3_time(2e3, 0); | |
| day.setFullYear(date.getFullYear(), date.getMonth(), date.getDate()); | |
| return day; | |
| }, function(date, offset) { | |
| date.setDate(date.getDate() + offset); | |
| }, function(date) { | |
| return date.getDate() - 1; | |
| }); | |
| d3.time.days = d3.time.day.range; | |
| d3.time.days.utc = d3.time.day.utc.range; | |
| d3.time.dayOfYear = function(date) { | |
| var year = d3.time.year(date); | |
| return Math.floor((date - year - (date.getTimezoneOffset() - year.getTimezoneOffset()) * 6e4) / 864e5); | |
| }; | |
| d3_time_daySymbols.forEach(function(day, i) { | |
| day = day.toLowerCase(); | |
| i = 7 - i; | |
| var interval = d3.time[day] = d3_time_interval(function(date) { | |
| (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7); | |
| return date; | |
| }, function(date, offset) { | |
| date.setDate(date.getDate() + Math.floor(offset) * 7); | |
| }, function(date) { | |
| var day = d3.time.year(date).getDay(); | |
| return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i); | |
| }); | |
| d3.time[day + "s"] = interval.range; | |
| d3.time[day + "s"].utc = interval.utc.range; | |
| d3.time[day + "OfYear"] = function(date) { | |
| var day = d3.time.year(date).getDay(); | |
| return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7); | |
| }; | |
| }); | |
| d3.time.week = d3.time.sunday; | |
| d3.time.weeks = d3.time.sunday.range; | |
| d3.time.weeks.utc = d3.time.sunday.utc.range; | |
| d3.time.weekOfYear = d3.time.sundayOfYear; | |
| d3.time.format = function(template) { | |
| var n = template.length; | |
| function format(date) { | |
| var string = [], i = -1, j = 0, c, p, f; | |
| while (++i < n) { | |
| if (template.charCodeAt(i) === 37) { | |
| string.push(template.substring(j, i)); | |
| if ((p = d3_time_formatPads[c = template.charAt(++i)]) != null) c = template.charAt(++i); | |
| if (f = d3_time_formats[c]) c = f(date, p == null ? c === "e" ? " " : "0" : p); | |
| string.push(c); | |
| j = i + 1; | |
| } | |
| } | |
| string.push(template.substring(j, i)); | |
| return string.join(""); | |
| } | |
| format.parse = function(string) { | |
| var d = { | |
| y: 1900, | |
| m: 0, | |
| d: 1, | |
| H: 0, | |
| M: 0, | |
| S: 0, | |
| L: 0 | |
| }, i = d3_time_parse(d, template, string, 0); | |
| if (i != string.length) return null; | |
| if ("p" in d) d.H = d.H % 12 + d.p * 12; | |
| var date = new d3_time(); | |
| if ("j" in d) date.setFullYear(d.y, 0, d.j); else if ("w" in d && ("W" in d || "U" in d)) { | |
| date.setFullYear(d.y, 0, 1); | |
| date.setFullYear(d.y, 0, "W" in d ? (d.w + 6) % 7 + d.W * 7 - (date.getDay() + 5) % 7 : d.w + d.U * 7 - (date.getDay() + 6) % 7); | |
| } else date.setFullYear(d.y, d.m, d.d); | |
| date.setHours(d.H, d.M, d.S, d.L); | |
| return date; | |
| }; | |
| format.toString = function() { | |
| return template; | |
| }; | |
| return format; | |
| }; | |
| function d3_time_parse(date, template, string, j) { | |
| var c, p, i = 0, n = template.length, m = string.length; | |
| while (i < n) { | |
| if (j >= m) return -1; | |
| c = template.charCodeAt(i++); | |
| if (c === 37) { | |
| p = d3_time_parsers[template.charAt(i++)]; | |
| if (!p || (j = p(date, string, j)) < 0) return -1; | |
| } else if (c != string.charCodeAt(j++)) { | |
| return -1; | |
| } | |
| } | |
| return j; | |
| } | |
| function d3_time_formatRe(names) { | |
| return new RegExp("^(?:" + names.map(d3.requote).join("|") + ")", "i"); | |
| } | |
| function d3_time_formatLookup(names) { | |
| var map = new d3_Map(), i = -1, n = names.length; | |
| while (++i < n) map.set(names[i].toLowerCase(), i); | |
| return map; | |
| } | |
| function d3_time_formatPad(value, fill, width) { | |
| var sign = value < 0 ? "-" : "", string = (sign ? -value : value) + "", length = string.length; | |
| return sign + (length < width ? new Array(width - length + 1).join(fill) + string : string); | |
| } | |
| var d3_time_dayRe = d3_time_formatRe(d3_time_days), d3_time_dayLookup = d3_time_formatLookup(d3_time_days), d3_time_dayAbbrevRe = d3_time_formatRe(d3_time_dayAbbreviations), d3_time_dayAbbrevLookup = d3_time_formatLookup(d3_time_dayAbbreviations), d3_time_monthRe = d3_time_formatRe(d3_time_months), d3_time_monthLookup = d3_time_formatLookup(d3_time_months), d3_time_monthAbbrevRe = d3_time_formatRe(d3_time_monthAbbreviations), d3_time_monthAbbrevLookup = d3_time_formatLookup(d3_time_monthAbbreviations), d3_time_percentRe = /^%/; | |
| var d3_time_formatPads = { | |
| "-": "", | |
| _: " ", | |
| "0": "0" | |
| }; | |
| var d3_time_formats = { | |
| a: function(d) { | |
| return d3_time_dayAbbreviations[d.getDay()]; | |
| }, | |
| A: function(d) { | |
| return d3_time_days[d.getDay()]; | |
| }, | |
| b: function(d) { | |
| return d3_time_monthAbbreviations[d.getMonth()]; | |
| }, | |
| B: function(d) { | |
| return d3_time_months[d.getMonth()]; | |
| }, | |
| c: d3.time.format(d3_time_formatDateTime), | |
| d: function(d, p) { | |
| return d3_time_formatPad(d.getDate(), p, 2); | |
| }, | |
| e: function(d, p) { | |
| return d3_time_formatPad(d.getDate(), p, 2); | |
| }, | |
| H: function(d, p) { | |
| return d3_time_formatPad(d.getHours(), p, 2); | |
| }, | |
| I: function(d, p) { | |
| return d3_time_formatPad(d.getHours() % 12 || 12, p, 2); | |
| }, | |
| j: function(d, p) { | |
| return d3_time_formatPad(1 + d3.time.dayOfYear(d), p, 3); | |
| }, | |
| L: function(d, p) { | |
| return d3_time_formatPad(d.getMilliseconds(), p, 3); | |
| }, | |
| m: function(d, p) { | |
| return d3_time_formatPad(d.getMonth() + 1, p, 2); | |
| }, | |
| M: function(d, p) { | |
| return d3_time_formatPad(d.getMinutes(), p, 2); | |
| }, | |
| p: function(d) { | |
| return d.getHours() >= 12 ? "PM" : "AM"; | |
| }, | |
| S: function(d, p) { | |
| return d3_time_formatPad(d.getSeconds(), p, 2); | |
| }, | |
| U: function(d, p) { | |
| return d3_time_formatPad(d3.time.sundayOfYear(d), p, 2); | |
| }, | |
| w: function(d) { | |
| return d.getDay(); | |
| }, | |
| W: function(d, p) { | |
| return d3_time_formatPad(d3.time.mondayOfYear(d), p, 2); | |
| }, | |
| x: d3.time.format(d3_time_formatDate), | |
| X: d3.time.format(d3_time_formatTime), | |
| y: function(d, p) { | |
| return d3_time_formatPad(d.getFullYear() % 100, p, 2); | |
| }, | |
| Y: function(d, p) { | |
| return d3_time_formatPad(d.getFullYear() % 1e4, p, 4); | |
| }, | |
| Z: d3_time_zone, | |
| "%": function() { | |
| return "%"; | |
| } | |
| }; | |
| var d3_time_parsers = { | |
| a: d3_time_parseWeekdayAbbrev, | |
| A: d3_time_parseWeekday, | |
| b: d3_time_parseMonthAbbrev, | |
| B: d3_time_parseMonth, | |
| c: d3_time_parseLocaleFull, | |
| d: d3_time_parseDay, | |
| e: d3_time_parseDay, | |
| H: d3_time_parseHour24, | |
| I: d3_time_parseHour24, | |
| j: d3_time_parseDayOfYear, | |
| L: d3_time_parseMilliseconds, | |
| m: d3_time_parseMonthNumber, | |
| M: d3_time_parseMinutes, | |
| p: d3_time_parseAmPm, | |
| S: d3_time_parseSeconds, | |
| U: d3_time_parseWeekNumberSunday, | |
| w: d3_time_parseWeekdayNumber, | |
| W: d3_time_parseWeekNumberMonday, | |
| x: d3_time_parseLocaleDate, | |
| X: d3_time_parseLocaleTime, | |
| y: d3_time_parseYear, | |
| Y: d3_time_parseFullYear, | |
| "%": d3_time_parseLiteralPercent | |
| }; | |
| function d3_time_parseWeekdayAbbrev(date, string, i) { | |
| d3_time_dayAbbrevRe.lastIndex = 0; | |
| var n = d3_time_dayAbbrevRe.exec(string.substring(i)); | |
| return n ? (date.w = d3_time_dayAbbrevLookup.get(n[0].toLowerCase()), i + n[0].length) : -1; | |
| } | |
| function d3_time_parseWeekday(date, string, i) { | |
| d3_time_dayRe.lastIndex = 0; | |
| var n = d3_time_dayRe.exec(string.substring(i)); | |
| return n ? (date.w = d3_time_dayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1; | |
| } | |
| function d3_time_parseWeekdayNumber(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 1)); | |
| return n ? (date.w = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseWeekNumberSunday(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i)); | |
| return n ? (date.U = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseWeekNumberMonday(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i)); | |
| return n ? (date.W = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseMonthAbbrev(date, string, i) { | |
| d3_time_monthAbbrevRe.lastIndex = 0; | |
| var n = d3_time_monthAbbrevRe.exec(string.substring(i)); | |
| return n ? (date.m = d3_time_monthAbbrevLookup.get(n[0].toLowerCase()), i + n[0].length) : -1; | |
| } | |
| function d3_time_parseMonth(date, string, i) { | |
| d3_time_monthRe.lastIndex = 0; | |
| var n = d3_time_monthRe.exec(string.substring(i)); | |
| return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1; | |
| } | |
| function d3_time_parseLocaleFull(date, string, i) { | |
| return d3_time_parse(date, d3_time_formats.c.toString(), string, i); | |
| } | |
| function d3_time_parseLocaleDate(date, string, i) { | |
| return d3_time_parse(date, d3_time_formats.x.toString(), string, i); | |
| } | |
| function d3_time_parseLocaleTime(date, string, i) { | |
| return d3_time_parse(date, d3_time_formats.X.toString(), string, i); | |
| } | |
| function d3_time_parseFullYear(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 4)); | |
| return n ? (date.y = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseYear(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.y = d3_time_expandYear(+n[0]), i + n[0].length) : -1; | |
| } | |
| function d3_time_expandYear(d) { | |
| return d + (d > 68 ? 1900 : 2e3); | |
| } | |
| function d3_time_parseMonthNumber(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.m = n[0] - 1, i + n[0].length) : -1; | |
| } | |
| function d3_time_parseDay(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.d = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseDayOfYear(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 3)); | |
| return n ? (date.j = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseHour24(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.H = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseMinutes(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.M = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseSeconds(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 2)); | |
| return n ? (date.S = +n[0], i + n[0].length) : -1; | |
| } | |
| function d3_time_parseMilliseconds(date, string, i) { | |
| d3_time_numberRe.lastIndex = 0; | |
| var n = d3_time_numberRe.exec(string.substring(i, i + 3)); | |
| return n ? (date.L = +n[0], i + n[0].length) : -1; | |
| } | |
| var d3_time_numberRe = /^\s*\d+/; | |
| function d3_time_parseAmPm(date, string, i) { | |
| var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase()); | |
| return n == null ? -1 : (date.p = n, i); | |
| } | |
| var d3_time_amPmLookup = d3.map({ | |
| am: 0, | |
| pm: 1 | |
| }); | |
| function d3_time_zone(d) { | |
| var z = d.getTimezoneOffset(), zs = z > 0 ? "-" : "+", zh = ~~(Math.abs(z) / 60), zm = Math.abs(z) % 60; | |
| return zs + d3_time_formatPad(zh, "0", 2) + d3_time_formatPad(zm, "0", 2); | |
| } | |
| function d3_time_parseLiteralPercent(date, string, i) { | |
| d3_time_percentRe.lastIndex = 0; | |
| var n = d3_time_percentRe.exec(string.substring(i, i + 1)); | |
| return n ? i + n[0].length : -1; | |
| } | |
| d3.time.format.utc = function(template) { | |
| var local = d3.time.format(template); | |
| function format(date) { | |
| try { | |
| d3_time = d3_time_utc; | |
| var utc = new d3_time(); | |
| utc._ = date; | |
| return local(utc); | |
| } finally { | |
| d3_time = Date; | |
| } | |
| } | |
| format.parse = function(string) { | |
| try { | |
| d3_time = d3_time_utc; | |
| var date = local.parse(string); | |
| return date && date._; | |
| } finally { | |
| d3_time = Date; | |
| } | |
| }; | |
| format.toString = local.toString; | |
| return format; | |
| }; | |
| var d3_time_formatIso = d3.time.format.utc("%Y-%m-%dT%H:%M:%S.%LZ"); | |
| d3.time.format.iso = Date.prototype.toISOString && +new Date("2000-01-01T00:00:00.000Z") ? d3_time_formatIsoNative : d3_time_formatIso; | |
| function d3_time_formatIsoNative(date) { | |
| return date.toISOString(); | |
| } | |
| d3_time_formatIsoNative.parse = function(string) { | |
| var date = new Date(string); | |
| return isNaN(date) ? null : date; | |
| }; | |
| d3_time_formatIsoNative.toString = d3_time_formatIso.toString; | |
| d3.time.second = d3_time_interval(function(date) { | |
| return new d3_time(Math.floor(date / 1e3) * 1e3); | |
| }, function(date, offset) { | |
| date.setTime(date.getTime() + Math.floor(offset) * 1e3); | |
| }, function(date) { | |
| return date.getSeconds(); | |
| }); | |
| d3.time.seconds = d3.time.second.range; | |
| d3.time.seconds.utc = d3.time.second.utc.range; | |
| d3.time.minute = d3_time_interval(function(date) { | |
| return new d3_time(Math.floor(date / 6e4) * 6e4); | |
| }, function(date, offset) { | |
| date.setTime(date.getTime() + Math.floor(offset) * 6e4); | |
| }, function(date) { | |
| return date.getMinutes(); | |
| }); | |
| d3.time.minutes = d3.time.minute.range; | |
| d3.time.minutes.utc = d3.time.minute.utc.range; | |
| d3.time.hour = d3_time_interval(function(date) { | |
| var timezone = date.getTimezoneOffset() / 60; | |
| return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5); | |
| }, function(date, offset) { | |
| date.setTime(date.getTime() + Math.floor(offset) * 36e5); | |
| }, function(date) { | |
| return date.getHours(); | |
| }); | |
| d3.time.hours = d3.time.hour.range; | |
| d3.time.hours.utc = d3.time.hour.utc.range; | |
| d3.time.month = d3_time_interval(function(date) { | |
| date = d3.time.day(date); | |
| date.setDate(1); | |
| return date; | |
| }, function(date, offset) { | |
| date.setMonth(date.getMonth() + offset); | |
| }, function(date) { | |
| return date.getMonth(); | |
| }); | |
| d3.time.months = d3.time.month.range; | |
| d3.time.months.utc = d3.time.month.utc.range; | |
| function d3_time_scale(linear, methods, format) { | |
| function scale(x) { | |
| return linear(x); | |
| } | |
| scale.invert = function(x) { | |
| return d3_time_scaleDate(linear.invert(x)); | |
| }; | |
| scale.domain = function(x) { | |
| if (!arguments.length) return linear.domain().map(d3_time_scaleDate); | |
| linear.domain(x); | |
| return scale; | |
| }; | |
| scale.nice = function(m) { | |
| return scale.domain(d3_scale_nice(scale.domain(), m)); | |
| }; | |
| scale.ticks = function(m, k) { | |
| var extent = d3_scaleExtent(scale.domain()); | |
| if (typeof m !== "function") { | |
| var span = extent[1] - extent[0], target = span / m, i = d3.bisect(d3_time_scaleSteps, target); | |
| if (i == d3_time_scaleSteps.length) return methods.year(extent, m); | |
| if (!i) return linear.ticks(m).map(d3_time_scaleDate); | |
| if (target / d3_time_scaleSteps[i - 1] < d3_time_scaleSteps[i] / target) --i; | |
| m = methods[i]; | |
| k = m[1]; | |
| m = m[0].range; | |
| } | |
| return m(extent[0], new Date(+extent[1] + 1), k); | |
| }; | |
| scale.tickFormat = function() { | |
| return format; | |
| }; | |
| scale.copy = function() { | |
| return d3_time_scale(linear.copy(), methods, format); | |
| }; | |
| return d3_scale_linearRebind(scale, linear); | |
| } | |
| function d3_time_scaleDate(t) { | |
| return new Date(t); | |
| } | |
| function d3_time_scaleFormat(formats) { | |
| return function(date) { | |
| var i = formats.length - 1, f = formats[i]; | |
| while (!f[1](date)) f = formats[--i]; | |
| return f[0](date); | |
| }; | |
| } | |
| function d3_time_scaleSetYear(y) { | |
| var d = new Date(y, 0, 1); | |
| d.setFullYear(y); | |
| return d; | |
| } | |
| function d3_time_scaleGetYear(d) { | |
| var y = d.getFullYear(), d0 = d3_time_scaleSetYear(y), d1 = d3_time_scaleSetYear(y + 1); | |
| return y + (d - d0) / (d1 - d0); | |
| } | |
| var d3_time_scaleSteps = [ 1e3, 5e3, 15e3, 3e4, 6e4, 3e5, 9e5, 18e5, 36e5, 108e5, 216e5, 432e5, 864e5, 1728e5, 6048e5, 2592e6, 7776e6, 31536e6 ]; | |
| var d3_time_scaleLocalMethods = [ [ d3.time.second, 1 ], [ d3.time.second, 5 ], [ d3.time.second, 15 ], [ d3.time.second, 30 ], [ d3.time.minute, 1 ], [ d3.time.minute, 5 ], [ d3.time.minute, 15 ], [ d3.time.minute, 30 ], [ d3.time.hour, 1 ], [ d3.time.hour, 3 ], [ d3.time.hour, 6 ], [ d3.time.hour, 12 ], [ d3.time.day, 1 ], [ d3.time.day, 2 ], [ d3.time.week, 1 ], [ d3.time.month, 1 ], [ d3.time.month, 3 ], [ d3.time.year, 1 ] ]; | |
| var d3_time_scaleLocalFormats = [ [ d3.time.format("%Y"), d3_true ], [ d3.time.format("%B"), function(d) { | |
| return d.getMonth(); | |
| } ], [ d3.time.format("%b %d"), function(d) { | |
| return d.getDate() != 1; | |
| } ], [ d3.time.format("%a %d"), function(d) { | |
| return d.getDay() && d.getDate() != 1; | |
| } ], [ d3.time.format("%I %p"), function(d) { | |
| return d.getHours(); | |
| } ], [ d3.time.format("%I:%M"), function(d) { | |
| return d.getMinutes(); | |
| } ], [ d3.time.format(":%S"), function(d) { | |
| return d.getSeconds(); | |
| } ], [ d3.time.format(".%L"), function(d) { | |
| return d.getMilliseconds(); | |
| } ] ]; | |
| var d3_time_scaleLinear = d3.scale.linear(), d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats); | |
| d3_time_scaleLocalMethods.year = function(extent, m) { | |
| return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear); | |
| }; | |
| d3.time.scale = function() { | |
| return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat); | |
| }; | |
| var d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) { | |
| return [ m[0].utc, m[1] ]; | |
| }); | |
| var d3_time_scaleUTCFormats = [ [ d3.time.format.utc("%Y"), d3_true ], [ d3.time.format.utc("%B"), function(d) { | |
| return d.getUTCMonth(); | |
| } ], [ d3.time.format.utc("%b %d"), function(d) { | |
| return d.getUTCDate() != 1; | |
| } ], [ d3.time.format.utc("%a %d"), function(d) { | |
| return d.getUTCDay() && d.getUTCDate() != 1; | |
| } ], [ d3.time.format.utc("%I %p"), function(d) { | |
| return d.getUTCHours(); | |
| } ], [ d3.time.format.utc("%I:%M"), function(d) { | |
| return d.getUTCMinutes(); | |
| } ], [ d3.time.format.utc(":%S"), function(d) { | |
| return d.getUTCSeconds(); | |
| } ], [ d3.time.format.utc(".%L"), function(d) { | |
| return d.getUTCMilliseconds(); | |
| } ] ]; | |
| var d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats); | |
| function d3_time_scaleUTCSetYear(y) { | |
| var d = new Date(Date.UTC(y, 0, 1)); | |
| d.setUTCFullYear(y); | |
| return d; | |
| } | |
| function d3_time_scaleUTCGetYear(d) { | |
| var y = d.getUTCFullYear(), d0 = d3_time_scaleUTCSetYear(y), d1 = d3_time_scaleUTCSetYear(y + 1); | |
| return y + (d - d0) / (d1 - d0); | |
| } | |
| d3_time_scaleUTCMethods.year = function(extent, m) { | |
| return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear); | |
| }; | |
| d3.time.scale.utc = function() { | |
| return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat); | |
| }; | |
| d3.text = d3_xhrType(function(request) { | |
| return request.responseText; | |
| }); | |
| d3.json = function(url, callback) { | |
| return d3_xhr(url, "application/json", d3_json, callback); | |
| }; | |
| function d3_json(request) { | |
| return JSON.parse(request.responseText); | |
| } | |
| d3.html = function(url, callback) { | |
| return d3_xhr(url, "text/html", d3_html, callback); | |
| }; | |
| function d3_html(request) { | |
| var range = d3_document.createRange(); | |
| range.selectNode(d3_document.body); | |
| return range.createContextualFragment(request.responseText); | |
| } | |
| d3.xml = d3_xhrType(function(request) { | |
| return request.responseXML; | |
| }); | |
| return d3; | |
| }(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>LDAvis</title> | |
| <script src="d3.v3.js"></script> | |
| <script src="ldavis.js"></script> | |
| <link rel="stylesheet" type="text/css" href="lda.css"> | |
| </head> | |
| <body> | |
| <div id = "lda"></div> | |
| <script> | |
| var vis = new LDAvis("#lda", "lda.json"); | |
| </script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| path { | |
| fill: none; | |
| stroke: none; | |
| } | |
| .xaxis .tick.major { | |
| fill: black; | |
| stroke: black; | |
| stroke-width: 0.1; | |
| opacity: 0.7; | |
| } | |
| .slideraxis { | |
| fill: black; | |
| stroke: black; | |
| stroke-width: 0.4; | |
| opacity: 1; | |
| } | |
| text { | |
| font-family: sans-serif; | |
| font-size: 11px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "mdsDat": { | |
| "x": [ 0.095511, 0.041551, -0.018255, 0.05369, -0.070556, 0.078488, 0.20672, 0.15503, -0.10006, -0.091092, 0.1365, -0.18389, 0.19186, 0.078632, -0.20278, 0.096149, -0.00144, -0.026912, -0.21435, 0.1625, -0.131, 0.074579, 0.05577, 0.097118, -0.11284, -0.05639, 0.03528, 0.0010532, 0.14138, -0.06976, -0.19458, -0.2279 ], | |
| "y": [ -0.074154, 0.18462, 0.06276, -0.14199, 0.21796, -0.13775, -0.047342, 0.027464, -0.039127, -0.046547, -0.14857, -0.10049, -0.13716, -0.081712, -0.14362, 0.11697, 0.16916, 0.0024075, -0.11634, -0.071969, -0.017918, 0.063637, 0.052471, 0.027148, 0.14434, 0.16095, 0.02941, 0.16334, -0.023887, 0.071057, -0.14459, -0.020529 ], | |
| "topics": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 ], | |
| "Freq": [ 5.4958, 4.0962, 4.0724, 3.8417, 3.7899, 3.696, 3.6763, 3.548, 3.5116, 3.419, 3.4146, 3.3909, 3.3393, 3.2862, 3.2415, 3.2079, 3.1988, 3.1663, 3.1603, 3.0817, 3.0789, 2.8402, 2.8172, 2.791, 2.7667, 2.5345, 2.525, 2.0322, 1.9908, 1.9039, 1.661, 1.424 ], | |
| "cluster": [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ] | |
| }, | |
| "tinfo": { | |
| "Term": [ "pistorius", "da", "percent", "zuma", "student", "strike", "municipality", "music", "race", "voter", "thank", "education", "nel", "voting", "search", "dog", "girl", "pupil", "ticket", "eff", "animal", "league", "festival", "driver", "rugby", "son", "drug", "father", "iec", "nkandla", "sisi", "bouteflika", "haftar", "makaburi", "renamo", "kidal", "musharraf", "yingluck", "poroshenko", "thaksin", "baghdad", "assad", "putin", "tuareg", "prayuth", "dhlakama", "djibouti", "slavyansk", "adra", "syrian", "al-sisi", "maliki", "taliban", "maduro", "obasanjo", "darfur", "homs", "rwandan", "seleka", "kiev", "lpr", "rta", "abvajee", "tvnw", "unroadworthy", "mahamba", "oncoming", "pedestrians", "sibasa", "kasimu", "russel meiring", "santi steinmann", "robert mckenzie", "avanza", "luyanda majija", "road traffic management corporation", "obed sibasa", "flying squad", "const malatji", "zandra", "adt central region", "werner vermaak", "sgt nhlabathi", "ortell", "w/o munyai", "mkhontwana", "opel corsa", "latchman", "makgoga", "klippoortjie", "colton", "yeshua", "ku", "nga", "deity", "krishna", "psalm", "scripture", "gertse", "jesus christ", "esv", "ndzi", "pontiff", "canonisation", "hiranyakashipu", "prahlad", "basilica", "earthly", "holy spirit", "pagan", "john xxiii", "arguer", "unjilo", "unyikinyibhoxo", "atheism", "zealot", "swi", "leyi", "leswaku", "theism", "union fc.", "pfizer", "astrazeneca", "yen", "ipo", "mpc", "cil", "s&p", "etf", "glencore", "eurozone", "zse", "nasdaq", "ftse", "chinamasa", "wal-mart", "pmi", "moody's", "wto", "dow", "deflation", "repo", "yellen", "biotech", "rbs", "petrobras", "astrapak", "kuroda", "montauk", "drugmaker", "claus", "nolwazi", "chanika", "afzal", "lovey", "jaffon", "umnuz", "whap", "yolanda", "klarissa", "narayanan", "sunteam", "esihle", "janse noordwyks", "geldof", "people's paper", "farren", "wanga", "kendra", "ukuba", "roomie", "peurssewil", "herdien", "baadjes", "kasieta", "balal", "gamat", "heini", "lebona", "bayanda", "gofpep", "deneil", "ssip", "creecy", "hrdy", "pedagogy", "postgraduate", "toastmasters", "wpb", "sekhonyane", "bursary", "harambee", "gde", "fedsas", "undergraduate", "tuition", "swartkrans", "love trust", "classroom", "segalo", "makrosafe", "phumla sekhonyane", "realstart", "gauteng department of education", "rosebank college", "pum", "ntsholo", "lite campus", "lingo links", "numeracy", "vavi", "mase", "norrie", "vuco", "losi", "phineas mojapelo", "palanquin hospitality management", "ntola", "abland", "lyc", "soobrayan", "seakhoa", "aboobaker", "glenister", "savoi", "lukey", "dolopi", "mabegzo", "hks", "invalidity", "ful", "makhushe", "tipp", "vms", "prodiba", "cosatu house", "bobroffs", "intersex", "richard mdluli", "concourt", "tutudesk", "lumen", "sinkhole", "befa", "joshco", "mfunda", "mqwathi", "iversen", "makobe", "rezoning", "subcouncil", "orlando ekhaya", "gqada", "mohapi", "araujo", "earthwork", "gungubele", "cornubia", "richmond park", "mbuyisa", "hcm", "coghsta", "sra", "densification", "coleraine drive", "phofung", "backyarders", "mayoral", "peters-scheepers", "skoro", "college easter rugby festival", "st dunstan's", "brownell", "auntie muriel's", "frighteningly", "sociopath", "blithering", "firepools", "thuli madonselas", "streetpole", "penicillin", "heraldic", "rb7", "sabine schmitz", "millennials", "ratsela", "devere", "normcore", "durbs", "nurburg", "motortainment", "world constructors' champions infiniti red bull racing", "world drivers' champion mika hakkinen", "the_citizen_reporter", "durban street circuit", "ignition tv", "battery road", "gidani", "marius roberts", "stig will be unleashed in a variety of cars", "siba", "liberace", "roxmouth", "mighty med", "disney junior play", "menswear", "spider-man", "fassler", "mbfwj", "isibaya", "bonang", "bieber", "bhekifa", "jolie", "peter parker", "angelou", "levenberg", "mikael", "gurlitt", "sept", "cannes", "emmet", "wolverine", "kwilters", "die windpomp", "tourvest", "swan lake", "cooking channel", "ek joke net", "scripps networks international", "tsvangirai", "mdc", "scopa", "pec", "turok", "mantashe", "ncop", "gigaba", "mahlobo", "nxesi", "kiviet", "mogoeng", "ndala", "sizani", "mabuyane", "national executive", "madonsela", "pple", "nkomfe", "bulwane", "mogoeng mogoeng", "trevor manuel", "chabane", "david mabuza", "lindiwe zulu", "max sisulu", "thuli madonsela's", "lindiwe sisulu", "thulas nxesi", "r246", "acnw", "hooters", "ironman", "gymnast", "breaststroke", "comrades marathon breakfast", "backstroke", "vettel", "j22", "germiston callies'", "o.16a", "rhc", "kickboxing", "crossfit", "giro", "rider", "jayme-sue", "knysna marathon club", "rwfl", "iaaf", "u.14a", "discus", "grantleigh", "d. o", "uci", "louis the king", "ricciardo", "florries", "u10", "wpa", "beneficiation", "defence review", "manufacturing indaba", "depoliticise", "realisable", "audits", "allocated", "industrial development zones", "sector education and training authorities", "desertification", "owner/s", "transkei defence force", "global risk", "japie grobler", "asuf.", "makolobane farm", "chris van biljon", "asuf", "eduplant", "soes", "paradigm", "underdevelopment", "ignoble", "partite", "land policy", "parliamentary rugby squad", "information bill", "bantubonke", "export processing zones", "electoral reform", "aic", "eff.", "pascoe", "ramphele", "vec", "nfp", "tselane", "mutharika", "bekkersdal", "acdp", "moepya", "mdayi", "ifp", "malema", "agang", "mosery", "kamagwaza-msibi", "electoral commission", "agang sa", "azapo", "vec10", "henley road", "iec.", "thakur-rajbansi", "agangsa", "mpho ramakatsa", "al-hamati", "vf", "peter mutharika", "mcdonnell", "sun united fc.", "germiston rays fc", "vetyeka", "moyes", "luso africa sports grounds", "mourinho", "atletico", "ronaldo", "giggs", "van gaal", "mosimane", "anelka", "igesund", "rodgers", "suarez", "bayern", "vermezovic", "gerrard", "ajax", "bafana", "barca", "liverpool", "messi", "bartlett", "pellegrini", "teko", "klitschko", "tenge", "sundowns", "blatter", "msimango", "lukhele", "staggie", "krejcir", "maistry", "louca", "flippie", "pagad", "derby-lewis", "kgopa", "madoff", "seisa", "anene", "masunga", "vearey", "okah", "vollgraaff", "cano", "luphondo", "komeni", "treurnicht", "parole", "soni", "sewram", "mhaga", "rajagopaul", "mashiane", "jeke", "waldeck", "hathorn", "darren fresco", "weskoppies psychiatric hospital", "samantha taylor", "hilton botha", "thokozile masipa", "chris mangena", "anette stipp", "sibeko/reuter", "giliam van rensburg", "yvette van schalkwyk", "nel pistorius", "mr nel", "155cm\ncourt", "biokeneticist", "justin divaris", "christina lundgren", "ho.", "jan 2013", "flexed", "reggie perumal", "wollie wolmarans", "testifying", "jacqui mofokeng", "application.\"a", "kelly phelps", "dr merryll vorster", "kendrick lemar", "trial.\"pistorius", "oscar\nstate", "musn't", "benoni indians baseball club", "world congress", "luxolo tabata", "luxolo", "christmas fund", "nid", "pioneer house", "tcc", "koerantskenking", "ouetehuisprojek", "porterville", "flower news", "round table", "kleinplasie", "standard children's fund", "whrp", "wilskut", "louwville", "apd", "awendrus", "stromsoe", "volksblad christmas fund", "tieghan", "imp", "sebastia", "weskuskos", "engo", "mundt", "mampane", "clifton fredericks", "rosehurst", "sherwin alwood photography hair", "hammies", "toulon", "folau", "saru", "de wetsaal", "aru", "drotske", "poise models", "kireshen", "pumas", "kaartjies", "sal", "verloor", "hurricanes", "plek", "donell pillay", "brumbies", "crusaders", "ebersohn", "junie", "boks", "cavaliers", "ss1", "jwc", "mnr", "hul", "vodacom bulls", "highlander", "sky blue", "gepf", "mayman", "hillen", "surapure", "eea2", "stokvels", "estina", "taxable", "policyholder", "sky blue media", "propell", "exercisable", "recognition)-", "adrian lackay", "cmm", "rishi seegobin", "national credit amendment bill", "nic maritz", "scholtz-mare", "asisa", "maphologela", "garnishee", "hosmed", "rockman", "abduraghman mayman", "valuation appeal board", "gregory orsmond", "karin muller", "black executive", "germiston simmer rugby club", "kagiso rugby club", "lowman", "luna", "ub40", "tamia", "hazra", "armin", "mafikizolo", "cortes", "innibos", "choral", "emo", "kwaito", "beatenberg", "auriol", "jazz", "orchestra", "wildsfees", "mango groove", "guitar", "reggae", "guitarist", "b.o.b.", "pabst", "kwaggabees", "cobain", "r&b", "soweto gospel choir", "chorale", "sanbs", "melanoma", "formaldehyde", "glaucoma", "nhls", "ebola", "mers", "liposuction", "lockett", "diphtheria", "epilepsy", "hpv", "resveratrol", "hospicewits", "national epilepsy week", "vaccine", "hookah", "fibroid", "lamees", "tetanus", "cervical", "osteoporosis", "ramagaga", "janke", "prepex", "ppd", "antibody", "dpt", "genexpert", "conakry", "heaviside", "ecoboxx", "kepler-186f", "lingulodinium", "in2brand", "njila", "fnb housing finance", "bottlenose", "tacna", "adaptor", "www.light", "argon", "sherpas", "cng", "malca-amit", "iquique", "fracking", "valparaiso", "turbine", "lifeguard", "second beach", "solar", "conservancy", "sherpa", "shedding", "oberholtzer", "cng holdings", "geyser", "aftershock", "peaker", "bundi adventures", "groupwise", "alternatv", "allenby street", "novell", "bitcoins", "heartbleed", "van coller", "touchcard", "zuckerberg", "wechat", "icasa", "encryption", "starsat", "openssl", "sacsi", "marietjie oehley", "sanral", "malware", "jpsa", "apps", "carver media", "ccc", "vpc", "android", "hacker", "cluedapp", "welovedurban", "phishing", "@hiddencash", "storytime", "ml", "dough", "gelatine", "quinoa", "weldon", "frittata", "ratatouille", "compost", "truffle", "gerasperde", "versoeter", "begonia", "flour", "couscous", "souffle", "cheese", "tues", "lentil", "sealer", "tomato", "margarine", "grate", "eggplant", "preheat", "pastry", "seasoning", "aubergine", "bun", "muffin", "msisdn", "wiseguy", "vaal weekly", "vaal mall", "jul", "nomer", "vdbijl", "arconpark", "overvaal", "dgp", "hardworker", "@", "pallisades", "mini cooper's", "uncle fred", "jimmy choos", "polyvinyl", "besuursders", "middle-aged", "mammories", "grandma barbie", "vanderbilpark", "greetings uncle kalimarie", "louboutins", "caley", "eureka school", "barrage road", "valies", "puk.", "kmh", "sewol", "bluefin-21", "hishammuddin hussein", "andrias", "zaharie", "diver", "pyongyang", "sacaa", "najib", "jacc", "inmarsat", "sedna", "malaysian", "coastguard", "hishammuddin", "mh370", "underwater", "aviation", "malaysia", "faa", "capsize", "crewman", "esl", "grung", "locator", "qb50", "south china sea", "jindo", "pinger", "searcher", "kaws", "chimp", "rabbitcare", "haws", "distributional", "aacl", "animals", "monkey helpline", "national council of spcas", "jessnitz", "hobkirk", "episcopus", "spiff", "francoise malby-anthony", "karin erasmus", "indalu", "roodepoort spca", "khba", "animal anti-cruelty league", "louise carver", "nspca", "tekkie tax", "soffiantini", "jeanelle", "kep", "eoe", "donald coxen", "kuch", "trollies", "jgi", "capoeira", "goldrich", "sokhanyile", "mpembe", "mathunjwa", "grose", "merafe", "r12,500", "implats", "ntsebeza", "amplats", "knp", "magara", "amcu", "mntambo", "farlam", "thupe", "modipane", "miner", "sactwu", "tharisa", "northam", "lonmin", "hgbf", "wilderness foundation", "r12 500", "mineworkers", "joseph mathunjwa", "sukude", "farlam commission of inquiry", "outlander", "almera", "juke", "pajero", "qashqai", "forester", "rs", "dumpy", "pajerosport", "vgt", "dci", "xt", "cvt", "liter/100", "sx4", "figo", "quashy", "world car", "es250", "subaru", "awd", "rpm", "scubi", "ecosport", "litre/100", "km/litre", "applink", "towing", "limited edition", "underpowered", "delville sports club", "ekurhuleni kayak club's", "erk", "gore", "hhcc", "swcc", "srinivasan", "lobsters", "amla", "rafe", "cobras", "bcci", "hore", "csa", "jennings", "mccullum", "gujarat", "domingo", "kallis", "maori", "ipl", "west indies", "dolphins", "wicket", "duminy", "t20", "reneilwe", "dhaka", "dhoni", "tahir", "takuza", "rodger", "nadal", "julian", "djokovic", "birdie", "sharapova", "olchap", "federer", "mickelson", "bogey", "snoring", "mcilroy", "kaymer", "de voest", "wawrinka", "flores", "nishikori", "cro", "rus", "spieth", "roland garros", "noh", "aunt lydia", "crashamanka", "smith magenis syndrome", "kuchar", "cze", "neanderthal", "pga", "russia", "russian", "ukraine", "un", "militant", "moscow", "boko haram", "troop", "army", "crimea", "soldier", "ukrainian", "military", "obama", "rebel", "islamist", "syria", "terrorist", "separatist", "muslim", "israeli", "coup", "palestinian", "islamic", "referendum", "sudan", "bomb", "egypt", "taxi", "robber", "accident", "paramedic", "commuter", "truck", "bakkie", "bus", "driver", "intersection", "traffic", "er24", "cpf", "minibus", "pedestrian", "suspicious", "theft", "metrorail", "motorist", "steal", "collide", "patrol", "lane", "burglary", "rea vaya", "injure", "n1", "rob", "robbery", "god", "jesus", "snake", "pope", "heaven", "prayer", "christ", "holy", "priest", "prophet", "vatican", "evil", "faith", "disciple", "believer", "bishop", "verse", "lord", "satan", "religion", "courage", "biblical", "meaning", "eternal", "him", "wisdom", "ancient", "resurrection", "salvation", "percent", "index", "investor", "currency", "economist", "dollar", "inflation", "bloomberg", "euro", "jse", "forecast", "commodity", "shareholder", "retailer", "alibaba", "yuan", "slowdown", "export", "import", "monetary", "earnings", "price", "imf", "son", "father", "daughter", "grandmother", "marry", "auntie", "sister", "boy", "husband", "daily sun", "baby", "mum", "funeral", "cop", "gogo", "toddler", "granddaughter", "daddy", "eldest", "grandfather", "couple", "brother", "trujillo", "nicole", "dad", "estranged", "andersson", "grandchild", "pantie", "student", "pupil", "university", "learner", "teacher", "principal", "campus", "academic", "grade", "learning", "distinction", "matric", "scholarship", "mathematics", "enrol", "educator", "education", "matriculate", "department of education", "racket", "science", "study", "faculty", "graduation", "skill", "diploma", "lecturer", "schooling", "cosatu", "gay", "allegation", "disciplinary", "sadtu", "constitutional court", "legal", "ruling", "misconduct", "unconstitutional", "federation", "numsa", "zwelinzima vavi", "tribunal", "homosexuality", "quota", "cec", "prejudice", "invalid", "lawsuit", "homosexual", "sca", "sahrc", "reinstate", "irregularity", "expulsion", "suspend", "lesbian", "municipality", "municipal", "mayor", "council", "councillor", "tenant", "pothole", "ochakvaite", "ward", "blog't", "contractor", "bet365.gr", "manhole", "cms", "vagrant", "jra", "city of cape town", "city of johannesburg", "ethekwini", "housing", "ratepayer", "vacant", "informal", "upgrading", "sewerage", "pikitup", "mmc", "tau", "exco", "@citireporter", "oscartrial", "certainly", "hardly", "^cv", "though", "admittedly", "probably", "proverbial", "stewart", "coin", "fiddle", "powerball", "minded", "understandably", "quite", "lottery", "idea", "letterman", "obvious", "esteemed", "film", "movie", "exhibition", "actor", "fashion", "celebrity", "designer", "comedy", "actress", "museum", "los angeles", "presenter", "pageant", "cinema", "art", "hollywood", "novel", "beauty", "artwork", "documentary", "disney", "photography", "premiere", "sculpture", "drama", "superhero", "beyonce", "kanye", "filmmaker", "zuma", "nkandla", "protector", "mandela", "mp", "jacob zuma's", "homestead", "thuli", "madiba", "jacob zuma", "unduly", "nec", "ramaphosa", "kasrils", "gwede mantashe", "inauguration", "mbeki", "siu", "impeachment", "nelson mandela", "nelson mandela's", "mugabe", "public protector's", "r246m", "deputy", "motlanthe", "race", "medal", "hockey", "marathon", "bronze", "championships", "netball", "athletics", "cycling", "runner", "junior", "bike", "racing", "comrades", "swimmer", "100m", "karate", "compete", "agn", "commonwealth", "paddler", "mtb", "biking", "olympic", "dusi", "400m", "championship", "javelin", "canoe", "poverty", "inequality", "unemployment", "udm", "empowerment", "socio", "productive", "rural", "creation", "abject", "ndp", "agricultural", "idz", "smme", "economically", "employment", "redistribution", "streamline", "unequal", "enterprise", "agriculture", "revitalisation", "sme", "dti", "capitalism", "prosperity", "hitachi", "da", "voter", "voting", "eff", "iec", "ballot", "zille", "economic freedom fighters", "tlakula", "julius malema", "maimane", "helen zille", "polling", "electoral", "mmusi maimane", "queue", "independent electoral commission", "fighters", "counting", "beret", "pansy tlakula", "turnout", "football", "league", "soccer", "chelsea", "pirates", "united", "barcelona", "boxing", "midfielder", "goalkeeper", "psl", "orlando pirates", "premier league", "champions league", "fifa", "arsenal", "kaizer chiefs", "safa", "everton", "manchester united", "mamelodi sundowns", "manchester city", "amakhosi", "bafana bafana", "nedbank cup", "sentence", "rape", "prison", "gang", "convict", "assault", "rap", "magistrate", "custody", "drug", "bail", "imprisonment", "inmate", "heever", "defendant", "nyaope", "rapist", "tik", "remand", "prostitution", "jail", "sentencing", "plead", "offender", "mandrax", "pistorius", "nel", "steenkamp", "reeva", "oscar", "roux", "intruder", "bathroom", "reeva steenkamp", "oscar pistorius", "gerrie nel", "dixon", "barry roux", "mangena", "moller", "fresco", "van staden", "stipp", "ballistics", "firearms control act", "van rensburg", "masipa", "cubicle", "balcony", "pathologist", "paralympian", "prosthetic", "wolmarans", "vorster", "donation", "worcester", "hermanus", "organization", "west coast", "fundraising", "paarl", "donate", "vredenburg", "bethlehem", "stellenbosch", "kathu", "atkv", "robertson", "weslander", "langebaan", "needy", "voucher", "alberton", "caledon", "charity", "kroonstad", "malmesbury", "upington", "kuruman", "bosch", "cloetesville", "swartland", "bloemnews", "velddrif", "sharks", "stormers", "cheetahs", "super rugby", "bulls", "rugby", "lions", "springbok", "flyhalf", "coetzee", "waratahs", "conversion", "springboks", "scrum", "highlanders", "griquas", "fullback", "hooker", "het", "vir", "vodacom cup", "reds", "om", "bull", "scrumhalf", "financial", "sars", "payment", "regulation", "insurance", "tax", "proposal", "sequestration", "orsmond", "liability", "insurer", "incur", "repayment", "nef", "loan", "arrears", "compliance", "income", "owe", "rebate", "credit", "employment equity act", "expenditure", "compensation", "conditional", "woodglaze", "annuity", "bureaus", "pension", "music", "ticket", "festival", "song", "album", "concert", "band", "dance", "musician", "choir", "dj", "computicket", "entertainment", "dancer", "singer", "booking", "singing", "ballet", "musical", "classical", "piano", "picnic", "gig", "songwriter", "lyric", "keith", "vocalist", "disease", "cancer", "hiv", "treatment", "virus", "tb", "symptom", "patient", "infection", "breast", "depression", "nurse", "flu", "diagnose", "medical", "medication", "diabetes", "therapy", "clinic", "condom", "infect", "epidemic", "genetic", "dentist", "autism", "lung", "eskom", "flood", "rain", "pump", "shark", "flooding", "outage", "dam", "carbon", "city power", "wetland", "quake", "rainfall", "whale", "tsunami", "renewable", "heater", "expedition", "beach", "nersa", "grid", "avalanche", "rainy", "energy", "sabc", "advert", "internet", "online", "mobile", "app", "google", "software", "twitter", "e", "mtn", "microsoft", "broadcaster", "smartphone", "smartphones", "scam", "vva", "telkom", "toll", "cyber", "password", "afri dome", "motsoeneng", "server", "upload", "wine", "egg", "sugar", "salt", "recipe", "butter", "dish", "meat", "potato", "olive", "vegetable", "cake", "pepper", "onion", "juice", "chocolate", "pizza", "harvest", "mixture", "sauce", "cream", "sprinkle", "chop", "herb", "menu", "bean", "vereeniging", "vanderbijlpark", "thank", "please", "mr.", "triangle", "vaal", "meyerton", "ed", "barbie", "vaal triangle", "vdbp", "ni", "knitting", "mrs.", "kob", "sasolburg", "emma", "greeting", "csf", "admin", "yrs", "handyman", "jacky", "danki", "angler", "boilermaker", "plane", "ship", "aircraft", "satellite", "boat", "indian ocean", "kuala lumpur", "pilot", "ferry", "airline", "vessel", "flight", "radar", "malaysia airlines", "island", "fisherman", "beijing", "boeing", "jet", "fishing", "nsri", "recorder", "north korea", "seoul", "animal", "news24", "dog", "mynews24", "edit", "pet", "disclaimer", "article", "independently", "bird", "spca", "delete", "cat", "sticker", "owl", "editor", "news24.com", "breeding", "bin", "enclosure", "kennel", "crocodile", "cruelty", "zoo", "24.com", "url", "herd", "cage", "mine", "rhino", "strike", "platinum", "marikana", "wage", "rustenburg", "r12", "mineworker", "transnet", "association of mineworkers", "poacher", "impala platinum", "anglo american platinum", "sanparks", "poach", "poaching", "rhinos", "shaft", "num", "ccma", "soma", "mining", "rear", "wheel", "engine", "steering", "corolla", "suv", "torque", "turbo", "diesel", "alloy", "manual", "duster", "airbags", "nm", "sporty", "incl", "km/h", "oopsy", "cylinder", "marcel upfold", "proteas", "bowler", "batsman", "dewani", "modi", "bangladesh", "sri lanka", "inning", "india", "cricket", "icc", "spinner", "twenty20", "bjp", "batting", "psychopath", "chittagong", "cricketer", "dale steyn", "england", "titans", "innings", "smiley", "golfer", "putt", "hair", "williams", "murray", "nivea", "augusta", "tee", "masters", "fort hood", "hole", "watson", "obsessive", "jous", "fairway", "graham", "apnea", "golf", "war", "nigeria", "eu", "sanction", "nigerian", "thief", "saps", "ambulance", "guard", "wonder", "truth", "sin", "pray", "church", "christians", "spiritual", "blessing", "growth", "quarter", "retail", "stock", "cent", "trading", "investment", "girl", "marriage", "boyfriend", "mom", "aunt", "married", "cousin", "bury", "teach", "youth", "educational", "library", "college", "degree", "excellence", "teaching", "commission", "constitutional", "judgment", "suspension", "sassa", "hearing", "metro", "repair", "settlement", "construction", "simply", "before", "holiday", "pretty", "middle", "sort", "perhaps", "history", "bit", "ability", "of", "somewhat", "either", "stick", "doubt", "writer", "gallery", "character", "photographer", "painting", "parliament", "apartheid", "cabinet", "upgrade", "democracy", "presidency", "athlete", "km", "prize", "category", "spectator", "silver", "relay", "1st", "sector", "sustainable", "policy", "economy", "wealth", "transformation", "infrastructure", "resource", "entrepreneurship", "productivity", "candidate", "cast", "id", "poll", "cope", "democratic alliance", "da.", "goal", "wit", "premiership", "champions", "guilty", "victim", "conviction", "postpone", "de jager", "scream", "witness", "toilet", "testify", "bullet", "center", "sponsor", "bloemfontein", "auction", "hall", "valley", "newlands", "budget", "bill", "debt", "grant", "funding", "expense", "propose", "saving", "draft", "amendment", "sing", "stall", "entertain", "artist", "dancing", "illness", "blood", "doctor", "guinea", "medicine", "outbreak", "river", "pollution", "gas", "climate", "tourist", "planet", "facebook", "tweet", "network", "apple", "advertising", "tolling", "youtube", "garden", "cook", "coffee", "fruit", "lady", "urgently", "thanks", "text", "cashier", "pensioner", "preferably", "search", "crew", "debris", "rescue", "chinese", "rubbish", "elephant", "reserve", "sheep", "cow", "lion", "breed", "litter", "employee", "north west", "union", "employer", "litre", "model", "luggage", "kg", "brake", "ford", "indian", "bowling", "smith", "adams", "du plessis", "par", "round", "stroke", "clay", "scott", "israel", "transport", "flee", "religious", "bible", "actually", "christian", "realize", "francis", "rate", "trade", "analyst", "africa", "sale", "sleep", "shock", "room", "birth", "uncle", "training", "graduate", "language", "argue", "letter", "tender", "complaint", "violate", "dismiss", "building", "land", "tshwane", "delivery", "textbook", "choice", "better", "fit", "definitely", "exactly", "shape", "creative", "magazine", "viewer", "premier", "national assembly", "division", "gold", "participant", "sporting", "cyclist", "environment", "farmer", "south africans", "viable", "rally", "poster", "supporter", "world cup", "brazil", "title", "coach", "cup", "chiefs", "trial", "allege", "abuse", "shot", "version", "trial", "gunshot", "farm", "guest", "church", "penalty", "account", "property", "scheme", "agreement", "asset", "requirement", "pm", "plant", "coal", "electricity", "load", "earth", "utility", "user", "device", "customer", "digital", "eat", "taste", "bake", "bread", "g", "sms", "appreciate", "potchefstroom", "desperately", "sea", "dump", "specie", "horn", "protest", "tyre", "petrol", "transmission", "fuel", "australia", "over", "pakistan", "bowl", "new zealand", "woods", "seed", "tall", "us", "united states", "border", "gate", "armed", "maybe", "wrong", "thought", "spirit", "soul", "bank", "rand", "economy", "decline", "cry", "wedding", "angry", "initiative", "workshop", "partnership", "application", "committee", "constitution", "file", "document", "site", "electricity", "property", "residential", "battle", "finally", "interesting", "easily", "tv", "theatre", "design", "audience", "elect", "speaker", "freedom", "committee", "entry", "horse", "overall", "corruption", "citizen", "land", "growth", "invest", "entrepreneur", "opposition", "seat", "register", "stab", "prosecutor", "sexual", "defence", "gun", "testimony", "firearm", "invite", "branch", "volunteer", "gift", "birthday", "score", "kick", "coach", "client", "agent", "fee", "tour", "audience", "venue", "brain", "disorder", "weather", "environmental", "supply", "damage", "agency", "card", "tag", "technology", "restaurant", "dry", "milk", "message", "nice", "m", "fly", "ocean", "letter", "necessarily", "wild", "salary", "memorandum", "vermaak", "speed", "consumption", "manufacturer", "bat", "simon", "foreign", "shop", "possession", "remember", "true", "forget", "global", "us", "neighbour", "burn", "class", "foundation", "corruption", "appeal", "lawyer", "illegal", "meter", "kind", "class", "fast", "artist", "production", "leadership", "secretary", "legislature", "tournament", "education", "industry", "basic", "score", "striker", "stadium", "violence", "justice", "evidence", "bat", "shooting", "examination", "chairman", "referee", "ball", "prop", "finance", "rock", "talent", "healthy", "surgery", "temperature", "video", "mail", "computer", "plant", "easter", "machine", "china", "passenger", "fish", "user", "feed", "waste", "protester", "labour", "seat", "ride", "comfortable", "ireland", "tennis", "swing", "green", "region", "prime", "conflict", "washington", "criminal", "sustain", "occur", "example", "sometimes", "self", "sense", "listen", "feeling", "industry", "consumer", "average", "firm", "apparently", "bed", "career", "award", "board", "argument", "facility", "infrastructure", "maintenance", "fix", "highly", "series", "kwazulu", "natal", "champion", "mountain", "access", "percent", "paper", "defeat", "tournament", "fixture", "lawyer", "warrant", "girlfriend", "expert", "der", "celebrate", "contribution", "wing", "bench", "estate", "rate", "fan", "risk", "treat", "heavy", "tourism", "switch", "natural", "emergency", "account", "journalist", "meal", "reader", "beautiful", "license", "crash", "box", "photo", "tree", "gear", "feature", "space", "ball", "tournament", "format", "champion", "shot", "tournament", "violence", "capital", "firearm", "victim", "train", "society", "dream", "china", "profit", "product", "sun", "tear", "research", "evidence", "district", "park", "toilet", "decade", "lack", "award", "feature", "picture", "mr", "award", "fun", "commit", "quality", "count", "champion", "ball", "squad", "criminal", "commit", "witness", "interested", "victory", "tour", "chiefs", "squad", "bank", "consumer", "fun", "visitor", "study", "mental", "alcohol", "port", "flow", "wind", "platform", "page", "mix", "drink", "complain", "user", "clean", "air", "belt", "construction", "km", "driver", "size", "score", "series", "title", "american", "straight", "foot", "eastern", "peace", "park", "answer", "respect", "datum", "sector", "wake", "professional", "union", "clean", "ready", "brand", "democratic", "sponsor", "route", "society", "labour", "population", "victory", "fan", "testify", "cross", "message", "thank", "lock", "new zealand", "risk", "sound", "drug", "access", "oil", "fresh", "tree", "search", "board", "authority", "violence", "august", "bit", "quite", "semi", "tie", "tour", "french", "girl", "protest", "anti", "search", "voice", "peace", "sound", "throw", "primary", "authority", "deny", "contract", "unit", "likely", "successful", "africa", "london", "parliamentary", "girl", "investment", "youth", "contest", "south africans", "premier", "evidence", "photo", "program", "item", "convert", "trust", "award", "feature", "exercise", "customer", "radio", "product", "flower", "price", "dog", "australian", "basic", "producer", "figure", "design", "coach", "victory", "victory", "fourth", "rank", "crisis", "kind", "source", "arm", "kid", "institution", "secretary", "submit", "committee", "upgrade", "positive", "inspire", "south africans", "corruption", "appoint", "boy", "title", "round", "traditional", "parliament", "kick", "mr", "sound", "december", "west", "merwe", "der", "measure", "pain", "save", "storm", "kitchen", "red", "southern", "us", "park", "page", "commission", "opinion", "ball", "pull" ], | |
| "logprob": [ 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, -6.7751, -7.933, -7.87, -8.4678, -8.2031, -8.0862, -8.9198, -7.7158, -8.2266, -7.9096, -7.6557, -7.2884, -6.0321, -8.0523, -8.6562, -8.8733, -8.6562, -7.8265, -9.5664, -6.8265, -9.1117, -8.7454, -7.1307, -8.597, -9.1311, -7.8755, -8.3355, -7.7596, -7.6923, -5.7706, -8.3264, -8.78, -9.1855, -9.8787, -8.3147, -9.0078, -7.1818, -9.1855, -8.4252, -9.9964, -8.0962, -8.2047, -8.2917, -9.0078, -8.5064, -8.6101, -8.5794, -9.2427, -9.2725, -8.8372, -8.8178, -8.8372, -9.5502, -9.8787, -9.7245, -9.8246, -9.2725, -9.8787, -9.8787, -9.8787, -9.2651, -8.9774, -8.7542, -9.2651, -8.6344, -9.2062, -8.2077, -7.9253, -9.6261, -7.4683, -9.7658, -9.6261, -8.5275, -9.2651, -9.989, -9.989, -9.3276, -8.8496, -8.7542, -8.9549, -9.4294, -10.123, -9.8171, -9.6261, -9.4657, -9.5427, -9.989, -9.989, -9.989, -10.123, -7.6679, -6.8412, -7.001, -6.4188, -7.54, -7.9257, -9.3726, -6.6887, -8.2275, -8.6795, -7.7995, -9.3036, -7.2283, -7.9863, -8.286, -8.9206, -8.183, -8.286, -9.2708, -7.4631, -8.0604, -7.9512, -8.4563, -8.4563, -8.9912, -9.3726, -9.6603, -9.409, -9.6138, -8.2505, -7.212, -8.9791, -9.0037, -9.5146, -9.0037, -9.5571, -9.2269, -9.5146, -9.1961, -9.3968, -9.5571, -8.3106, -9.92, -9.92, -9.055, -8.3886, -9.8023, -9.9846, -9.8023, -9.8023, -9.8023, -10.054, -10.054, -10.054, -9.9846, -9.9846, -9.92, -10.054, -10.208, -10.208, -8.1661, -8.9523, -8.4318, -7.8784, -9.0824, -8.7146, -7.5539, -8.9523, -9.4878, -7.7755, -5.8871, -9.5304, -8.1885, -8.9047, -7.8619, -7.6619, -9.0283, -9.6214, -5.9361, -9.8327, -9.5748, -7.8217, -9.5748, -8.0024, -9.5304, -9.7214, -9.7214, -9.37, -9.6702, -8.7146, -5.4525, -8.7899, -9.483, -9.483, -9.7707, -9.1646, -9.483, -7.1763, -8.2916, -9.1953, -9.1953, -9.5256, -9.1057, -9.0775, -9.403, -9.4422, -9.1953, -9.5256, -9.6653, -8.749, -9.3289, -9.8885, -9.1953, -9.8279, -10.022, -9.1347, -9.953, -8.9722, -8.9722, -9.483, -8.0819, -8.5143, -7.4661, -7.7731, -8.4205, -9.0143, -8.3911, -8.9363, -9.224, -7.943, -7.6347, -8.9116, -8.3767, -8.754, -9.0698, -8.4663, -8.2307, -8.4205, -9.2579, -9.1287, -8.5476, -8.6178, -9.1287, -8.8185, -9.293, -8.5476, -8.9616, -6.3986, -8.841, -7.3781, -7.0556, -7.0034, -9.288, -9.288, -9.7298, -9.787, -9.9811, -9.9811, -9.9811, -9.9811, -9.9811, -10.423, -9.3621, -9.9121, -9.4847, -10.318, -10.318, -9.0366, -9.3243, -9.9121, -9.3621, -9.3621, -9.3621, -7.1479, -9.5756, -9.3621, -9.3243, -9.0648, -9.288, -9.3621, -7.5634, -7.4398, -7.682, -7.9052, -8.4129, -8.0655, -7.8511, -9.0038, -8.6753, -7.9333, -8.5619, -7.8251, -8.8031, -8.2435, -8.3246, -8.8261, -9.4092, -9.1861, -9.4518, -8.4442, -7.9526, -8.5442, -8.7371, -9.2551, -8.8031, -8.7586, -9.1861, -9.0609, -9.0609, -9.0609, -6.9956, -7.3034, -7.645, -7.3992, -8.1678, -5.9612, -7.5693, -6.9845, -9.0602, -7.7424, -8.3671, -7.6813, -8.6354, -7.9326, -8.5793, -8.8024, -4.3907, -9.1854, -8.8024, -9.2544, -7.2983, -7.7114, -8.2691, -7.8681, -8.1922, -7.1617, -8.098, -7.8681, -8.0868, -7.9814, -8.1374, -8.3034, -7.4802, -7.6601, -7.5694, -9.322, -7.5761, -8.198, -8.5911, -9.2128, -8.668, -9.2478, -8.2493, -9.0247, -8.8189, -5.1709, -9.402, -9.0537, -9.0537, -8.0157, -8.6882, -7.5964, -8.9425, -9.322, -8.4692, -8.5196, -8.8189, -9.6897, -8.4529, -9.0537, -7.7275, -9.3449, -9.6193, -8.7136, -8.7351, -8.6925, -8.7351, -8.8261, -8.8261, -8.8261, -8.8261, -8.8261, -8.8261, -9.6193, -9.8557, -10.484, -9.9988, -8.2199, -8.4529, -7.7846, -7.8275, -8.4049, -8.8025, -8.8025, -8.8502, -8.8502, -8.8502, -8.8502, -8.8502, -8.8502, -8.0376, -6.8447, -7.6212, -6.4172, -7.4305, -5.9165, -8.1177, -7.8123, -6.2349, -6.635, -7.7527, -8.8596, -5.2319, -4.4423, -6.3894, -8.5782, -8.4213, -7.3952, -6.2477, -8.0487, -8.5595, -9.0827, -7.3281, -9.2163, -7.9533, -8.8108, -8.5782, -8.5411, -8.4053, -9.3296, -7.6596, -7.652, -8.4743, -6.0171, -8.9513, -6.592, -6.6543, -7.1143, -6.8478, -7.5444, -6.4503, -8.4917, -6.4969, -6.8047, -7.2167, -6.751, -7.1366, -7.6295, -6.5972, -6.0098, -7.3815, -5.1614, -7.652, -8.3917, -7.8527, -8.3153, -8.6636, -9.1008, -5.6689, -8.2041, -5.9432, -5.9886, -7.3534, -5.3615, -7.5471, -7.8989, -8.3495, -8.3043, -7.1167, -8.835, -8.9403, -8.632, -8.0812, -8.8103, -8.3192, -8.9403, -8.8603, -8.9403, -7.4119, -8.6952, -8.2064, -6.2973, -8.7397, -8.592, -7.9187, -9.0273, -8.1294, -8.7862, -8.7172, -8.5726, -7.7344, -8.1524, -8.0559, -8.0559, -6.6783, -8.4965, -8.833, -9.5261, -9.1206, -9.5261, -9.8138, -9.8138, -9.8138, -9.8138, -9.8138, -9.8138, -9.8138, -9.8138, -9.8138, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -9.8828, -8.2085, -8.2085, -8.2499, -8.0937, -8.1306, -7.9074, -9.1804, -9.2168, -8.7284, -9.0161, -8.5613, -8.0937, -8.1181, -8.5053, -8.6624, -9.5169, -9.0161, -8.6624, -8.9862, -9.2545, -9.74, -8.9291, -9.6222, -9.8735, -9.74, -9.4681, -9.6794, -9.6794, -9.6222, -9.5169, -8.3344, -8.3499, -7.9238, -7.3497, -7.4029, -6.3103, -8.2183, -8.2183, -7.0751, -8.9534, -8.9534, -6.5845, -6.9366, -6.9366, -8.7952, -6.2265, -8.3344, -9.1076, -5.2497, -5.3441, -8.1781, -8.3499, -6.7819, -8.2893, -8.8712, -8.5968, -8.4145, -7.7814, -8.2747, -6.9405, -8.0407, -8.2638, -8.3562, -8.928, -8.7944, -8.928, -9.0821, -9.4876, -8.7697, -8.9868, -9.0821, -9.8443, -9.7753, -9.7753, -9.1511, -10.181, -9.4388, -9.6501, -9.5389, -9.9184, -10.085, -9.9184, -9.8443, -10.286, -10.286, -9.6501, -10.085, -9.7753, -9.7753, -10.181, -8.1529, -8.1662, -7.7741, -8.3093, -8.1529, -7.9298, -8.655, -8.9871, -7.1803, -8.7224, -8.1529, -7.1413, -8.5518, -7.1037, -7.9838, -9.3926, -5.6293, -6.4175, -8.3893, -8.041, -5.8975, -7.73, -7.0543, -9.2648, -9.1514, -8.8727, -9.3056, -7.8987, -8.677, -8.9573, -6.7094, -7.2972, -7.4832, -7.808, -7.5434, -6.1153, -7.667, -8.1547, -7.9034, -8.1547, -6.657, -7.1937, -8.0337, -8.1265, -7.9605, -5.8088, -8.1985, -8.9374, -8.8196, -7.9843, -7.0095, -8.0465, -9.002, -9.1451, -9.1451, -8.3958, -8.3256, -8.7143, -8.4142, -7.3793, -9.1364, -9.2165, -9.9096, -9.9096, -9.9096, -9.9096, -9.9096, -9.9096, -9.9096, -9.9096, -9.9096, -8.4242, -7.7311, -7.9059, -8.5233, -7.8836, -7.4317, -8.146, -7.1581, -7.1688, -7.8512, -5.6999, -7.2587, -8.1318, -6.1621, -8.6568, -8.7056, -6.5744, -8.1898, -9.259, -8.8299, -7.8855, -8.1512, -6.7795, -8.1368, -8.1512, -7.8527, -7.3549, -8.8589, -7.7032, -7.1649, -5.4735, -7.5895, -8.2744, -8.3599, -8.3078, -7.9194, -5.2315, -7.8855, -8.0812, -6.0309, -8.3249, -7.4295, -8.2264, -6.4014, -7.232, -8.5351, -8.3963, -8.0948, -9.018, -8.0998, -4.971, -6.8793, -7.6316, -8.7389, -8.4447, -8.5053, -8.2494, -6.793, -8.5053, -8.2176, -8.2176, -8.4645, -6.0611, -8.3511, -8.3875, -5.419, -8.88, -8.1138, -8.4062, -6.1131, -7.0832, -6.8431, -8.2494, -6.9212, -6.9693, -7.5807, -8.2021, -7.6143, -7.2466, -5.5984, -7.2382, -5.5546, -8.0539, -8.2105, -8.4379, -8.8223, -8.4379, -8.8223, -8.7327, -8.8223, -9.197, -9.197, -9.5154, -9.5154, -9.197, -9.197, -9.197, -9.197, -9.197, -9.197, -9.197, -9.197, -9.197, -9.5154, -9.5154, -9.5154, -9.5154, -9.5154, -9.8901, -6.7164, -7.4096, -7.3431, -8.5006, -7.4565, -6.0843, -7.2285, -8.3728, -7.191, -7.7522, -7.4808, -8.8836, -5.1404, -7.3012, -7.2742, -5.5232, -6.374, -5.8202, -5.0089, -8.6212, -6.7795, -8.2417, -8.8508, -9.1493, -7.149, -8.8191, -7.4485, -7.8903, -7.5663, -7.1788, -8.353, -7.6599, -8.3289, -8.403, -8.5113, -8.8886, -8.3289, -9.2334, -8.5403, -9.5817, -9.5817, -9.2334, -9.2334, -9.5817, -9.5817, -9.8694, -9.5817, -9.8694, -9.5817, -9.8694, -6.9426, -6.8737, -8.4831, -8.429, -8.6326, -8.8477, -9.0709, -8.1546, -8.8477, -8.6326, -8.2196, -7.4233, -8.0229, -7.505, -6.4242, -7.8436, -7.9051, -5.9412, -6.1903, -7.9374, -5.6614, -7.051, -7.8436, -4.0907, -7.3033, -7.228, -8.5219, -8.1362, -4.3792, -8.3106, -8.3347, -6.7252, -4.5953, -9.0525, -8.8702, -6.7499, -6.6233, -6.7155, -9.2757, -7.2442, -5.9781, -5.7306, -5.7381, -5.4003, -6.2426, -6.5126, -6.1755, -6.7975, -7.3476, -6.8254, -6.5505, -7.4583, -6.8368, -6.8425, -7.6841, -7.6975, -7.1187, -7.9762, -7.8272, -7.2058, -7.3381, -6.1697, -7.9072, -7.8427, -7.6975, -7.6841, -8.3127, -6.4761, -7.5242, -7.4583, -6.6084, -7.5221, -7.4839, -6.8961, -7.6174, -7.3226, -7.0537, -7.6032, -6.7539, -7.7715, -6.4906, -7.1123, -8.1523, -6.3052, -7.6318, -7.6612, -6.8891, -7.1123, -7.2119, -7.7387, -6.4235, -6.5332, -6.6785, -4.4008, -6.5676, -5.302, -7.8769, -6.224, -7.6612, -7.3226, -6.8544, -6.5191, -5.8372, -6.9969, -6.4132, -5.1844, -7.0815, -7.9223, -6.6502, -7.1113, -5.5203, -7.3498, -6.9273, -7.7944, -7.6991, -7.4724, -7.8563, -7.7746, -7.5476, -7.6289, -7.5793, -6.8943, -8.4876, -7.9223, -8.3392, -8.123, -7.7746, -7.8353, -8.4106, -6.5303, -4.6556, -4.9006, -4.647, -5.3831, -5.5123, -5.5175, -5.6877, -5.3433, -5.2746, -5.753, -5.46, -5.8165, -4.6698, -5.9185, -5.1509, -6.0085, -6.1642, -5.973, -6.306, -6.0018, -6.4139, -6.4178, -6.427, -6.392, -6.487, -6.5019, -5.8029, -6.0727, -4.5318, -5.3902, -4.3223, -5.3291, -6.0452, -4.8188, -5.6277, -4.5951, -4.0921, -6.0652, -4.4162, -6.4723, -6.2607, -6.7268, -5.8522, -5.9189, -5.0271, -6.976, -4.9566, -4.2456, -6.2854, -5.4585, -6.0073, -6.3508, -7.2615, -4.7345, -6.5729, -5.3561, -4.9872, -4.1059, -5.3949, -5.7655, -6.4849, -6.415, -5.4987, -6.3573, -6.484, -6.6572, -7.0186, -6.9431, -6.1122, -5.5354, -7.3192, -7.1034, -7.1267, -7.3956, -5.4859, -7.5198, -6.1097, -6.5505, -7.5241, -6.5182, -7.4409, -7.6678, -6.9463, -6.8769, -7.71, -7.7343, -3.1742, -5.2308, -4.7982, -5.7656, -5.9204, -5.3363, -5.5179, -6.3079, -5.8289, -6.5963, -5.8622, -6.8188, -5.8876, -6.1999, -7.1327, -7.2624, -7.3295, -5.621, -5.8788, -6.5539, -5.7941, -4.12, -6.8926, -3.9789, -4.0109, -4.2243, -5.614, -5.1691, -6.0833, -4.7321, -4.0719, -4.4398, -6.5592, -4.5172, -6.4838, -5.5391, -5.7252, -7.2373, -6.59, -7.3648, -7.2328, -7.3159, -6.6014, -4.4269, -4.659, -7.7582, -7.7656, -5.919, -7.8504, -7.939, -6.1575, -7.9921, -3.4423, -3.8827, -4.4962, -4.4115, -4.0063, -4.7798, -5.3954, -5.407, -4.5384, -5.7408, -6.1508, -5.3685, -6.4756, -6.1915, -6.5501, -6.697, -3.889, -6.7913, -7.0241, -6.7161, -5.1828, -4.1469, -7.0132, -7.2499, -4.4633, -6.8181, -6.4877, -6.9371, -4.7727, -5.5167, -4.7051, -5.6312, -6.3102, -6.3845, -4.3434, -5.4049, -6.7235, -6.8003, -5.9153, -5.7752, -7.0051, -7.0927, -7.1007, -6.3419, -7.2057, -6.8777, -7.0232, -6.7043, -7.3984, -7.372, -7.502, -6.8897, -6.4473, -7.5095, -5.1917, -7.1021, -3.451, -4.3607, -4.4744, -4.2244, -4.5274, -5.7359, -5.4603, -6.3637, -4.455, -6.441, -5.4522, -6.5498, -6.6238, -6.6262, -6.5944, -6.728, -6.5255, -6.8199, -6.1265, -4.9702, -6.7987, -6.3945, -5.1842, -7.0569, -7.1117, -7.1362, -7.1496, -6.793, -7.2639, -7.1354, -7.1692, -4.9999, -6.2608, -7.3472, -5.5756, -8.0953, -4.7845, -7.9193, -8.027, -7.0326, -8.1128, -8.957, -7.1917, -8.1465, -4.7841, -7.7997, -4.7396, -8.9373, -6.1504, -8.1616, -4.1477, -4.7209, -4.9362, -5.2072, -5.1341, -5.6228, -5.4669, -5.7761, -5.786, -5.6041, -5.399, -6.0334, -6.0785, -6.2161, -4.3612, -6.3392, -6.4716, -5.3225, -6.663, -6.4361, -6.8221, -6.5692, -6.8506, -7.0189, -5.5835, -7.2213, -7.2274, -7.2594, -7.3403, -3.2584, -3.9756, -4.771, -4.812, -5.0965, -5.6669, -5.5869, -5.7344, -5.849, -4.5708, -6.2962, -6.3309, -6.3483, -6.4233, -6.4381, -6.15, -6.5559, -6.5656, -6.6517, -5.3975, -6.7258, -6.2332, -6.7997, -6.8962, -4.2482, -6.7777, -3.5006, -4.8127, -5.3626, -5.2492, -5.7147, -5.8954, -5.5929, -5.5507, -6.0188, -4.9234, -4.8127, -5.2994, -6.0562, -6.646, -6.0827, -6.7524, -6.8307, -4.6421, -7.0155, -6.7299, -7.1333, -7.1333, -6.9113, -6.3081, -7.2094, -7.2141, -4.9835, -7.2329, -7.1838, -4.6098, -5.735, -4.9243, -5.0714, -5.7651, -6.0879, -6.3675, -4.8159, -5.1891, -7.2019, -7.1133, -5.7177, -7.4578, -7.5399, -6.8438, -5.0673, -7.6659, -7.2287, -7.7435, -5.7985, -5.6742, -7.8452, -7.8453, -7.8726, -7.5334, -6.859, -7.929, -3.0038, -3.5728, -3.7217, -3.8602, -3.9367, -4.2937, -4.8785, -5.2815, -5.4184, -5.5144, -5.531, -5.4864, -5.4815, -5.0645, -6.1906, -5.2012, -5.8513, -6.3843, -6.4516, -6.6319, -6.6651, -5.8595, -4.5543, -3.8308, -4.8329, -5.2438, -5.503, -4.6781, -5.856, -5.8871, -5.9002, -5.9147, -5.9952, -6.035, -6.0922, -6.1362, -6.1496, -5.718, -6.2231, -6.2507, -6.2887, -6.3182, -6.361, -6.3736, -6.3488, -6.4167, -6.4345, -4.1237, -4.5227, -4.5293, -4.7827, -5.0814, -4.3219, -4.6572, -4.6364, -5.3201, -3.9316, -4.701, -5.717, -6.0466, -6.4624, -6.4615, -6.6659, -6.6745, -6.6353, -6.8101, -6.8201, -5.1059, -6.6206, -5.0377, -5.8187, -7.1033, -2.8248, -3.6981, -4.2092, -4.4022, -4.3742, -4.4412, -5.0665, -4.8238, -5.2755, -5.3525, -5.4875, -5.5963, -5.9085, -6.0841, -6.1605, -6.1623, -6.2565, -6.2777, -6.3274, -6.3906, -5.9446, -6.5033, -6.513, -6.334, -6.4553, -6.7077, -6.7853, -6.6005, -6.3703, -4.553, -4.9773, -5.6169, -5.1481, -5.7864, -5.7984, -5.3956, -4.5614, -6.0845, -5.5067, -4.8715, -6.3727, -6.4148, -6.3575, -6.5261, -6.5593, -6.2284, -6.0456, -5.8758, -6.8324, -5.1388, -6.2561, -7.0883, -6.4782, -6.3725, -6.9275, -7.2193, -7.1669, -7.2243, -7.2871, -4.2846, -4.4426, -4.7281, -4.9409, -4.9308, -3.859, -4.6802, -5.0367, -5.4389, -5.4922, -5.7086, -5.4847, -5.9478, -6.0679, -6.1253, -6.1338, -5.9034, -6.1632, -6.2942, -5.8657, -6.3797, -5.7954, -6.6053, -5.125, -6.393, -3.9004, -5.7999, -4.8083, -4.8725, -5.6337, -4.4421, -5.3473, -6.9318, -6.9499, -6.7656, -6.9652, -6.6911, -7.2443, -7.3896, -5.361, -7.0584, -5.9345, -4.8684, -5.5052, -7.4217, -4.7952, -7.8787, -5.6559, -6.2011, -8.0177, -8.0407, -8.0525, -8.1139, -5.825, -3.4542, -3.7667, -3.8497, -4.2419, -4.486, -4.6429, -4.4832, -4.4847, -5.299, -5.3952, -5.6185, -5.8743, -4.7025, -5.6976, -4.9607, -5.892, -5.9755, -6.2957, -5.3983, -6.3664, -6.3964, -6.1104, -6.7734, -6.8927, -6.8344, -6.9906, -7.0156, -4.4352, -4.3571, -5.005, -4.2557, -5.552, -5.5562, -5.5473, -4.1694, -5.7074, -5.7186, -5.7907, -4.98, -5.6869, -5.6612, -4.0757, -5.643, -6.3187, -6.099, -4.6192, -6.1558, -6.3157, -6.7755, -6.7828, -6.767, -6.8425, -6.2934, -4.5913, -5.0934, -4.5701, -5.4521, -5.4287, -6.3215, -6.2291, -5.3998, -6.0201, -6.5744, -6.5805, -6.7315, -6.7597, -6.1709, -6.8811, -6.8942, -6.6373, -7.0054, -4.9759, -7.0426, -6.2974, -7.1688, -6.6318, -4.4022, -4.4874, -4.6412, -4.5815, -4.3324, -4.542, -5.2579, -5.4102, -5.8472, -4.3946, -4.0306, -5.7541, -6.2053, -5.5565, -6.1747, -6.2562, -6.0474, -6.4166, -5.9083, -4.4702, -6.6749, -6.661, -6.7328, -6.7328, -6.701, -6.4652, -4.3089, -4.6311, -5.0515, -5.4723, -5.5932, -5.7083, -5.3945, -5.2603, -5.7457, -5.8962, -5.3821, -5.4008, -5.7406, -6.1055, -6.1265, -5.6089, -6.1719, -5.8914, -5.5999, -6.0484, -5.5836, -6.2396, -5.6537, -6.4416, -6.4658, -6.4849, -5.2267, -5.2379, -3.4487, -4.8651, -4.9665, -5.8332, -5.0264, -6.0895, -6.4369, -6.8074, -6.8284, -6.9127, -6.9267, -7.0416, -6.1479, -7.2908, -5.6876, -7.2026, -6.6234, -7.3902, -6.6159, -7.4052, -7.4106, -7.4677, -7.484, -6.4886, -7.5258, -4.109, -4.5851, -4.7352, -5.0121, -4.8207, -5.4397, -5.5791, -4.7833, -5.3817, -5.7126, -5.3663, -4.2448, -5.7313, -5.8422, -5.4327, -6.0484, -5.2697, -6.059, -5.428, -5.2194, -6.4269, -6.477, -6.4857, -6.2302, -3.5097, -3.6162, -3.4305, -4.8835, -4.7617, -5.0036, -5.0446, -4.0564, -4.9348, -4.5842, -4.9662, -4.9117, -4.7491, -5.5188, -6.2144, -4.4072, -6.4106, -6.356, -5.4726, -6.7054, -6.7583, -6.6408, -6.528, -5.8979, -7.0168, -7.0168, -6.6521, -5.8583, -3.6814, -4.3365, -3.0689, -4.1197, -4.6246, -4.4157, -4.7882, -5.4986, -5.2541, -5.4012, -5.7792, -5.6761, -5.8703, -5.9457, -5.9897, -5.7641, -5.5318, -6.1622, -6.1204, -5.7849, -6.4135, -6.4279, -4.3007, -4.5567, -4.08, -4.2315, -5.1069, -4.9937, -5.7008, -5.7212, -5.6191, -4.8206, -6.0908, -5.5587, -6.0378, -6.2458, -6.3526, -6.4303, -6.5003, -6.5044, -6.5209, -6.3764, -6.581, -4.8421, -4.9906, -5.0735, -5.2779, -5.3889, -5.4091, -5.4345, -5.6237, -4.1252, -3.7528, -5.4355, -5.5836, -5.9551, -6.0137, -6.0698, -6.2169, -6.3404, -5.9903, -6.4498, -4.2408, -6.5929, -6.6032, -5.3612, -5.7034, -5.7225, -4.1391, -5.1637, -5.9312, -6.1613, -6.5248, -5.8245, -5.1223, -6.5825, -4.0972, -6.2939, -6.8394, -6.919, -6.9529, -6.0812, -6.9003, -4.2773, -5.0233, -5.147, -5.8045, -5.6782, -5.941, -5.8501, -5.1403, -5.8604, -4.9439, -5.4008, -5.3997, -6.3022, -5.6863, -4.7254, -6.4227, -6.4669, -6.7775, -4.3374, -4.8536, -5.6643, -5.0753, -5.4174, -5.8584, -4.8157, -3.9145, -5.5485, -5.9511, -5.7156, -6.2683, -6.3162, -6.2767, -5.9658, -4.9077, -4.5034, -5.9293, -5.6505, -5.538, -5.3891, -6.263, -6.0923, -4.7237, -5.7002, -5.7371, -5.76, -6.3757, -5.4987, -4.8754, -5.0809, -5.0097, -4.8719, -5.0561, -5.2069, -5.0327, -5.727, -5.3408, -5.4697, -5.2264, -4.8118, -4.9703, -5.3275, -5.9422, -6.6547, -6.2686, -5.4982, -5.5091, -5.685, -5.7847, -5.1614, -5.7886, -5.9926, -4.1677, -4.8505, -5.0184, -4.6454, -4.6955, -5.8846, -4.6444, -4.1066, -4.6306, -4.7929, -5.9156, -5.4026, -6.1135, -6.3442, -4.2323, -5.4644, -4.3589, -4.3286, -5.7072, -5.6778, -4.822, -4.8783, -6.5874, -6.7999, -4.4198, -4.5415, -5.2304, -4.9411, -5.271, -5.624, -6.1201, -3.9586, -5.5731, -5.9429, -6.0752, -4.5889, -4.2801, -5.7866, -5.191, -6.2547, -4.7772, -4.0741, -4.6621, -4.727, -5.2335, -5.1822, -4.6013, -4.9956, -5.7205, -4.976, -5.9827, -6.1896, -4.5409, -4.8323, -4.9451, -4.5576, -5.344, -5.558, -5.2205, -5.9845, -5.8651, -6.3061, -4.9421, -5.3029, -5.6471, -4.5108, -6.3439, -5.4478, -4.3361, -4.4611, -6.0337, -5.6046, -6.1863, -4.7155, -6.1619, -5.0151, -5.6527, -5.4239, -6.0064, -4.3772, -5.1306, -4.6041, -5.3907, -5.5812, -6.0658, -5.812, -4.3036, -5.1412, -5.2601, -5.2532, -4.4553, -5.249, -4.5203, -5.0429, -6.5859, -5.6486, -6.87, -3.6486, -4.9065, -5.5948, -4.5263, -4.9149, -5.5093, -5.4666, -4.3812, -5.7298, -5.8296, -5.484, -5.6773, -6.0214, -3.7924, -5.0785, -3.7842, -4.8339, -5.0549, -3.9633, -5.8204, -5.4128, -5.7513, -5.654, -4.8234, -5.3131, -5.1801, -5.9006, -5.56, -5.1653, -3.6433, -5.2718, -6.0576, -5.5336, -5.8092, -4.7507, -5.3685, -5.9039, -6.152, -5.3239, -5.7918, -5.8644, -6.6257, -4.4622, -4.8942, -5.3261, -4.5925, -4.8888, -5.0889, -5.3925, -4.8796, -5.7008, -6.032, -4.5334, -5.7755, -5.2026, -5.0018, -4.8852, -5.4615, -4.9947, -6.0943, -5.6443, -4.4915, -4.5223, -5.9398, -4.8998, -6.1367, -5.0879, -5.4364, -5.276, -5.4235, -5.6425, -5.8379, -5.8386, -5.665, -6.2651, -4.6643, -5.7706, -5.1595, -5.0152, -5.3131, -6.0776, -6.0765, -4.8599, -5.2816, -4.9256, -6.6628, -5, -5.5168, -4.7297, -5.245, -5.3975, -4.3929, -4.3141, -4.8165, -5.0845, -4.3853, -4.8807, -4.7799, -4.5821, -4.9917, -4.4192, -5.7966, -4.6552, -5.1771, -4.6518, -4.7795, -4.5405, -4.5014, -5.6565, -5.053, -5.3056, -5.5431, -4.5692, -4.6341, -5.652, -4.7481, -5.2532, -5.2536, -5.9615, -4.2531, -5.051, -4.615, -5.5593, -4.6113, -5.2583, -5.6228, -5.6122, -5.8868, -4.9696, -5.1422, -5.6415, -6.0649, -4.8584, -5.1394, -5.2704, -5.4447, -4.1968, -4.9421, -5.0564, -5.5059, -4.6762, -4.2188, -4.1888, -5.2892, -4.9796, -4.7533, -5.9683, -5.0874, -5.7188, -4.6837, -5.5352, -5.4712, -5.399, -5.3538, -5.6999, -5.3352, -5.8601, -5.7481, -6.0642, -4.7546, -5.1751, -4.7881, -5.2327, -5.5122, -5.7547, -5.7327, -5.17, -5.6814, -5.4431, -4.9221, -4.9083, -5.5313, -5.682, -5.3623, -4.8787, -5.0827, -4.7876, -5.9857, -5.1934, -5.4075, -5.6826, -5.6933, -5.293, -5.647, -5.0451, -5.3674, -5.2368, -5.1446, -4.9, -4.8166, -4.9898, -5.5655, -5.2194, -4.9206, -5.0502, -4.7717, -4.9323, -5.6583, -5.8471, -4.7478, -4.7113, -4.6364, -5.3938, -5.2064, -5.4326, -4.5604, -4.8636, -5.4959, -5.0543, -4.9904, -5.2853, -5.3747, -5.4114, -5.5034, -4.3621, -4.8063, -4.5859, -5.2716, -5.4033, -5.2371, -4.6033, -5.241, -5.3719, -5.5593, -5.5666, -5.2358, -5.331, -4.912, -4.8221, -4.6721, -4.8444, -5.6934, -4.9184, -4.9625, -5.2777, -5.5901, -4.7492, -5.2812, -5.6644, -4.8179, -5.5194, -4.4577, -5.0542, -5.4261, -4.9302, -5.6104, -5.7094, -4.5382, -5.2145, -5.485, -4.9268, -6.0884, -5.3965, -5.152, -5.3166, -5.2577, -5.4116, -5.7268, -5.1716, -4.8046, -5.4581, -5.4225, -4.8639, -5.5724, -5.0872, -5.2867, -5.4002, -5.325, -5.87, -5.2648, -5.0921, -5.3929, -5.1131, -5.2044, -5.1719, -5.1697, -5.5608, -4.9882, -4.8313, -4.94, -5.2993, -4.5789, -5.6953, -5.2553, -4.8926, -5.138, -4.8495, -5.3952, -5.2986, -5.4532, -5.2558, -5.7317, -5.0618, -6.0085, -5.3174, -5.3658, -5.2816, -5.3034, -5.8743, -5.9437, -4.8025, -5.0713, -5.2677, -4.7778, -4.9717, -5.7118, -4.8686, -4.8852, -5.0978, -4.5402, -5.0975, -4.9881, -5.2002, -4.9069, -4.5472, -5.0264, -5.2516, -5.7937, -5.5531, -5.6962, -5.0561, -5.3162, -5.6248, -5.7066, -5.8457, -5.1863, -5.6059, -5.4097, -5.4839, -5.599, -5.6045, -5.7086, -5.7755, -5.9074, -4.9158, -5.2662, -5.3163, -5.379, -5.4801, -5.5275, -5.2451, -5.0228, -5.2731, -5.6748, -5.3359, -5.417, -5.7232, -5.6811, -5.6889, -5.2864, -5.2383, -5.2322, -5.2355, -5.6034, -5.1024, -4.5573, -5.0891, -5.3662, -5.1314, -5.7688, -5.3045, -5.5219, -5.3829, -5.2056, -5.374, -5.2327, -5.5258, -5.5858, -5.8344, -5.4718, -4.9504, -5.1397, -5.0948, -5.2329, -5.4098, -5.5541, -5.6427, -5.5226, -5.3697, -4.8053, -5.0974, -5.3524, -5.5641, -5.4743, -6.0273, -5.1415, -4.9714, -4.7219, -4.9293, -5.2673, -4.8294, -4.8686, -4.6727, -4.8089, -5.5741, -4.8861, -4.8438, -4.9552, -5.3267, -5.4787, -5.4575, -5.3005, -5.3742, -5.574, -5.6572, -5.3346, -5.4667, -5.2523, -5.696, -5.7347, -5.3536, -5.3515, -5.5289, -5.4357, -5.576, -5.5605, -5.4542, -5.1432, -5.3227, -5.4116, -5.244, -5.1747, -5.368, -5.2884, -5.2545, -5.2113, -5.2628, -5.2362, -5.5208, -5.2081, -5.2736, -5.1049, -5.5658, -5.2809, -5.2939, -5.5291, -5.5647, -5.0501, -5.3041, -5.2765, -5.3882, -5.2123, -5.7054, -5.6348, -5.5728, -5.6578, -5.6078, -5.2438, -5.184, -5.3149, -5.1967, -5.6744, -5.4523, -5.6145, -5.0402, -5.4769, -5.1783, -4.8356, -4.844, -5.1898, -4.6809, -5.0704, -5.0051, -5.4771, -5.5024, -5.281, -5.5885, -5.6604, -5.3189, -5.6383, -5.6787, -5.3833, -5.2746, -5.7231, -5.4777, -5.421, -5.596, -5.4874, -5.5063, -5.5359, -5.4201, -5.4486, -5.3477, -5.5059, -5.5373, -5.3536, -5.4644, -5.331, -5.2403, -5.21, -5.314, -5.4817, -5.6527, -5.3228, -5.4456, -5.3591, -5.0745, -5.2788, -5.3965, -5.3191, -5.425, -5.0596, -5.1172, -5.0372, -5.2464, -5.2045, -5.264, -5.3675, -5.3759, -5.2513, -5.5202, -5.4723, -5.6134, -5.6793, -5.3977, -5.6833, -5.7527, -5.723, -5.6572, -5.5196, -5.5359, -5.5641, -5.593, -5.5804, -5.5308, -5.5495, -5.5397, -5.6587, -5.6997, -5.3852, -5.4494, -5.4579, -5.4218, -5.3436, -5.6674, -5.3044, -5.4439, -5.5867, -5.5765, -5.7969, -5.4607, -5.371, -5.4395, -5.5989, -5.5191, -5.3254, -5.3358, -5.5501, -5.5958, -5.6787, -5.36, -5.3476, -5.4474, -5.2908, -5.305, -5.3087, -5.3561, -5.376, -5.4741, -5.5065, -5.7119, -5.7776, -5.6447, -5.7036, -5.72, -5.5681, -5.6169, -5.6497, -5.6157, -5.6455, -5.5637, -5.7659, -5.6276, -5.6327, -5.6621, -5.4568, -5.4966, -5.5421, -5.5117, -5.4441, -5.7261, -5.3457, -5.4393, -5.5541, -5.5772, -5.7768, -5.7871, -5.5121, -5.6689, -5.6332, -5.6363, -5.5475, -5.5573, -5.3607, -5.378, -5.379, -5.4895, -5.4426, -5.4884, -5.4969, -5.531 ], | |
| "loglift": [ 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 2.9012, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.1951, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2009, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2593, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2728, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.2979, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3033, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3388, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3491, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3758, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3771, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3841, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.3994, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4154, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4396, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4526, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4545, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4797, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.4806, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5613, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5694, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5788, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.5875, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6752, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.6789, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.896, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9166, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 3.9613, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 4.2517, 2.8566, 2.8814, 2.839, 2.8957, 2.9012, 2.9012, 2.9012, 2.8574, 2.8495, 2.9012, 2.8621, 2.9012, 2.7648, 2.9012, 2.8111, 2.9012, 2.8921, 2.8698, 2.9012, 2.8597, 2.9012, 2.9012, 2.9012, 2.8912, 2.9007, 2.9012, 2.8225, 2.8456, 3.1881, 3.1763, 3.0042, 3.1159, 3.1951, 3.0548, 3.1095, 2.9917, 2.9318, 3.1408, 2.9524, 3.1783, 3.1481, 3.1947, 3.0945, 3.0972, 2.9977, 3.1951, 2.9693, 2.8866, 3.105, 3.0078, 3.0612, 3.0927, 3.1852, 2.8974, 3.1015, 2.9658, 2.922, 3.1328, 3.1787, 3.1444, 3.2009, 3.1845, 3.0733, 3.1439, 3.1435, 3.1612, 3.2009, 3.1789, 3.0797, 3.0056, 3.2009, 3.1756, 3.1729, 3.2009, 2.983, 3.2009, 3.0439, 3.0896, 3.1967, 3.0796, 3.1793, 3.2009, 3.1081, 3.0918, 3.1836, 3.1849, 3.0422, 3.2483, 3.1661, 3.2593, 3.2593, 3.1928, 3.1737, 3.2593, 3.1814, 3.2497, 3.1646, 3.2592, 3.1519, 3.1779, 3.2593, 3.2592, 3.2593, 3.0684, 3.0758, 3.1506, 3.0651, 2.8748, 3.1826, 3.2476, 3.1977, 3.1986, 3.2689, 3.2166, 3.2728, 3.1153, 3.0134, 3.0417, 3.2728, 3.0317, 3.2374, 3.1175, 3.1351, 3.2728, 3.1871, 3.2728, 3.2519, 3.256, 3.1653, 2.9113, 2.9324, 3.2728, 3.2726, 3.0671, 3.2709, 3.2728, 3.0733, 3.2728, 3.2646, 3.2965, 3.292, 3.2394, 3.1853, 3.2549, 3.296, 3.2942, 3.1533, 3.2857, 3.2778, 3.1765, 3.2979, 3.2605, 3.2979, 3.2828, 2.9691, 3.2727, 3.2979, 3.2636, 3.092, 2.9748, 3.2876, 3.2978, 2.9802, 3.2322, 3.1939, 3.2429, 3.3033, 3.3033, 3.1977, 3.2372, 3.3033, 3.3032, 3.0671, 3.1847, 3.3033, 3.3033, 3.201, 3.1834, 3.3033, 3.3033, 3.303, 3.2155, 3.3033, 3.2577, 3.2713, 3.2293, 3.3033, 3.294, 3.3033, 3.2138, 3.1626, 3.2787, 3.0132, 3.2203, 3.3122, 3.2784, 3.2272, 3.1711, 3.2018, 3.3355, 3.253, 3.3388, 3.1185, 3.3388, 3.2187, 3.3388, 3.3388, 3.3388, 3.3341, 3.3388, 3.316, 3.3329, 3.2554, 3.1194, 3.3217, 3.2761, 3.1319, 3.3387, 3.3388, 3.3388, 3.3379, 3.2876, 3.3388, 3.3491, 3.3491, 3.0986, 3.2341, 3.3491, 3.1462, 3.3413, 2.9303, 3.262, 3.2688, 3.1549, 3.2712, 3.3487, 3.1525, 3.2579, 2.8712, 3.2062, 2.8538, 3.3182, 3.007, 3.2221, 3.3697, 3.3592, 3.3758, 3.3608, 3.3285, 3.3734, 3.3526, 3.3758, 3.3758, 3.346, 3.3163, 3.3758, 3.3582, 3.3686, 3.1581, 3.3758, 3.3712, 3.2315, 3.3758, 3.347, 3.3758, 3.3302, 3.3599, 3.3758, 3.2157, 3.3758, 3.3744, 3.3758, 3.3758, 3.3771, 3.3771, 3.3771, 3.3719, 3.3405, 3.3771, 3.3638, 3.3771, 3.3766, 3.2273, 3.3741, 3.3771, 3.3771, 3.3771, 3.3771, 3.3414, 3.3771, 3.3771, 3.3771, 3.2298, 3.3771, 3.322, 3.3771, 3.3771, 3.0672, 3.3454, 3.2394, 3.3791, 3.3841, 3.3347, 3.3649, 3.3841, 3.3466, 3.3334, 3.3428, 3.2104, 3.196, 3.2476, 3.3314, 3.3727, 3.3091, 3.3769, 3.3841, 3.1335, 3.3841, 3.3426, 3.3841, 3.3841, 3.359, 3.2896, 3.3841, 3.3841, 3.1347, 3.3841, 3.3732, 3.3983, 3.3994, 3.3079, 3.2889, 3.3565, 3.3415, 3.3303, 3.145, 3.1772, 3.3906, 3.3776, 3.2114, 3.3994, 3.3994, 3.3172, 3.1135, 3.3994, 3.3454, 3.3994, 3.182, 3.1597, 3.3994, 3.3993, 3.3992, 3.3608, 3.284, 3.3994, 3.4054, 3.4021, 3.4154, 3.4154, 3.4001, 3.4154, 3.4154, 3.4128, 3.4154, 3.4151, 3.4154, 3.3857, 3.3774, 3.3074, 3.4154, 3.301, 3.3556, 3.4016, 3.3987, 3.4131, 3.4154, 3.3211, 3.3979, 3.307, 3.392, 3.4291, 3.4291, 3.3259, 3.4283, 3.4278, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.3769, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4291, 3.4248, 3.4291, 3.4291, 3.4312, 3.4387, 3.4028, 3.4232, 3.4396, 3.3538, 3.3782, 3.3144, 3.3891, 3.2209, 3.2956, 3.3858, 3.4156, 3.4396, 3.4335, 3.4396, 3.4396, 3.431, 3.4396, 3.4395, 3.2473, 3.4106, 3.2183, 3.3021, 3.4396, 3.4424, 3.4401, 3.4424, 3.4424, 3.391, 3.3965, 3.4424, 3.4054, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.4424, 3.3824, 3.4424, 3.4424, 3.4077, 3.4199, 3.4424, 3.4424, 3.4131, 3.3874, 3.4232, 3.4526, 3.4526, 3.3881, 3.4526, 3.4526, 3.4009, 3.2873, 3.4526, 3.3732, 3.295, 3.4526, 3.4523, 3.4339, 3.4526, 3.4526, 3.398, 3.3742, 3.3523, 3.4526, 3.2517, 3.3668, 3.4519, 3.3799, 3.3638, 3.4246, 3.4526, 3.4464, 3.4526, 3.4523, 3.4545, 3.4545, 3.4545, 3.4545, 3.4431, 3.3171, 3.3959, 3.43, 3.4545, 3.4545, 3.4545, 3.4242, 3.4489, 3.4497, 3.4545, 3.4545, 3.428, 3.4545, 3.4545, 3.403, 3.4545, 3.3756, 3.45, 3.2818, 3.4218, 3.3089, 3.4797, 3.3324, 3.3183, 3.396, 3.2556, 3.3256, 3.4782, 3.4797, 3.4576, 3.4449, 3.4111, 3.4717, 3.4797, 3.2276, 3.4116, 3.2811, 3.1507, 3.2124, 3.4234, 3.1273, 3.4692, 3.2222, 3.282, 3.4794, 3.4797, 3.4797, 3.4797, 3.2164, 3.4715, 3.4768, 3.4806, 3.4578, 3.4646, 3.4806, 3.4532, 3.4365, 3.4806, 3.4806, 3.4664, 3.4806, 3.3496, 3.4292, 3.3428, 3.4376, 3.4434, 3.4762, 3.3631, 3.4645, 3.4586, 3.4145, 3.4804, 3.4806, 3.4668, 3.4806, 3.4806, 3.5403, 3.5289, 3.5613, 3.4307, 3.5613, 3.5613, 3.5566, 3.3968, 3.5613, 3.5613, 3.5604, 3.4674, 3.5277, 3.5233, 3.3193, 3.4927, 3.5613, 3.5269, 3.342, 3.5116, 3.5176, 3.5613, 3.5613, 3.5591, 3.5613, 3.4993, 3.5147, 3.5694, 3.3997, 3.4844, 3.4745, 3.5694, 3.5404, 3.4477, 3.5109, 3.5694, 3.5693, 3.5694, 3.5694, 3.5033, 3.5694, 3.5685, 3.5366, 3.5694, 3.3427, 3.5694, 3.4742, 3.5694, 3.5032, 3.2493, 3.5723, 3.5788, 3.5525, 3.4975, 3.4983, 3.5633, 3.539, 3.5788, 3.3925, 3.3455, 3.5354, 3.5788, 3.5048, 3.5707, 3.5788, 3.5382, 3.5788, 3.5032, 3.3411, 3.5788, 3.5762, 3.5788, 3.5787, 3.5693, 3.5378, 3.5773, 3.5875, 3.5841, 3.5769, 3.5795, 3.5875, 3.5493, 3.5259, 3.5797, 3.5771, 3.5111, 3.5105, 3.5475, 3.5875, 3.5875, 3.5264, 3.5875, 3.5549, 3.5214, 3.5664, 3.4989, 3.5674, 3.5001, 3.5875, 3.5874, 3.5875, 3.6752, 3.67, 3.4634, 3.6059, 3.5944, 3.6748, 3.5851, 3.6752, 3.6655, 3.6752, 3.6752, 3.6752, 3.6752, 3.6746, 3.5694, 3.6752, 3.4925, 3.6607, 3.5936, 3.6752, 3.5886, 3.6752, 3.6698, 3.6752, 3.6752, 3.5612, 3.6752, 3.6789, 3.6783, 3.6483, 3.6674, 3.6104, 3.6738, 3.6789, 3.585, 3.6427, 3.6789, 3.639, 3.5088, 3.6714, 3.6789, 3.6282, 3.6789, 3.5907, 3.6703, 3.5925, 3.5537, 3.6789, 3.6786, 3.6789, 3.631, 3.8885, 3.896, 3.7513, 3.896, 3.8765, 3.896, 3.896, 3.78, 3.8539, 3.806, 3.8294, 3.814, 3.756, 3.8332, 3.896, 3.6862, 3.896, 3.8733, 3.7736, 3.896, 3.896, 3.8751, 3.8587, 3.7752, 3.896, 3.896, 3.851, 3.7606, 3.8253, 3.8964, 3.7534, 3.8448, 3.8559, 3.814, 3.839, 3.9166, 3.8616, 3.8753, 3.9166, 3.9018, 3.9166, 3.9166, 3.9161, 3.8817, 3.8468, 3.9166, 3.899, 3.8538, 3.9166, 3.9166, 3.6801, 3.9607, 3.8949, 3.8751, 3.9613, 3.8934, 3.9613, 3.9613, 3.9452, 3.8378, 3.9613, 3.8909, 3.9411, 3.9613, 3.9613, 3.9603, 3.9612, 3.9613, 3.9613, 3.9446, 3.9613, 4.0977, 4.0977, 4.0977, 4.0899, 4.0977, 4.0977, 4.0977, 4.0977, 3.9235, 3.8642, 4.0496, 4.0592, 4.0977, 4.0977, 4.0977, 4.0977, 4.0977, 4.0517, 4.0977, 3.8364, 4.0977, 4.0977, 4.2136, 4.2508, 4.2517, 4.0527, 4.1603, 4.237, 4.2517, 4.2516, 4.1705, 4.0903, 4.2517, 3.9684, 4.2091, 4.2512, 4.2517, 4.2517, 4.1506, 4.2376, 3.9433, 2.6566, 2.6865, 2.7713, 2.7243, 2.7896, 3.0139, 2.7712, 2.9492, 2.7159, 2.8517, 2.7994, 3.0219, 2.8234, 2.5715, 2.972, 2.9813, 3.0585, 2.8561, 2.8752, 3.0454, 2.8524, 2.9031, 3.0064, 2.7333, 2.8064, 2.9971, 3.0228, 2.9476, 3.0425, 3.0462, 3.0305, 2.949, 2.9592, 2.772, 3.11, 3.0355, 2.9981, 2.9471, 3.1641, 3.1167, 2.8382, 2.993, 2.9978, 2.9999, 3.1099, 2.8701, 3.0443, 3.0918, 2.9294, 2.8227, 2.7823, 2.8068, 2.7615, 2.9277, 2.8224, 2.8504, 2.7805, 2.6476, 2.6443, 2.7289, 2.8634, 3.0403, 2.9349, 2.7294, 2.7155, 3.1599, 3.1345, 2.9657, 3.1092, 3.1582, 3.0178, 3.1256, 3.1447, 2.9538, 2.8711, 3.1684, 3.066, 2.9035, 2.9445, 2.9527, 3.1462, 3.017, 3.1773, 3.2346, 2.9035, 3.1063, 2.8096, 2.7831, 3.0812, 3.0637, 2.8323, 2.8091, 3.1938, 3.2312, 3.1203, 3.143, 3.2286, 3.1542, 3.1863, 3.2423, 3.35, 3.0994, 3.3074, 3.3389, 3.3622, 3.1196, 2.9202, 3.257, 3.1031, 3.3197, 3.1683, 2.9641, 3.0221, 2.9926, 3.1071, 3.1948, 2.9925, 3.0622, 3.2153, 3.005, 3.2382, 3.3768, 3.0494, 3.0544, 3.0617, 2.9597, 3.1056, 3.144, 3.0484, 3.1941, 3.132, 3.2388, 3.25, 3.2693, 3.3049, 3.0056, 3.3741, 3.3737, 3.0624, 3.072, 3.4507, 3.3358, 3.4737, 3.2696, 3.4441, 3.1471, 3.2749, 3.2154, 3.3519, 3.2119, 3.374, 3.2011, 3.3669, 3.4027, 3.4864, 3.4139, 3.3384, 3.4215, 3.4511, 3.3981, 3.3202, 3.3998, 3.1802, 3.2293, 3.5195, 3.2794, 3.5838, 3.2438, 3.4588, 3.5295, 3.2292, 3.3148, 3.72, 3.703, 3.4067, 3.7363, 3.7463, 3.6534, 3.6979, 3.7635, 3.6053, 3.7593, 3.4094, 3.6086, 3.774, 3.4356, 3.8602, 3.7545, 3.8081, 3.7824, 3.8945, 3.9184, 3.8778, 4.004, 3.8683, 4.0324, 3.546, 3.9229, 4.0842, 3.9428, 2.7401, 2.5276, 2.7092, 2.8007, 2.8894, 2.5329, 2.7317, 2.7388, 3.0127, 2.5168, 2.6593, 2.8268, 2.4158, 2.5127, 2.7025, 2.8054, 2.5227, 2.861, 2.9435, 2.6701, 3.0189, 2.7562, 2.7123, 2.6034, 2.8238, 2.6124, 3.005, 2.7997, 2.6595, 2.4556, 3.0506, 2.5793, 3.0914, 2.5666, 2.6577, 2.5647, 2.6175, 2.7033, 2.7815, 3.0197, 2.9288, 3.1732, 2.7279, 3.0948, 2.868, 2.761, 2.8444, 3.1519, 3.1506, 2.6459, 2.672, 2.4534, 3.167, 3.0054, 3.1877, 2.8239, 3.1149, 3.1262, 2.6951, 2.6371, 2.8316, 2.9436, 2.6766, 2.8411, 2.7763, 2.8057, 2.9425, 2.6427, 3.1931, 2.7516, 2.8783, 2.6451, 2.9784, 2.6844, 2.6036, 3.0647, 2.7575, 2.8627, 2.9375, 2.8345, 2.9308, 3.2422, 2.8492, 3.0249, 2.9996, 3.2701, 2.9531, 3.2131, 2.9696, 3.3053, 3.137, 3.3112, 3.4058, 3.3999, 3.5119, 3.0292, 3.0959, 3.1248, 3.2951, 3.2579, 3.4815, 3.4789, 3.6953, 3.1296, 3.5425, 3.4685, 3.6416, 3.2477, 3.4959, 3.4303, 3.7324, 3.5872, 3.4717, 4.0148, 3.627, 3.8244, 2.1898, 2.5172, 2.4475, 2.6337, 2.5696, 2.5591, 2.2894, 2.6336, 2.5579, 2.7412, 2.4541, 2.5918, 2.3237, 2.5902, 2.6658, 2.8031, 2.7389, 2.6614, 2.9377, 2.7778, 2.3002, 2.2821, 2.6199, 2.6934, 2.4786, 2.386, 2.5146, 2.3175, 2.9733, 2.4932, 2.5178, 2.6696, 2.6508, 2.6569, 2.8758, 2.4608, 2.6405, 2.7886, 2.7085, 2.5193, 2.3738, 2.6178, 2.9143, 2.5894, 2.3827, 2.429, 2.2062, 2.2612, 2.6947, 2.7762, 2.6992, 2.6567, 2.5979, 2.9306, 2.7787, 2.8853, 2.6209, 2.7785, 2.9842, 2.6723, 2.693, 2.8611, 2.8614, 2.8788, 2.929, 2.4918, 2.6148, 2.3653, 2.7818, 2.8638, 2.7408, 2.6898, 2.7669, 2.8036, 3.1233, 3.1027, 2.9205, 2.9542, 2.6443, 2.5331, 2.8279, 2.854, 3.3429, 2.8223, 3.0532, 3.2018, 3.37, 2.364, 2.6909, 2.9327, 2.9959, 3.3753, 3.031, 3.2801, 3.4384, 3.3477, 3.7183, 3.7768, 3.1198, 3.3893, 3.5226, 3.2848, 3.9685, 2.3124, 2.3798, 2.4325, 2.1771, 2.2529, 2.4631, 2.5024, 2.0689, 2.3976, 2.359, 2.3816, 2.8037, 2.2161, 2.3183, 2.4046, 2.3096, 2.7833, 2.3536, 2.1534, 2.3801, 2.4033, 2.4926, 2.4872, 2.4397, 2.8248, 2.2819, 2.0268, 2.115, 2.4073, 2.275, 3.0889, 2.6018, 2.295, 2.5244, 2.3932, 2.8164, 2.7164, 2.8559, 2.5666, 3.0449, 2.3354, 3.2394, 2.7119, 2.7175, 2.5925, 2.755, 3.2581, 3.2335, 2.6948, 2.862, 2.9842, 2.7871, 2.8888, 2.6511, 2.8713, 2.8741, 3.038, 2.666, 3.1294, 2.9876, 3.3866, 3.0475, 2.8208, 3.1058, 3.2153, 3.86, 3.3567, 3.452, 2.8047, 2.0272, 2.4086, 2.5059, 2.6906, 2.2584, 2.6673, 2.3579, 2.1186, 2.2409, 2.1967, 2.3019, 2.3591, 2.5527, 2.1392, 2.4503, 2.5224, 2.5775, 2.3612, 2.3033, 2.3167, 1.9558, 1.9964, 2.5422, 2.2299, 2.2373, 2.5728, 2.4353, 2.625, 2.1872, 2.4205, 2.3467, 2.2667, 2.7104, 2.1092, 1.6591, 2.4543, 2.6055, 2.1387, 3.0745, 2.5004, 2.8143, 2.7792, 2.4428, 2.446, 2.2053, 2.5989, 2.7456, 3.0569, 2.8517, 2.0286, 2.3613, 2.3065, 2.3015, 2.5929, 2.7186, 2.8336, 2.6529, 2.4023, 2.4196, 2.7803, 3.0623, 2.4891, 2.17, 2.9287, 2.9092, 2.5755, 2.5461, 2.8067, 3.2112, 2.5454, 2.564, 2.7246, 2.4611, 3.5332, 2.616, 2.544, 2.3149, 1.861, 2.1028, 2.2691, 1.8998, 2.0697, 1.9775, 1.9955, 2.4053, 2.5996, 2.0955, 2.4525, 2.5193, 2.3763, 1.8912, 2.1768, 1.79, 2.1082, 2.3925, 2.1332, 1.8353, 2.0521, 2.0968, 1.9507, 1.8039, 2.1966, 2.3136, 2.1924, 2.531, 2.2394, 2.1611, 2.6136, 2.2367, 2.3284, 1.9333, 2.5939, 2.0923, 1.9991, 2.499, 2.5697, 2.1585, 2.4124, 2.288, 2.3268, 1.9094, 2.9441, 2.773, 2.6067, 2.7877, 2.67, 2.7746, 2.55, 2.9368, 2.6517, 2.3098, 1.7539, 1.9687, 2.4129, 3.325, 2.5164, 2.1745, 2.1799, 2.9083, 2.173, 2.4032, 2.0828, 2.9574, 2.9536, 2.4045, 2.1318, 2.2417, 1.9067, 1.8209, 1.9769, 2.3853, 1.8612, 2.4567, 2.2841, 1.7726, 1.9872, 2.2098, 2.2032, 2.4633, 2.1737, 2.2055, 2.2038, 2.4485, 2.5481, 2.0197, 2.0365, 2.3886, 2.1489, 1.9032, 1.5981, 2.2907, 2.5723, 2.0785, 2.0547, 1.7934, 2.1371, 2.4432, 2.8261, 2.417, 1.4674, 2.2099, 2.2317, 2.1505, 2.5097, 2.4102, 2.3913, 2.8606, 2.6082, 2.0418, 2.7499, 1.2486, 1.713, 2.243, 1.4947, 1.9141, 2.1494, 1.7774, 2.0414, 2.2895, 1.813, 1.9695, 2.0619, 1.7413, 2.0696, 2.1571, 1.4686, 2.1158, 2.7187, 1.3357, 2.0996, 1.8175, 2.859, 2.0354, 1.7247, 1.9383, 1.824, 2.5152, 2.2607, 2.8453, 2.5495, 1.6075, 1.9353, 2.3854, 2.0655, 2.5644, 2.0121, 3.237, 1.399, 1.5031, 2.9905, 2.3591, 2.7227, 2.2822, 2.2009, 1.6425, 2.0172, 1.9972, 2.3106, 2.5518, 2.088, 1.8408, 1.6938, 1.8036, 2.1463, 2.2723, 1.9926, 1.9617, 1.5747, 1.9538, 2.1269, 2.6105, 1.7514, 1.6706, 2.0463, 1.6286, 1.5913, 1.6473, 2.2824, 1.7414, 1.695, 1.849, 2.0611, 1.9211, 1.8367, 2.5438, 2.0328, 2.1026, 2.5869, 1.8109, 2.6811, 3.0746, 1.9044, 2.6835, 1.4955, 1.8467, 2.2445, 2.1192, 2.6142, 1.9004, 2.0986 ], | |
| "Freq": [ 16265, 14111, 17111, 11253, 10477, 9336, 9904, 8419, 10137, 8015, 8534, 9008, 6807, 6814, 8704, 6517, 10332, 6534, 6127, 5933, 5248, 6809, 5617, 7631, 6554, 6232, 6710, 6344, 5581, 5493, 537.93, 168.98, 179.98, 98.987, 128.98, 144.98, 62.992, 209.97, 125.98, 172.98, 222.97, 321.96, 1130.9, 149.98, 81.99, 65.992, 81.99, 187.98, 32.996, 510.93, 51.993, 74.99, 376.95, 86.989, 50.993, 178.98, 112.99, 200.97, 214.97, 1468.8, 84.985, 53.99, 35.994, 17.997, 85.985, 42.992, 266.95, 35.994, 76.986, 15.997, 106.98, 95.983, 87.984, 42.992, 70.987, 63.989, 65.988, 33.994, 32.994, 50.991, 51.991, 50.991, 24.996, 17.997, 20.996, 18.997, 32.994, 17.997, 17.997, 17.997, 33.048, 44.064, 55.08, 33.048, 62.09, 35.051, 95.138, 126.18, 23.033, 199.29, 20.029, 23.033, 69.1, 33.048, 16.023, 16.023, 31.045, 50.072, 55.08, 45.065, 28.041, 14.02, 19.028, 23.033, 27.039, 25.036, 16.023, 16.023, 16.023, 14.02, 153.99, 351.97, 299.97, 536.95, 174.98, 118.99, 27.997, 409.96, 87.992, 55.995, 134.99, 29.997, 238.98, 111.99, 82.992, 43.996, 91.991, 82.992, 30.997, 188.98, 103.99, 115.99, 69.993, 69.993, 40.996, 27.997, 20.998, 26.997, 21.998, 85.992, 239.65, 40.94, 39.941, 23.965, 39.941, 22.966, 31.953, 23.965, 32.951, 26.96, 22.966, 79.882, 15.976, 15.976, 37.944, 73.891, 17.974, 14.978, 17.974, 17.974, 17.974, 13.979, 13.979, 13.979, 14.978, 14.978, 15.976, 13.979, 11.982, 11.982, 90.015, 41.007, 69.011, 120.02, 36.006, 52.009, 166.03, 41.007, 24.004, 133.02, 879.14, 23.004, 88.014, 43.007, 122.02, 149.02, 38.006, 21.003, 837.14, 17.003, 22.004, 127.02, 22.004, 106.02, 23.004, 19.003, 19.003, 27.004, 20.003, 52.009, 1350.5, 47.982, 23.991, 23.991, 17.993, 32.988, 23.991, 240.91, 78.971, 31.988, 31.988, 22.992, 34.987, 35.987, 25.99, 24.991, 31.988, 22.992, 19.993, 49.982, 27.99, 15.994, 31.988, 16.994, 13.995, 33.987, 14.994, 39.985, 39.985, 23.991, 94.001, 61.001, 174, 128, 67.001, 37, 69.001, 40, 30, 108, 147, 41, 70.001, 48, 35, 64.001, 81.001, 67.001, 29, 33, 59.001, 55, 33, 45, 28, 59.001, 39, 506, 44, 190, 259.62, 273.55, 27.852, 27.852, 17.905, 16.91, 13.926, 13.926, 13.926, 13.926, 13.926, 8.9525, 25.863, 14.921, 22.879, 9.9473, 9.9473, 35.81, 26.858, 14.921, 25.863, 25.863, 25.863, 236.75, 20.889, 25.863, 26.858, 34.815, 27.852, 25.863, 152.13, 172.15, 135.12, 108.09, 65.057, 92.081, 114.1, 36.032, 50.044, 105.09, 56.049, 117.1, 44.039, 77.067, 71.062, 43.038, 24.021, 30.026, 23.02, 63.055, 103.09, 57.05, 47.041, 28.025, 44.039, 46.04, 30.026, 34.03, 34.03, 34.03, 268.07, 197.05, 140.03, 179.04, 83.021, 754.19, 151.04, 271.07, 34.008, 127.03, 68.017, 135.03, 52.013, 105.03, 55.014, 44.011, 3626.9, 30.007, 44.011, 28.007, 198.05, 131.03, 75.019, 112.03, 81.02, 227.06, 89.022, 112.03, 90.022, 100.02, 84.986, 71.988, 163.97, 136.98, 149.98, 25.996, 148.98, 79.987, 53.991, 28.995, 49.992, 27.995, 75.988, 34.994, 42.993, 1650.7, 23.996, 33.994, 33.994, 95.984, 48.992, 145.98, 37.994, 25.996, 60.99, 57.99, 42.993, 17.997, 61.99, 33.994, 126.11, 25.021, 19.016, 47.039, 46.038, 48.04, 46.038, 42.035, 42.035, 42.035, 42.035, 42.035, 42.035, 19.016, 15.013, 8.0067, 13.011, 77.064, 61.051, 119.1, 114.1, 64.053, 43.036, 43.036, 41.034, 41.034, 41.034, 41.034, 41.034, 41.034, 91.007, 300.02, 138.01, 460.04, 167.01, 759.06, 84.007, 114.01, 552.04, 370.03, 121.01, 40.003, 1505.1, 3315.3, 473.04, 53.004, 62.005, 173.01, 545.04, 90.007, 54.004, 32.003, 185.01, 28.002, 99.008, 42.003, 53.004, 55.004, 63.005, 25.002, 131.01, 132.01, 58.004, 677.04, 36.002, 381.02, 358.02, 226.01, 295.02, 147.01, 439.03, 57.004, 419.03, 308.02, 204.01, 325.02, 221.01, 135.01, 379.02, 682.04, 173.01, 1593.1, 132.01, 63.004, 108.01, 68.004, 48.003, 31.002, 959.06, 76.005, 721.4, 689.38, 176.1, 1290.7, 145.08, 102.06, 65.036, 68.038, 223.12, 40.022, 36.02, 49.027, 85.047, 41.023, 67.037, 36.02, 39.022, 36.02, 166.09, 46.026, 75.042, 506.28, 44.024, 51.028, 100.06, 33.018, 81.045, 42.023, 45.025, 52.029, 119.97, 78.978, 86.976, 86.976, 344.91, 55.985, 39.989, 19.995, 29.992, 19.995, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 73.91, 73.91, 70.914, 82.899, 79.903, 99.878, 27.966, 26.967, 43.946, 32.96, 51.937, 82.899, 80.901, 54.933, 46.943, 19.976, 32.96, 46.943, 33.959, 25.968, 15.981, 35.956, 17.978, 13.983, 15.981, 20.974, 16.979, 16.979, 17.978, 19.976, 65.043, 64.042, 98.064, 174.11, 165.11, 492.32, 73.048, 73.048, 229.15, 35.023, 35.023, 374.25, 263.17, 263.17, 41.027, 535.35, 65.043, 30.02, 1421.9, 1293.8, 76.05, 64.042, 307.2, 68.045, 38.025, 50.033, 60.039, 113.07, 69.045, 262.17, 85.082, 68.066, 62.06, 35.034, 40.039, 35.034, 30.029, 20.019, 41.04, 33.032, 30.029, 14.014, 15.015, 15.015, 28.027, 10.01, 21.02, 17.016, 19.018, 13.013, 11.011, 13.013, 14.014, 9.0087, 9.0087, 17.016, 11.011, 15.015, 15.015, 10.01, 75.979, 74.979, 110.97, 64.982, 75.979, 94.973, 45.987, 32.991, 200.94, 42.988, 75.979, 208.94, 50.986, 216.94, 89.975, 21.994, 947.73, 430.88, 59.983, 84.976, 724.8, 115.97, 227.94, 24.993, 27.992, 36.99, 23.993, 97.973, 44.987, 33.99, 296.85, 164.92, 136.93, 98.95, 128.93, 537.73, 113.94, 69.965, 89.954, 69.965, 312.84, 182.91, 78.96, 71.964, 84.957, 730.63, 66.966, 31.984, 35.982, 82.958, 219.89, 77.96, 29.985, 25.987, 25.987, 54.972, 58.97, 39.98, 53.973, 151.92, 26.001, 24.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 53.003, 106.01, 89.004, 48.002, 91.005, 143.01, 70.004, 188.01, 186.01, 94.005, 808.04, 170.01, 71.004, 509.03, 42.002, 40.002, 337.02, 67.003, 23.001, 34.997, 89.993, 68.994, 271.98, 69.994, 68.994, 92.992, 152.99, 33.997, 107.99, 184.98, 1003.9, 120.99, 60.995, 55.995, 58.995, 86.993, 1278.9, 89.993, 73.994, 574.95, 57.995, 141.99, 63.995, 396.97, 172.99, 46.996, 53.996, 72.994, 28.998, 71.998, 1645, 243.99, 115, 37.999, 50.999, 47.999, 61.999, 265.99, 47.999, 63.999, 63.999, 49.999, 552.99, 55.999, 53.999, 1051, 32.999, 70.998, 52.999, 524.99, 199, 252.99, 61.999, 233.99, 223, 121, 64.999, 117, 169, 804.62, 156.12, 840.64, 69.053, 59.045, 47.036, 32.024, 47.036, 32.024, 35.027, 32.024, 22.017, 22.017, 16.012, 16.012, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 16.012, 16.012, 16.012, 16.012, 16.012, 11.008, 262.07, 131.04, 140.04, 44.012, 125.03, 493.13, 157.04, 50.014, 163.04, 93.025, 122.03, 30.008, 1267.3, 146.04, 150.04, 864.23, 369.1, 642.17, 1445.4, 39.011, 246.07, 57.015, 31.008, 23.006, 170.05, 32.009, 126.03, 81.022, 112.03, 165.04, 41.055, 82.109, 42.056, 39.052, 35.047, 24.032, 42.056, 17.023, 34.045, 12.016, 12.016, 17.023, 17.023, 12.016, 12.016, 9.012, 12.016, 9.012, 12.016, 9.012, 168.22, 180.24, 36.048, 38.051, 31.041, 25.033, 20.027, 50.067, 25.033, 31.041, 45.958, 101.91, 55.949, 93.915, 276.75, 66.939, 62.943, 448.59, 349.68, 60.945, 593.46, 147.87, 66.939, 2854.4, 114.9, 123.89, 33.969, 49.955, 2139.1, 41.962, 40.963, 204.81, 1723.4, 19.982, 23.978, 199.82, 226.79, 206.81, 15.986, 121.89, 413.48, 529.62, 525.61, 736.86, 317.37, 242.28, 339.4, 182.21, 105.12, 177.21, 233.27, 94.11, 175.2, 174.2, 75.088, 74.086, 132.15, 56.065, 65.076, 121.14, 106.12, 341.4, 60.07, 64.075, 74.086, 75.088, 40.047, 251.29, 88.103, 94.11, 192.07, 77.028, 80.03, 144.05, 70.026, 94.035, 123.05, 71.026, 166.06, 60.022, 216.08, 116.04, 41.015, 260.1, 69.026, 67.025, 145.05, 116.04, 105.04, 62.023, 231.09, 207.08, 179.07, 1746.6, 200.07, 709.26, 54.02, 282.1, 67.025, 94.035, 128.75, 180.05, 356.07, 111.65, 200.16, 683.98, 102.6, 44.257, 157.92, 99.579, 488.84, 78.456, 119.7, 50.292, 55.322, 69.404, 47.275, 51.298, 64.374, 59.345, 62.363, 123.72, 25.146, 44.257, 29.17, 36.211, 51.298, 48.281, 27.158, 178.04, 4479.3, 3506, 4517.8, 2163.9, 1901.8, 1891.8, 1595.8, 2251.9, 2411.9, 1494.8, 2003.8, 1402.8, 4416.1, 1266.8, 2729.5, 1157.9, 990.83, 1199.7, 859.89, 1165.6, 771.9, 768.9, 761.9, 789, 717.55, 706.89, 1422.1, 1085.8, 3778.5, 1601.4, 4659.2, 1702.2, 831.85, 2835.7, 1262.9, 3546.8, 5865.2, 815.36, 4241.5, 542.7, 670.61, 420.77, 1009, 943.8, 2302.5, 327.94, 2470.7, 5030.6, 654.23, 1495.6, 864, 612.81, 246.5, 3085.1, 490.76, 1656.9, 2396.3, 5751, 1584.6, 1093.9, 532.77, 571.34, 1428.5, 605.3, 533.27, 448.45, 312.44, 336.96, 773.46, 1376.9, 231.33, 287.04, 280.43, 214.31, 1446.8, 189.27, 775.34, 498.96, 188.47, 515.32, 204.82, 163.24, 335.86, 360.01, 156.49, 152.75, 13773, 1761.5, 2715, 1031.9, 883.92, 1585.1, 1321.9, 599.94, 968.6, 449.64, 936.88, 359.95, 913.38, 668.35, 262.98, 230.97, 215.98, 1192.4, 921.45, 469.1, 1002.8, 5349.2, 334.34, 6077.2, 5885.4, 4754.7, 1184.6, 1848.3, 740.91, 2861.5, 5537.1, 3832.9, 460.32, 3547.4, 496.36, 1276.8, 1060, 233.66, 446.39, 205.7, 234.7, 216, 441.31, 3882.6, 3078.4, 138.8, 137.76, 873.23, 126.57, 115.83, 687.88, 109.84, 10135, 6524.8, 3532.7, 3845.2, 5765.9, 2660.4, 1437.5, 1420.9, 3386.8, 1017.6, 675.38, 1476.7, 488.08, 648.43, 453.05, 391.12, 6484, 355.95, 282.03, 383.74, 1778, 5009.7, 285.09, 225.01, 3650.9, 346.53, 482.21, 307.64, 2665, 1266.5, 2851.5, 1129.5, 572.79, 531.76, 4094.1, 1416.3, 378.86, 350.87, 850.15, 977.95, 285.89, 261.9, 259.82, 554.92, 233.91, 324.74, 280.77, 386.2, 192.93, 198.08, 173.93, 320.85, 499.41, 172.65, 1752.8, 259.47, 9644.5, 3883.5, 3466, 4450.6, 3287.3, 981.74, 1293.2, 524, 3533.9, 485, 1303.7, 435, 404, 403, 416.05, 364, 445.73, 332.04, 664.23, 2111.2, 339.16, 508.12, 1704.4, 261.97, 248, 242, 238.79, 341.09, 213, 239.73, 231.76, 2028.4, 574.84, 193.97, 1140.5, 91.797, 2516, 109.47, 98.286, 265.69, 90.203, 38.78, 226.6, 87.213, 2516.9, 123.37, 2631.5, 39.551, 641.93, 85.911, 4630.5, 2610.5, 2104.8, 1605.1, 1726.9, 1059.3, 1238, 908.78, 899.79, 1079.3, 1325, 702.61, 671.63, 585.27, 3740.5, 517.45, 453.32, 1430.3, 374.33, 469.68, 319.28, 411.17, 310.3, 262.23, 1101.7, 214.19, 212.89, 206.18, 190.17, 11254, 5493.4, 2479.6, 2380.1, 1790.7, 1012.3, 1096.5, 946.24, 843.74, 3029.1, 539.48, 521.13, 512.13, 475.12, 468.11, 624.45, 416.1, 412.1, 378.09, 1325.2, 351.09, 574.57, 326.08, 296.07, 4182.5, 333.33, 8771.6, 2361.7, 1362.8, 1526.4, 958.3, 799.87, 1082.5, 1129.1, 707.07, 2114.3, 2361.9, 1451.6, 681.1, 377.61, 663.25, 339.49, 313.95, 2801.3, 260.96, 347.22, 231.96, 231.95, 289.61, 529.42, 214.96, 213.96, 1991.1, 209.97, 220.54, 2849.1, 924.77, 2080.4, 1795.8, 897.38, 649.8, 491.3, 2318.4, 1596.4, 213.29, 233.06, 940.96, 165.14, 152.13, 305.14, 1803.1, 134.11, 207.66, 124.1, 867.89, 982.75, 112.09, 112.08, 109.07, 153.11, 300.53, 103.09, 13971, 7909.3, 6814.5, 5933.5, 5496.6, 3846.3, 2143.2, 1432.3, 1249.1, 1134.7, 1116.1, 1167, 1172.6, 1779.4, 577.05, 1552.1, 810.18, 475.42, 444.52, 371.17, 359.03, 803.58, 2923.6, 6027.1, 2212.6, 1467.1, 1132.1, 2583.2, 795.44, 771.02, 761.05, 750.05, 692.04, 665.04, 628.04, 601.04, 593.04, 913.07, 551.04, 536.03, 516.03, 501.03, 480.03, 474.03, 485.93, 454.03, 446.03, 4450.1, 2986, 2966.5, 2302.3, 1707.9, 3650.1, 2610.2, 2665.1, 1345.2, 5392.8, 2498.3, 904.51, 650.57, 429.24, 429.6, 350.19, 347.19, 361.08, 303.17, 300.16, 1666.6, 366.44, 1784.1, 817.08, 226.12, 16266, 6791.7, 4073.9, 3359.1, 3454.2, 3230.5, 1728.5, 2203.3, 1402.6, 1298.6, 1134.7, 1017.7, 744.8, 624.83, 578.84, 577.84, 525.85, 514.86, 489.87, 459.87, 718.37, 410.89, 406.89, 486.68, 431.06, 334.91, 309.91, 372.79, 469.33, 2859.3, 1870.7, 986.8, 1577, 832.98, 823, 1231.2, 2835.6, 618.25, 1101.7, 2079.6, 463.44, 444.31, 470.54, 397.52, 384.53, 535.35, 642.77, 761.72, 292.64, 1591.7, 520.75, 226.57, 417.03, 463.51, 266.11, 198.76, 209.44, 197.76, 185.72, 3732.5, 3187.1, 2395.6, 1936.3, 1955.9, 5713, 2513, 1759.5, 1176.8, 1115.7, 898.59, 1124.1, 707.47, 627.4, 592.39, 587.39, 739.58, 570.37, 500.33, 767.94, 459.3, 823.9, 366.57, 1610.7, 453.23, 5344.9, 799.77, 2155.9, 2021.8, 944.42, 3109.5, 1257.7, 257.87, 253.24, 304.5, 249.41, 328.04, 188.66, 163.16, 1240.5, 227.21, 699.07, 2030.2, 1073.9, 158, 2184.4, 100.04, 923.71, 535.48, 87.061, 85.082, 84.081, 79.076, 779.99, 8343.3, 6103.9, 5617.4, 3795.2, 2973, 2541.3, 2981.3, 2976.9, 1318.6, 1197.7, 958.04, 741.79, 2394.4, 885.14, 1849.5, 728.8, 670.4, 486.72, 1194, 453.49, 440.08, 585.81, 301.86, 267.92, 283.98, 242.93, 236.93, 2885.4, 3119.8, 1632.2, 3452.7, 944.52, 940.52, 949, 3764, 808.59, 799.55, 743.91, 1673.5, 825.33, 846.78, 4133.8, 862.34, 438.78, 546.57, 2400.4, 516.41, 440.09, 277.86, 275.86, 280.24, 259.87, 450, 2448.7, 1482.1, 2500.9, 1035.3, 1059.8, 434.02, 476.02, 1090.9, 586.66, 337.02, 334.99, 288.01, 280.01, 504.57, 248.01, 244.78, 316.48, 219.01, 1666.8, 211.01, 444.61, 186.01, 318.24, 2958.4, 2691.4, 2307.8, 2449.6, 3142.6, 2548.3, 1245.5, 1069.6, 690.94, 2953.1, 4249.9, 758.3, 482.96, 923.98, 497.94, 458.96, 565.55, 390.97, 649.94, 2738.2, 301.97, 306.18, 284.98, 284.97, 294.2, 372.41, 3189.2, 2310.9, 1517.7, 996.41, 882.93, 786.98, 1077, 1231.7, 758.06, 652.15, 1090.5, 1070.3, 761.94, 528.99, 517.99, 869.22, 494.99, 655.26, 877.05, 560.08, 891.47, 462.6, 831.12, 377.99, 368.97, 361.99, 1166.9, 1153.9, 6905.5, 1675.2, 1513.6, 636.24, 1425.7, 492.38, 347.87, 240.18, 235.18, 216.17, 213.16, 190.03, 464.46, 148.11, 735.98, 161.77, 288.7, 134.1, 290.88, 132.1, 131.39, 124.09, 122.09, 330.36, 117.09, 3555, 2208.2, 1900.4, 1440.7, 1744.7, 939.48, 817.22, 1811.1, 995.59, 715.16, 1011.1, 3103.3, 701.88, 628.17, 946.11, 511.14, 1113.6, 505.74, 950.54, 1171, 350.09, 332.98, 330.08, 426.18, 5209.7, 4683.2, 5639, 1318.8, 1489.5, 1169.6, 1122.5, 3015.5, 1252.8, 1778.8, 1214.1, 1282.1, 1508.5, 698.62, 348.46, 2123.3, 286.38, 302.45, 731.7, 213.27, 202.27, 227.49, 254.65, 478.21, 156.21, 156.21, 224.94, 497.53, 4298.4, 2232.4, 7930.5, 2773, 1673.7, 2062.5, 1421.1, 698.37, 891.77, 769.84, 527.52, 584.76, 481.56, 446.6, 427.38, 535.5, 675.54, 359.67, 374.99, 524.52, 279.75, 275.75, 2313.7, 1713, 2759.2, 2371.4, 988.15, 1106.5, 545.64, 534.62, 592.09, 1315.7, 369.43, 628.91, 389.51, 316.37, 284.33, 263.06, 245.28, 244.28, 240.28, 277.65, 226.26, 1123.4, 968.36, 891.33, 726.55, 650.24, 637.24, 621.23, 514.19, 2301, 3338.9, 620.65, 535.22, 369.14, 348.13, 329.12, 284.11, 251.09, 356.35, 225.08, 2049.8, 195.07, 193.07, 573.12, 407.03, 399.32, 1945.4, 698.26, 324.1, 257.5, 179.03, 360.62, 727.8, 168.98, 2028.6, 225.51, 130.7, 120.7, 116.68, 278.98, 122.98, 1694.3, 3101.2, 2740.2, 1419.9, 1611, 1238.7, 1011.1, 2056.1, 1000.7, 2502.2, 1575.4, 1577.1, 639.61, 1184.1, 3095.2, 566.98, 542.45, 397.64, 4304.1, 2568.7, 1141.9, 2057.9, 1461.6, 940.43, 2667.9, 6481.1, 1264.8, 845.63, 1070.2, 615.74, 586.96, 610.63, 833.29, 2341, 3507.6, 842.85, 1113.8, 1246.4, 1446.5, 603.68, 716.06, 2799, 1054.1, 1016, 992.98, 536.47, 1289.5, 2321.2, 1889.8, 2029.4, 2329.1, 1917.6, 1649.1, 1962.9, 980.32, 1442.4, 1267.9, 1617.3, 2448.1, 2089.2, 1461.7, 790.51, 387.69, 570.35, 1232.4, 1219, 995.39, 900.94, 1680.4, 897.47, 731.82, 4533.1, 2290.2, 1936.1, 2811.3, 2674.2, 814.21, 2794.7, 4785.3, 2833.5, 2409, 783.9, 1309.3, 643.13, 510.65, 4155.8, 1212.2, 3661.6, 3774.2, 950.85, 979.28, 2304.4, 2178.3, 394.34, 318.85, 3390.4, 3002, 1507.4, 2013.2, 1447.5, 1016.9, 619.19, 5304.4, 1055.5, 729.2, 638.85, 2794.7, 3806, 843.67, 1530.5, 528.3, 2308.6, 4663.3, 2590.1, 2427.3, 1462.7, 1524.2, 2724.6, 1836.8, 889.68, 1873.2, 684.5, 555.5, 2816.8, 2104.7, 1880.3, 2770.3, 1261.8, 1018.7, 1427.7, 664.98, 749.3, 482.1, 1884.2, 1313.5, 930.96, 2900.2, 463.81, 1048.2, 3186.1, 2811.8, 583.45, 896.09, 500.86, 2162.7, 509.1, 1602.8, 847.12, 1064.9, 594.74, 3004.8, 1414.6, 2395, 1090.6, 901.5, 555.25, 715.68, 3206.4, 1387.5, 1232, 1240.5, 2523.7, 1141.2, 2364.8, 1402.3, 299.74, 765.22, 225.61, 5633.1, 1601.3, 804.56, 2342, 1587.9, 705.29, 736.09, 2179.3, 565.77, 512.02, 723.41, 596.25, 422.66, 3846.4, 1063, 3878.3, 1357.5, 1040.9, 3100.7, 484.12, 727.75, 518.74, 571.74, 1144.6, 701.44, 801.26, 389.81, 548.01, 697.16, 3193.8, 626.69, 285.63, 482.36, 1413.2, 3035.4, 1636.6, 952.51, 743.24, 1701.3, 1065.5, 990.92, 462.82, 3799, 2466.4, 1601.4, 3335, 2479.8, 2002.6, 1478.3, 2468.8, 1086.1, 779.86, 3404, 982.94, 1743.1, 2119.4, 2381.4, 1338.4, 2134.4, 710.79, 1114.8, 3407.3, 3303.9, 800.62, 2265.1, 657.53, 1857.4, 1310.9, 1538.9, 1327.9, 1066.7, 877.4, 853.72, 1015.5, 557.29, 2758.9, 912.58, 1669.7, 1928.8, 1431.9, 666.65, 667.37, 2218.8, 1455.3, 2077.7, 365.67, 1898, 1132, 2487.1, 1465.4, 1258, 3435.8, 3717.2, 2249.3, 1720.5, 3425.7, 2087.5, 2308.8, 2805.9, 1862.9, 3302.3, 832.91, 2581.5, 1531.9, 2590.5, 2275.4, 2818, 2930.2, 923.09, 1687.9, 1311.2, 1034, 2735.7, 2346.1, 847.75, 2093.2, 1263.1, 1262.7, 622.08, 3402.1, 1531.7, 2369, 921.43, 2357, 1234.2, 857.2, 866.32, 658.29, 1509, 1269.7, 770.7, 504.65, 1680.1, 1021, 895.67, 737.07, 2567.1, 1165.2, 1039.3, 663, 1520.1, 2095.3, 2159.1, 718.44, 979.08, 1227.8, 312.31, 753.61, 400.81, 4354.8, 1858.5, 1981.5, 1587.4, 1660.8, 1168.1, 1682.1, 995.17, 1113.1, 811.47, 2836, 1862.5, 2742.6, 1758.2, 1311.5, 1029.1, 1052.1, 1801, 1080, 1370.6, 2295.3, 2327.2, 1248.1, 1073.5, 1478, 2313.5, 1886.5, 2534.1, 764.68, 1671.5, 1349.4, 1024.8, 1013.9, 1473.2, 1033.9, 1887.6, 1367.5, 1556.3, 1706.7, 2179.4, 2369.1, 1978.5, 1112.5, 1572.6, 2087.9, 1834.3, 2423.4, 2063.7, 998.48, 826.76, 2442.3, 2533.3, 2730.3, 1249.6, 1507.2, 1202.1, 2867.3, 2117.5, 1125.2, 1749.8, 1846.3, 1374.8, 1257.2, 1211.9, 1105.4, 3454.2, 2215.4, 2761.5, 1356.5, 1189.1, 1404.1, 2644.1, 1397.4, 1225.9, 937.62, 930.79, 1285.4, 1168.5, 1776.7, 1944, 2237.5, 1883.4, 805.78, 1749, 1658.9, 1210.4, 885.7, 1881, 1105, 753.28, 1749.7, 867.52, 2018.8, 1111.8, 766.51, 1232.9, 624.48, 565.61, 1745, 887.3, 677.02, 1032.2, 276.97, 2135.1, 2032.1, 1723.7, 1817.7, 1558.4, 1137.1, 1868.9, 2697.7, 1384.4, 1434.6, 2445.8, 1204.3, 1945.8, 1594.1, 1422.9, 1480.5, 858.47, 1556.4, 1849.7, 1369.2, 1763.5, 1609.7, 1660.6, 1664.3, 1125.6, 1981.6, 2283.1, 2047.9, 1429.7, 2852.4, 934.1, 1450.3, 2062.7, 1613.9, 2147.6, 1244.3, 1370.5, 1174.2, 1415.9, 878.08, 1715.8, 665.75, 1295.8, 1233.4, 1341.8, 1211.1, 684.25, 633.25, 1963.9, 1501, 1233.4, 1995.6, 1643.9, 718.38, 1663.1, 1635.7, 1322.5, 1858.8, 1064.7, 1187.7, 941.2, 1262, 1729.5, 1070.9, 855.05, 433.79, 473.05, 409.99, 777.57, 2313.7, 1699.3, 1565.8, 1362.5, 1963.6, 1290.7, 1570.4, 1449.7, 1292.2, 1285.1, 1158, 1083.1, 949.18, 2413.7, 1700.2, 1617.2, 1518.9, 1354.3, 1291.7, 1670.6, 2086.6, 1615.9, 1081.3, 1464.6, 1350.4, 994.2, 1037, 1018.4, 1482.9, 1553.9, 1563.5, 1547.5, 1071.2, 1740.9, 2954.9, 1736.2, 1298.1, 1641.7, 867.85, 1366.4, 1099.4, 1259.8, 1504.1, 1258.2, 1449, 1080.9, 1016, 792.38, 1110.4, 1870.4, 1546.4, 1492, 1299.5, 1080, 934.91, 855.67, 964.88, 1124.2, 1958.4, 1462.3, 1123.3, 832.73, 910.93, 523.98, 1265.9, 1500.7, 1550.1, 1259.7, 841.65, 1304.2, 1254, 1330.8, 1161.3, 540.32, 921.68, 961.47, 860.15, 2289.6, 1966.7, 1497.1, 1751.8, 1627.3, 1324.8, 1219.1, 1587.8, 1391.4, 1724, 1091.4, 1049.9, 1498.8, 1494, 1207.5, 1325.4, 1151.9, 1157.9, 1287.8, 1711.2, 1430, 1308.4, 1545.1, 1644.6, 1355.5, 1445.5, 1495.4, 1536.4, 1439.5, 1478.3, 1112.1, 1504.7, 1409.2, 1668.2, 1038.5, 1378.2, 1360.4, 1075.3, 1037.7, 1692.8, 1313.1, 1348.6, 1206.1, 1326.5, 810.16, 869.49, 917.6, 842.8, 886.08, 1263.2, 1341.1, 1166.2, 1312.6, 745.72, 931.17, 791.76, 1400.9, 713.69, 962.06, 1296.1, 1285.3, 909.54, 1320, 894.15, 818.27, 510.43, 497.64, 620.98, 1762.2, 1639.9, 1719.7, 1242.3, 1193.1, 1512.3, 1686, 1062.1, 1323.9, 1393.7, 1129.1, 1245.7, 1190.1, 1154, 1286.7, 1250.5, 1362.3, 1162.9, 1126.9, 1314.6, 1176.6, 1330.6, 1452.8, 1497.5, 1335.9, 1127.5, 950.27, 1288.8, 1138.8, 1145.4, 1496.2, 1209.1, 1074.9, 1161.4, 956.96, 1373.9, 1297, 1107.9, 898.72, 896.24, 844.45, 664.31, 564.75, 639.73, 488.89, 1979.2, 1718.8, 1609.1, 1589.5, 1187.6, 1108.1, 1141.4, 1134.5, 1269.7, 1242.4, 1207.9, 1173.4, 1146.8, 1192.8, 1170.7, 1151.1, 1021.9, 979.6, 1332.3, 1230.5, 1220.1, 1244.8, 1346.1, 960.45, 1366.5, 1173.1, 1017, 1027.5, 822.64, 1122.8, 1227, 1145.8, 901.19, 968.22, 1164.2, 1142.2, 921.84, 806.74, 742.55, 1017.5, 812.21, 735.06, 822.14, 810.56, 704.51, 671.96, 564.71, 511.92, 495.6, 1557.5, 1080.7, 1148.8, 1083.1, 1065.5, 1209.5, 1145.8, 1108.8, 1107.1, 1074.6, 1154.2, 918.02, 1052.9, 1047.5, 1017.1, 1240.3, 1191.8, 1138.9, 1156.1, 1217.4, 905.73, 1307.5, 1190.7, 1050.7, 1026.8, 839.35, 830.74, 1066.5, 840.29, 863.78, 861.11, 924.21, 915.27, 1016.7, 999.25, 803.47, 719.39, 738.6, 674.7, 500.42, 483.64 ], | |
| "Total": [ 16265, 14111, 17111, 11253, 10477, 9336, 9904, 8419, 10137, 8015, 8534, 9008, 6807, 6814, 8704, 6517, 10332, 6534, 6127, 5933, 5248, 6809, 5617, 7631, 6554, 6232, 6710, 6344, 5581, 5493, 537.93, 168.98, 179.98, 98.987, 128.98, 144.98, 62.992, 209.97, 125.98, 172.98, 222.97, 321.96, 1130.9, 149.98, 81.99, 65.992, 81.99, 187.98, 32.996, 510.93, 51.993, 74.99, 376.95, 86.989, 50.993, 178.98, 112.99, 200.97, 214.97, 1468.8, 84.985, 53.99, 35.994, 17.997, 85.985, 42.992, 266.95, 35.994, 76.986, 15.997, 106.98, 95.983, 87.984, 42.992, 70.987, 63.989, 65.988, 33.994, 32.994, 50.991, 51.991, 50.991, 24.996, 17.997, 20.996, 18.997, 32.994, 17.997, 17.997, 17.997, 33.048, 44.064, 55.08, 33.048, 62.09, 35.051, 95.138, 126.18, 23.033, 199.29, 20.029, 23.033, 69.1, 33.048, 16.023, 16.023, 31.045, 50.072, 55.08, 45.065, 28.041, 14.02, 19.028, 23.033, 27.039, 25.036, 16.023, 16.023, 16.023, 14.02, 153.99, 351.97, 299.97, 536.95, 174.98, 118.99, 27.997, 409.96, 87.992, 55.995, 134.99, 29.997, 238.98, 111.99, 82.992, 43.996, 91.991, 82.992, 30.997, 188.98, 103.99, 115.99, 69.993, 69.993, 40.996, 27.997, 20.998, 26.997, 21.998, 85.992, 239.65, 40.94, 39.941, 23.965, 39.941, 22.966, 31.953, 23.965, 32.951, 26.96, 22.966, 79.882, 15.976, 15.976, 37.944, 73.891, 17.974, 14.978, 17.974, 17.974, 17.974, 13.979, 13.979, 13.979, 14.978, 14.978, 15.976, 13.979, 11.982, 11.982, 90.015, 41.007, 69.011, 120.02, 36.006, 52.009, 166.03, 41.007, 24.004, 133.02, 879.14, 23.004, 88.014, 43.007, 122.02, 149.02, 38.006, 21.003, 837.14, 17.003, 22.004, 127.02, 22.004, 106.02, 23.004, 19.003, 19.003, 27.004, 20.003, 52.009, 1350.5, 47.982, 23.991, 23.991, 17.993, 32.988, 23.991, 240.91, 78.971, 31.988, 31.988, 22.992, 34.987, 35.987, 25.99, 24.991, 31.988, 22.992, 19.993, 49.982, 27.99, 15.994, 31.988, 16.994, 13.995, 33.987, 14.994, 39.985, 39.985, 23.991, 94.001, 61.001, 174, 128, 67.001, 37, 69.001, 40, 30, 108, 147, 41, 70.001, 48, 35, 64.001, 81.001, 67.001, 29, 33, 59.001, 55, 33, 45, 28, 59.001, 39, 506, 44, 190, 259.62, 273.55, 27.852, 27.852, 17.905, 16.91, 13.926, 13.926, 13.926, 13.926, 13.926, 8.9525, 25.863, 14.921, 22.879, 9.9473, 9.9473, 35.81, 26.858, 14.921, 25.863, 25.863, 25.863, 236.75, 20.889, 25.863, 26.858, 34.815, 27.852, 25.863, 152.13, 172.15, 135.12, 108.09, 65.057, 92.081, 114.1, 36.032, 50.044, 105.09, 56.049, 117.1, 44.039, 77.067, 71.062, 43.038, 24.021, 30.026, 23.02, 63.055, 103.09, 57.05, 47.041, 28.025, 44.039, 46.04, 30.026, 34.03, 34.03, 34.03, 268.07, 197.05, 140.03, 179.04, 83.021, 754.19, 151.04, 271.07, 34.008, 127.03, 68.017, 135.03, 52.013, 105.03, 55.014, 44.011, 3626.9, 30.007, 44.011, 28.007, 198.05, 131.03, 75.019, 112.03, 81.02, 227.06, 89.022, 112.03, 90.022, 100.02, 84.986, 71.988, 163.97, 136.98, 149.98, 25.996, 148.98, 79.987, 53.991, 28.995, 49.992, 27.995, 75.988, 34.994, 42.993, 1650.7, 23.996, 33.994, 33.994, 95.984, 48.992, 145.98, 37.994, 25.996, 60.99, 57.99, 42.993, 17.997, 61.99, 33.994, 126.11, 25.021, 19.016, 47.039, 46.038, 48.04, 46.038, 42.035, 42.035, 42.035, 42.035, 42.035, 42.035, 19.016, 15.013, 8.0067, 13.011, 77.064, 61.051, 119.1, 114.1, 64.053, 43.036, 43.036, 41.034, 41.034, 41.034, 41.034, 41.034, 41.034, 91.007, 300.02, 138.01, 460.04, 167.01, 759.06, 84.007, 114.01, 552.04, 370.03, 121.01, 40.003, 1505.1, 3315.3, 473.04, 53.004, 62.005, 173.01, 545.04, 90.007, 54.004, 32.003, 185.01, 28.002, 99.008, 42.003, 53.004, 55.004, 63.005, 25.002, 131.01, 132.01, 58.004, 677.04, 36.002, 381.02, 358.02, 226.01, 295.02, 147.01, 439.03, 57.004, 419.03, 308.02, 204.01, 325.02, 221.01, 135.01, 379.02, 682.04, 173.01, 1593.1, 132.01, 63.004, 108.01, 68.004, 48.003, 31.002, 959.06, 76.005, 721.4, 689.38, 176.1, 1290.7, 145.08, 102.06, 65.036, 68.038, 223.12, 40.022, 36.02, 49.027, 85.047, 41.023, 67.037, 36.02, 39.022, 36.02, 166.09, 46.026, 75.042, 506.28, 44.024, 51.028, 100.06, 33.018, 81.045, 42.023, 45.025, 52.029, 119.97, 78.978, 86.976, 86.976, 344.91, 55.985, 39.989, 19.995, 29.992, 19.995, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 14.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 13.996, 73.91, 73.91, 70.914, 82.899, 79.903, 99.878, 27.966, 26.967, 43.946, 32.96, 51.937, 82.899, 80.901, 54.933, 46.943, 19.976, 32.96, 46.943, 33.959, 25.968, 15.981, 35.956, 17.978, 13.983, 15.981, 20.974, 16.979, 16.979, 17.978, 19.976, 65.043, 64.042, 98.064, 174.11, 165.11, 492.32, 73.048, 73.048, 229.15, 35.023, 35.023, 374.25, 263.17, 263.17, 41.027, 535.35, 65.043, 30.02, 1421.9, 1293.8, 76.05, 64.042, 307.2, 68.045, 38.025, 50.033, 60.039, 113.07, 69.045, 262.17, 85.082, 68.066, 62.06, 35.034, 40.039, 35.034, 30.029, 20.019, 41.04, 33.032, 30.029, 14.014, 15.015, 15.015, 28.027, 10.01, 21.02, 17.016, 19.018, 13.013, 11.011, 13.013, 14.014, 9.0087, 9.0087, 17.016, 11.011, 15.015, 15.015, 10.01, 75.979, 74.979, 110.97, 64.982, 75.979, 94.973, 45.987, 32.991, 200.94, 42.988, 75.979, 208.94, 50.986, 216.94, 89.975, 21.994, 947.73, 430.88, 59.983, 84.976, 724.8, 115.97, 227.94, 24.993, 27.992, 36.99, 23.993, 97.973, 44.987, 33.99, 296.85, 164.92, 136.93, 98.95, 128.93, 537.73, 113.94, 69.965, 89.954, 69.965, 312.84, 182.91, 78.96, 71.964, 84.957, 730.63, 66.966, 31.984, 35.982, 82.958, 219.89, 77.96, 29.985, 25.987, 25.987, 54.972, 58.97, 39.98, 53.973, 151.92, 26.001, 24.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 12.001, 53.003, 106.01, 89.004, 48.002, 91.005, 143.01, 70.004, 188.01, 186.01, 94.005, 808.04, 170.01, 71.004, 509.03, 42.002, 40.002, 337.02, 67.003, 23.001, 34.997, 89.993, 68.994, 271.98, 69.994, 68.994, 92.992, 152.99, 33.997, 107.99, 184.98, 1003.9, 120.99, 60.995, 55.995, 58.995, 86.993, 1278.9, 89.993, 73.994, 574.95, 57.995, 141.99, 63.995, 396.97, 172.99, 46.996, 53.996, 72.994, 28.998, 71.998, 1645, 243.99, 115, 37.999, 50.999, 47.999, 61.999, 265.99, 47.999, 63.999, 63.999, 49.999, 552.99, 55.999, 53.999, 1051, 32.999, 70.998, 52.999, 524.99, 199, 252.99, 61.999, 233.99, 223, 121, 64.999, 117, 169, 804.62, 156.12, 840.64, 69.053, 59.045, 47.036, 32.024, 47.036, 32.024, 35.027, 32.024, 22.017, 22.017, 16.012, 16.012, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 22.017, 16.012, 16.012, 16.012, 16.012, 16.012, 11.008, 262.07, 131.04, 140.04, 44.012, 125.03, 493.13, 157.04, 50.014, 163.04, 93.025, 122.03, 30.008, 1267.3, 146.04, 150.04, 864.23, 369.1, 642.17, 1445.4, 39.011, 246.07, 57.015, 31.008, 23.006, 170.05, 32.009, 126.03, 81.022, 112.03, 165.04, 41.055, 82.109, 42.056, 39.052, 35.047, 24.032, 42.056, 17.023, 34.045, 12.016, 12.016, 17.023, 17.023, 12.016, 12.016, 9.012, 12.016, 9.012, 12.016, 9.012, 168.22, 180.24, 36.048, 38.051, 31.041, 25.033, 20.027, 50.067, 25.033, 31.041, 45.958, 101.91, 55.949, 93.915, 276.75, 66.939, 62.943, 448.59, 349.68, 60.945, 593.46, 147.87, 66.939, 2854.4, 114.9, 123.89, 33.969, 49.955, 2139.1, 41.962, 40.963, 204.81, 1723.4, 19.982, 23.978, 199.82, 226.79, 206.81, 15.986, 121.89, 413.48, 529.62, 525.61, 736.86, 317.37, 242.28, 339.4, 182.21, 105.12, 177.21, 233.27, 94.11, 175.2, 174.2, 75.088, 74.086, 132.15, 56.065, 65.076, 121.14, 106.12, 341.4, 60.07, 64.075, 74.086, 75.088, 40.047, 251.29, 88.103, 94.11, 192.07, 77.028, 80.03, 144.05, 70.026, 94.035, 123.05, 71.026, 166.06, 60.022, 216.08, 116.04, 41.015, 260.1, 69.026, 67.025, 145.05, 116.04, 105.04, 62.023, 231.09, 207.08, 179.07, 1746.6, 200.07, 709.26, 54.02, 282.1, 67.025, 94.035, 128.75, 180.05, 356.07, 111.65, 200.16, 683.98, 102.6, 44.257, 157.92, 99.579, 488.84, 78.456, 119.7, 50.292, 55.322, 69.404, 47.275, 51.298, 64.374, 59.345, 62.363, 123.72, 25.146, 44.257, 29.17, 36.211, 51.298, 48.281, 27.158, 178.04, 4683.4, 3576, 4807.4, 2175.7, 1901.8, 1891.8, 1595.8, 2352.7, 2539.8, 1494.8, 2083.7, 1402.8, 5061.6, 1266.8, 2986.8, 1157.9, 999.88, 1237.9, 859.89, 1214.9, 771.9, 768.9, 761.9, 796.89, 717.91, 706.91, 1538.5, 1147.9, 3805.3, 1631.7, 5639.3, 1842.7, 831.85, 3262.7, 1375.8, 4347, 7631.7, 860.88, 5406.4, 551.91, 702.91, 420.93, 1115.8, 1040.9, 2804.9, 327.94, 3096.7, 6848.7, 715.91, 1803.8, 987.85, 678.9, 248.95, 4154.9, 538.91, 2083.9, 3148.9, 6156.5, 1620.3, 1157.6, 532.77, 580.83, 1622.9, 640.83, 564.77, 466.65, 312.45, 344.49, 873.15, 1674, 231.33, 294.42, 288.41, 214.31, 1799.2, 189.27, 907.16, 557.74, 189.27, 581.78, 209.3, 163.24, 368.51, 401.52, 159.23, 155.22, 17112, 1780.8, 2980, 1031.9, 883.92, 1693.9, 1440, 599.94, 1047, 453.95, 1029.9, 359.97, 1016.9, 724.97, 262.98, 230.98, 215.98, 1443.1, 1107, 522.92, 1217.7, 7857.3, 360.97, 6232.2, 6344.8, 5121, 1189.3, 1955.2, 740.91, 3349.8, 7176.7, 4829.5, 460.32, 4514.7, 514.27, 1491.3, 1216.5, 233.66, 486.34, 205.7, 239.66, 219.68, 491.39, 5573.6, 4326.8, 138.8, 137.8, 1072.7, 126.81, 115.83, 839.81, 109.84, 10478, 6534.1, 3553.6, 4076.8, 6453.2, 2777.4, 1440.2, 1426.2, 3913.6, 1030.2, 689.12, 1667.4, 488.08, 673.13, 453.07, 397.07, 9008, 365.06, 282.05, 397.14, 2184.6, 6920.4, 288.05, 225.04, 5016.4, 370.07, 535.08, 325.04, 2665, 1266.5, 3168.9, 1206.6, 572.79, 531.8, 5184.9, 1594.6, 378.86, 350.87, 941.67, 1102.5, 285.89, 261.9, 259.9, 605.83, 233.91, 339.89, 289.9, 415.87, 192.93, 199.93, 173.94, 350.89, 574.82, 176.94, 2342.6, 281.91, 9904.3, 4125.1, 3875.1, 5263.1, 3770.1, 985.01, 1409.1, 524, 4405, 485, 1470, 435, 404, 403, 418, 364, 456, 334, 722.01, 2629.2, 345.01, 541.01, 2096.1, 262, 248, 242, 239, 359.01, 213, 239.73, 231.77, 2605.8, 644.9, 193.97, 1397.1, 92.513, 3824.5, 119.42, 106.51, 322.63, 97.514, 38.794, 275.83, 95.544, 4058.8, 142.32, 4318.3, 40.791, 903.76, 97.546, 4659.1, 2654.3, 2104.8, 1629.4, 1810.5, 1061.9, 1267.1, 908.8, 899.79, 1111.9, 1406.2, 702.61, 683.59, 589.51, 4650.3, 517.45, 455.4, 1652.3, 374.33, 483.41, 319.28, 430.36, 315.27, 262.23, 1293, 214.19, 213.19, 206.18, 190.17, 11254, 5493.4, 2479.6, 2392.6, 1857.5, 1012.3, 1111.3, 946.24, 844.21, 3518.7, 541.13, 521.13, 512.13, 475.12, 468.12, 647.16, 416.1, 412.1, 378.09, 1535.5, 351.09, 607.14, 326.08, 296.07, 5702, 344.07, 10137, 2373.6, 1362.8, 1603.7, 976.85, 799.87, 1123.9, 1187.8, 736.88, 2515.2, 2850.6, 1663.9, 717.92, 381.94, 714.89, 341.94, 313.95, 3598.9, 260.96, 361.94, 231.96, 231.96, 296.96, 581.9, 214.96, 213.96, 2555, 209.97, 222.96, 2852.4, 924.77, 2279.7, 2005.5, 936.74, 688.51, 526.44, 2989.9, 1993.6, 215.18, 238.2, 1135.6, 165.14, 152.13, 331.26, 2399.8, 134.11, 219.17, 124.1, 1078.6, 1248.9, 112.09, 112.09, 109.09, 159.14, 337.3, 103.09, 14111, 8015.7, 6814.5, 5933.5, 5581.5, 3846.3, 2143.2, 1436.1, 1249.1, 1135.1, 1116.1, 1202.1, 1218.1, 1982.3, 577.05, 1740.2, 860.11, 482.03, 452.03, 372.03, 359.03, 883.05, 3016.2, 6809.6, 2296.2, 1467.1, 1132.1, 2864.2, 796.05, 772.05, 761.05, 750.05, 692.04, 665.04, 628.04, 601.04, 593.04, 962.05, 551.04, 536.03, 516.03, 501.03, 480.03, 474.03, 488.03, 454.03, 446.03, 4487.5, 2988.7, 3077.7, 2340.3, 1707.9, 3977, 2775.4, 3020.4, 1414.7, 6710.5, 2885.3, 954.51, 666.36, 429.24, 432.24, 350.19, 347.19, 364.2, 303.17, 300.17, 2019.9, 377.2, 2225.9, 937.53, 226.13, 16266, 6807.1, 4073.9, 3359.1, 3636.2, 3382.2, 1728.5, 2286.5, 1402.6, 1298.6, 1134.7, 1017.7, 744.8, 624.83, 578.84, 577.84, 525.86, 514.86, 489.87, 459.87, 762.79, 410.89, 406.89, 503.87, 440.88, 334.91, 309.91, 383.88, 495.86, 2944.6, 1870.7, 986.8, 1682.1, 832.99, 823, 1296.5, 3345.4, 618.25, 1192.8, 2434.5, 463.44, 444.46, 479.43, 397.52, 384.53, 565.38, 695.21, 842.06, 292.64, 1946, 567.38, 226.72, 448.49, 506.57, 273.68, 198.76, 210.74, 197.76, 185.77, 3732.5, 3187.1, 2395.6, 1936.3, 1978.3, 6554.8, 2664.7, 1803.1, 1176.8, 1115.7, 898.59, 1158.7, 711.47, 630.41, 592.39, 587.39, 759.49, 570.37, 500.33, 808.5, 459.3, 891.55, 368.24, 1914.4, 468.29, 6340.3, 799.77, 2498.1, 2376, 1026.9, 3890.4, 1467.1, 258.25, 253.24, 311.3, 258.24, 351.33, 190.18, 163.16, 1596.2, 243.22, 852.66, 2821.2, 1403, 167.16, 3107.2, 101.1, 1195, 652.5, 87.084, 85.082, 84.081, 79.076, 1014.9, 8419.7, 6127.3, 5617.4, 3882.9, 3021.2, 2541.3, 3064.2, 3111.3, 1318.6, 1197.7, 971.74, 741.79, 2729.6, 931.79, 2122.7, 760.81, 695.8, 488.87, 1342.8, 460.88, 449.88, 625.84, 301.92, 267.92, 287.93, 242.93, 236.93, 2946.6, 3222.5, 1632.2, 3934.3, 944.52, 940.52, 953.52, 4437.2, 808.59, 799.59, 744.63, 1838.3, 853.57, 879.56, 5265.8, 923.57, 438.78, 565.73, 2989.1, 542.74, 459.78, 277.86, 275.86, 280.86, 259.87, 478.79, 2586.2, 1482.1, 2963.6, 1127.2, 1165.3, 434.02, 490.03, 1232.1, 622.02, 337.02, 335.02, 288.01, 280.01, 539.05, 248.01, 245.01, 327.02, 219.01, 2091, 211.01, 489.01, 186.01, 340.01, 4074.4, 2708.8, 2307.8, 2514.8, 3408.8, 2761.8, 1264.9, 1113, 690.94, 3557.8, 5366.1, 791.94, 482.96, 994.92, 501.96, 458.96, 588.97, 390.97, 700.96, 3472.8, 301.98, 306.97, 284.98, 284.98, 296.99, 387.98, 3222, 2310.9, 1523, 1007, 889.98, 786.98, 1119, 1310, 763.99, 658.98, 1177, 1156, 793, 528.99, 517.99, 924, 494.99, 676.98, 937, 572, 974.04, 472, 907.01, 377.99, 368.99, 361.99, 1166.9, 1159.9, 8534.7, 1795.3, 1641, 636.49, 1560.1, 492.38, 351.27, 240.18, 235.18, 216.17, 213.16, 190.15, 516.28, 148.11, 883.54, 164.12, 313.25, 134.1, 317.21, 132.1, 132.1, 124.09, 122.09, 370.25, 117.09, 3555, 2209.6, 1959.5, 1457.4, 1868.5, 944.26, 817.22, 1989.5, 1032.3, 715.19, 1052.3, 3678.9, 707.19, 628.17, 995.29, 511.14, 1216.3, 510.14, 1036.3, 1327.3, 350.09, 333.09, 330.09, 447.11, 5249, 4683.2, 6517, 1318.8, 1519, 1169.6, 1122.5, 3386.3, 1306.7, 1946.3, 1297.7, 1391.7, 1735.2, 743.93, 348.46, 2619.1, 286.38, 309.4, 827.03, 213.28, 202.27, 232.3, 264.34, 539.62, 156.21, 156.21, 235.3, 569.71, 4709.4, 2278, 9336.8, 2979.5, 1778.5, 2285.3, 1535.7, 698.37, 942.23, 802.3, 527.52, 593.48, 481.56, 446.6, 427.61, 554.51, 724.43, 359.67, 381.67, 558.53, 279.75, 275.75, 2931.1, 1714, 2948.4, 2584.9, 988.15, 1184.3, 545.64, 534.62, 601.7, 1488.7, 369.43, 674.74, 397.46, 316.37, 284.33, 263.31, 245.29, 244.28, 240.28, 282.32, 226.26, 1123.4, 968.36, 891.33, 732.27, 650.24, 637.24, 621.23, 514.19, 2738.9, 4217, 651.23, 556.21, 369.14, 348.13, 329.12, 284.11, 251.09, 373.13, 225.08, 2661.8, 195.07, 193.07, 595.33, 407.37, 399.32, 2373.6, 765.08, 328.89, 257.5, 179.04, 391.12, 855.23, 168.98, 2692.9, 235.31, 130.76, 120.7, 116.68, 308.64, 124.72, 2306.4, 3960.3, 3396.6, 1616.8, 1922.7, 1384.9, 1212, 3141.5, 1279.7, 4040.8, 2233.8, 2356.3, 764.99, 1727.3, 5808.3, 712.82, 675.69, 458.53, 6441.3, 3771.4, 1414.1, 3091.1, 2087, 1210.9, 4514.3, 10332, 1666.3, 1085.8, 1481.5, 775.2, 736.22, 778.09, 1151.9, 3284.7, 5934.6, 1017.1, 1448.1, 1682.2, 2054.5, 690.09, 858.29, 4456.6, 1437.7, 1378.9, 1344.9, 650.89, 1988.7, 3116, 2419.2, 3056, 3902.2, 3379.8, 2836.4, 3532.6, 1494.2, 2442.5, 2087.7, 2855.8, 4937.4, 4227.1, 2717.8, 1284.8, 527.96, 863.07, 2290.2, 2297.1, 1235.2, 1146.8, 2532.2, 1171.7, 909.72, 6493.2, 2945.1, 2442.6, 4292.8, 4435.4, 1003.2, 3841.3, 7737.9, 4397.8, 3708.3, 994.38, 1889.9, 790.88, 592.99, 6823.7, 1625, 6604.4, 6989.9, 1307.1, 1369.9, 4062.9, 3930.8, 484.35, 377.26, 4554.4, 3942.1, 1817.2, 2614.1, 1820.2, 1209.1, 661.08, 7376, 1192.1, 798.06, 683.06, 3848.4, 6397.9, 1012.6, 2142.7, 595.59, 3036.4, 7523.5, 3943.1, 3806.1, 2045.4, 1972.4, 4316.6, 2714.1, 1127.9, 2930.6, 848.19, 600.38, 4331.3, 3220.2, 2855.9, 4659.7, 1834.3, 1425.1, 2197.5, 884.78, 1060.8, 613.42, 2372.8, 1622.6, 1109.8, 4663.7, 515.91, 1264.6, 5247.2, 4586.8, 651.71, 1122.7, 546.74, 2918.8, 577.08, 2445, 1137.2, 1517.2, 739.23, 4336.3, 1736, 3494.1, 1347.9, 1075.1, 609, 843.97, 4113.6, 1638, 1412.1, 1499.1, 3599.1, 1503, 3879.4, 2190.2, 350.22, 1136.8, 247.19, 8704.2, 1995.6, 934.22, 3672.2, 2285.4, 841.02, 892.84, 3554.9, 663.77, 594.72, 922.05, 726.91, 482.56, 5251.5, 1244.1, 6440.7, 1847.2, 1255.2, 5244.7, 535.59, 894.91, 604.6, 683.7, 1402.5, 839.22, 998.33, 428.1, 689.3, 868.1, 6467.8, 870.6, 337.7, 656.9, 1660.1, 5917, 2660.7, 1421.3, 1014.9, 3318, 1703.5, 1573.1, 558.69, 7982.4, 4493.8, 2467.8, 7752, 5231.5, 3542.2, 2359.2, 5227.4, 1639.5, 1084, 6377.2, 1299.3, 2996.4, 3827.2, 4794.9, 2161.8, 4259.3, 957.8, 1844.6, 6720.9, 7991.2, 1068, 4840.9, 842.05, 4062.1, 2617.3, 3372, 2760, 2034.9, 1547.7, 1218.9, 1587.9, 682.48, 5280.9, 1210.3, 2797.6, 3596.7, 2456.4, 840.9, 842.87, 4713.7, 3011.8, 5350.7, 461.32, 2860.2, 1421.5, 4493.4, 2006.3, 1703.2, 7158.5, 8207.2, 4088.6, 2795.8, 7347, 3797.7, 4481.8, 5303.7, 3071.1, 7347, 1068.7, 5203.9, 2720.6, 5808.3, 3662.9, 6241.9, 7036.8, 1397.9, 3475.3, 2430.2, 1778.3, 5220.1, 4443.1, 1175.9, 4301.4, 2177.4, 2232.4, 839.15, 6359.9, 2207.9, 4356.1, 1211.2, 3698.6, 1627, 1028, 1045.1, 709.99, 2879, 2266.3, 1336.4, 738, 2559.6, 1545.4, 1359.3, 919.68, 5639.6, 1771.1, 1701.1, 912.72, 3102.9, 3824.8, 4208.7, 1035.2, 1631.4, 2296.1, 395.79, 1407.5, 614.45, 8870.2, 2728.6, 3119, 2782.9, 3104.6, 2219.3, 4185.5, 1755, 2117.4, 1285, 6344.4, 3630.6, 6989.9, 3432.8, 2406.5, 1646, 1794.4, 3403.7, 1548.3, 2305.6, 6258.8, 6461.3, 2472, 1975.5, 3371.5, 5998.8, 4301.4, 7036.8, 1102, 3933.8, 3098.7, 2021.9, 2038.3, 3023.2, 1704.7, 4713, 2852.8, 2803.5, 3330.5, 5139.2, 6461.3, 4257.1, 1779.6, 3481.5, 5771.3, 4840.7, 7991.2, 6441.3, 2020.2, 1541.8, 4998.5, 5410.1, 6183.5, 2078.7, 2918.6, 2092.5, 6520.3, 4112.7, 1779.1, 3779.5, 3946.2, 2483.7, 2270.7, 2151.2, 1866, 9045.9, 5130.3, 8207.2, 2725.9, 2201.4, 2939.9, 5831, 2852.8, 2412.5, 1452.9, 1472.4, 2459.6, 2161.8, 4481.3, 5479.6, 4740.8, 3887.7, 1020.2, 3726.6, 2830.7, 1780.1, 1100.9, 6979.5, 2956.8, 1582.7, 3464.3, 1175.2, 4794.9, 2058.5, 1211.3, 2177.8, 761.44, 650.51, 4048.2, 1572.1, 1049.8, 2327, 367.65, 3847, 4592.4, 3695.4, 5060.4, 4021.6, 2378, 3983.7, 8870.2, 3321.7, 3577.8, 6114.6, 1974.1, 5771.3, 4268.6, 3495.1, 4143.8, 1496.1, 4211.6, 6114.6, 3608.3, 4663.7, 3893.1, 4043.6, 4249.5, 1955.4, 5966.4, 9008, 7397.9, 3855.7, 9045.9, 1312.7, 3317.3, 6479.1, 4030.1, 6132, 2327, 2832.5, 2110.8, 3434.1, 1322.6, 5253.7, 825.52, 2792.4, 2645.5, 3261.2, 2712.5, 926.6, 886.09, 4753.3, 3073.8, 2235.2, 4443.1, 3306, 2000.4, 3729.6, 3657.9, 2510.5, 6359.9, 2291.8, 2946, 1599.1, 3009.8, 5410.1, 2519.3, 1802.9, 550.22, 1157.7, 912.18, 3304.9, 5544.7, 2780.9, 2325, 1681.8, 5010.1, 2188.1, 3627.8, 4278.8, 3374.9, 3507.9, 2845.6, 2513.3, 1814.9, 7397.9, 3818.1, 3378.8, 3003.4, 3370, 3405.7, 4456.6, 7986.1, 5969.8, 2314.5, 4438.9, 4062.9, 2138.7, 2559.5, 2100.8, 4867.8, 4044.5, 4381.6, 4730.7, 2101, 6325.6, 17112, 4539.6, 2958.1, 5966.4, 1237.2, 3495.1, 2054.5, 2445.3, 4086.8, 3442.8, 5043.7, 2538.3, 2064.3, 1179.2, 2080.6, 7982.4, 4736.4, 5232.4, 4580.3, 2867.6, 2189.1, 1786, 2412.7, 3611.9, 6241.9, 3249.3, 1899.3, 2726.7, 4103.8, 1105.4, 2733.2, 4524, 5978.9, 3744.1, 1781.9, 5373.1, 5071.2, 5253.7, 5966.4, 950.17, 4730.7, 5303.7, 5966.4, 6479.1, 4369.8, 3779.5, 6397.9, 5014.6, 4503, 4069.4, 3729.6, 2691.1, 5519.8, 2478.8, 2230.3, 3767.2, 6132, 3859.5, 6237.2, 3943.1, 3013.8, 4344, 7986.1, 5373.1, 4701.1, 6433.3, 7986.1, 4444.5, 4281.1, 4999.5, 3720.7, 4730.7, 5253.7, 2513.8, 5010.1, 4281.1, 7523.5, 2450.9, 5381.6, 5831, 2795.8, 2513.8, 6344.4, 3818.1, 4444.5, 3823.7, 6920.4, 1501.9, 1912.7, 2402.9, 1841.6, 2178, 2823, 3751.6, 2235.5, 3346, 2921.2, 6359.9, 4362.3, 4968.5, 1289.5, 3902.2, 7737.9, 7631.7, 2606.8, 9045.9, 4867.8, 7158.5, 1862.3, 1822.5, 3938.1, 3803.5, 3171.4, 6237.2, 4938.4, 4057.5, 3624, 6823.7, 2402.2, 3648.7, 6440.7, 4362.3, 3892.4, 3844.5, 2877.7, 4316.6, 4064, 4503, 3009.8, 2640, 5381.6, 4736.4, 3806.1, 5296.2, 6979.5, 8534.7, 3610.5, 2296.1, 5232.4, 4739.2, 6710.5, 6325.6, 3796.9, 2301.5, 3744.1, 8704.2, 5969.8, 5514, 6479.1, 3669.8, 4227.1, 4058.8, 2288.9, 2921.6, 5831, 2195, 10332, 5639.6, 3107.5, 8704.2, 4300.8, 3171.4, 4739.2, 3887, 3480.4, 5514, 4584.1, 4060.6, 5666.1, 4287.9, 3856, 7752, 3602.7, 1892.3, 10332, 4514.3, 5934.6, 2171.4, 5350.7, 5280.9, 6132, 5978.9, 2596.8, 3384, 1512.8, 2846.2, 7986.1, 5373.1, 2920.7, 4356.1, 3210.5, 5519.8, 1308.8, 7857.3, 6517, 2025.4, 3855.7, 2425.7, 4407, 4713, 8207.2, 5381.6, 5381.6, 3566, 2712.6, 3512.3, 4211.6, 5571.9, 4706.6, 3286.9, 3373.1, 4249.5, 4241.3, 6461.3, 4292.8, 3918.2, 1973.4, 5350.7, 5771.3, 3849.1, 7176.7, 7158.5, 6467.8, 3532.7, 6493.2, 5130.3, 6433.3, 4739.2, 4859.7, 5167.4, 2086.8, 3442.8, 4226.9, 2226.4, 5013, 2093.3, 1543.6, 4926.3, 2751.3, 8870.2, 6237.2, 3751.6, 4456.6, 2594.9, 5253.7, 4164.9 ], | |
| "Category": [ "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Default", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic32", "Topic32", "Topic1", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic28", "Topic28", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic31", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic31", "Topic32", "Topic1", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic5", "Topic5", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic12", "Topic13", "Topic13", "Topic13", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic19", "Topic19", "Topic19", "Topic20", "Topic21", "Topic21", "Topic22", "Topic22", "Topic23", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic26", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic31", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic6", "Topic6", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic10", "Topic11", "Topic11", "Topic12", "Topic12", "Topic13", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic20", "Topic20", "Topic21", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic25", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic28", "Topic28", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic6", "Topic7", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic11", "Topic12", "Topic12", "Topic13", "Topic13", "Topic14", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic27", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic2", "Topic3", "Topic3", "Topic4", "Topic4", "Topic5", "Topic6", "Topic7", "Topic8", "Topic9", "Topic10", "Topic11", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic15", "Topic15", "Topic16", "Topic17", "Topic17", "Topic18", "Topic19", "Topic19", "Topic20", "Topic21", "Topic22", "Topic24", "Topic25", "Topic25", "Topic25", "Topic26", "Topic27", "Topic27", "Topic29", "Topic29", "Topic30", "Topic30", "Topic31", "Topic32", "Topic32", "Topic32", "Topic1", "Topic1", "Topic1", "Topic2", "Topic3", "Topic3", "Topic3", "Topic5", "Topic6", "Topic7", "Topic7", "Topic7", "Topic8", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic12", "Topic13", "Topic13", "Topic14", "Topic14", "Topic15", "Topic16", "Topic18", "Topic18", "Topic18", "Topic19", "Topic20", "Topic21", "Topic21", "Topic22", "Topic23", "Topic24", "Topic25", "Topic25", "Topic26", "Topic26", "Topic27", "Topic29", "Topic29", "Topic30", "Topic30", "Topic31", "Topic31", "Topic32", "Topic32", "Topic32", "Topic1", "Topic3", "Topic5", "Topic5", "Topic5", "Topic6", "Topic7", "Topic7", "Topic8", "Topic8", "Topic9", "Topic10", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic13", "Topic14", "Topic15", "Topic17", "Topic17", "Topic18", "Topic18", "Topic19", "Topic19", "Topic20", "Topic22", "Topic23", "Topic23", "Topic25", "Topic25", "Topic27", "Topic27", "Topic28", "Topic28", "Topic29", "Topic30", "Topic32", "Topic32" ] | |
| }, | |
| "token.table": { | |
| "Term": [ "@", "@citireporter", "@hiddencash", "^cv", "100m", "100m", "155cm\ncourt", "1st", "1st", "1st", "1st", "24.com", "400m", "aacl", "abduraghman mayman", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "abject", "abject", "abland", "aboobaker", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abuse", "abvajee", "academic", "academic", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "accident", "accident", "accident", "accident", "accident", "accident", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "account", "acdp", "acnw", "actor", "actor", "actress", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "actually", "adams", "adams", "adaptor", "admin", "admin", "admittedly", "admittedly", "adra", "adrian lackay", "adt central region", "advert", "advertising", "advertising", "advertising", "advertising", "afri dome", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "africa", "aftershock", "afzal", "agang", "agang sa", "agangsa", "agency", "agency", "agency", "agency", "agency", "agency", "agency", "agency", "agent", "agent", "agent", "agent", "agent", "agent", "agent", "agent", "agn", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agricultural", "agricultural", "agricultural", "agriculture", "agriculture", "agriculture", "aic", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "airbags", "aircraft", "aircraft", "airline", "ajax", "al-hamati", "al-sisi", "alberton", "alberton", "album", "album", "alcohol", "alcohol", "alcohol", "alcohol", "alcohol", "alcohol", "alcohol", "alcohol", "alibaba", "allegation", "allegation", "allegation", "allegation", "allegation", "allegation", "allegation", "allege", "allege", "allege", "allege", "allege", "allege", "allege", "allenby street", "allocated", "alloy", "almera", "alternatv", "amakhosi", "amakhosi", "ambulance", "ambulance", "ambulance", "ambulance", "ambulance", "amcu", "amendment", "amendment", "american", "american", "american", "american", "american", "american", "american", "american", "american", "american", "amla", "amplats", "analyst", "analyst", "analyst", "analyst", "analyst", "analyst", "ancient", "ancient", "ancient", "andersson", "andrias", "android", "anelka", "anene", "anette stipp", "angelou", "angler", "angler", "anglo american platinum", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "angry", "animal", "animal", "animal anti-cruelty league", "animals", "annuity", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "answer", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "anti", "antibody", "apartheid", "apartheid", "apartheid", "apartheid", "apartheid", "apd", "apnea", "apnea", "app", "app", "app", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "apparently", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "appeal", "apple", "apple", "application", "application", "application", "application", "application", "application", "application", "application", "application", "application", "application", "application.\"a", "applink", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appoint", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "appreciate", "apps", "araujo", "arconpark", "argon", "argue", "argue", "argue", "argue", "argue", "argue", "argue", "argue", "argue", "arguer", "argument", "argument", "argument", "argument", "argument", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "arm", "armed", "armed", "armed", "armed", "armed", "armed", "armed", "armin", "army", "army", "army", "army", "arrears", "arrears", "arrears", "arrears", "arsenal", "arsenal", "art", "art", "art", "art", "art", "art", "article", "article", "article", "article", "article", "article", "artist", "artist", "artwork", "aru", "asisa", "assad", "assault", "assault", "assault", "assault", "assault", "assault", "asset", "asset", "asset", "asset", "asset", "asset", "association of mineworkers", "astrapak", "astrazeneca", "asuf", "asuf.", "atheism", "athlete", "athlete", "athlete", "athlete", "athletics", "athletics", "athletics", "atkv", "atletico", "aubergine", "auction", "auction", "auction", "auction", "auction", "auction", "auction", "audience", "audience", "audience", "audience", "audience", "audits", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "august", "augusta", "aunt", "aunt", "aunt", "aunt lydia", "auntie", "auntie muriel's", "auriol", "australia", "australia", "australia", "australia", "australia", "australia", "australian", "australian", "australian", "australian", "australian", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "authority", "autism", "avalanche", "avanza", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "aviation", "award", "award", "award", "award", "award", "award", "award", "award", "award", "award", "award", "award", "award", "awd", "awendrus", "azapo", "b.o.b.", "baadjes", "baby", "baby", "baby", "baby", "baby", "backstroke", "backyarders", "bafana", "bafana bafana", "baghdad", "bail", "bail", "bail", "bake", "bake", "bake", "bakkie", "bakkie", "bakkie", "bakkie", "bakkie", "balal", "balcony", "balcony", "ball", "ball", "ball", "ball", "ball", "ball", "ball", "ballet", "ballet", "ballistics", "ballot", "band", "band", "band", "band", "bangladesh", "bank", "bank", "bank", "bank", "bank", "bank", "bank", "bantubonke", "barbie", "barca", "barcelona", "barrage road", "barry roux", "bartlett", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basic", "basilica", "bat", "bat", "bat", "bathroom", "bathroom", "batsman", "battery road", "batting", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "battle", "bayanda", "bayern", "bcci", "beach", "beach", "bean", "beatenberg", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beautiful", "beauty", "beauty", "beauty", "beauty", "beauty", "beauty", "bed", "bed", "bed", "bed", "bed", "bed", "bed", "bed", "bed", "befa", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "before", "begonia", "beijing", "beijing", "bekkersdal", "believer", "believer", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "belt", "bench", "bench", "bench", "bench", "bench", "bench", "bench", "bench", "bench", "bench", "beneficiation", "benoni indians baseball club", "beret", "beret", "besuursders", "bet365.gr", "bethlehem", "bethlehem", "bethlehem", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "beyonce", "bhekifa", "bible", "bible", "bible", "biblical", "biblical", "bieber", "bike", "bike", "bike", "bike", "biking", "biking", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bill", "bin", "bin", "bin", "biokeneticist", "biotech", "bird", "bird", "bird", "birdie", "birth", "birth", "birth", "birth", "birth", "birth", "birth", "birth", "birth", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "birthday", "bishop", "bishop", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bitcoins", "bjp", "black executive", "blatter", "blessing", "blessing", "blessing", "blessing", "blithering", "bloemfontein", "bloemfontein", "bloemfontein", "bloemfontein", "bloemfontein", "bloemnews", "blog't", "blood", "blood", "blood", "blood", "blood", "blood", "blood", "bloomberg", "bluefin-21", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "boat", "boat", "boat", "bobroffs", "boeing", "boeing", "bogey", "boilermaker", "boko haram", "boks", "bomb", "bomb", "bomb", "bomb", "bonang", "booking", "booking", "booking", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "border", "bosch", "bosch", "bosch", "bottlenose", "bouteflika", "bowl", "bowl", "bowl", "bowl", "bowler", "bowling", "bowling", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "box", "boxing", "boxing", "boy", "boy", "boy", "boy", "boy", "boy", "boy", "boyfriend", "boyfriend", "boyfriend", "boyfriend", "brain", "brain", "brain", "brain", "brain", "brain", "brain", "brake", "brake", "brake", "brake", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "branch", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brazil", "brazil", "brazil", "brazil", "brazil", "brazil", "bread", "bread", "bread", "bread", "bread", "bread", "breast", "breaststroke", "breed", "breed", "breed", "breed", "breeding", "breeding", "broadcaster", "broadcaster", "broadcaster", "broadcaster", "bronze", "bronze", "bronze", "brother", "brother", "brother", "brother", "brother", "brother", "brother", "brownell", "brumbies", "budget", "budget", "budget", "budget", "budget", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "building", "bull", "bull", "bull", "bull", "bullet", "bullet", "bullet", "bullet", "bullet", "bullet", "bulls", "bulls", "bulwane", "bun", "bundi adventures", "bureaus", "burglary", "burglary", "burglary", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "burn", "bursary", "bury", "bury", "bury", "bury", "bury", "bury", "bury", "bury", "bury", "bus", "bus", "bus", "bus", "bus", "bus", "bus", "butter", "cabinet", "cabinet", "cabinet", "cabinet", "cabinet", "cabinet", "cabinet", "cage", "cage", "cage", "cage", "cake", "cake", "caledon", "caley", "campus", "campus", "cancer", "cancer", "cancer", "candidate", "candidate", "candidate", "candidate", "candidate", "cannes", "cano", "canoe", "canoe", "canonisation", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capitalism", "capitalism", "capoeira", "capsize", "carbon", "carbon", "carbon", "carbon", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "card", "career", "career", "career", "career", "career", "career", "career", "career", "career", "career", "career", "career", "career", "career", "carver media", "cashier", "cashier", "cashier", "cast", "cast", "cast", "cast", "cast", "cast", "cast", "cast", "cast", "cat", "cat", "category", "category", "category", "category", "category", "category", "category", "category", "category", "cavaliers", "ccc", "ccma", "cec", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrate", "celebrity", "celebrity", "cent", "cent", "cent", "cent", "cent", "cent", "center", "center", "center", "center", "center", "center", "center", "center", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "certainly", "cervical", "chabane", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "chairman", "champion", "champion", "champion", "champion", "champion", "champion", "champion", "champions", "champions", "champions", "champions league", "championship", "championship", "championship", "championship", "championships", "chanika", "character", "character", "character", "character", "character", "character", "character", "character", "character", "charity", "charity", "charity", "charity", "charity", "charity", "cheese", "cheetahs", "chelsea", "chiefs", "chiefs", "chimp", "china", "china", "china", "china", "china", "china", "chinamasa", "chinese", "chinese", "chinese", "chinese", "chittagong", "chocolate", "chocolate", "chocolate", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choice", "choir", "chop", "chop", "chop", "chop", "chop", "chop", "choral", "chorale", "chris mangena", "chris van biljon", "christ", "christ", "christian", "christian", "christian", "christian", "christian", "christian", "christian", "christians", "christians", "christians", "christina lundgren", "christmas fund", "church", "church", "church", "church", "cil", "cinema", "cinema", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "citizen", "city of cape town", "city of cape town", "city of johannesburg", "city of johannesburg", "city power", "class", "class", "class", "class", "class", "class", "class", "class", "class", "classical", "classical", "classical", "classroom", "claus", "clay", "clay", "clay", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "clean", "client", "client", "client", "client", "client", "client", "client", "client", "clifton fredericks", "climate", "climate", "climate", "climate", "climate", "climate", "climate", "clinic", "clinic", "clinic", "clinic", "clinic", "cloetesville", "cluedapp", "cmm", "cms", "cng", "cng holdings", "coach", "coach", "coach", "coach", "coach", "coach", "coal", "coal", "coal", "coal", "coal", "coal", "coastguard", "cobain", "cobras", "coetzee", "coffee", "coffee", "coffee", "coffee", "coffee", "coffee", "coffee", "coghsta", "coin", "coin", "coin", "coin", "coin", "coin", "coin", "coleraine drive", "college", "college", "college", "college", "college easter rugby festival", "collide", "collide", "collide", "collide", "colton", "comedy", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "comfortable", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "commit", "committee", "committee", "committee", "committee", "committee", "committee", "committee", "committee", "commodity", "commonwealth", "commonwealth", "commuter", "compensation", "compensation", "compensation", "compensation", "compensation", "compensation", "compete", "compete", "compete", "compete", "compete", "compete", "compete", "compete", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complain", "complaint", "complaint", "complaint", "complaint", "complaint", "complaint", "complaint", "complaint", "compliance", "compliance", "compliance", "compost", "computer", "computer", "computer", "computer", "computer", "computer", "computer", "computicket", "comrades", "comrades", "comrades marathon breakfast", "conakry", "concert", "concourt", "conditional", "condom", "condom", "conflict", "conflict", "conflict", "conflict", "conflict", "conflict", "conservancy", "const malatji", "constitution", "constitution", "constitution", "constitution", "constitutional", "constitutional", "constitutional", "constitutional", "constitutional", "constitutional court", "construction", "construction", "construction", "construction", "construction", "construction", "construction", "consumer", "consumer", "consumer", "consumer", "consumer", "consumption", "consumption", "consumption", "consumption", "consumption", "consumption", "consumption", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contest", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contractor", "contractor", "contractor", "contractor", "contractor", "contractor", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "contribution", "conversion", "conversion", "conversion", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convert", "convict", "conviction", "conviction", "conviction", "conviction", "conviction", "cook", "cook", "cook", "cook", "cook", "cooking channel", "cop", "cop", "cop", "cop", "cop", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cope", "cornubia", "corolla", "corolla", "corruption", "corruption", "corruption", "corruption", "corruption", "cortes", "cosatu", "cosatu house", "council", "council", "council", "council", "council", "councillor", "councillor", "councillor", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "count", "counting", "counting", "counting", "coup", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "courage", "courage", "courage", "courage", "courage", "courage", "couscous", "cousin", "cousin", "cousin", "cousin", "cousin", "cow", "cow", "cow", "cow", "cpf", "cpf", "crash", "crash", "crash", "crash", "crash", "crash", "crash", "crashamanka", "cream", "cream", "creation", "creation", "creation", "creation", "creation", "creation", "creative", "creative", "creative", "creative", "creative", "creative", "creative", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "creecy", "crew", "crew", "crew", "crewman", "cricket", "cricket", "cricket", "cricketer", "cricketer", "cricketer", "crimea", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "criminal", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "crisis", "cro", "crocodile", "crocodile", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "cross", "crossfit", "cruelty", "cruelty", "crusaders", "cry", "cry", "cry", "cry", "cry", "cry", "cry", "cry", "csa", "csf", "cubicle", "cup", "cup", "cup", "cup", "cup", "cup", "cup", "currency", "custody", "custody", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "cvt", "cyber", "cycling", "cycling", "cycling", "cyclist", "cyclist", "cyclist", "cylinder", "cylinder", "cze", "d. o", "da", "da", "da", "da.", "da.", "dad", "dad", "dad", "dad", "dad", "daddy", "daddy", "daddy", "daily sun", "dale steyn", "dam", "dam", "dam", "dam", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "damage", "dance", "dance", "dancer", "dancer", "dancing", "dancing", "dancing", "danki", "darfur", "darren fresco", "datum", "datum", "datum", "datum", "daughter", "daughter", "daughter", "david mabuza", "dci", "de jager", "de jager", "de jager", "de voest", "de wetsaal", "debris", "debris", "debris", "debris", "debris", "debt", "debt", "debt", "debt", "debt", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "decade", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "defeat", "defeat", "defeat", "defeat", "defeat", "defeat", "defeat", "defeat", "defeat", "defeat", "defence", "defence", "defence", "defence", "defence", "defence", "defence", "defence", "defence review", "defendant", "defendant", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "definitely", "deflation", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "degree", "deity", "delete", "delete", "delete", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delivery", "delville sports club", "democracy", "democracy", "democracy", "democracy", "democracy", "democratic", "democratic", "democratic", "democratic", "democratic", "democratic alliance", "democratic alliance", "deneil", "densification", "dentist", "dentist", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "deny", "department of education", "depoliticise", "depression", "depression", "deputy", "deputy", "deputy", "deputy", "deputy", "deputy", "deputy", "deputy", "der", "der", "der", "der", "der", "der", "der", "der", "derby-lewis", "desertification", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "designer", "designer", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "desperately", "devere", "device", "device", "device", "device", "device", "device", "device", "device", "device", "dewani", "dewani", "dgp", "dhaka", "dhlakama", "dhoni", "diabetes", "diagnose", "diagnose", "die windpomp", "diesel", "diesel", "digital", "digital", "digital", "diphtheria", "diploma", "diploma", "diploma", "disciple", "disciplinary", "disciplinary", "disciplinary", "disciplinary", "disciplinary", "disclaimer", "discus", "disease", "disease", "dish", "dish", "dish", "dish", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "dismiss", "disney", "disney junior play", "disorder", "disorder", "distinction", "distinction", "distinction", "distributional", "district", "district", "district", "district", "district", "district", "district", "district", "district", "diver", "division", "division", "division", "division", "division", "division", "division", "division", "division", "division", "dixon", "dj", "dj", "djibouti", "djokovic", "doctor", "doctor", "doctor", "doctor", "doctor", "doctor", "doctor", "document", "document", "document", "document", "document", "document", "document", "document", "document", "document", "document", "document", "document", "documentary", "documentary", "dog", "dog", "dog", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dolopi", "dolphins", "domingo", "donald coxen", "donate", "donate", "donate", "donate", "donation", "donation", "donell pillay", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "doubt", "dough", "dow", "dpt", "dr merryll vorster", "draft", "draft", "draft", "draft", "draft", "draft", "draft", "draft", "draft", "drama", "drama", "drama", "drama", "drama", "drama", "drama", "drama", "drama", "drama", "drama", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "dream", "drink", "drink", "drink", "drink", "drink", "drink", "drink", "drink", "drink", "drink", "driver", "driver", "driver", "driver", "driver", "drotske", "drug", "drug", "drug", "drug", "drug", "drugmaker", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dry", "dti", "du plessis", "du plessis", "duminy", "dump", "dump", "dump", "dump", "dump", "dumpy", "durban street circuit", "durbs", "dusi", "duster", "duster", "e", "e", "e", "e", "e", "e", "e", "earnings", "earnings", "earnings", "earth", "earth", "earth", "earth", "earth", "earthly", "earthwork", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easily", "easter", "easter", "easter", "easter", "easter", "easter", "easter", "easter", "easter", "easter", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eastern", "eat", "eat", "eat", "eat", "eat", "eat", "eat", "eat", "ebersohn", "ebola", "ecoboxx", "economic freedom fighters", "economic freedom fighters", "economically", "economically", "economically", "economist", "economy", "economy", "economy", "economy", "ecosport", "ed", "ed", "edit", "edit", "editor", "editor", "editor", "editor", "education", "education", "education", "education", "educational", "educational", "educational", "educator", "educator", "eduplant", "eea2", "eff", "eff.", "egg", "eggplant", "egypt", "egypt", "egypt", "either", "either", "either", "either", "either", "either", "either", "either", "either", "either", "either", "either", "ek joke net", "ekurhuleni kayak club's", "eldest", "eldest", "elect", "elect", "elect", "elect", "elect", "elect", "elect", "elect", "electoral", "electoral", "electoral", "electoral commission", "electoral reform", "electricity", "electricity", "electricity", "electricity", "elephant", "elephant", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emergency", "emma", "emma", "emmet", "emo", "employee", "employee", "employee", "employee", "employee", "employee", "employee", "employee", "employer", "employer", "employer", "employer", "employer", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment equity act", "employment equity act", "empowerment", "empowerment", "empowerment", "empowerment", "enclosure", "encryption", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "engine", "engine", "engine", "england", "england", "england", "engo", "enrol", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertain", "entertainment", "entertainment", "entertainment", "entrepreneur", "entrepreneur", "entrepreneurship", "entrepreneurship", "entrepreneurship", "entry", "entry", "entry", "entry", "entry", "entry", "entry", "entry", "entry", "entry", "entry", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environmental", "environmental", "environmental", "environmental", "eoe", "epidemic", "epilepsy", "episcopus", "er24", "er24", "erk", "es250", "esihle", "eskom", "eskom", "eskom", "esl", "estate", "estate", "estate", "estate", "estate", "estate", "estate", "estate", "esteemed", "esteemed", "esteemed", "estina", "estranged", "esv", "eternal", "eternal", "etf", "ethekwini", "ethekwini", "eu", "eu", "eureka school", "euro", "euro", "euro", "euro", "euro", "eurozone", "everton", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evidence", "evil", "evil", "evil", "evil", "evil", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "exactly", "examination", "examination", "examination", "examination", "examination", "example", "example", "example", "example", "example", "example", "example", "example", "example", "example", "example", "example", "example", "example", "excellence", "excellence", "excellence", "excellence", "exco", "exercisable", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exercise", "exhibition", "expedition", "expenditure", "expenditure", "expenditure", "expenditure", "expenditure", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "expert", "export", "export", "export", "export", "export", "export", "export processing zones", "expulsion", "expulsion", "faa", "facebook", "facebook", "facebook", "facebook", "facebook", "facebook", "facebook", "facebook", "facebook", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "faculty", "faculty", "fairway", "faith", "faith", "faith", "faith", "faith", "faith", "faith", "faith", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "fan", "farlam", "farlam commission of inquiry", "farm", "farm", "farm", "farm", "farm", "farm", "farm", "farm", "farm", "farm", "farmer", "farmer", "farmer", "farmer", "farmer", "farmer", "farmer", "farren", "fashion", "fashion", "fashion", "fashion", "fassler", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "fast", "father", "father", "father", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "feature", "federation", "federation", "federer", "fedsas", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feed", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "feeling", "ferry", "ferry", "ferry", "festival", "fibroid", "fiddle", "fiddle", "fiddle", "fifa", "fighters", "fighters", "figo", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "figure", "file", "file", "file", "file", "file", "file", "file", "file", "file", "file", "file", "film", "film", "film", "filmmaker", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finally", "finance", "finance", "finance", "finance", "finance", "finance", "finance", "finance", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "firearm", "firearm", "firearm", "firearms control act", "firepools", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "firm", "fish", "fish", "fish", "fish", "fisherman", "fishing", "fishing", "fishing", "fishing", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fit", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fix", "fixture", "fixture", "fixture", "fixture", "flee", "flee", "flee", "flee", "flexed", "flight", "flight", "flight", "flight", "flight", "flight", "flippie", "flood", "flooding", "flores", "florries", "flour", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flow", "flower", "flower", "flower", "flower", "flower", "flower", "flower", "flower news", "flu", "flu", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "fly", "flyhalf", "flying squad", "fnb housing finance", "folau", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "foot", "football", "football", "football", "football", "ford", "ford", "ford", "forecast", "forecast", "forecast", "forecast", "forecast", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "foreign", "forester", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "forget", "formaldehyde", "format", "format", "format", "format", "format", "format", "format", "format", "format", "fort hood", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "foundation", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fracking", "francis", "francis", "francis", "francoise malby-anthony", "freedom", "freedom", "freedom", "freedom", "freedom", "freedom", "freedom", "freedom", "freedom", "french", "french", "french", "french", "french", "french", "french", "french", "french", "fresco", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "frighteningly", "frittata", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "ftse", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "ful", "fullback", "fullback", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "fun", "funding", "funding", "funding", "funding", "funding", "funding", "funding", "fundraising", "funeral", "funeral", "funeral", "funeral", "funeral", "funeral", "g", "g", "g", "gallery", "gallery", "gallery", "gallery", "gallery", "gamat", "gang", "gang", "garden", "garden", "garden", "garden", "garden", "garnishee", "gas", "gas", "gas", "gas", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gate", "gauteng department of education", "gay", "gde", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gear", "gelatine", "geldof", "genetic", "genexpert", "gepf", "gerasperde", "germiston callies'", "germiston rays fc", "germiston simmer rugby club", "gerrard", "gerrie nel", "gertse", "geyser", "gidani", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gig", "gigaba", "giggs", "giliam van rensburg", "girl", "girl", "girl", "girl", "girl", "girl", "girl", "girl", "girlfriend", "girlfriend", "girlfriend", "girlfriend", "giro", "glaucoma", "glencore", "glenister", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global risk", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goalkeeper", "god", "god", "god", "gofpep", "gogo", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "goldrich", "golf", "golf", "golf", "golf", "golf", "golfer", "google", "google", "google", "google", "gore", "gqada", "grade", "grade", "grade", "grade", "grade", "grade", "grade", "graduate", "graduate", "graduate", "graduate", "graduate", "graduation", "graham", "graham", "graham", "grandchild", "grandchild", "grandchild", "granddaughter", "grandfather", "grandfather", "grandma barbie", "grandmother", "grandmother", "grant", "grant", "grant", "grant", "grant", "grant", "grant", "grant", "grant", "grant", "grant", "grantleigh", "grate", "green", "green", "green", "green", "green", "green", "green", "green", "green", "green", "green", "green", "green", "green", "greeting", "greeting", "greeting", "greetings uncle kalimarie", "gregory orsmond", "grid", "grid", "griquas", "grose", "groupwise", "growth", "growth", "growth", "growth", "grung", "guard", "guard", "guard", "guard", "guard", "guard", "guard", "guard", "guard", "guard", "guest", "guest", "guest", "guest", "guest", "guest", "guest", "guest", "guest", "guilty", "guilty", "guilty", "guilty", "guilty", "guilty", "guilty", "guinea", "guinea", "guinea", "guinea", "guitar", "guitarist", "gujarat", "gun", "gun", "gun", "gun", "gun", "gun", "gun", "gun", "gungubele", "gunshot", "gunshot", "gunshot", "gurlitt", "gwede mantashe", "gymnast", "hacker", "haftar", "hair", "hair", "hair", "hair", "hall", "hall", "hall", "hall", "hall", "hall", "hammies", "handyman", "handyman", "harambee", "hardly", "hardly", "hardly", "hardly", "hardly", "hardly", "hardworker", "harvest", "harvest", "hathorn", "haws", "hazra", "hcm", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "healthy", "hearing", "hearing", "hearing", "hearing", "hearing", "hearing", "hearing", "hearing", "heartbleed", "heater", "heater", "heaven", "heaven", "heaviside", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heavy", "heever", "heini", "helen zille", "helen zille", "helen zille", "henley road", "heraldic", "herb", "herd", "herd", "herd", "herd", "herd", "herdien", "hermanus", "het", "hgbf", "hhcc", "highlander", "highlanders", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "highly", "hillen", "hilton botha", "him", "hiranyakashipu", "hishammuddin", "hishammuddin hussein", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "history", "hitachi", "hiv", "hks", "ho.", "hobkirk", "hockey", "hole", "hole", "hole", "hole", "hole", "hole", "holiday", "holiday", "holiday", "holiday", "holiday", "holiday", "holiday", "holiday", "holiday", "holiday", "hollywood", "holy", "holy", "holy", "holy spirit", "homestead", "homestead", "homosexual", "homosexuality", "homs", "hookah", "hooker", "hooters", "hore", "horn", "horn", "horn", "horn", "horn", "horn", "horn", "horn", "horn", "horse", "horse", "horse", "horse", "horse", "horse", "horse", "horse", "horse", "horse", "hosmed", "hospicewits", "housing", "housing", "housing", "housing", "housing", "housing", "housing", "hpv", "hrdy", "hul", "hurricanes", "husband", "husband", "husband", "iaaf", "icasa", "icc", "icc", "id", "id", "id", "id", "id", "id", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idea", "idz", "iec", "iec", "iec.", "ifp", "igesund", "ignition tv", "ignoble", "illegal", "illegal", "illegal", "illegal", "illegal", "illegal", "illegal", "illegal", "illegal", "illegal", "illness", "illness", "illness", "illness", "illness", "illness", "illness", "illness", "imf", "imf", "imp", "impala platinum", "impeachment", "implats", "import", "import", "import", "import", "import", "import", "import", "imprisonment", "imprisonment", "in2brand", "inauguration", "inauguration", "inauguration", "incl", "income", "income", "income", "income", "incur", "incur", "incur", "incur", "indalu", "independent electoral commission", "independent electoral commission", "independently", "independently", "independently", "index", "index", "india", "india", "india", "india", "india", "indian", "indian", "indian", "indian", "indian", "indian", "indian", "indian ocean", "indian ocean", "industrial development zones", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "inequality", "infect", "infect", "infection", "inflation", "inflation", "inflation", "informal", "informal", "informal", "informal", "informal", "information bill", "infrastructure", "infrastructure", "infrastructure", "infrastructure", "infrastructure", "initiative", "initiative", "initiative", "initiative", "initiative", "initiative", "initiative", "initiative", "initiative", "injure", "injure", "injure", "injure", "injure", "injure", "injure", "injure", "inmarsat", "inmate", "inmate", "innibos", "inning", "innings", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "inspire", "institution", "institution", "institution", "institution", "institution", "institution", "institution", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurer", "insurer", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interested", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "interesting", "internet", "internet", "internet", "intersection", "intersection", "intersection", "intersex", "intruder", "invalid", "invalid", "invalidity", "invest", "invest", "invest", "invest", "investment", "investment", "investment", "investment", "investment", "investor", "investor", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "invite", "ipl", "ipo", "iquique", "ireland", "ireland", "ireland", "ironman", "irregularity", "irregularity", "irregularity", "isibaya", "islamic", "islamic", "islamist", "island", "island", "island", "island", "island", "island", "israel", "israel", "israel", "israel", "israeli", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "iversen", "j22", "jacc", "jacky", "jacob zuma", "jacob zuma", "jacob zuma", "jacob zuma's", "jacqui mofokeng", "jaffon", "jail", "jail", "jail", "jail", "jail", "jan 2013", "janke", "janse noordwyks", "japie grobler", "javelin", "jayme-sue", "jazz", "jeanelle", "jeke", "jennings", "jessnitz", "jesus", "jesus", "jesus christ", "jet", "jet", "jet", "jet", "jgi", "jimmy choos", "jindo", "john xxiii", "jolie", "joseph mathunjwa", "joshco", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "journalist", "jous", "jpsa", "jra", "jse", "jse", "judgment", "judgment", "judgment", "judgment", "juice", "juke", "jul", "julian", "julius malema", "junie", "junior", "junior", "junior", "junior", "junior", "junior", "justice", "justice", "justice", "justice", "justice", "justice", "justice", "justice", "justin divaris", "jwc", "kaartjies", "kagiso rugby club", "kaizer chiefs", "kallis", "kamagwaza-msibi", "kanye", "karate", "karin erasmus", "karin muller", "kasieta", "kasimu", "kasrils", "kathu", "kaws", "kaymer", "keith", "kelly phelps", "kendra", "kendrick lemar", "kennel", "kep", "kepler-186f", "kg", "kg", "kg", "kg", "kgopa", "khba", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kick", "kickboxing", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kid", "kidal", "kiev", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "kireshen", "kitchen", "kitchen", "kitchen", "kitchen", "kitchen", "kitchen", "kitchen", "kiviet", "klarissa", "kleinplasie", "klippoortjie", "klitschko", "km", "km", "km", "km", "km", "km", "km", "km", "km/h", "km/litre", "kmh", "knitting", "knp", "knysna marathon club", "kob", "koerantskenking", "komeni", "krejcir", "krishna", "kroonstad", "kroonstad", "kroonstad", "kroonstad", "ku", "kuala lumpur", "kuch", "kuchar", "kuroda", "kuruman", "kuruman", "kuruman", "kwaggabees", "kwaito", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwazulu", "kwilters", "labour", "labour", "labour", "labour", "labour", "labour", "labour", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lack", "lady", "lady", "lady", "lady", "lady", "lady", "lamees", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land", "land policy", "lane", "lane", "lane", "lane", "lane", "lane", "lane", "langebaan", "language", "language", "language", "language", "language", "language", "language", "language", "language", "latchman", "lawsuit", "lawsuit", "lawyer", "lawyer", "lawyer", "lawyer", "lawyer", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "league", "league", "league", "learner", "learner", "learning", "learning", "lebona", "lecturer", "lecturer", "lecturer", "lecturer", "lecturer", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legislature", "legislature", "legislature", "lentil", "lesbian", "lesbian", "lesbian", "leswaku", "letter", "letter", "letter", "letter", "letter", "letter", "letterman", "letterman", "levenberg", "leyi", "liability", "liability", "liberace", "library", "library", "library", "library", "library", "license", "license", "license", "license", "license", "license", "lifeguard", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "likely", "limited edition", "lindiwe sisulu", "lindiwe zulu", "lingo links", "lingulodinium", "lion", "lion", "lion", "lion", "lion", "lions", "lions", "lions", "liposuction", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "lite campus", "liter/100", "litre", "litre", "litre", "litre/100", "litter", "litter", "litter", "liverpool", "load", "load", "load", "load", "load", "load", "load", "load", "load", "load", "load", "loan", "loan", "loan", "loan", "lobsters", "locator", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lock", "lockett", "london", "london", "london", "london", "london", "london", "london", "london", "london", "london", "london", "lonmin", "lord", "lord", "lord", "lord", "lord", "los angeles", "los angeles", "los angeles", "los angeles", "los angeles", "losi", "lottery", "lottery", "louboutins", "louca", "louis the king", "louise carver", "louwville", "love trust", "lovey", "lowman", "lpr", "luggage", "luggage", "luggage", "luggage", "lukey", "lukhele", "lumen", "luna", "lung", "lung", "luphondo", "luso africa sports grounds", "luxolo", "luxolo tabata", "luyanda majija", "lyc", "lyric", "lyric", "m", "m", "m", "m", "m", "m", "m", "m", "m", "m", "m", "mabegzo", "mabuyane", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "madiba", "madoff", "madonsela", "maduro", "mafikizolo", "magara", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magistrate", "magistrate", "mahamba", "mahlobo", "mail", "mail", "mail", "mail", "mail", "mail", "mail", "mail", "mail", "mail", "mail", "maimane", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maistry", "makaburi", "makgoga", "makhushe", "makobe", "makolobane farm", "makrosafe", "malaysia", "malaysia airlines", "malaysian", "malca-amit", "malema", "maliki", "malmesbury", "malware", "mamelodi sundowns", "mammories", "mampane", "manchester city", "manchester united", "mandela", "mandela", "mandela", "mandrax", "mangena", "mango groove", "manhole", "mantashe", "manual", "manual", "manual", "manual", "manufacturer", "manufacturer", "manufacturer", "manufacturer", "manufacturing indaba", "maori", "maphologela", "marathon", "marathon", "marathon", "marathon", "marcel upfold", "margarine", "marietjie oehley", "marikana", "marikana", "marius roberts", "marriage", "marriage", "marriage", "marriage", "married", "married", "married", "married", "married", "married", "marry", "marry", "marry", "marry", "mase", "mashiane", "masipa", "masters", "masters", "masters", "masters", "masunga", "mathematics", "mathematics", "mathunjwa", "matric", "matric", "matric", "matric", "matriculate", "matriculate", "matriculate", "matriculate", "max sisulu", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "maybe", "mayman", "mayor", "mayor", "mayor", "mayor", "mayoral", "mbeki", "mbfwj", "mbuyisa", "mccullum", "mcdonnell", "mcilroy", "mdayi", "mdc", "meal", "meal", "meal", "meal", "meal", "meal", "meaning", "meaning", "meaning", "meaning", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "measure", "meat", "meat", "meat", "medal", "medal", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medication", "medication", "medication", "medicine", "medicine", "medicine", "medicine", "medicine", "medicine", "medicine", "melanoma", "memorandum", "memorandum", "memorandum", "menswear", "mental", "mental", "mental", "mental", "mental", "mental", "mental", "mental", "menu", "merafe", "mers", "merwe", "merwe", "merwe", "merwe", "merwe", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "message", "messi", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "meter", "metro", "metro", "metro", "metro", "metro", "metrorail", "meyerton", "mfunda", "mh370", "mhaga", "mickelson", "microsoft", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle", "middle-aged", "midfielder", "mighty med", "mikael", "militant", "military", "military", "military", "milk", "milk", "millennials", "minded", "minded", "minded", "minded", "minded", "minded", "minded", "minded", "mine", "mine", "mine", "mine", "mine", "miner", "mineworker", "mineworker", "mineworkers", "mini cooper's", "minibus", "mining", "mining", "mining", "misconduct", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mix", "mixture", "mixture", "mixture", "mixture", "mkhontwana", "ml", "mmc", "mmusi maimane", "mnr", "mntambo", "mobile", "mobile", "mobile", "mobile", "mobile", "model", "model", "model", "model", "model", "model", "model", "modi", "modipane", "moepya", "mogoeng", "mogoeng mogoeng", "mohapi", "moller", "mom", "mom", "mom", "mom", "mom", "mom", "monetary", "monetary", "monetary", "monetary", "monetary", "monkey helpline", "montauk", "moody's", "moscow", "mosery", "mosimane", "motlanthe", "motlanthe", "motorist", "motorist", "motorist", "motortainment", "motsoeneng", "mountain", "mountain", "mountain", "mountain", "mountain", "mountain", "mountain", "mourinho", "movie", "movie", "moyes", "mp", "mp", "mp", "mpc", "mpembe", "mpho ramakatsa", "mqwathi", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr", "mr nel", "mr.", "mr.", "mrs.", "mrs.", "mrs.", "msimango", "msisdn", "mtb", "mtn", "mtn", "mtn", "mtn", "muffin", "mugabe", "mugabe", "mum", "mum", "mum", "mundt", "municipal", "municipal", "municipal", "municipality", "municipality", "municipality", "murray", "murray", "museum", "museum", "museum", "musharraf", "music", "music", "music", "musical", "musical", "musician", "muslim", "muslim", "muslim", "musn't", "mutharika", "mynews24", "n1", "n1", "n1", "nadal", "najib", "narayanan", "nasdaq", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "natal", "national assembly", "national assembly", "national council of spcas", "national credit amendment bill", "national epilepsy week", "national executive", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "natural", "ncop", "ndala", "ndp", "ndp", "ndzi", "neanderthal", "nec", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "necessarily", "nedbank cup", "needy", "needy", "needy", "nef", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "neighbour", "nel", "nel", "nel pistorius", "nelson mandela", "nelson mandela", "nelson mandela", "nelson mandela", "nelson mandela", "nelson mandela's", "nersa", "netball", "netball", "network", "network", "network", "network", "network", "network", "network", "network", "network", "new zealand", "new zealand", "new zealand", "newlands", "newlands", "news24", "news24.com", "nfp", "nga", "nhls", "ni", "nic maritz", "nice", "nice", "nice", "nice", "nice", "nice", "nice", "nice", "nice", "nice", "nicole", "nid", "nigeria", "nigeria", "nigeria", "nigerian", "nigerian", "nigerian", "nigerian", "nigerian", "nishikori", "nivea", "njila", "nkandla", "nkomfe", "nm", "noh", "nolwazi", "nomer", "normcore", "norrie", "north korea", "north west", "north west", "north west", "northam", "novel", "novel", "novell", "nspca", "nsri", "ntola", "ntsebeza", "ntsholo", "num", "num", "numeracy", "numsa", "numsa", "nurburg", "nurse", "nurse", "nurse", "nurse", "nxesi", "nyaope", "o.16a", "obama", "obasanjo", "obed sibasa", "oberholtzer", "obsessive", "obvious", "obvious", "obvious", "obvious", "obvious", "obvious", "obvious", "obvious", "obvious", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "occur", "ocean", "ocean", "ocean", "ocean", "ocean", "ocean", "ochakvaite", "of", "of", "of", "of", "of", "of", "of", "of", "of", "of", "offender", "offender", "offender", "offender", "oil", "oil", "oil", "oil", "oil", "oil", "oil", "okah", "olchap", "olive", "olive", "olympic", "olympic", "olympic", "om", "om", "oncoming", "onion", "online", "online", "online", "online", "oopsy", "opel corsa", "openssl", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opinion", "opposition", "opposition", "opposition", "opposition", "opposition", "opposition", "opposition", "opposition", "opposition", "orchestra", "organization", "organization", "organization", "organization", "orlando ekhaya", "orlando pirates", "orsmond", "ortell", "oscar", "oscar", "oscar\nstate", "oscar pistorius", "oscartrial", "osteoporosis", "ouetehuisprojek", "outage", "outage", "outbreak", "outbreak", "outlander", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "over", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overall", "overvaal", "owe", "owe", "owe", "owe", "owe", "owe", "owe", "owe", "owe", "owe", "owe", "owl", "owner/s", "paarl", "paarl", "paarl", "paarl", "paarl", "pabst", "paddler", "pagad", "pagan", "page", "page", "page", "page", "page", "page", "page", "page", "page", "page", "page", "page", "pageant", "pageant", "pain", "pain", "pain", "pain", "pain", "pain", "pain", "pain", "pain", "pain", "painting", "painting", "painting", "painting", "pajero", "pajerosport", "pakistan", "pakistan", "pakistan", "palanquin hospitality management", "palestinian", "pallisades", "pansy tlakula", "pantie", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "par", "par", "par", "par", "par", "paradigm", "paralympian", "paramedic", "paramedic", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "park", "parliament", "parliament", "parliament", "parliament", "parliament", "parliamentary", "parliamentary", "parliamentary", "parliamentary", "parliamentary rugby squad", "parole", "participant", "participant", "participant", "participant", "participant", "participant", "participant", "participant", "partite", "partnership", "partnership", "partnership", "partnership", "partnership", "partnership", "partnership", "partnership", "partnership", "pascoe", "passenger", "passenger", "passenger", "passenger", "password", "password", "pastry", "pathologist", "pathologist", "patient", "patient", "patient", "patient", "patient", "patient", "patrol", "patrol", "patrol", "patrol", "patrol", "patrol", "payment", "payment", "payment", "payment", "peace", "peace", "peace", "peace", "peace", "peace", "peace", "peace", "peace", "peace", "peaker", "pec", "pedagogy", "pedestrian", "pedestrian", "pedestrians", "pellegrini", "penalty", "penalty", "penalty", "penalty", "penalty", "penalty", "penicillin", "pension", "pension", "pension", "pensioner", "pensioner", "pensioner", "pensioner", "pensioner", "people's paper", "pepper", "pepper", "percent", "percent", "percent", "percent", "percent", "perhaps", "perhaps", "perhaps", "perhaps", "perhaps", "perhaps", "perhaps", "perhaps", "perhaps", "pet", "peter mutharika", "peter parker", "peters-scheepers", "petrobras", "petrol", "petrol", "petrol", "petrol", "petrol", "petrol", "petrol", "petrol", "peurssewil", "pfizer", "pga", "phineas mojapelo", "phishing", "phofung", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photo", "photographer", "photographer", "photographer", "photographer", "photographer", "photography", "photography", "photography", "phumla sekhonyane", "piano", "piano", "picnic", "picnic", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "picture", "pikitup", "pilot", "pilot", "pilot", "pilot", "pinger", "pioneer house", "pirates", "pistorius", "pizza", "plane", "planet", "planet", "planet", "plant", "plant", "plant", "plant", "plant", "plant", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platinum", "platinum", "platinum", "plead", "plead", "please", "please", "please", "please", "plek", "pm", "pm", "pm", "pm", "pm", "pm", "pm", "pm", "pm", "pmi", "poach", "poach", "poacher", "poacher", "poaching", "poaching", "poise models", "policy", "policy", "policy", "policy", "policy", "policy", "policyholder", "poll", "poll", "poll", "polling", "polling", "pollution", "pollution", "pollution", "polyvinyl", "pontiff", "pope", "population", "population", "population", "population", "population", "population", "population", "population", "population", "poroshenko", "port", "port", "port", "port", "port", "port", "port", "port", "port", "port", "port", "porterville", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "possession", "possession", "possession", "possession", "possession", "possession", "poster", "poster", "poster", "poster", "postgraduate", "postpone", "postpone", "postpone", "postpone", "postpone", "postpone", "postpone", "postpone", "potato", "potato", "potato", "potchefstroom", "potchefstroom", "potchefstroom", "potchefstroom", "potchefstroom", "pothole", "pothole", "pothole", "poverty", "poverty", "powerball", "ppd", "pple", "prahlad", "pray", "pray", "pray", "pray", "prayer", "prayer", "prayer", "prayer", "prayuth", "preferably", "preferably", "preferably", "preferably", "preferably", "preferably", "preheat", "prejudice", "prejudice", "prejudice", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier", "premier league", "premiere", "premiere", "premiership", "premiership", "premiership", "prepex", "presenter", "presidency", "presidency", "presidency", "presidency", "pretty", "pretty", "pretty", "pretty", "pretty", "pretty", "pretty", "pretty", "pretty", "pretty", "price", "price", "price", "price", "price", "price", "price", "priest", "priest", "primary", "primary", "primary", "primary", "primary", "primary", "primary", "primary", "primary", "primary", "primary", "prime", "prime", "prime", "prime", "prime", "prime", "prime", "prime", "prime", "prime", "principal", "principal", "principal", "principal", "prison", "prison", "prison", "prize", "prize", "prize", "prize", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "probably", "prodiba", "producer", "producer", "producer", "producer", "producer", "producer", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "production", "production", "production", "production", "production", "production", "productive", "productive", "productive", "productive", "productive", "productive", "productive", "productivity", "productivity", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "professional", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "prop", "prop", "prop", "prop", "prop", "prop", "prop", "prop", "propell", "property", "property", "property", "property", "property", "property", "property", "property", "prophet", "proposal", "proposal", "proposal", "proposal", "propose", "propose", "propose", "propose", "propose", "propose", "propose", "prosecutor", "prosecutor", "prosecutor", "prosecutor", "prosperity", "prosperity", "prosperity", "prosthetic", "prostitution", "proteas", "protector", "protest", "protest", "protest", "protest", "protest", "protest", "protest", "protest", "protester", "protester", "protester", "proverbial", "proverbial", "proverbial", "proverbial", "psalm", "psl", "psychopath", "public protector's", "puk.", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pull", "pum", "pumas", "pump", "pump", "pump", "pump", "pump", "pump", "pupil", "pupil", "pupil", "putin", "putt", "pyongyang", "qashqai", "qb50", "quake", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quarter", "quarter", "quarter", "quarter", "quarter", "quarter", "quarter", "quarter", "quashy", "queue", "queue", "queue", "queue", "queue", "quinoa", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quite", "quota", "quota", "quota", "quota", "quota", "r&b", "r12", "r12 500", "r12,500", "r246", "r246m", "rabbitcare", "race", "race", "race", "race", "race", "race", "race", "race", "racing", "racing", "racing", "racket", "racket", "radar", "radar", "radar", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "radio", "rafe", "rain", "rain", "rain", "rain", "rain", "rain", "rain", "rainfall", "rainy", "rainy", "rainy", "rajagopaul", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "rally", "ramagaga", "ramaphosa", "ramphele", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rand", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rank", "rap", "rap", "rap", "rap", "rape", "rape", "rapist", "ratatouille", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "ratepayer", "ratepayer", "ratsela", "rb7", "rbs", "rea vaya", "rea vaya", "rea vaya", "reader", "reader", "reader", "reader", "reader", "reader", "reader", "reader", "reader", "reader", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "ready", "realisable", "realize", "realize", "realize", "realize", "realize", "realize", "realize", "realize", "realstart", "rear", "rear", "rebate", "rebate", "rebel", "rebel", "rebel", "recipe", "recipe", "recognition)-", "recorder", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "red", "redistribution", "reds", "reds", "reeva", "reeva steenkamp", "referee", "referee", "referendum", "reggae", "reggie perumal", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "register", "regulation", "regulation", "regulation", "regulation", "reinstate", "reinstate", "reinstate", "reinstate", "relay", "relay", "relay", "relay", "relay", "relay", "relay", "relay", "religion", "religion", "religion", "religion", "religious", "religious", "religious", "religious", "religious", "religious", "remand", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "remember", "renamo", "reneilwe", "renewable", "repair", "repair", "repair", "repair", "repair", "repair", "repayment", "repayment", "repo", "requirement", "requirement", "requirement", "requirement", "requirement", "requirement", "requirement", "requirement", "requirement", "requirement", "rescue", "rescue", "rescue", "rescue", "rescue", "rescue", "rescue", "rescue", "research", "research", "research", "research", "research", "research", "research", "research", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "residential", "residential", "residential", "residential", "residential", "residential", "residential", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "resource", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "respect", "restaurant", "restaurant", "restaurant", "restaurant", "restaurant", "restaurant", "restaurant", "restaurant", "restaurant", "resurrection", "resurrection", "resveratrol", "retail", "retail", "retail", "retail", "retail", "retailer", "retailer", "retailer", "retailer", "revitalisation", "rezoning", "rhc", "rhino", "rhino", "rhinos", "ricciardo", "richard mdluli", "richmond park", "ride", "ride", "ride", "ride", "ride", "ride", "rider", "rishi seegobin", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "river", "river", "river", "river", "river", "river", "road traffic management corporation", "rob", "rob", "rob", "rob", "rob", "rob", "rob", "robber", "robber", "robbery", "robbery", "robbery", "robert mckenzie", "robertson", "robertson", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rock", "rockman", "rodger", "rodgers", "roland garros", "ronaldo", "roodepoort spca", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "roomie", "rosebank college", "rosehurst", "round", "round", "round", "round", "round", "round", "round", "round", "round", "round table", "route", "route", "route", "route", "route", "route", "route", "route", "route", "route", "route", "route", "route", "roux", "roux", "roux", "roux", "roux", "roxmouth", "rpm", "rs", "rta", "rubbish", "rubbish", "rubbish", "rubbish", "rugby", "rugby", "rugby", "rugby", "rugby", "ruling", "ruling", "ruling", "ruling", "ruling", "runner", "runner", "runner", "runner", "runner", "runner", "runner", "rural", "rural", "rural", "rural", "rural", "rural", "rural", "rural", "rural", "rural", "rus", "russel meiring", "russia", "russia", "russian", "russian", "rustenburg", "rustenburg", "rustenburg", "rustenburg", "rwandan", "rwfl", "s&p", "sabc", "sabc", "sabc", "sabine schmitz", "sacaa", "sacsi", "sactwu", "sadtu", "safa", "sahrc", "sal", "salary", "salary", "salary", "sale", "sale", "sale", "sale", "sale", "sale", "sale", "sale", "sale", "sale", "salt", "salt", "salvation", "salvation", "samantha taylor", "sanbs", "sanction", "sanction", "sanction", "sanction", "sanction", "sanction", "sanction", "sanparks", "sanral", "santi steinmann", "saps", "saps", "saps", "saps", "saps", "saps", "saps", "sars", "saru", "sasolburg", "sasolburg", "sassa", "sassa", "sassa", "satan", "satellite", "satellite", "satellite", "sauce", "sauce", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "save", "saving", "saving", "saving", "saving", "saving", "savoi", "sca", "sca", "scam", "scam", "scheme", "scheme", "scheme", "scheme", "scheme", "scheme", "scheme", "scheme", "scholarship", "scholtz-mare", "schooling", "schooling", "schooling", "science", "science", "science", "science", "science", "science", "science", "science", "scopa", "score", "score", "score", "score", "score", "score", "score", "score", "score", "score", "scott", "scott", "scream", "scream", "scream", "scream", "scripps networks international", "scripture", "scrum", "scrum", "scrumhalf", "scrumhalf", "scubi", "sculpture", "sea", "sea", "sea", "sea", "sea", "sea", "sea", "sea", "sea", "seakhoa", "sealer", "search", "search", "search", "search", "search", "search", "search", "searcher", "seasoning", "seat", "seat", "seat", "seat", "seat", "seat", "seat", "seat", "seat", "seat", "sebastia", "second beach", "secretary", "secretary", "secretary", "secretary", "secretary", "secretary", "secretary", "secretary", "sector", "sector", "sector", "sector", "sector education and training authorities", "sedna", "seed", "seed", "seed", "seed", "seed", "segalo", "seisa", "sekhonyane", "seleka", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "self", "semi", "semi", "semi", "semi", "semi", "semi", "semi", "semi", "semi", "semi", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sentence", "sentence", "sentencing", "sentencing", "seoul", "seoul", "separatist", "sept", "sequestration", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "series", "server", "server", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "sewerage", "sewol", "sewram", "sexual", "sexual", "sexual", "sexual", "sexual", "sexual", "sexual", "sgt nhlabathi", "shaft", "shaft", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "shape", "sharapova", "shareholder", "shareholder", "shareholder", "shark", "shark", "shark", "sharks", "shedding", "sheep", "sheep", "sheep", "sheep", "sheep", "sheep", "sherpa", "sherpas", "sherwin alwood photography hair", "ship", "ship", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shock", "shooting", "shooting", "shooting", "shooting", "shooting", "shooting", "shooting", "shooting", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shop", "shot", "shot", "shot", "shot", "shot", "shot", "shot", "shot", "siba", "sibasa", "sibeko/reuter", "silver", "silver", "silver", "silver", "silver", "silver", "silver", "silver", "silver", "silver", "simon", "simon", "simon", "simon", "simon", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "simply", "sin", "sin", "sin", "sin", "sing", "sing", "sing", "sing", "sing", "singer", "singer", "singing", "singing", "singing", "singing", "sinkhole", "sisi", "sister", "sister", "sister", "sister", "sister", "sister", "sister", "site", "site", "site", "site", "site", "site", "site", "site", "site", "site", "site", "siu", "sizani", "size", "size", "size", "size", "size", "size", "size", "size", "size", "size", "size", "size", "size", "size", "skill", "skill", "skill", "skill", "skill", "skill", "skill", "skill", "skoro", "sky blue", "sky blue media", "slavyansk", "sleep", "sleep", "sleep", "sleep", "sleep", "sleep", "sleep", "sleep", "slowdown", "smartphone", "smartphone", "smartphones", "sme", "smiley", "smiley", "smith", "smith", "smith", "smith", "smith", "smith", "smith magenis syndrome", "smme", "sms", "sms", "sms", "sms", "sms", "sms", "snake", "snake", "snoring", "soccer", "soccer", "soccer", "society", "society", "society", "society", "society", "society", "society", "society", "society", "society", "society", "society", "society", "socio", "socio", "sociopath", "soes", "soffiantini", "software", "sokhanyile", "solar", "soldier", "soldier", "soldier", "soma", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "sometimes", "somewhat", "somewhat", "somewhat", "somewhat", "somewhat", "somewhat", "somewhat", "somewhat", "somewhat", "son", "son", "son", "son", "song", "song", "song", "songwriter", "soni", "soobrayan", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "souffle", "soul", "soul", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "sound", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "source", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south africans", "south china sea", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "southern", "soweto gospel choir", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "spca", "spca", "speaker", "speaker", "speaker", "speaker", "speaker", "speaker", "speaker", "speaker", "specie", "specie", "specie", "spectator", "spectator", "spectator", "spectator", "spectator", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "speed", "spider-man", "spieth", "spiff", "spinner", "spinner", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spirit", "spiritual", "spiritual", "spiritual", "spiritual", "spiritual", "spiritual", "sponsor", "sponsor", "sponsor", "sponsor", "sponsor", "sponsor", "sponsor", "sporting", "sporting", "sporting", "sporting", "sporting", "sporting", "sporting", "sporty", "springbok", "springbok", "springbok", "springboks", "springboks", "sprinkle", "sprinkle", "squad", "squad", "squad", "squad", "squad", "sra", "sri lanka", "srinivasan", "ss1", "ssip", "st dunstan's", "stab", "stab", "stab", "stab", "stab", "stadium", "stadium", "stadium", "stadium", "stadium", "stadium", "stadium", "stadium", "stadium", "staggie", "stall", "stall", "stall", "stall", "stall", "stall", "stall", "stall", "stall", "stall", "standard children's fund", "starsat", "steal", "steal", "steal", "steal", "steal", "steal", "steal", "steal", "steal", "steal", "steenkamp", "steering", "stellenbosch", "stellenbosch", "stellenbosch", "stewart", "stewart", "stewart", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "stick", "sticker", "sticker", "stig will be unleashed in a variety of cars", "stipp", "stock", "stock", "stock", "stock", "stock", "stock", "stock", "stock", "stokvels", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "storm", "stormers", "storytime", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "straight", "streamline", "streamline", "streamline", "streetpole", "strike", "strike", "strike", "strike", "strike", "strike", "strike", "strike", "striker", "striker", "stroke", "stroke", "stroke", "stroke", "stroke", "stroke", "stroke", "stromsoe", "student", "student", "student", "study", "study", "study", "study", "study", "study", "study", "study", "suarez", "subaru", "subcouncil", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "submit", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "successful", "sudan", "sugar", "sugar", "sukude", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun", "sun united fc.", "sundowns", "sunteam", "super rugby", "superhero", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supply", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "supporter", "surapure", "surgery", "surgery", "surgery", "surgery", "surgery", "surgery", "suspend", "suspend", "suspend", "suspend", "suspend", "suspend", "suspend", "suspend", "suspend", "suspension", "suspension", "suspension", "suspension", "suspension", "suspension", "suspicious", "suspicious", "suspicious", "suspicious", "suspicious", "suspicious", "suspicious", "suspicious", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustain", "sustainable", "sustainable", "sustainable", "sustainable", "sustainable", "suv", "swan lake", "swartkrans", "swartland", "swartland", "swcc", "swi", "swimmer", "swimmer", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "swing", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "switch", "sx4", "symptom", "symptom", "syria", "syria", "syrian", "t20", "tacna", "tag", "tag", "tag", "tag", "tag", "tahir", "takuza", "talent", "talent", "talent", "talent", "talent", "talent", "talent", "taliban", "tall", "tall", "tall", "tall", "tall", "tall", "tall", "tamia", "taste", "taste", "taste", "taste", "taste", "taste", "tau", "tau", "tau", "tau", "tax", "tax", "tax", "tax", "tax", "tax", "tax", "taxable", "taxi", "taxi", "taxi", "tb", "tcc", "teach", "teach", "teach", "teach", "teacher", "teacher", "teacher", "teacher", "teaching", "teaching", "teaching", "tear", "tear", "tear", "tear", "tear", "tear", "tear", "tear", "tear", "tear", "tear", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "tee", "tee", "tekkie tax", "teko", "telkom", "telkom", "telkom", "temperature", "temperature", "temperature", "temperature", "temperature", "tenant", "tenant", "tenant", "tender", "tender", "tender", "tender", "tender", "tenge", "tennis", "tennis", "tennis", "tennis", "tennis", "tennis", "tennis", "tennis", "terrorist", "terrorist", "testify", "testify", "testify", "testifying", "testimony", "testimony", "testimony", "testimony", "testimony", "testimony", "tetanus", "text", "text", "text", "text", "text", "text", "text", "text", "text", "text", "textbook", "textbook", "textbook", "textbook", "thaksin", "thakur-rajbansi", "thank", "thank", "thank", "thank", "thank", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "thanks", "tharisa", "the_citizen_reporter", "theatre", "theatre", "theatre", "theft", "theft", "theft", "theft", "theism", "therapy", "therapy", "therapy", "thief", "thief", "thief", "thief", "thokozile masipa", "though", "though", "though", "though", "though", "though", "though", "though", "though", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "throw", "thulas nxesi", "thuli", "thuli madonsela's", "thuli madonselas", "thupe", "ticket", "ticket", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tie", "tieghan", "tik", "tik", "tipp", "titans", "title", "title", "title", "title", "title", "title", "title", "title", "title", "title", "tlakula", "toastmasters", "toddler", "toddler", "toilet", "toilet", "toilet", "toilet", "toilet", "toilet", "toll", "toll", "toll", "toll", "toll", "toll", "toll", "toll", "toll", "tolling", "tolling", "tomato", "torque", "touchcard", "toulon", "tour", "tour", "tour", "tour", "tour", "tour", "tour", "tourism", "tourism", "tourism", "tourism", "tourism", "tourism", "tourism", "tourist", "tourist", "tourist", "tourist", "tourist", "tourist", "tourist", "tourist", "tournament", "tournament", "tournament", "tournament", "tournament", "tourvest", "towing", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trading", "trading", "trading", "trading", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traditional", "traffic", "traffic", "traffic", "traffic", "traffic", "traffic", "train", "train", "train", "train", "train", "train", "train", "train", "train", "train", "train", "train", "train", "training", "training", "training", "training", "training", "training", "training", "training", "training", "training", "training", "transformation", "transformation", "transformation", "transformation", "transformation", "transformation", "transformation", "transkei defence force", "transmission", "transmission", "transmission", "transmission", "transnet", "transnet", "transnet", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "transport", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treat", "treatment", "treatment", "treatment", "treatment", "treatment", "tree", "tree", "tree", "tree", "tree", "tree", "tree", "tree", "tree", "tree", "tree", "treurnicht", "trevor manuel", "trial", "trial", "trial", "trial", "trial.\"pistorius", "triangle", "tribunal", "trollies", "troop", "troop", "troop", "truck", "truck", "truck", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "truffle", "trujillo", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "trust", "truth", "truth", "truth", "truth", "truth", "truth", "truth", "truth", "tselane", "tshwane", "tshwane", "tshwane", "tshwane", "tsunami", "tsvangirai", "tuareg", "tues", "tuition", "turbine", "turbo", "turbo", "turnout", "turnout", "turnout", "turok", "tutudesk", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tv", "tvnw", "tweet", "tweet", "tweet", "tweet", "tweet", "tweet", "tweet", "twenty20", "twitter", "twitter", "twitter", "twitter", "twitter", "tyre", "tyre", "tyre", "tyre", "tyre", "u.14a", "u10", "ub40", "uci", "udm", "udm", "ukraine", "ukraine", "ukrainian", "ukuba", "umnuz", "un", "un", "uncle", "uncle", "uncle", "uncle", "uncle fred", "unconstitutional", "underdevelopment", "undergraduate", "underpowered", "understandably", "understandably", "understandably", "understandably", "underwater", "unduly", "unduly", "unemployment", "unemployment", "unequal", "union", "union", "union", "union", "union", "union", "union fc.", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "unit", "united", "united", "united", "united", "united states", "united states", "united states", "united states", "united states", "united states", "united states", "united states", "united states", "united states", "university", "university", "unjilo", "unroadworthy", "unyikinyibhoxo", "upgrade", "upgrade", "upgrade", "upgrade", "upgrade", "upgrade", "upgrade", "upgrading", "upington", "upington", "upload", "upload", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "urgently", "url", "us", "us", "us", "us", "us", "us", "us", "user", "user", "user", "user", "user", "user", "user", "utility", "utility", "utility", "utility", "utility", "vaal", "vaal", "vaal mall", "vaal triangle", "vaal weekly", "vacant", "vacant", "vacant", "vacant", "vacant", "vaccine", "vagrant", "vagrant", "valies", "valley", "valley", "valley", "valley", "valley", "valley", "valley", "valparaiso", "valuation appeal board", "van coller", "van gaal", "van rensburg", "van rensburg", "van rensburg", "van rensburg", "van rensburg", "van staden", "vanderbijlpark", "vanderbijlpark", "vanderbilpark", "vatican", "vatican", "vavi", "vdbijl", "vdbp", "vearey", "vec", "vec10", "vegetable", "vegetable", "vegetable", "velddrif", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "venue", "vereeniging", "verloor", "vermaak", "vermaak", "vermaak", "vermezovic", "verse", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "versoeter", "vessel", "vessel", "vessel", "vettel", "vetyeka", "vf", "vgt", "viable", "viable", "viable", "viable", "viable", "viable", "victim", "victim", "victim", "victim", "victim", "victim", "victim", "victim", "victim", "victim", "victim", "victory", "victory", "victory", "victory", "victory", "victory", "victory", "victory", "victory", "victory", "victory", "video", "video", "video", "video", "video", "video", "video", "video", "video", "viewer", "viewer", "viewer", "violate", "violate", "violate", "violate", "violate", "violence", "violence", "violence", "violence", "violence", "violence", "violence", "vir", "vir", "virus", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "visitor", "vms", "vocalist", "vodacom bulls", "vodacom cup", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "volksblad christmas fund", "vollgraaff", "volunteer", "volunteer", "volunteer", "volunteer", "volunteer", "volunteer", "volunteer", "volunteer", "volunteer", "vorster", "vorster", "vorster", "voter", "voter", "voting", "voucher", "voucher", "voucher", "voucher", "voucher", "vpc", "vredenburg", "vuco", "vva", "w/o munyai", "wage", "wage", "wage", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wake", "wal-mart", "waldeck", "wanga", "war", "war", "war", "war", "war", "war", "war", "war", "waratahs", "ward", "ward", "ward", "warrant", "warrant", "warrant", "warrant", "warrant", "warrant", "warrant", "washington", "washington", "washington", "washington", "washington", "waste", "waste", "waste", "waste", "waste", "waste", "waste", "waste", "waste", "waste", "waste", "watson", "watson", "wawrinka", "wealth", "wealth", "wealth", "wealth", "wealth", "wealth", "wealth", "wealth", "wealth", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "wechat", "wedding", "wedding", "wedding", "weldon", "welovedurban", "werner vermaak", "weskoppies psychiatric hospital", "weskuskos", "weslander", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west", "west coast", "west indies", "wetland", "whale", "whale", "whale", "whap", "wheel", "wheel", "whrp", "wicket", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wild", "wilderness foundation", "wildsfees", "williams", "williams", "wilskut", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wind", "wine", "wine", "wing", "wing", "wing", "wing", "wing", "wing", "wing", "wisdom", "wisdom", "wisdom", "wisdom", "wisdom", "wiseguy", "wit", "wit", "wit", "wit", "wit", "witness", "witness", "witness", "witness", "witness", "witness", "wollie wolmarans", "wolmarans", "wolmarans", "wolverine", "wonder", "wonder", "wonder", "wonder", "wonder", "wonder", "wonder", "woodglaze", "woods", "woods", "woods", "worcester", "workshop", "workshop", "workshop", "workshop", "workshop", "workshop", "world car", "world congress", "world constructors' champions infiniti red bull racing", "world cup", "world cup", "world cup", "world drivers' champion mika hakkinen", "wpa", "wpb", "writer", "writer", "writer", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wrong", "wto", "www.light", "xt", "yellen", "yen", "yeshua", "yingluck", "yolanda", "youth", "youth", "youth", "youth", "youth", "youth", "youth", "youth", "youth", "youtube", "youtube", "youtube", "yrs", "yuan", "yvette van schalkwyk", "zaharie", "zandra", "zealot", "zille", "zoo", "zoo", "zse", "zuckerberg", "zuma", "zwelinzima vavi" ], | |
| "Topic": [ 26, 9, 24, 9, 12, 27, 17, 3, 12, 26, 31, 28, 12, 28, 20, 4, 6, 9, 11, 13, 15, 17, 19, 20, 22, 24, 27, 30, 31, 13, 15, 7, 7, 1, 3, 6, 7, 10, 11, 13, 16, 17, 22, 26, 28, 2, 6, 17, 1, 2, 6, 8, 10, 13, 16, 17, 20, 21, 22, 23, 24, 26, 27, 30, 2, 17, 22, 26, 27, 30, 1, 4, 7, 11, 12, 13, 15, 16, 17, 19, 20, 24, 26, 27, 29, 30, 14, 12, 1, 10, 10, 3, 4, 7, 8, 9, 11, 14, 17, 19, 20, 22, 23, 24, 26, 27, 28, 31, 32, 18, 31, 23, 22, 26, 9, 15, 1, 20, 2, 24, 8, 13, 24, 26, 24, 1, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 17, 21, 22, 23, 28, 31, 23, 5, 14, 14, 14, 1, 4, 8, 13, 23, 24, 27, 29, 1, 10, 14, 15, 16, 20, 26, 27, 12, 1, 8, 13, 16, 20, 29, 13, 18, 21, 4, 11, 13, 14, 1, 3, 5, 9, 10, 13, 15, 17, 19, 21, 23, 24, 25, 26, 27, 29, 30, 32, 30, 1, 27, 27, 15, 14, 1, 2, 18, 17, 21, 2, 13, 16, 17, 21, 22, 25, 26, 4, 1, 5, 7, 11, 16, 17, 29, 1, 2, 7, 8, 16, 17, 29, 24, 13, 30, 30, 24, 13, 15, 2, 5, 17, 26, 27, 29, 7, 20, 1, 3, 4, 10, 21, 22, 24, 27, 29, 32, 31, 29, 1, 4, 11, 14, 17, 27, 1, 3, 25, 5, 27, 24, 15, 16, 17, 10, 23, 26, 29, 1, 3, 5, 7, 8, 11, 14, 16, 17, 26, 27, 29, 28, 30, 28, 28, 20, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 26, 27, 31, 32, 1, 2, 7, 11, 16, 17, 22, 24, 26, 27, 28, 29, 30, 22, 3, 11, 13, 26, 29, 18, 26, 32, 19, 24, 26, 1, 2, 5, 7, 8, 14, 15, 16, 17, 23, 27, 28, 29, 1, 2, 4, 6, 7, 8, 10, 12, 14, 15, 16, 18, 21, 22, 23, 24, 28, 29, 30, 24, 25, 6, 7, 8, 14, 16, 17, 20, 23, 24, 25, 29, 17, 30, 6, 7, 8, 11, 13, 15, 17, 18, 19, 23, 26, 27, 29, 31, 3, 4, 6, 7, 10, 11, 13, 17, 18, 22, 26, 28, 29, 32, 24, 8, 26, 23, 4, 5, 7, 13, 16, 17, 23, 24, 26, 3, 3, 5, 7, 16, 17, 1, 2, 4, 5, 7, 13, 16, 17, 19, 21, 22, 26, 30, 31, 32, 1, 2, 16, 17, 26, 27, 29, 21, 1, 13, 17, 26, 8, 12, 15, 20, 1, 15, 6, 10, 11, 18, 21, 26, 6, 7, 20, 24, 28, 30, 10, 21, 10, 19, 20, 1, 1, 16, 17, 26, 30, 31, 1, 4, 20, 26, 27, 28, 29, 4, 4, 13, 13, 3, 12, 13, 17, 26, 12, 17, 26, 18, 15, 25, 4, 10, 18, 20, 21, 24, 26, 10, 11, 21, 24, 26, 13, 1, 4, 7, 8, 10, 12, 15, 16, 18, 19, 21, 23, 25, 29, 31, 32, 32, 5, 17, 26, 32, 5, 9, 21, 4, 16, 19, 27, 31, 32, 4, 19, 27, 31, 32, 1, 2, 4, 7, 8, 13, 15, 16, 23, 24, 26, 27, 22, 23, 2, 4, 6, 12, 13, 17, 19, 20, 21, 22, 23, 24, 28, 30, 31, 27, 6, 7, 8, 10, 12, 15, 18, 19, 20, 21, 23, 30, 31, 30, 18, 14, 21, 5, 5, 17, 22, 25, 26, 12, 8, 15, 15, 1, 4, 16, 17, 24, 25, 26, 2, 16, 17, 25, 26, 5, 17, 25, 15, 19, 25, 26, 30, 31, 32, 10, 21, 17, 14, 4, 21, 26, 29, 31, 2, 4, 13, 20, 23, 24, 26, 13, 26, 15, 15, 26, 17, 15, 1, 6, 8, 13, 17, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 31, 3, 17, 22, 31, 17, 26, 31, 9, 31, 1, 5, 7, 8, 9, 12, 14, 15, 16, 19, 22, 29, 31, 32, 5, 15, 31, 12, 23, 25, 21, 3, 10, 12, 13, 15, 18, 21, 25, 26, 28, 30, 31, 3, 10, 18, 23, 25, 26, 5, 14, 17, 21, 22, 23, 25, 26, 27, 8, 1, 2, 5, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 25, 26, 27, 29, 31, 32, 25, 4, 27, 14, 3, 31, 1, 2, 5, 9, 10, 12, 15, 19, 21, 27, 29, 30, 31, 32, 5, 7, 9, 11, 14, 15, 16, 17, 19, 27, 13, 18, 3, 14, 26, 8, 3, 15, 18, 3, 4, 6, 8, 9, 13, 15, 19, 20, 22, 25, 26, 27, 28, 30, 31, 32, 10, 10, 3, 18, 26, 3, 10, 10, 2, 12, 17, 26, 12, 26, 5, 7, 11, 13, 15, 17, 20, 21, 23, 24, 26, 28, 32, 8, 19, 28, 17, 4, 21, 25, 28, 32, 1, 3, 5, 6, 11, 14, 22, 24, 31, 5, 9, 10, 11, 12, 18, 21, 22, 26, 31, 32, 3, 4, 3, 4, 9, 15, 17, 19, 21, 25, 26, 27, 28, 30, 31, 32, 24, 31, 20, 15, 3, 18, 26, 31, 9, 12, 15, 18, 19, 31, 18, 8, 1, 3, 5, 17, 19, 22, 28, 4, 27, 2, 4, 6, 7, 8, 9, 10, 12, 13, 15, 18, 19, 20, 23, 25, 26, 27, 29, 30, 31, 17, 26, 27, 7, 4, 27, 32, 26, 1, 19, 1, 9, 14, 29, 10, 10, 15, 21, 1, 2, 12, 13, 14, 16, 18, 19, 23, 24, 25, 26, 28, 29, 31, 18, 26, 31, 23, 1, 17, 25, 26, 31, 31, 21, 31, 2, 5, 8, 10, 13, 14, 15, 16, 17, 18, 21, 24, 25, 26, 27, 28, 31, 15, 27, 5, 12, 15, 19, 21, 30, 31, 5, 16, 17, 26, 3, 5, 10, 17, 22, 26, 30, 2, 26, 30, 31, 1, 7, 11, 14, 18, 24, 25, 26, 27, 28, 29, 30, 1, 4, 6, 9, 10, 12, 14, 18, 22, 24, 25, 26, 30, 31, 4, 13, 15, 16, 25, 27, 1, 3, 11, 25, 26, 29, 22, 12, 3, 6, 26, 28, 23, 28, 1, 17, 24, 27, 10, 11, 12, 1, 5, 12, 16, 17, 21, 31, 9, 19, 8, 13, 20, 26, 30, 1, 3, 5, 6, 7, 8, 10, 11, 13, 18, 21, 23, 26, 28, 32, 17, 19, 26, 28, 1, 2, 16, 17, 24, 29, 19, 26, 11, 25, 24, 20, 2, 17, 26, 1, 2, 3, 5, 8, 13, 14, 16, 21, 23, 25, 27, 29, 6, 1, 3, 5, 15, 23, 27, 28, 29, 30, 1, 2, 8, 15, 18, 21, 29, 25, 1, 5, 11, 13, 17, 25, 26, 12, 26, 27, 28, 25, 26, 18, 26, 6, 28, 13, 22, 26, 1, 6, 11, 14, 31, 10, 16, 12, 27, 3, 1, 4, 8, 11, 13, 14, 15, 20, 23, 26, 27, 32, 3, 13, 29, 27, 17, 23, 26, 29, 2, 3, 4, 5, 9, 13, 14, 15, 16, 17, 19, 20, 21, 24, 26, 27, 29, 32, 6, 9, 10, 12, 13, 14, 15, 17, 19, 20, 21, 26, 31, 32, 24, 2, 24, 26, 1, 3, 5, 10, 14, 17, 26, 27, 30, 26, 28, 4, 10, 12, 13, 14, 19, 20, 21, 22, 19, 24, 29, 7, 3, 6, 10, 11, 13, 14, 15, 18, 21, 22, 31, 10, 17, 4, 14, 16, 17, 20, 26, 1, 18, 19, 25, 26, 27, 30, 32, 3, 4, 9, 12, 15, 17, 19, 20, 22, 26, 27, 31, 32, 22, 11, 1, 2, 4, 6, 7, 8, 11, 14, 15, 18, 24, 29, 30, 11, 12, 13, 15, 19, 31, 32, 15, 26, 31, 15, 12, 15, 19, 32, 12, 5, 3, 7, 8, 10, 14, 15, 17, 19, 30, 1, 3, 12, 18, 22, 26, 25, 19, 15, 15, 19, 28, 1, 4, 12, 13, 27, 32, 4, 4, 25, 26, 27, 31, 1, 25, 30, 1, 3, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 28, 30, 21, 1, 5, 11, 15, 16, 25, 21, 21, 17, 13, 3, 18, 1, 3, 7, 17, 19, 21, 26, 1, 3, 26, 17, 18, 1, 3, 17, 18, 4, 1, 10, 1, 6, 11, 13, 14, 16, 17, 18, 20, 24, 26, 27, 28, 30, 8, 23, 8, 14, 23, 4, 6, 7, 9, 12, 13, 21, 26, 31, 21, 30, 31, 6, 5, 3, 25, 32, 3, 5, 8, 9, 11, 12, 14, 15, 16, 19, 20, 22, 23, 25, 26, 28, 30, 31, 32, 4, 10, 16, 17, 20, 23, 24, 26, 18, 1, 4, 13, 23, 24, 25, 30, 8, 11, 13, 22, 26, 18, 24, 20, 8, 23, 23, 12, 15, 17, 19, 26, 31, 1, 3, 4, 23, 25, 29, 27, 21, 31, 19, 3, 10, 16, 17, 18, 25, 26, 8, 4, 9, 16, 26, 29, 31, 32, 8, 6, 12, 13, 26, 9, 2, 10, 15, 27, 3, 10, 3, 4, 5, 9, 10, 12, 14, 15, 17, 18, 19, 20, 21, 22, 24, 28, 30, 31, 32, 1, 7, 8, 10, 13, 14, 29, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 19, 22, 24, 26, 27, 28, 31, 32, 4, 7, 8, 11, 13, 17, 18, 24, 4, 12, 14, 2, 1, 7, 20, 26, 27, 29, 1, 4, 12, 13, 15, 17, 24, 32, 1, 3, 4, 5, 7, 8, 11, 14, 16, 17, 20, 22, 24, 26, 27, 28, 30, 32, 2, 7, 8, 14, 16, 24, 26, 28, 8, 20, 24, 25, 2, 6, 17, 24, 26, 27, 30, 21, 12, 26, 12, 22, 21, 7, 20, 22, 24, 1, 3, 7, 13, 16, 17, 23, 2, 1, 7, 11, 13, 1, 7, 11, 17, 29, 7, 4, 8, 10, 17, 23, 26, 29, 4, 20, 23, 24, 26, 4, 13, 16, 20, 22, 23, 30, 1, 7, 9, 10, 12, 14, 15, 17, 19, 21, 31, 32, 4, 7, 8, 10, 15, 17, 18, 19, 20, 21, 22, 26, 27, 29, 31, 8, 17, 24, 26, 27, 29, 4, 6, 10, 11, 12, 13, 15, 18, 19, 20, 26, 28, 29, 31, 4, 8, 19, 1, 3, 4, 6, 8, 15, 19, 20, 22, 23, 24, 25, 26, 27, 30, 32, 16, 3, 4, 14, 16, 17, 11, 17, 25, 26, 31, 10, 2, 5, 16, 17, 19, 3, 4, 6, 14, 15, 17, 19, 20, 22, 23, 26, 27, 31, 32, 8, 2, 30, 1, 7, 11, 13, 14, 21, 7, 7, 1, 7, 8, 17, 26, 8, 13, 14, 1, 2, 4, 5, 9, 12, 14, 15, 16, 17, 19, 23, 24, 26, 27, 28, 31, 32, 14, 26, 29, 1, 4, 5, 9, 10, 15, 17, 19, 20, 23, 24, 25, 30, 31, 32, 1, 3, 11, 12, 15, 26, 25, 2, 4, 5, 17, 26, 21, 25, 28, 30, 2, 26, 2, 15, 17, 19, 27, 31, 32, 32, 25, 26, 1, 3, 10, 13, 24, 25, 3, 6, 10, 13, 19, 25, 26, 4, 10, 13, 15, 19, 20, 24, 26, 31, 32, 6, 10, 12, 27, 27, 17, 26, 31, 17, 26, 31, 1, 1, 2, 7, 11, 13, 16, 17, 24, 26, 27, 29, 1, 4, 7, 8, 13, 15, 19, 22, 26, 27, 29, 32, 23, 28, 1, 2, 3, 4, 12, 13, 14, 15, 16, 17, 19, 21, 23, 25, 26, 27, 28, 29, 30, 12, 16, 28, 19, 3, 4, 5, 7, 17, 25, 27, 28, 31, 26, 17, 12, 15, 19, 25, 26, 31, 32, 4, 1, 16, 2, 4, 23, 24, 25, 26, 30, 30, 24, 12, 22, 26, 2, 12, 26, 15, 30, 32, 12, 11, 14, 26, 14, 26, 5, 12, 17, 25, 26, 5, 19, 21, 5, 31, 12, 23, 26, 30, 1, 2, 5, 7, 8, 12, 13, 16, 17, 22, 23, 25, 26, 28, 29, 31, 32, 21, 26, 10, 21, 10, 21, 26, 26, 1, 17, 4, 17, 24, 27, 5, 17, 26, 11, 30, 16, 19, 32, 32, 19, 2, 8, 23, 26, 27, 4, 13, 20, 26, 32, 1, 3, 4, 5, 6, 9, 10, 11, 16, 18, 20, 21, 23, 27, 30, 1, 4, 5, 7, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 31, 32, 1, 2, 4, 5, 7, 11, 13, 14, 15, 16, 17, 20, 22, 24, 27, 29, 1, 3, 7, 11, 14, 15, 16, 19, 31, 32, 1, 11, 13, 15, 16, 17, 19, 27, 13, 16, 27, 8, 9, 10, 12, 15, 17, 18, 19, 21, 22, 25, 26, 28, 30, 31, 32, 4, 3, 4, 6, 7, 9, 16, 17, 22, 23, 24, 25, 26, 27, 31, 32, 3, 17, 27, 28, 1, 2, 4, 8, 11, 13, 14, 15, 22, 24, 26, 29, 31, 31, 1, 10, 11, 13, 14, 1, 7, 11, 13, 14, 11, 14, 6, 8, 22, 24, 1, 3, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19, 24, 27, 29, 31, 6, 13, 22, 32, 1, 6, 7, 11, 13, 14, 27, 29, 7, 12, 16, 17, 18, 19, 21, 26, 16, 13, 1, 6, 8, 10, 11, 13, 17, 20, 23, 24, 26, 27, 30, 10, 26, 1, 3, 4, 5, 9, 13, 15, 17, 19, 20, 26, 27, 32, 9, 1, 2, 17, 22, 23, 24, 26, 27, 30, 16, 31, 26, 31, 1, 31, 22, 17, 22, 10, 26, 30, 10, 24, 30, 22, 6, 17, 26, 3, 7, 12, 16, 21, 22, 28, 12, 13, 22, 8, 15, 25, 26, 1, 5, 7, 11, 14, 15, 16, 26, 27, 31, 10, 10, 17, 22, 6, 17, 20, 28, 1, 6, 8, 14, 16, 18, 22, 26, 27, 27, 1, 4, 7, 11, 12, 15, 24, 26, 27, 29, 17, 21, 26, 1, 32, 5, 13, 16, 17, 22, 26, 30, 2, 7, 8, 10, 14, 16, 17, 18, 20, 21, 24, 26, 27, 7, 10, 17, 26, 28, 1, 3, 4, 16, 26, 27, 31, 7, 31, 31, 28, 18, 22, 26, 29, 18, 26, 19, 1, 3, 4, 7, 9, 11, 14, 15, 16, 17, 19, 20, 27, 30, 31, 32, 25, 4, 22, 17, 1, 8, 10, 12, 13, 15, 17, 19, 20, 2, 5, 10, 12, 14, 15, 16, 17, 27, 31, 32, 3, 5, 6, 10, 12, 13, 15, 17, 18, 19, 30, 32, 2, 3, 5, 16, 17, 21, 22, 25, 26, 32, 2, 4, 17, 26, 30, 19, 13, 16, 17, 22, 26, 4, 4, 7, 12, 15, 17, 19, 23, 25, 26, 27, 28, 29, 31, 13, 19, 31, 31, 5, 8, 14, 16, 28, 30, 9, 9, 12, 26, 30, 13, 17, 18, 24, 25, 26, 31, 4, 29, 32, 3, 23, 27, 29, 30, 3, 8, 1, 2, 3, 9, 11, 12, 14, 15, 17, 19, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 1, 2, 3, 4, 5, 12, 19, 21, 25, 29, 1, 2, 6, 7, 8, 10, 11, 12, 14, 16, 18, 19, 21, 23, 27, 29, 3, 5, 11, 14, 17, 22, 25, 28, 19, 22, 23, 11, 14, 1, 10, 13, 4, 1, 4, 13, 26, 30, 26, 31, 24, 28, 10, 24, 26, 28, 6, 11, 13, 26, 6, 13, 18, 6, 26, 13, 20, 14, 14, 25, 25, 1, 4, 12, 1, 2, 3, 5, 7, 8, 9, 17, 19, 20, 27, 28, 10, 31, 5, 18, 1, 7, 11, 13, 14, 18, 19, 31, 1, 13, 14, 14, 13, 8, 13, 23, 26, 28, 29, 1, 2, 7, 8, 13, 20, 22, 23, 24, 26, 27, 30, 25, 26, 10, 21, 2, 7, 8, 13, 20, 24, 26, 29, 13, 20, 24, 26, 29, 4, 7, 13, 17, 20, 26, 29, 7, 20, 6, 7, 13, 26, 28, 24, 1, 3, 4, 9, 10, 11, 13, 15, 19, 21, 23, 25, 32, 26, 27, 30, 15, 19, 31, 18, 6, 4, 7, 13, 18, 19, 24, 26, 3, 10, 11, 12, 15, 19, 21, 25, 26, 30, 31, 10, 21, 26, 6, 13, 6, 10, 13, 1, 2, 12, 17, 18, 20, 21, 24, 27, 29, 30, 4, 6, 10, 13, 17, 21, 23, 24, 26, 28, 30, 31, 8, 13, 23, 29, 28, 22, 22, 28, 2, 26, 31, 30, 5, 13, 23, 26, 27, 8, 10, 17, 18, 20, 21, 25, 26, 6, 9, 12, 20, 5, 3, 3, 19, 4, 8, 14, 1, 4, 26, 4, 15, 26, 30, 32, 4, 15, 3, 4, 7, 13, 16, 17, 22, 24, 26, 27, 29, 30, 1, 3, 5, 16, 28, 3, 5, 7, 9, 11, 12, 14, 15, 16, 17, 20, 22, 26, 27, 28, 29, 31, 32, 6, 16, 17, 22, 27, 3, 6, 9, 11, 13, 17, 19, 20, 22, 24, 26, 28, 30, 32, 6, 10, 12, 31, 8, 20, 1, 2, 3, 4, 6, 7, 8, 11, 12, 14, 15, 17, 18, 20, 22, 27, 28, 29, 30, 10, 23, 4, 11, 13, 20, 26, 10, 11, 13, 15, 18, 19, 20, 22, 26, 27, 31, 1, 4, 6, 7, 10, 11, 17, 20, 22, 23, 24, 25, 27, 29, 31, 1, 3, 4, 13, 21, 25, 13, 7, 16, 27, 1, 5, 10, 13, 17, 18, 21, 24, 28, 1, 4, 6, 8, 12, 13, 16, 18, 20, 22, 23, 24, 30, 6, 17, 32, 3, 7, 11, 15, 17, 19, 24, 29, 1, 9, 10, 15, 17, 19, 21, 23, 26, 30, 31, 32, 29, 29, 2, 4, 5, 13, 16, 18, 23, 25, 26, 28, 13, 16, 18, 23, 25, 26, 28, 5, 10, 15, 26, 31, 10, 2, 4, 8, 9, 11, 12, 13, 14, 17, 22, 23, 25, 26, 27, 30, 31, 32, 3, 5, 17, 6, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 22, 23, 24, 28, 30, 31, 32, 7, 12, 32, 6, 6, 12, 18, 20, 21, 22, 24, 25, 26, 28, 31, 1, 3, 4, 8, 13, 15, 17, 18, 19, 22, 23, 24, 25, 26, 27, 28, 3, 9, 10, 11, 14, 15, 17, 22, 29, 30, 31, 32, 26, 27, 29, 21, 22, 5, 8, 9, 15, 14, 29, 30, 1, 3, 4, 9, 10, 11, 14, 15, 17, 19, 20, 22, 23, 26, 27, 29, 30, 31, 32, 4, 5, 7, 16, 17, 20, 24, 25, 26, 27, 29, 10, 26, 30, 10, 3, 5, 7, 8, 9, 10, 11, 12, 15, 16, 17, 19, 20, 22, 23, 25, 26, 27, 28, 30, 31, 32, 1, 4, 6, 11, 20, 26, 27, 30, 4, 8, 13, 17, 18, 20, 26, 2, 16, 17, 17, 9, 1, 3, 4, 5, 6, 7, 9, 13, 15, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 31, 32, 23, 25, 26, 27, 27, 18, 23, 26, 27, 2, 5, 6, 7, 8, 9, 11, 12, 15, 16, 17, 18, 19, 22, 25, 26, 27, 30, 31, 32, 1, 3, 4, 5, 7, 8, 9, 15, 17, 19, 20, 23, 24, 26, 27, 28, 30, 31, 32, 15, 19, 21, 31, 1, 2, 16, 17, 17, 15, 16, 17, 24, 27, 30, 16, 23, 23, 32, 12, 25, 2, 3, 4, 9, 10, 15, 19, 20, 21, 22, 23, 24, 30, 31, 32, 3, 10, 17, 18, 25, 26, 31, 18, 17, 22, 1, 3, 5, 9, 10, 12, 15, 17, 19, 21, 25, 26, 27, 28, 31, 32, 19, 2, 23, 19, 2, 3, 4, 5, 9, 12, 15, 17, 19, 21, 23, 26, 27, 29, 30, 31, 32, 13, 15, 17, 26, 2, 26, 30, 4, 19, 23, 27, 31, 1, 3, 4, 5, 10, 11, 13, 14, 16, 19, 26, 27, 30, 3, 5, 9, 11, 13, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 28, 30, 31, 32, 22, 1, 6, 10, 12, 18, 19, 21, 24, 31, 32, 3, 6, 7, 11, 14, 15, 17, 18, 19, 21, 22, 23, 29, 31, 1, 2, 4, 6, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 27, 31, 32, 23, 3, 12, 26, 28, 1, 3, 7, 10, 11, 13, 14, 16, 29, 1, 4, 10, 15, 19, 25, 27, 30, 32, 17, 1, 4, 7, 9, 10, 14, 15, 16, 19, 21, 23, 25, 26, 27, 31, 9, 25, 1, 3, 6, 13, 15, 22, 25, 26, 27, 29, 31, 4, 1, 4, 5, 13, 20, 23, 26, 27, 29, 30, 7, 15, 19, 3, 6, 10, 12, 18, 21, 22, 24, 25, 26, 30, 32, 1, 4, 6, 8, 10, 13, 20, 18, 5, 11, 16, 20, 22, 23, 12, 25, 26, 10, 16, 17, 29, 32, 5, 16, 21, 8, 21, 25, 26, 28, 20, 1, 4, 23, 26, 1, 2, 5, 11, 17, 18, 21, 23, 26, 27, 28, 30, 6, 7, 6, 1, 4, 9, 12, 13, 14, 18, 19, 21, 22, 23, 27, 30, 31, 32, 25, 5, 22, 22, 20, 25, 12, 15, 21, 15, 17, 3, 23, 9, 3, 5, 15, 17, 18, 19, 25, 26, 29, 31, 21, 11, 15, 17, 1, 5, 12, 16, 17, 21, 22, 26, 5, 16, 17, 25, 12, 22, 4, 7, 1, 4, 6, 10, 13, 21, 22, 23, 24, 26, 27, 31, 13, 1, 4, 6, 13, 15, 18, 19, 22, 15, 3, 17, 26, 6, 5, 2, 3, 4, 10, 12, 16, 17, 21, 26, 29, 29, 12, 13, 18, 26, 32, 32, 3, 10, 24, 26, 31, 8, 4, 6, 12, 13, 17, 22, 26, 6, 10, 13, 17, 27, 6, 19, 27, 32, 5, 18, 25, 5, 5, 26, 26, 5, 17, 7, 8, 14, 16, 17, 18, 19, 20, 26, 29, 31, 12, 25, 2, 8, 12, 13, 14, 19, 21, 23, 25, 26, 28, 29, 31, 32, 3, 17, 26, 26, 20, 12, 23, 19, 29, 24, 4, 13, 14, 25, 27, 1, 2, 3, 13, 16, 17, 26, 27, 29, 32, 1, 10, 11, 18, 21, 23, 25, 26, 29, 7, 11, 13, 16, 17, 19, 26, 1, 14, 22, 26, 21, 21, 31, 1, 2, 15, 16, 17, 26, 31, 32, 8, 1, 2, 17, 10, 11, 12, 24, 1, 17, 26, 30, 32, 1, 8, 14, 18, 21, 27, 19, 26, 27, 6, 3, 5, 9, 15, 28, 31, 26, 4, 25, 16, 28, 21, 8, 4, 6, 9, 12, 13, 15, 19, 20, 22, 23, 25, 26, 30, 31, 7, 16, 17, 18, 22, 26, 28, 29, 24, 23, 26, 3, 25, 23, 1, 2, 3, 4, 5, 8, 14, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 16, 5, 11, 14, 26, 14, 9, 25, 1, 4, 22, 28, 29, 5, 18, 19, 29, 31, 19, 19, 1, 4, 6, 9, 10, 11, 12, 14, 15, 16, 17, 20, 21, 22, 23, 26, 27, 29, 32, 20, 17, 3, 3, 27, 27, 1, 3, 6, 7, 9, 10, 11, 12, 14, 15, 17, 19, 21, 22, 26, 27, 29, 32, 13, 22, 7, 17, 28, 12, 8, 17, 23, 25, 26, 32, 2, 4, 9, 17, 18, 21, 25, 26, 27, 29, 10, 1, 3, 12, 3, 11, 28, 7, 7, 1, 22, 19, 12, 31, 1, 3, 15, 19, 21, 26, 28, 29, 32, 3, 7, 11, 12, 15, 17, 20, 21, 26, 28, 20, 22, 4, 8, 13, 20, 26, 28, 29, 22, 6, 19, 19, 5, 17, 26, 12, 24, 1, 31, 2, 14, 16, 17, 24, 26, 1, 3, 6, 9, 10, 11, 17, 20, 22, 25, 27, 28, 13, 13, 14, 14, 14, 15, 9, 13, 1, 2, 7, 8, 16, 17, 24, 27, 28, 29, 13, 15, 16, 17, 19, 22, 26, 32, 1, 4, 18, 29, 11, 29, 3, 4, 5, 13, 21, 22, 25, 14, 16, 23, 11, 12, 31, 30, 4, 13, 20, 26, 5, 12, 20, 26, 28, 13, 14, 1, 24, 28, 4, 17, 4, 11, 13, 27, 31, 4, 7, 14, 20, 26, 27, 31, 19, 27, 13, 4, 6, 10, 13, 20, 21, 23, 24, 26, 27, 29, 13, 22, 24, 22, 4, 11, 20, 8, 13, 21, 27, 29, 13, 4, 8, 13, 23, 24, 1, 4, 6, 8, 13, 18, 20, 22, 23, 1, 2, 15, 17, 19, 29, 31, 32, 27, 1, 16, 21, 31, 31, 1, 3, 4, 6, 10, 11, 15, 19, 25, 31, 32, 1, 6, 7, 11, 13, 18, 20, 2, 20, 21, 23, 26, 27, 28, 4, 20, 1, 3, 4, 6, 7, 8, 9, 10, 12, 14, 18, 20, 24, 26, 28, 29, 32, 3, 9, 10, 15, 17, 18, 19, 21, 25, 26, 30, 4, 24, 26, 2, 6, 26, 7, 17, 7, 14, 7, 4, 6, 13, 20, 4, 11, 13, 20, 22, 4, 13, 1, 3, 6, 7, 8, 10, 11, 12, 14, 15, 17, 18, 19, 21, 24, 26, 27, 31, 31, 4, 23, 4, 19, 31, 12, 7, 14, 26, 10, 1, 18, 1, 3, 18, 23, 26, 27, 31, 1, 3, 17, 19, 1, 2, 4, 7, 10, 11, 12, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 30, 8, 12, 27, 26, 11, 14, 29, 11, 17, 5, 1, 11, 16, 17, 26, 17, 22, 5, 13, 12, 12, 21, 28, 16, 31, 28, 3, 26, 3, 1, 15, 27, 30, 28, 26, 27, 3, 10, 29, 8, 1, 3, 5, 10, 11, 14, 17, 24, 27, 30, 32, 32, 24, 8, 4, 29, 7, 16, 20, 26, 25, 30, 26, 32, 14, 19, 7, 12, 15, 19, 29, 31, 1, 3, 7, 11, 13, 16, 17, 31, 17, 19, 19, 21, 15, 31, 14, 10, 12, 28, 20, 5, 2, 11, 18, 28, 32, 21, 17, 5, 17, 28, 28, 23, 25, 26, 30, 31, 16, 28, 1, 2, 4, 5, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 29, 30, 31, 32, 12, 3, 5, 6, 10, 12, 14, 17, 18, 21, 22, 24, 25, 26, 28, 1, 1, 1, 3, 4, 6, 8, 9, 10, 12, 16, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 19, 5, 8, 17, 18, 23, 25, 26, 11, 5, 18, 2, 15, 1, 2, 8, 12, 23, 27, 29, 30, 30, 30, 26, 26, 29, 12, 26, 18, 16, 16, 3, 8, 14, 18, 26, 3, 27, 28, 32, 4, 18, 26, 32, 21, 21, 2, 6, 10, 11, 12, 14, 16, 19, 21, 22, 23, 28, 10, 3, 4, 7, 11, 13, 26, 29, 1, 3, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 22, 26, 27, 30, 31, 1, 10, 12, 17, 26, 30, 22, 1, 3, 7, 8, 10, 11, 13, 15, 17, 19, 26, 27, 28, 31, 32, 13, 2, 8, 12, 21, 24, 26, 27, 18, 1, 3, 6, 7, 10, 13, 17, 24, 26, 2, 7, 27, 7, 16, 17, 26, 29, 1, 4, 6, 7, 11, 13, 14, 19, 29, 31, 11, 15, 31, 6, 13, 6, 26, 5, 6, 11, 14, 17, 27, 7, 8, 16, 17, 20, 24, 26, 29, 30, 11, 13, 14, 25, 5, 7, 10, 3, 3, 7, 8, 11, 24, 28, 9, 10, 10, 3, 20, 27, 10, 6, 8, 14, 18, 19, 2, 4, 7, 20, 24, 26, 23, 1, 4, 7, 9, 11, 14, 15, 16, 17, 19, 20, 22, 24, 27, 30, 31, 32, 30, 11, 11, 6, 23, 4, 15, 19, 21, 28, 19, 26, 31, 22, 1, 2, 3, 5, 8, 11, 13, 14, 16, 17, 21, 22, 24, 26, 27, 28, 29, 6, 30, 23, 25, 30, 30, 1, 8, 28, 15, 2, 3, 17, 19, 21, 22, 23, 26, 27, 30, 32, 4, 15, 20, 26, 31, 27, 1, 2, 4, 5, 15, 16, 17, 19, 20, 24, 26, 27, 28, 30, 32, 22, 1, 4, 5, 10, 12, 14, 15, 16, 22, 27, 31, 29, 3, 8, 17, 26, 31, 5, 10, 14, 16, 27, 7, 9, 18, 26, 16, 12, 28, 18, 6, 5, 21, 2, 1, 16, 26, 30, 7, 16, 8, 21, 16, 22, 16, 15, 18, 18, 2, 7, 3, 21, 9, 10, 12, 19, 21, 22, 23, 24, 26, 30, 31, 7, 11, 1, 2, 9, 14, 17, 19, 21, 22, 23, 24, 26, 30, 11, 16, 11, 1, 21, 29, 5, 10, 16, 17, 26, 32, 2, 16, 2, 11, 4, 7, 11, 13, 14, 17, 18, 21, 24, 26, 29, 14, 8, 13, 17, 20, 23, 25, 26, 27, 29, 30, 16, 1, 2, 7, 8, 13, 6, 27, 27, 27, 23, 14, 1, 18, 24, 15, 26, 18, 15, 15, 11, 21, 26, 16, 17, 21, 8, 11, 8, 24, 26, 30, 4, 24, 27, 30, 13, 31, 20, 1, 11, 12, 29, 30, 25, 24, 11, 29, 9, 3, 5, 7, 27, 3, 5, 13, 17, 20, 26, 5, 18, 20, 26, 7, 16, 17, 6, 12, 26, 32, 16, 6, 26, 29, 6, 13, 17, 26, 6, 12, 17, 18, 11, 3, 4, 9, 15, 17, 19, 26, 27, 28, 29, 31, 32, 20, 1, 8, 13, 14, 8, 11, 10, 8, 31, 14, 32, 14, 11, 17, 18, 22, 25, 26, 29, 3, 4, 6, 10, 1, 2, 4, 8, 11, 12, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 22, 25, 26, 12, 26, 1, 2, 13, 16, 17, 22, 26, 29, 17, 22, 26, 3, 6, 13, 17, 22, 26, 32, 22, 6, 8, 29, 10, 15, 16, 17, 19, 22, 27, 31, 32, 25, 29, 22, 12, 17, 18, 19, 26, 1, 3, 6, 7, 11, 14, 15, 16, 17, 19, 21, 22, 24, 26, 27, 29, 15, 2, 3, 8, 12, 17, 19, 23, 25, 26, 27, 28, 32, 2, 8, 14, 19, 24, 2, 26, 8, 27, 16, 32, 24, 1, 2, 3, 4, 5, 8, 9, 17, 20, 22, 25, 26, 27, 29, 30, 31, 32, 26, 15, 10, 10, 1, 1, 11, 27, 22, 25, 9, 3, 6, 9, 10, 11, 15, 26, 27, 3, 13, 17, 26, 29, 29, 13, 29, 29, 26, 2, 4, 13, 29, 7, 1, 4, 8, 9, 10, 11, 12, 14, 15, 17, 19, 21, 22, 23, 24, 25, 26, 29, 31, 32, 16, 17, 25, 26, 2, 25, 8, 14, 19, 29, 17, 22, 24, 26, 30, 4, 6, 10, 17, 20, 26, 30, 31, 29, 14, 11, 11, 8, 17, 5, 10, 17, 21, 25, 26, 4, 16, 18, 21, 26, 28, 4, 4, 1, 14, 15, 11, 29, 2, 24, 30, 9, 24, 1, 3, 12, 18, 23, 26, 30, 15, 10, 26, 15, 11, 14, 26, 4, 29, 14, 8, 2, 5, 6, 7, 8, 10, 11, 12, 16, 17, 18, 21, 28, 29, 31, 17, 18, 26, 5, 18, 26, 16, 26, 12, 12, 21, 24, 26, 25, 4, 11, 5, 11, 14, 18, 8, 14, 26, 8, 13, 26, 13, 32, 8, 10, 26, 1, 17, 21, 26, 10, 21, 21, 1, 3, 26, 17, 14, 28, 2, 21, 24, 32, 27, 5, 4, 2, 6, 10, 11, 12, 14, 16, 19, 20, 21, 22, 23, 28, 31, 11, 14, 28, 20, 22, 11, 1, 3, 4, 6, 9, 10, 12, 13, 19, 21, 22, 23, 25, 28, 31, 32, 11, 11, 11, 13, 3, 32, 11, 3, 4, 7, 9, 11, 13, 20, 27, 28, 32, 15, 3, 18, 26, 20, 1, 2, 5, 8, 15, 17, 22, 23, 28, 29, 11, 17, 17, 6, 10, 11, 13, 21, 11, 23, 12, 26, 1, 6, 8, 13, 17, 23, 24, 28, 30, 19, 27, 31, 19, 31, 28, 28, 14, 3, 22, 26, 20, 3, 12, 15, 17, 19, 25, 26, 30, 31, 32, 5, 18, 1, 4, 31, 1, 4, 16, 21, 26, 32, 32, 23, 11, 11, 30, 32, 5, 26, 9, 7, 27, 11, 14, 29, 29, 10, 22, 24, 28, 27, 7, 29, 6, 11, 29, 6, 7, 29, 9, 13, 19, 22, 26, 11, 16, 12, 1, 1, 2, 23, 32, 3, 7, 8, 9, 11, 13, 17, 28, 30, 1, 2, 3, 4, 7, 16, 17, 18, 20, 22, 23, 24, 27, 28, 29, 12, 13, 18, 23, 24, 27, 8, 1, 3, 9, 10, 15, 19, 25, 27, 30, 32, 2, 13, 16, 17, 1, 4, 23, 25, 26, 27, 30, 16, 32, 22, 25, 10, 12, 17, 12, 19, 2, 25, 10, 12, 21, 24, 30, 2, 24, 1, 3, 7, 11, 14, 16, 17, 19, 20, 21, 22, 26, 28, 30, 31, 1, 7, 11, 14, 15, 19, 24, 27, 31, 21, 1, 18, 24, 28, 8, 15, 20, 2, 10, 17, 17, 17, 9, 22, 18, 23, 26, 1, 22, 30, 1, 2, 3, 4, 5, 7, 8, 13, 14, 15, 17, 19, 20, 23, 24, 25, 26, 27, 28, 29, 31, 32, 1, 4, 6, 12, 13, 14, 15, 19, 20, 22, 24, 27, 29, 30, 31, 32, 26, 5, 8, 11, 15, 16, 19, 20, 26, 27, 29, 31, 28, 13, 2, 18, 19, 21, 31, 21, 12, 16, 3, 1, 7, 10, 11, 14, 17, 18, 21, 24, 26, 27, 28, 10, 12, 3, 5, 11, 15, 17, 22, 24, 26, 27, 32, 8, 10, 25, 26, 30, 30, 1, 27, 31, 7, 1, 26, 14, 5, 4, 5, 6, 7, 10, 14, 17, 20, 23, 25, 26, 27, 28, 4, 10, 13, 24, 32, 13, 17, 2, 17, 2, 8, 9, 12, 13, 15, 17, 18, 19, 21, 23, 26, 27, 28, 29, 31, 1, 11, 13, 14, 27, 1, 4, 11, 14, 13, 16, 1, 4, 6, 7, 10, 12, 18, 22, 13, 4, 6, 8, 10, 12, 13, 23, 24, 31, 14, 2, 17, 27, 30, 17, 24, 25, 17, 22, 2, 13, 17, 22, 26, 32, 1, 2, 13, 17, 27, 29, 13, 20, 24, 26, 1, 2, 3, 5, 7, 11, 14, 20, 26, 29, 23, 11, 6, 2, 8, 2, 15, 1, 15, 16, 19, 20, 26, 9, 20, 26, 29, 1, 8, 20, 21, 26, 5, 16, 25, 4, 14, 17, 26, 29, 3, 9, 16, 17, 25, 26, 27, 30, 32, 28, 14, 10, 8, 4, 1, 2, 4, 5, 16, 26, 29, 30, 5, 4, 32, 7, 24, 8, 2, 5, 10, 12, 14, 15, 17, 18, 19, 21, 24, 25, 27, 28, 30, 1, 10, 17, 26, 29, 10, 17, 23, 6, 21, 26, 21, 23, 1, 2, 3, 4, 5, 9, 10, 11, 12, 14, 15, 16, 17, 19, 24, 26, 27, 28, 29, 30, 32, 8, 6, 8, 26, 27, 27, 18, 15, 17, 25, 27, 3, 23, 27, 1, 4, 23, 25, 29, 30, 4, 6, 9, 10, 11, 12, 13, 14, 19, 21, 23, 24, 29, 31, 15, 21, 29, 16, 17, 13, 15, 17, 26, 19, 2, 4, 14, 15, 17, 21, 23, 26, 29, 4, 25, 29, 19, 29, 13, 29, 19, 1, 4, 7, 11, 13, 20, 20, 1, 4, 14, 1, 14, 13, 23, 26, 26, 3, 3, 1, 4, 13, 14, 20, 22, 23, 28, 29, 1, 1, 4, 12, 16, 18, 19, 23, 26, 27, 30, 31, 18, 2, 3, 4, 6, 8, 9, 12, 14, 15, 19, 20, 21, 22, 23, 26, 27, 28, 29, 31, 32, 2, 15, 16, 17, 19, 32, 10, 14, 28, 30, 6, 1, 4, 7, 8, 16, 17, 20, 23, 16, 25, 26, 6, 12, 18, 19, 26, 8, 26, 30, 3, 13, 9, 22, 11, 3, 3, 5, 17, 27, 1, 3, 18, 27, 1, 20, 22, 24, 26, 28, 31, 25, 3, 7, 17, 1, 4, 10, 11, 12, 14, 15, 21, 23, 27, 29, 31, 15, 10, 14, 11, 14, 15, 22, 10, 1, 11, 18, 21, 3, 4, 9, 17, 19, 25, 26, 27, 31, 32, 4, 13, 20, 21, 25, 26, 30, 1, 3, 2, 4, 6, 12, 13, 17, 18, 22, 26, 27, 30, 1, 4, 7, 9, 12, 20, 21, 26, 27, 31, 6, 17, 22, 26, 11, 16, 26, 10, 12, 18, 21, 1, 3, 4, 5, 9, 15, 17, 19, 20, 25, 26, 27, 28, 30, 31, 32, 7, 1, 4, 10, 17, 21, 29, 4, 10, 13, 19, 20, 22, 24, 25, 26, 30, 4, 10, 13, 21, 23, 29, 13, 15, 16, 19, 22, 26, 32, 4, 13, 6, 7, 10, 12, 13, 15, 17, 19, 20, 22, 26, 28, 30, 31, 32, 4, 6, 13, 18, 20, 22, 24, 28, 29, 4, 6, 18, 21, 22, 23, 24, 26, 27, 30, 1, 4, 10, 17, 19, 20, 26, 27, 20, 2, 8, 13, 17, 20, 26, 28, 29, 3, 1, 8, 20, 29, 1, 7, 8, 11, 13, 20, 29, 1, 16, 17, 27, 3, 13, 26, 17, 16, 31, 11, 1, 7, 8, 11, 13, 14, 27, 29, 1, 14, 29, 3, 9, 17, 24, 3, 15, 31, 11, 26, 1, 2, 4, 5, 9, 11, 14, 15, 17, 19, 23, 24, 25, 26, 27, 28, 30, 31, 32, 6, 19, 4, 19, 23, 26, 31, 32, 6, 13, 17, 1, 32, 27, 30, 27, 23, 4, 6, 8, 9, 10, 12, 13, 15, 17, 19, 21, 22, 23, 24, 25, 26, 30, 31, 1, 4, 15, 19, 21, 25, 26, 32, 30, 3, 13, 14, 25, 26, 25, 3, 4, 9, 16, 17, 25, 26, 27, 28, 30, 31, 32, 7, 19, 20, 26, 31, 21, 29, 29, 29, 11, 11, 28, 3, 7, 12, 14, 15, 17, 27, 30, 12, 19, 26, 6, 32, 19, 27, 31, 1, 2, 3, 5, 10, 13, 17, 21, 24, 26, 27, 29, 31, 3, 14, 23, 26, 27, 31, 32, 23, 1, 23, 25, 16, 1, 4, 11, 12, 14, 15, 18, 19, 24, 27, 29, 32, 22, 11, 14, 2, 4, 6, 7, 8, 10, 11, 12, 13, 16, 18, 20, 21, 26, 29, 1, 2, 4, 7, 8, 9, 11, 12, 13, 14, 15, 19, 22, 26, 29, 31, 32, 5, 16, 17, 21, 7, 16, 16, 25, 4, 6, 8, 13, 19, 20, 22, 26, 30, 31, 8, 19, 9, 9, 4, 2, 8, 29, 3, 7, 10, 18, 21, 24, 25, 26, 28, 30, 1, 4, 5, 6, 8, 9, 12, 14, 15, 16, 17, 19, 21, 22, 25, 26, 27, 28, 29, 30, 31, 32, 13, 3, 4, 5, 17, 18, 26, 28, 30, 6, 1, 30, 20, 26, 1, 19, 26, 12, 25, 20, 27, 1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 17, 19, 22, 25, 26, 27, 28, 30, 31, 32, 13, 15, 19, 17, 17, 15, 19, 1, 21, 17, 1, 4, 6, 8, 11, 12, 14, 15, 18, 22, 23, 27, 2, 6, 8, 12, 13, 14, 15, 17, 18, 19, 20, 22, 24, 26, 28, 31, 13, 20, 24, 29, 1, 7, 8, 19, 1, 7, 12, 17, 22, 26, 27, 29, 1, 3, 13, 17, 1, 3, 7, 11, 17, 29, 16, 3, 5, 9, 12, 14, 17, 21, 22, 24, 25, 26, 28, 30, 31, 32, 1, 31, 23, 8, 23, 25, 26, 27, 32, 4, 20, 4, 6, 7, 8, 12, 13, 17, 20, 23, 25, 30, 1, 2, 13, 15, 17, 23, 27, 28, 4, 6, 10, 20, 22, 23, 24, 27, 4, 7, 12, 13, 15, 19, 23, 25, 28, 29, 31, 1, 2, 4, 8, 23, 26, 28, 1, 4, 6, 7, 8, 11, 13, 23, 24, 26, 27, 29, 1, 3, 5, 6, 7, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 26, 28, 29, 31, 32, 1, 2, 10, 17, 18, 21, 23, 25, 26, 3, 21, 22, 4, 10, 13, 24, 26, 4, 24, 26, 28, 13, 8, 12, 13, 29, 29, 12, 7, 8, 3, 12, 21, 26, 30, 31, 12, 20, 1, 2, 4, 8, 13, 14, 15, 16, 17, 20, 22, 23, 24, 26, 28, 29, 3, 12, 17, 18, 23, 26, 2, 2, 11, 15, 16, 17, 19, 26, 2, 15, 2, 16, 17, 2, 18, 25, 1, 2, 3, 5, 9, 15, 19, 21, 23, 26, 27, 29, 32, 20, 32, 15, 32, 15, 28, 2, 4, 5, 6, 8, 9, 10, 11, 15, 17, 18, 19, 20, 22, 23, 25, 26, 27, 31, 5, 6, 19, 1, 12, 15, 17, 19, 25, 30, 31, 32, 18, 1, 2, 7, 8, 12, 15, 23, 24, 27, 28, 29, 30, 32, 12, 17, 19, 25, 26, 10, 30, 30, 2, 11, 17, 26, 28, 12, 13, 17, 19, 26, 1, 7, 13, 14, 17, 1, 12, 15, 17, 19, 31, 32, 1, 2, 5, 6, 11, 13, 14, 18, 22, 23, 32, 2, 1, 4, 1, 32, 12, 26, 29, 30, 1, 12, 4, 14, 24, 29, 9, 27, 24, 29, 7, 15, 7, 19, 20, 26, 29, 4, 10, 17, 18, 20, 21, 24, 26, 30, 31, 25, 26, 3, 15, 17, 22, 1, 4, 7, 11, 12, 15, 31, 29, 24, 2, 2, 7, 13, 14, 16, 17, 29, 20, 19, 12, 26, 7, 20, 26, 3, 1, 27, 30, 25, 26, 1, 2, 3, 5, 10, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 4, 13, 20, 23, 32, 7, 4, 7, 24, 26, 3, 13, 18, 20, 22, 23, 26, 30, 6, 20, 6, 26, 29, 3, 6, 11, 17, 22, 27, 30, 32, 11, 1, 6, 12, 14, 15, 19, 24, 27, 31, 32, 16, 32, 5, 17, 26, 32, 10, 3, 19, 27, 17, 19, 30, 10, 3, 12, 14, 15, 19, 23, 25, 26, 27, 7, 25, 2, 13, 16, 17, 26, 27, 30, 27, 25, 1, 2, 3, 5, 10, 14, 15, 17, 21, 30, 18, 23, 1, 7, 11, 14, 18, 26, 27, 29, 2, 4, 13, 29, 13, 27, 3, 11, 25, 26, 32, 6, 16, 6, 1, 1, 3, 4, 6, 9, 10, 13, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 29, 3, 12, 13, 15, 19, 23, 25, 26, 31, 32, 1, 3, 4, 6, 7, 9, 10, 11, 14, 15, 17, 20, 21, 22, 27, 29, 30, 32, 16, 17, 16, 17, 4, 27, 1, 10, 20, 1, 4, 7, 10, 11, 12, 14, 15, 19, 20, 21, 22, 23, 24, 26, 27, 29, 31, 32, 24, 32, 1, 4, 8, 11, 13, 20, 29, 8, 27, 16, 3, 7, 13, 16, 17, 22, 28, 2, 26, 29, 1, 4, 6, 8, 9, 10, 12, 15, 17, 21, 22, 25, 26, 27, 28, 30, 32, 32, 4, 7, 29, 19, 23, 32, 19, 23, 3, 21, 25, 26, 28, 29, 23, 23, 19, 26, 27, 1, 2, 4, 5, 7, 8, 11, 14, 15, 16, 17, 19, 20, 27, 28, 30, 32, 1, 2, 14, 16, 17, 21, 29, 32, 2, 7, 10, 11, 13, 18, 21, 24, 25, 26, 28, 29, 1, 2, 12, 15, 17, 22, 31, 32, 10, 2, 17, 2, 3, 4, 10, 12, 16, 17, 22, 26, 31, 8, 16, 21, 27, 32, 3, 7, 9, 13, 14, 17, 20, 21, 22, 24, 27, 28, 30, 32, 3, 17, 19, 29, 3, 14, 21, 26, 29, 10, 21, 3, 21, 26, 29, 8, 1, 5, 12, 13, 17, 21, 22, 26, 1, 8, 10, 17, 21, 22, 23, 24, 26, 27, 28, 11, 11, 1, 3, 4, 5, 8, 10, 20, 22, 23, 25, 26, 27, 28, 30, 6, 10, 12, 13, 15, 19, 26, 31, 8, 20, 20, 1, 3, 5, 8, 17, 22, 26, 28, 32, 4, 24, 30, 24, 13, 17, 32, 2, 8, 16, 26, 31, 32, 32, 13, 14, 18, 21, 24, 26, 29, 3, 26, 32, 12, 13, 15, 3, 6, 7, 10, 11, 13, 16, 17, 18, 22, 24, 26, 28, 13, 29, 9, 13, 28, 24, 29, 23, 1, 16, 22, 29, 1, 2, 3, 5, 6, 8, 9, 15, 17, 22, 24, 26, 27, 28, 30, 32, 4, 9, 14, 15, 17, 20, 24, 30, 31, 3, 5, 17, 26, 17, 21, 29, 21, 16, 7, 1, 3, 5, 7, 8, 9, 11, 17, 24, 25, 26, 28, 30, 31, 32, 25, 3, 21, 1, 3, 4, 5, 9, 17, 19, 20, 21, 23, 26, 27, 30, 32, 1, 2, 4, 5, 7, 8, 10, 11, 14, 15, 16, 17, 20, 22, 23, 24, 25, 27, 28, 29, 30, 9, 10, 11, 13, 14, 15, 19, 21, 22, 24, 30, 31, 32, 27, 1, 4, 6, 10, 11, 12, 14, 15, 18, 19, 21, 22, 23, 24, 25, 27, 29, 31, 32, 21, 3, 4, 6, 8, 9, 10, 11, 15, 17, 19, 21, 23, 24, 25, 26, 27, 28, 30, 31, 26, 28, 1, 6, 8, 11, 17, 18, 21, 30, 13, 23, 28, 9, 12, 15, 19, 31, 2, 4, 11, 12, 13, 15, 17, 19, 22, 24, 26, 27, 30, 32, 10, 32, 28, 26, 31, 1, 3, 6, 9, 10, 12, 13, 14, 15, 18, 19, 21, 22, 29, 30, 3, 5, 10, 18, 21, 22, 1, 10, 12, 17, 18, 21, 26, 6, 7, 12, 15, 17, 23, 31, 30, 12, 17, 19, 19, 26, 25, 26, 2, 15, 19, 22, 31, 8, 31, 31, 19, 6, 9, 2, 5, 15, 16, 29, 8, 12, 14, 15, 16, 19, 21, 29, 31, 16, 1, 4, 7, 8, 11, 18, 21, 26, 27, 29, 18, 24, 2, 11, 14, 15, 16, 17, 19, 24, 26, 28, 17, 30, 12, 18, 19, 9, 22, 32, 1, 2, 4, 5, 8, 9, 11, 16, 17, 19, 24, 25, 26, 27, 29, 32, 14, 28, 9, 17, 2, 4, 13, 21, 22, 25, 26, 28, 20, 1, 2, 3, 5, 8, 9, 10, 13, 15, 16, 19, 21, 23, 27, 32, 19, 25, 2, 3, 4, 5, 8, 10, 14, 15, 16, 17, 19, 21, 25, 26, 27, 30, 31, 32, 4, 12, 13, 9, 1, 15, 17, 27, 29, 30, 31, 32, 15, 29, 15, 19, 22, 26, 30, 31, 32, 18, 6, 26, 27, 6, 13, 17, 20, 22, 23, 26, 27, 15, 30, 8, 7, 8, 10, 11, 12, 14, 16, 17, 18, 20, 24, 26, 28, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 29, 31, 1, 22, 25, 29, 3, 5, 9, 10, 12, 15, 17, 18, 21, 22, 23, 25, 29, 30, 32, 15, 15, 5, 19, 10, 1, 4, 8, 10, 13, 16, 17, 18, 20, 22, 23, 25, 26, 27, 29, 30, 1, 3, 7, 11, 12, 14, 15, 18, 19, 26, 27, 28, 31, 20, 5, 17, 19, 22, 26, 32, 1, 7, 15, 16, 23, 27, 29, 31, 32, 7, 15, 19, 27, 30, 31, 2, 3, 5, 14, 16, 17, 24, 27, 1, 2, 3, 4, 6, 11, 13, 15, 16, 17, 19, 22, 23, 29, 31, 32, 4, 6, 13, 23, 29, 30, 10, 6, 18, 25, 31, 3, 12, 23, 3, 4, 9, 10, 14, 15, 18, 19, 21, 26, 27, 31, 32, 1, 4, 5, 9, 15, 17, 19, 23, 24, 26, 27, 30, 32, 30, 17, 22, 1, 26, 1, 31, 23, 15, 21, 24, 28, 30, 31, 32, 6, 10, 12, 15, 19, 21, 31, 1, 15, 19, 23, 25, 28, 30, 32, 21, 10, 15, 19, 21, 25, 31, 8, 14, 15, 19, 4, 13, 20, 24, 26, 28, 30, 20, 2, 17, 26, 22, 18, 3, 6, 13, 26, 5, 6, 13, 26, 3, 6, 13, 1, 3, 5, 15, 17, 19, 21, 23, 28, 30, 32, 4, 6, 11, 13, 17, 23, 24, 27, 30, 19, 32, 28, 15, 15, 24, 26, 12, 23, 25, 27, 32, 8, 20, 26, 7, 8, 11, 13, 25, 15, 12, 13, 17, 19, 21, 25, 26, 32, 1, 27, 13, 16, 17, 17, 3, 4, 10, 13, 16, 17, 22, 1, 3, 7, 11, 14, 17, 24, 26, 27, 29, 6, 8, 27, 32, 1, 14, 14, 17, 18, 26, 31, 1, 3, 4, 9, 10, 12, 15, 18, 19, 26, 30, 31, 29, 9, 10, 21, 22, 2, 13, 16, 17, 3, 12, 22, 26, 2, 3, 11, 28, 17, 1, 4, 9, 15, 17, 19, 22, 31, 32, 3, 6, 9, 11, 17, 19, 22, 27, 28, 29, 32, 1, 2, 3, 4, 5, 7, 11, 12, 13, 14, 15, 17, 19, 24, 25, 26, 27, 28, 29, 31, 32, 11, 11, 11, 9, 29, 21, 26, 1, 2, 4, 5, 7, 11, 12, 15, 16, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30, 32, 18, 16, 19, 7, 31, 8, 10, 11, 12, 13, 15, 21, 24, 31, 32, 14, 6, 5, 12, 5, 8, 17, 25, 26, 28, 1, 17, 19, 22, 23, 24, 26, 27, 31, 13, 24, 25, 30, 24, 19, 1, 12, 19, 21, 27, 31, 32, 6, 10, 11, 13, 18, 21, 23, 1, 10, 16, 19, 23, 26, 27, 31, 12, 15, 19, 31, 32, 10, 30, 1, 3, 4, 7, 11, 13, 16, 19, 21, 26, 29, 4, 7, 8, 20, 1, 5, 7, 8, 10, 11, 12, 13, 14, 19, 21, 22, 24, 25, 29, 31, 2, 8, 17, 24, 26, 27, 1, 2, 6, 9, 12, 13, 15, 17, 19, 22, 25, 26, 27, 1, 6, 12, 13, 15, 17, 19, 22, 26, 31, 32, 6, 10, 11, 13, 15, 26, 31, 13, 22, 27, 29, 30, 8, 12, 29, 2, 4, 6, 8, 11, 16, 18, 21, 23, 24, 26, 27, 29, 30, 1, 2, 3, 5, 7, 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 31, 1, 2, 13, 22, 26, 2, 3, 8, 19, 21, 23, 25, 26, 28, 29, 32, 16, 11, 12, 13, 16, 17, 17, 26, 7, 28, 1, 15, 19, 1, 2, 26, 3, 7, 8, 9, 10, 11, 14, 17, 18, 20, 22, 24, 25, 26, 30, 31, 25, 5, 3, 5, 6, 7, 11, 14, 15, 16, 17, 18, 20, 21, 24, 26, 28, 29, 32, 3, 7, 11, 13, 14, 16, 17, 27, 14, 2, 8, 14, 15, 23, 11, 1, 25, 6, 23, 26, 30, 12, 14, 21, 11, 8, 1, 2, 5, 10, 12, 17, 23, 24, 26, 27, 30, 31, 32, 2, 1, 14, 15, 17, 21, 24, 32, 31, 1, 10, 17, 21, 24, 1, 2, 8, 29, 30, 12, 12, 21, 12, 13, 14, 1, 4, 1, 5, 5, 1, 25, 5, 16, 17, 26, 26, 7, 13, 6, 30, 3, 9, 19, 27, 27, 11, 15, 4, 13, 13, 7, 11, 13, 19, 26, 29, 4, 1, 2, 4, 7, 8, 11, 13, 15, 16, 18, 19, 20, 22, 23, 26, 29, 30, 31, 1, 11, 13, 15, 1, 4, 10, 12, 21, 22, 24, 26, 27, 32, 6, 17, 3, 2, 3, 4, 8, 11, 23, 24, 26, 30, 8, 12, 18, 24, 26, 1, 7, 8, 11, 13, 14, 16, 22, 23, 26, 27, 29, 28, 1, 4, 10, 21, 24, 27, 32, 2, 17, 22, 24, 26, 28, 30, 4, 19, 20, 23, 25, 17, 26, 26, 26, 26, 1, 8, 15, 26, 31, 22, 2, 8, 26, 1, 2, 3, 12, 18, 23, 25, 23, 20, 24, 15, 12, 13, 17, 18, 19, 17, 4, 26, 26, 1, 3, 7, 26, 26, 16, 14, 14, 17, 25, 26, 18, 1, 7, 8, 12, 14, 15, 18, 19, 21, 25, 26, 29, 31, 26, 19, 2, 19, 29, 15, 3, 1, 3, 4, 7, 10, 17, 20, 21, 24, 25, 30, 31, 25, 22, 26, 27, 12, 15, 14, 30, 2, 4, 13, 14, 20, 29, 1, 2, 5, 13, 16, 17, 22, 23, 27, 28, 31, 1, 3, 7, 11, 12, 14, 15, 19, 20, 31, 32, 1, 5, 10, 16, 17, 21, 24, 26, 27, 10, 17, 24, 1, 7, 16, 26, 27, 1, 13, 14, 16, 17, 24, 29, 19, 25, 22, 2, 10, 11, 12, 15, 17, 18, 19, 21, 23, 28, 31, 7, 21, 19, 19, 1, 3, 4, 6, 7, 8, 10, 13, 14, 16, 17, 21, 24, 27, 28, 29, 18, 16, 1, 6, 14, 18, 22, 23, 26, 27, 28, 17, 18, 19, 13, 14, 14, 2, 18, 22, 24, 29, 24, 18, 7, 24, 2, 4, 13, 29, 1, 3, 4, 5, 7, 11, 14, 15, 17, 19, 22, 23, 27, 28, 29, 31, 32, 4, 16, 5, 1, 3, 7, 10, 14, 21, 22, 29, 19, 8, 14, 22, 2, 4, 13, 16, 17, 19, 29, 1, 4, 22, 24, 27, 8, 13, 14, 15, 17, 20, 23, 26, 27, 28, 31, 31, 32, 32, 1, 3, 4, 10, 13, 19, 20, 21, 27, 4, 12, 13, 15, 19, 23, 25, 26, 27, 30, 31, 32, 24, 5, 10, 26, 25, 24, 2, 17, 18, 18, 1, 2, 4, 5, 6, 8, 10, 11, 12, 14, 15, 17, 18, 19, 21, 22, 23, 27, 29, 31, 18, 31, 23, 19, 23, 27, 5, 26, 30, 18, 31, 10, 12, 15, 19, 21, 22, 23, 25, 27, 28, 31, 32, 29, 21, 11, 32, 18, 1, 3, 7, 12, 14, 15, 17, 19, 21, 23, 26, 27, 30, 31, 32, 25, 30, 1, 9, 15, 19, 26, 27, 29, 3, 6, 28, 31, 32, 26, 3, 6, 10, 15, 25, 1, 2, 11, 16, 17, 27, 17, 17, 18, 10, 3, 15, 17, 26, 28, 30, 31, 20, 17, 22, 32, 18, 6, 10, 18, 24, 26, 30, 30, 18, 9, 15, 19, 31, 9, 12, 6, 3, 10, 19, 2, 3, 4, 5, 7, 9, 11, 14, 15, 16, 17, 19, 20, 24, 26, 27, 28, 31, 32, 4, 23, 30, 4, 4, 3, 1, 5, 1, 6, 11, 12, 13, 14, 15, 18, 21, 10, 21, 24, 26, 4, 17, 27, 2, 3, 14, 21, 28, 4, 24, 11, 7 ], | |
| "Freq": [ 0.99924, 1.0011, 1.0001, 1.0001, 0.99139, 0.0058489, 1.0003, 0.033727, 0.86174, 0.086005, 0.016864, 0.99867, 1.0002, 0.99867, 0.99903, 0.026492, 0.11811, 0.53794, 0.013982, 0.10266, 0.0011039, 0.020237, 0.014718, 0.050409, 0.034955, 0.021709, 0.007359, 0.032012, 0.019133, 0.98988, 0.0092946, 1.0004, 1.0004, 0.040609, 0.001785, 0.00022313, 0.17158, 0.0013388, 0.030122, 0.13075, 0.5152, 0.0013388, 0.039493, 0.016511, 0.051319, 1.0002, 0.99633, 0.0035057, 0.021816, 0.06782, 0.056596, 0.13991, 0.001739, 0.27523, 0.0061654, 0.028298, 0.063868, 0.026085, 0.037783, 0.022132, 0.2365, 0.0020551, 0.0083787, 0.0052169, 0.82617, 0.060291, 0.015073, 0.013122, 0.07501, 0.010285, 0.022749, 0.058956, 0.00016021, 0.030279, 0.00032041, 0.037649, 0.00048062, 0.018264, 0.026755, 0.0067287, 0.45146, 0.31369, 0.018264, 0.009292, 0.00080103, 0.0040052, 0.99992, 1.0002, 0.014729, 0.98502, 1.0002, 0.51265, 0.014165, 0.034659, 0.0096443, 0.12176, 0.0099457, 0.0027125, 0.055455, 0.010548, 0.066003, 0.039481, 0.0060277, 0.029536, 0.022302, 0.013864, 0.018686, 0.0072332, 0.024412, 0.088765, 0.91101, 0.99995, 0.081965, 0.91738, 0.99445, 0.010809, 1.0001, 0.99903, 1.0002, 1.0001, 0.00093018, 0.061392, 0.83809, 0.099529, 1.0001, 0.15054, 0.0059339, 0.43021, 0.067466, 0.000258, 0.000258, 0.14848, 0.032508, 0.059468, 0.003354, 0.018447, 0.00090299, 0.021672, 0.000387, 0.017415, 0.032121, 0.010836, 0.99995, 1.0015, 0.99992, 0.99992, 0.99992, 0.20587, 0.027632, 0.16959, 0.034804, 0.00042187, 0.47207, 0.072772, 0.016875, 0.076769, 0.1172, 0.23984, 0.0031798, 0.00045425, 0.54011, 0.012719, 0.0095393, 1.0002, 0.19999, 0.048054, 0.050932, 0.046903, 0.48572, 0.16833, 0.82863, 0.1136, 0.057238, 0.0040036, 0.20899, 0.7871, 0.99992, 0.083527, 0.028983, 0.0060381, 0.032002, 0.06018, 0.012881, 0.0050317, 0.021737, 0.011271, 0.025964, 0.11412, 0.16947, 0.019724, 0.032404, 0.28198, 0.028983, 0.057362, 0.0082521, 0.99883, 0.03011, 0.96963, 0.99973, 0.99994, 0.99992, 1.0001, 0.095005, 0.90493, 0.015888, 0.98406, 0.2886, 0.045486, 0.10718, 0.028233, 0.010457, 0.45434, 0.041304, 0.02405, 1.0001, 0.032187, 0.015778, 0.89999, 0.0015778, 0.045441, 0.005049, 0.00031556, 0.0010533, 0.16879, 0.24805, 0.012639, 0.54981, 0.018169, 0.0015799, 1.0001, 0.99917, 0.99883, 1.0007, 1.0001, 0.0040981, 0.99583, 0.78223, 0.067986, 0.12581, 0.023443, 0.00078145, 0.99986, 0.21356, 0.78576, 0.21372, 0.010203, 0.04081, 0.27762, 0.062289, 0.039199, 0.00053698, 0.045106, 0.035977, 0.27386, 0.99963, 0.99922, 0.11873, 0.64875, 0.064429, 0.089957, 0.064834, 0.012967, 0.0099621, 0.89659, 0.09215, 1.0015, 0.99973, 1.0001, 0.99994, 0.99945, 1.0003, 0.99912, 0.10803, 0.89128, 1.0009, 0.042911, 0.00055728, 0.58626, 0.017833, 0.09641, 0.057958, 0.046812, 0.025078, 0.037895, 0.0055728, 0.03288, 0.049041, 0.99257, 0.00743, 0.99867, 0.99867, 0.99903, 0.2515, 0.093755, 0.019845, 0.076138, 0.061761, 0.050219, 0.024704, 0.0014175, 0.0018225, 0.016807, 0.20816, 0.001215, 0.0038474, 0.046776, 0.022882, 0.0062773, 0.053864, 0.0002025, 0.042321, 0.0076948, 0.0083023, 0.51777, 0.0067577, 0.16766, 0.076266, 0.026387, 0.011263, 0.10716, 0.011585, 0.017377, 0.0057923, 0.010298, 0.033145, 0.0086885, 1.0005, 0.0010187, 0.77757, 0.20339, 0.0071306, 0.010866, 1.0012, 0.016036, 0.98624, 0.010277, 0.98505, 0.005534, 0.015727, 0.18694, 0.40178, 0.076262, 0.037092, 0.019881, 0.0032641, 0.12196, 0.049258, 0.00089021, 0.024332, 0.022255, 0.040356, 0.051539, 0.06091, 0.0089022, 0.00023427, 0.37342, 0.059738, 0.040763, 0.0079651, 0.060207, 0.0056224, 0.1593, 0.052242, 0.025067, 0.015227, 0.027409, 0.00093707, 0.019678, 0.022724, 0.0086679, 0.8094, 0.19067, 0.073657, 0.36669, 0.075255, 0.10353, 0.11536, 0.073817, 0.051767, 0.0022369, 0.11855, 0.0097463, 0.0094268, 1.0003, 0.99883, 0.063392, 0.25617, 0.11198, 0.26422, 0.13068, 0.040529, 0.018446, 0.063912, 0.0059755, 0.0041568, 0.003897, 0.0046765, 0.010392, 0.021823, 0.079866, 0.027357, 0.078542, 0.0092662, 0.030887, 0.01412, 0.046331, 0.033094, 0.066628, 0.013679, 0.56038, 0.028681, 0.0079425, 0.00353, 1.0001, 0.99999, 0.99924, 0.99995, 0.018813, 0.00026129, 0.55367, 0.034229, 0.08518, 0.29395, 0.003658, 0.0075773, 0.0023516, 0.99855, 0.0012962, 0.036725, 0.46706, 0.16116, 0.33399, 0.11133, 0.10793, 0.011261, 0.2301, 0.046106, 0.062679, 0.034845, 0.21587, 0.0097736, 0.0070115, 0.019122, 0.018485, 0.059067, 0.033358, 0.033145, 0.41133, 0.53502, 0.024158, 0.010307, 0.0041874, 0.0041874, 0.010952, 1.0003, 0.9497, 0.021262, 0.0126, 0.016537, 0.0041115, 0.032892, 0.028781, 0.93332, 0.050933, 0.94901, 0.10859, 0.80446, 0.021074, 0.00021504, 0.054835, 0.010752, 0.018014, 0.0002953, 0.071168, 0.0002953, 0.89064, 0.020081, 0.37824, 0.62182, 0.99912, 0.99934, 0.99903, 1.0001, 0.056826, 0.91777, 0.0095549, 0.0070404, 0.0032688, 0.0052803, 0.04691, 0.38392, 0.53946, 0.0090527, 0.016871, 0.0041149, 1.0009, 1.0001, 1.0001, 0.99917, 0.99917, 0.99855, 0.72761, 0.011454, 0.25408, 0.0067685, 0.95047, 0.02273, 0.02694, 0.99897, 0.99994, 1, 0.076246, 0.0026597, 0.78906, 0.024824, 0.081566, 0.0088658, 0.016845, 0.47952, 0.025939, 0.48969, 0.00070106, 0.0045569, 0.99917, 0.024525, 0.033517, 0.18557, 0.02943, 0.040057, 0.070304, 0.0109, 0.13271, 0.12589, 0.013625, 0.056952, 0.002725, 0.0076299, 0.24498, 0.018257, 0.0024525, 0.99977, 0.79463, 0.01419, 0.19221, 0.99419, 1.0001, 1.0053, 1.0003, 0.036603, 0.050199, 0.087848, 0.25701, 0.54774, 0.020393, 0.043941, 0.1807, 0.50212, 0.11751, 0.15552, 0.27856, 0.065651, 0.0010881, 0.22525, 0.048966, 0.023758, 0.0041712, 0.071636, 0.028654, 0.013965, 0.0027204, 0.23522, 1.0005, 0.99995, 1.0002, 0.47858, 0.11217, 0.010063, 0.094709, 0.0026637, 0.012135, 0.11602, 0.0065112, 0.018054, 0.043211, 0.0053274, 0.014798, 0.022493, 0.063041, 0.99973, 0.26133, 0.081016, 0.0070122, 0.21425, 0.20598, 0.04007, 0.0078887, 0.013273, 0.0017531, 0.15364, 0.0043826, 0.0021287, 0.0072627, 0.99883, 1.0012, 0.99992, 1.0003, 1.0015, 0.78566, 0.012183, 0.13157, 0.010411, 0.060027, 1.0002, 0.99999, 0.99994, 0.99994, 1.0001, 0.0076249, 0.86577, 0.1265, 0.143, 0.83367, 0.023347, 0.91799, 0.039976, 0.012356, 0.004361, 0.025439, 1.0015, 0.96653, 0.033739, 0.28132, 0.32663, 0.025886, 0.0070426, 0.010469, 0.25334, 0.095171, 0.0040911, 0.99618, 1.0003, 0.99992, 0.015665, 0.97286, 0.0081588, 0.0032635, 0.99963, 0.05627, 0.44701, 0.0096148, 0.26685, 0.037514, 0.16566, 0.017181, 0.99917, 0.99924, 0.99994, 0.99868, 0.99924, 1.0003, 0.99994, 0.013746, 0.19892, 0.088699, 0.37087, 0.0082993, 0.010115, 0.004409, 0.0054464, 0.0070025, 0.02023, 0.02386, 0.0041496, 0.019451, 0.21059, 0.0077806, 0.0064838, 0.99855, 0.53459, 0.021487, 0.44349, 0.9635, 0.036301, 0.99963, 1.0053, 0.99963, 0.15151, 0.0066094, 0.061518, 0.00050841, 0.42478, 0.067619, 0.033047, 0.092023, 0.0094057, 0.044232, 0.040673, 0.00025421, 0.034064, 0.03381, 1.0015, 0.99994, 0.99963, 0.20277, 0.79722, 1, 1.0003, 0.13256, 0.15595, 0.025099, 0.014864, 0.0048735, 0.13743, 0.1155, 0.081632, 0.22199, 0.074078, 0.028266, 0.0080413, 0.034496, 0.86544, 0.0048416, 0.03147, 0.045995, 0.017551, 0.37936, 0.0058724, 0.32797, 0.025251, 0.10864, 0.019379, 0.063422, 0.063129, 0.0070469, 0.99999, 0.0031731, 0.025385, 0.074039, 0.58138, 0.00035256, 0.00035256, 0.0088141, 0.030673, 0.017981, 0.023974, 0.053942, 0.023269, 0.0059936, 0.0049359, 0.044071, 0.019744, 0.016218, 0.023269, 0.011987, 0.0063462, 0.024327, 1, 0.084684, 0.9159, 0.99992, 0.9748, 0.023776, 0.026366, 0.035672, 0.036447, 0.010857, 0.0093057, 0.11399, 0.069793, 0.0015509, 0.015509, 0.010081, 0.55369, 0.081425, 0.0062038, 0.029468, 0.02968, 0.050032, 0.03816, 0.037312, 0.011872, 0.13653, 0.023744, 0.000848, 0.67162, 0.000848, 0.99917, 1.0012, 0.0026879, 0.99723, 0.99924, 0.99999, 0.068747, 0.0075454, 0.92389, 0.1001, 0.016047, 0.05884, 0.013373, 0.50091, 0.079472, 0.025981, 0.029802, 0.00076416, 0.054255, 0.010316, 0.01834, 0.009934, 0.0015283, 0.032477, 0.015283, 0.032095, 0.99913, 0.99912, 0.73211, 0.20594, 0.061092, 0.99327, 0.0052834, 0.99912, 0.003606, 0.87265, 0.01202, 0.11239, 0.97657, 0.023572, 0.0015527, 0.10714, 0.027017, 0.048444, 0.0043475, 0.0065213, 0.65368, 0.018632, 0.038196, 0.048133, 0.01149, 0.033228, 0.0015527, 0.0024183, 0.11245, 0.88509, 1.0003, 1.0001, 0.076041, 0.009762, 0.91403, 1, 0.0042696, 0.09515, 0.66239, 0.047575, 0.011589, 0.0012199, 0.15797, 0.009149, 0.010369, 0.14738, 0.050376, 0.050376, 0.00053592, 0.0037514, 0.59219, 0.065382, 0.0096465, 0.069669, 0.0032155, 0.006431, 0.97086, 0.027739, 0.0056776, 0.008753, 0.49419, 0.043055, 0.034539, 0.048733, 0.0011828, 0.016087, 0.017742, 0.005441, 0.00023657, 0.21196, 0.034066, 0.078067, 1.0001, 0.99963, 0.99903, 0.99994, 0.868, 0.10468, 0.019628, 0.0087236, 1.0053, 0.093218, 0.022107, 0.67684, 0.19159, 0.015843, 1.0012, 0.99999, 0.014675, 0.033542, 0.16161, 0.17743, 0.00019058, 0.60719, 0.0051456, 1.0001, 0.99973, 0.025294, 0.052263, 0.00067004, 0.2707, 0.027304, 0.0061979, 0.019766, 0.046233, 0.020436, 0.014573, 0.10185, 0.016416, 0.063822, 0.0025127, 0.014573, 0.017924, 0.23016, 0.0026802, 0.036182, 0.030319, 0.050309, 0.016056, 0.93392, 1.0004, 0.007841, 0.99189, 1.0003, 0.99924, 1.0001, 0.99934, 0.92425, 0.025349, 0.00064997, 0.050047, 0.99912, 0.022345, 0.019716, 0.95819, 0.63545, 0.025969, 0.011542, 0.1167, 0.0060916, 0.018275, 0.018595, 0.01571, 0.056107, 0.019237, 0.023405, 0.0073741, 0.0051298, 0.016992, 0.023405, 0.97194, 0.010962, 0.014616, 0.99995, 1.0001, 0.044134, 0.31446, 0.040457, 0.6001, 0.99963, 0.16444, 0.8353, 0.047746, 0.032936, 0.022104, 0.061229, 0.019452, 0.12931, 0.11052, 0.0015473, 0.036251, 0.00044209, 0.013484, 0.022989, 0.065871, 0.040451, 0.33179, 0.059903, 0.0041998, 0.99864, 0.0012953, 0.77152, 0.17278, 0.027729, 0.011147, 0.0071063, 0.0022294, 0.007385, 0.77912, 0.12341, 0.055256, 0.042363, 0.17275, 0.0082591, 0.0013765, 0.08672, 0.64558, 0.055749, 0.028907, 0.12736, 0.00827, 0.85842, 0.006616, 0.026573, 0.040262, 0.086966, 0.028586, 0.5536, 0.043483, 0.027781, 0.019728, 0.0040262, 0.10106, 0.033418, 0.034625, 0.015867, 0.16491, 0.010665, 0.18312, 0.30953, 0.040317, 0.016907, 0.017428, 0.012745, 0.13032, 0.00078034, 0.010925, 0.083236, 0.0036416, 0.16851, 0.049907, 0.73863, 0.02466, 0.0011743, 0.017027, 0.022965, 0.056455, 0.021051, 0.82865, 0.044973, 0.024878, 1.0005, 1.0002, 0.059155, 0.033017, 0.086668, 0.81991, 0.022624, 0.97607, 0.033169, 0.020102, 0.92872, 0.017087, 0.0020474, 0.016379, 0.9807, 0.028427, 0.71138, 0.040214, 0.1775, 0.02473, 0.010862, 0.0069335, 1.0053, 1, 0.18585, 0.13783, 0.65038, 0.007388, 0.01847, 0.13674, 0.00029758, 0.0072907, 0.044488, 0.031246, 0.50692, 0.013391, 0.050439, 0.041512, 0.054754, 0.0037197, 0.086149, 0.021723, 0.00059516, 0.00074394, 0.0099247, 0.84151, 0.020372, 0.12798, 0.058668, 0.10316, 0.025423, 0.71526, 0.010267, 0.087513, 0.98873, 0.011121, 0.99975, 1, 1.0001, 0.99903, 0.90294, 0.066284, 0.032406, 0.046676, 0.092235, 0.041925, 0.40108, 0.034658, 0.01677, 0.037173, 0.052266, 0.006708, 0.135, 0.0092235, 0.0081055, 0.11823, 0.99984, 0.022571, 0.076394, 0.72314, 0.026912, 0.076394, 0.0034725, 0.0060768, 0.035593, 0.031252, 0.022084, 0.81597, 0.05222, 0.0020704, 0.024845, 0.019554, 0.063263, 1, 0.057725, 0.01351, 0.7926, 0.090887, 0.030296, 0.0057316, 0.0090068, 0.0017553, 0.10356, 0.022819, 0.87413, 0.92557, 0.074392, 1.0012, 0.99924, 0.99775, 0.002083, 0.015206, 0.96819, 0.016757, 0.041718, 0.12954, 0.07597, 0.74433, 0.0083435, 0.99912, 0.99945, 0.99119, 0.00897, 0.99855, 0.45014, 0.22816, 0.010298, 0.023571, 0.043709, 0.0077807, 0.0089249, 0.17049, 0.022884, 0.0027461, 0.024486, 0.0070942, 0.037704, 0.96144, 1.0009, 0.99973, 0.032153, 0.94369, 0.012861, 0.011254, 0.022378, 0.013118, 0.00926, 0.037555, 0.047586, 0.021092, 0.031896, 0.05556, 0.0056589, 0.017748, 0.12501, 0.0012861, 0.019806, 0.48435, 0.036526, 0.0015433, 0.0043728, 0.065592, 0.37495, 0.0013463, 0.10703, 0.022439, 0.041736, 0.013239, 0.11354, 0.0013463, 0.038146, 0.00022439, 0.082126, 0.024458, 0.082799, 0.096487, 1.0001, 0.0028553, 0.13991, 0.85659, 0.0096396, 0.04008, 0.00025367, 0.16945, 0.76152, 0.0055808, 0.0060881, 0.00076102, 0.0068492, 0.13082, 0.86907, 0.012135, 0.098697, 0.64962, 0.022382, 0.11218, 0.013483, 0.081708, 0.001618, 0.0080899, 0.99934, 1.0001, 1.0009, 1.0004, 0.11559, 0.061067, 0.10151, 0.11162, 0.051351, 0.038662, 0.030137, 0.28729, 0.1715, 0.021809, 0.0095169, 0.99724, 0.0028251, 0.70054, 0.20987, 0.0033541, 0.036416, 0.026354, 0.023958, 0.016731, 0.77265, 0.099369, 0.027884, 0.039038, 0.0096327, 0.030926, 0.0035489, 0.016502, 0.0065239, 0.77827, 0.0019188, 0.013432, 0.019572, 0.036457, 0.00038376, 0.0069077, 0.064856, 0.0069077, 0.029933, 0.018037, 1.0005, 0.99975, 0.0023296, 0.025626, 0.076294, 0.0017472, 0.19015, 0.054454, 0.10891, 0.053872, 0.035235, 0.41234, 0.008736, 0.023587, 0.0069888, 0.0069757, 0.32723, 0.018179, 0.3044, 0.10125, 0.047351, 0.1949, 0.93549, 0.013176, 0.05124, 0.99994, 0.77926, 0.11937, 0.016438, 0.085323, 1.0002, 1.0015, 0.1627, 0.044625, 0.0031593, 0.66346, 0.00078983, 0.043046, 0.0075034, 0.043441, 0.031198, 0.026721, 0.0097636, 0.09147, 0.81809, 0.051901, 0.0020555, 1, 1.0002, 0.99994, 0.61556, 0.3845, 0.99867, 0.098939, 0.42579, 0.00026813, 0.017428, 0.4459, 0.012066, 1.0001, 0.28267, 0.01794, 0.0048132, 0.69485, 0.99963, 0.040043, 0.94048, 0.019481, 0.00049236, 0.025357, 0.091333, 0.0051698, 0.45716, 0.068192, 0.019694, 0.00049236, 0.077054, 0.052929, 0.015263, 0.02511, 0.022156, 0.0098472, 0.021664, 0.009601, 0.013048, 0.031265, 0.010586, 0.043574, 0.00024618, 1.0003, 0.0055126, 0.0022051, 0.0088202, 0.0077177, 0.058434, 0.9162, 1.0003, 1.0003, 1.0003, 0.99917, 0.94408, 0.056177, 0.24361, 0.62517, 0.0023481, 0.041678, 0.024068, 0.021132, 0.041091, 0.17957, 0.79543, 0.025252, 1.0003, 1.0012, 0.01825, 0.53286, 0.0027547, 0.44591, 1.0001, 0.0067853, 0.99235, 0.085525, 0.00041316, 0.12188, 0.37887, 0.12085, 0.031194, 0.00020658, 0.069825, 0.0022724, 0.11135, 0.0041316, 0.012395, 0.0055777, 0.055157, 0.97806, 0.02193, 0.994, 0.005988, 0.99995, 0.0091584, 0.40003, 0.044647, 0.30256, 0.15389, 0.026985, 0.025676, 0.028457, 0.0085043, 0.98291, 0.0021698, 0.013019, 0.99984, 1.0015, 0.088835, 0.065146, 0.8469, 0.016964, 0.054101, 0.25881, 0.00022924, 0.02109, 0.0093988, 0.0025216, 0.019485, 0.010087, 0.017651, 0.012837, 0.02407, 0.15955, 0.078629, 0.18156, 0.10087, 0.018339, 0.01192, 0.0022924, 0.049526, 0.057596, 0.24029, 0.050993, 0.49782, 0.0073371, 0.042922, 0.053561, 1.0012, 0.024621, 0.024621, 0.1917, 0.7448, 0.010552, 0.00087934, 0.002638, 0.04784, 0.00033454, 0.12679, 0.8029, 0.021745, 1.0012, 1.0001, 0.99903, 0.99999, 0.99995, 0.99995, 0.11307, 0.4529, 0.0051175, 0.33641, 0.0065796, 0.0859, 0.0093549, 0.0068035, 0.041672, 0.72118, 0.043373, 0.17774, 0.99973, 1.0003, 0.99963, 1.0002, 0.021245, 0.077898, 0.0028327, 0.018412, 0.0063735, 0.87246, 0.00070817, 0.99999, 0.0030995, 0.82447, 0.06199, 0.06509, 0.018597, 0.018597, 0.0092985, 0.99999, 0.7407, 0.2259, 0.032696, 0.00059446, 1.0014, 0.91352, 0.036317, 0.018159, 0.032127, 0.99855, 1.0002, 0.076542, 0.013312, 0.026069, 0.082644, 0.0033279, 0.019968, 0.012202, 0.06434, 0.026623, 0.0083198, 0.044372, 0.028287, 0.031615, 0.01553, 0.001664, 0.0027733, 0.47423, 0.017194, 0.049919, 0.00067316, 0.62806, 0.00067316, 0.025356, 0.039492, 0.13979, 0.16582, 0.072878, 0.041811, 0.017752, 0.00023358, 0.014482, 0.063534, 0.029431, 0.015183, 0.0014015, 0.014015, 0.33753, 0.00023358, 0.0086425, 0.32912, 0.0039709, 0.012613, 0.0042045, 0.0023358, 0.0091097, 0.00070075, 0.014949, 0.0053724, 0.022906, 0.36015, 0.17133, 0.36665, 0.011453, 0.0012381, 0.065931, 0.00015477, 1.0001, 0.95871, 0.041443, 1.0002, 0.0061303, 0.056705, 0.81992, 0.024521, 0.050575, 0.039847, 0.0069465, 0.026953, 0.77829, 0.11476, 0.035011, 0.013059, 0.022229, 0.0027786, 0.034575, 0.0078734, 0.00068464, 0.13077, 0.12324, 0.24853, 0.0092427, 0.073942, 0.027728, 0.0075311, 0.0051348, 0.0034232, 0.014035, 0.25537, 0.0030809, 0.023278, 0.026701, 0.0041079, 0.049539, 0.50102, 0.23361, 0.048365, 0.016904, 0.12702, 0.023478, 0.00023478, 0.0011728, 0.81978, 0.17827, 1, 0.033553, 0.24516, 0.018343, 0.55162, 0.093949, 0.013869, 0.042948, 1.0003, 0.98968, 0.010473, 1.0002, 1.0005, 0.99989, 1.0004, 0.99903, 0.95074, 0.047905, 0.67354, 0.061935, 0.17161, 0.080429, 0.0077419, 0.0047311, 0.99995, 1.0002, 0.040049, 0.50486, 0.34992, 0.10518, 0.05356, 0.73314, 0.19128, 0.011129, 0.011129, 1.0004, 0.050228, 0.59684, 0.0084567, 0.0074317, 0.070216, 0.019989, 0.24653, 0.44525, 0.34389, 0.054478, 0.15138, 0.0049763, 0.11704, 0.051523, 0.0069969, 0.04389, 0.066153, 0.15012, 0.56421, 0.0087501, 0.035461, 0.0023027, 0.018882, 0.12388, 0.57336, 0.090265, 0.0032237, 0.070922, 0.014737, 0.040527, 0.017961, 0.10171, 0.28887, 0.14357, 0.01256, 0.096045, 0.0091119, 0.00024627, 0.031769, 0.24011, 0.0019701, 0.03694, 0.017239, 0.0034478, 0.0032015, 0.013052, 0.88707, 0.0027211, 0.07687, 0.0095237, 0.019047, 0.0047619, 0.033093, 0.24899, 0.00039396, 0.03979, 0.0070914, 0.00039396, 0.011031, 0.42588, 0.021274, 0.1761, 0.0047276, 0.00039396, 0.0027577, 0.027577, 0.014671, 0.015534, 0.97002, 0.049579, 0.023798, 0.017187, 0.029086, 0.050901, 0.10577, 0.54404, 0.0052884, 0.011238, 0.084614, 0.016526, 0.013221, 0.0066105, 0.0026442, 0.030408, 0.0099157, 1, 0.09283, 0.014813, 0.047403, 0.8335, 0.011851, 0.0054944, 0.045176, 0.84736, 0.034798, 0.067154, 0.99912, 0.00082204, 0.87137, 0.071518, 0.046857, 0.0098645, 0.034062, 0.0060432, 0.018679, 0.79551, 0.0093395, 0.0032963, 0.0098889, 0.014284, 0.054389, 0.036809, 0.00054938, 0.0060432, 0.0093395, 0.0010988, 0.99999, 0.065863, 0.93475, 0.0039852, 0.33718, 0.18159, 0.36179, 0.11557, 1.0003, 0.99999, 1.0004, 0.066691, 0.045601, 0.84571, 0.0045601, 0.037431, 0.87186, 0.014058, 0.11379, 0.010213, 0.032252, 0.0029564, 0.00026877, 0.18518, 0.01962, 0.41283, 0.012095, 0.21018, 0.012901, 0.019889, 0.0040315, 0.011019, 0.016126, 0.00026877, 0.00026877, 0.016395, 0.033327, 0.98444, 0.0066367, 0.0088489, 1.0001, 0.016865, 0.69668, 0.066385, 0.00017942, 0.023504, 0.068717, 0.030501, 0.011842, 0.010586, 0.0028707, 0.0073562, 0.0052031, 0.025657, 0.033551, 0.001793, 0.89469, 0.062754, 0.012551, 0.010758, 0.016137, 1, 0.0347, 0.0038556, 0.78525, 0.13109, 0.044982, 0.052125, 0.016815, 0.86091, 0.070621, 0.95461, 0.045525, 0.47271, 0.022684, 0.0069516, 0.027075, 0.4632, 0.0065857, 0.0010976, 0.99419, 0.91474, 0.085212, 0.017556, 0.052668, 0.085773, 0.80055, 0.026585, 0.01555, 0.026253, 0.16654, 0.70063, 0.069734, 0.0073836, 0.022151, 0.0073836, 0.12616, 0.0022528, 0.018344, 0.034436, 0.022528, 0.70288, 0.0737, 0.0054712, 0.013517, 0.00032183, 0.99984, 0.11525, 0.082181, 0.80226, 0.99973, 0.20465, 0.003557, 0.79179, 0.02948, 0.01608, 0.95408, 1.0001, 0.011177, 0.392, 0.18303, 0.012974, 0.015169, 0.30039, 0.016966, 0.036725, 0.0047903, 0.011976, 0.015169, 0.44358, 0.13922, 0.03445, 0.052387, 0.2272, 0.0051248, 0.01452, 0.026763, 0.001993, 0.026763, 0.028756, 0.99419, 0.021524, 0.97717, 0.037763, 0.080435, 0.12594, 0.0026434, 0.098373, 0.01756, 0.029644, 0.081379, 0.056078, 0.27435, 0.036441, 0.005098, 0.010574, 0.013406, 0.012651, 0.027001, 0.039651, 0.025679, 0.02549, 1.0002, 0.037829, 0.96465, 1.0001, 0.16248, 0.004571, 0.54519, 0.0033243, 0.2647, 0.004571, 0.0037399, 0.012051, 0.99963, 0.99924, 1.0003, 0.041579, 0.55007, 0.1377, 0.15311, 0.0092942, 0.067261, 0.040846, 1.0001, 0.049479, 0.95071, 0.03696, 0.091596, 0.22222, 0.54384, 0.019742, 0.07346, 0.012167, 0.99883, 1.0001, 0.95945, 0.031213, 0.0094995, 0.19457, 0.79134, 0.014237, 0.014168, 0.98468, 0.99419, 1.0002, 0.00099212, 0.99006, 0.0089291, 0.93634, 0.063532, 0.81383, 0.055933, 0.082036, 0.015848, 0.031696, 0.98057, 0.012518, 0.0083453, 0.9993, 0.99963, 0.077917, 0.8855, 0.026784, 0.0097396, 0.025549, 0.15731, 0.0001825, 0.13322, 0.14819, 0.00036499, 0.012957, 0.0049274, 0.039784, 0.062779, 0.35477, 0.0058399, 0.029929, 0.0001825, 0.01752, 0.0062049, 0.00054749, 0.95684, 0.043069, 0.05044, 0.94978, 0.015507, 0.89938, 0.085286, 0.99924, 1.0001, 1.0003, 0.41722, 0.051877, 0.27401, 0.25635, 0.92852, 0.045499, 0.025971, 0.99975, 0.99883, 0.88652, 0.031901, 0.082272, 0.99419, 0.99934, 0.05245, 0.053521, 0.022479, 0.0096337, 0.86168, 0.27347, 0.039567, 0.65828, 0.027662, 0.0007003, 0.24288, 0.00066361, 0.15396, 0.019245, 0.0082952, 0.38423, 0.046121, 0.036167, 0.012277, 0.018913, 0.001659, 0.027872, 0.022895, 0.006968, 0.017254, 0.085602, 0.080457, 0.038274, 0.01605, 0.039303, 0.011729, 0.075107, 0.00061732, 0.027162, 0.13684, 0.012141, 0.21627, 0.17223, 0.0088482, 0.022841, 0.037245, 0.0053501, 0.0032924, 0.0074078, 0.0028808, 0.046318, 0.025344, 0.51212, 0.024761, 0.10778, 0.040492, 0.065253, 0.046609, 0.00029131, 0.018644, 0.007574, 0.00087393, 0.0093219, 0.03554, 0.045153, 0.013983, 0.040904, 0.00033805, 0.0023664, 0.04158, 0.013522, 0.43879, 0.049017, 0.21838, 0.11325, 0.081808, 0.13266, 0.051225, 0.034201, 0.10153, 0.10107, 0.43971, 0.097695, 0.042023, 0.99917, 0.99482, 0.0069406, 0.001087, 0.48116, 0.0021739, 0.058696, 0.00036232, 0.01087, 0.086595, 0.049638, 0.032971, 0.011957, 0.010145, 0.043479, 0.00036232, 0.1587, 0.010145, 0.041667, 1.0001, 0.069604, 0.0068144, 0.70432, 0.035532, 0.00097349, 0.024337, 0.0404, 0.0077879, 0.016063, 0.012169, 0.0082747, 0.0077879, 0.063277, 0.001947, 0.0014602, 0.99855, 0.047424, 0.031616, 0.92118, 0.0061971, 0.0064037, 0.069408, 0.46788, 0.096882, 0.19129, 0.057014, 0.00020657, 0.010742, 0.02892, 0.011155, 0.008676, 0.044826, 0.99963, 0.039455, 0.002931, 0.60288, 0.17902, 0.17563, 0.080621, 0.013205, 0.40102, 0.13448, 0.37079, 0.15879, 0.8411, 0.99984, 0.99999, 0.99695, 0.0035605, 0.14245, 0.010689, 0.26352, 0.0032722, 0.017233, 0.0010907, 0.033594, 0.031413, 0.049955, 0.24563, 0.14201, 0.0087257, 0.019851, 0.0065443, 0.017451, 0.0065443, 0.99984, 0.99917, 0.99916, 0.001343, 0.051736, 0.048053, 0.07208, 0.73343, 0.02999, 0.031743, 0.015609, 0.017362, 0.01859, 0.13942, 0.020913, 0.20565, 0.3654, 0.24138, 0.0029046, 0.0058093, 0.99945, 0.99917, 0.01464, 0.10142, 0.022279, 0.40059, 0.016974, 0.029705, 0.016126, 0.03989, 0.099512, 0.070444, 0.0038192, 0.012731, 0.17208, 0.97703, 0.022887, 0.020325, 0.0271, 0.001355, 0.006775, 0.12737, 0.0271, 0.02981, 0.00542, 0.03252, 0.012195, 0.68428, 0.017615, 0.01084, 1.0053, 0.019929, 0.059334, 0.044387, 0.043481, 0.031705, 0.69389, 0.0067939, 0.096021, 0.0049822, 0.0081937, 0.9928, 0.99924, 0.99963, 1.0001, 0.99963, 1.0005, 0.037519, 0.96298, 0.99912, 0.11621, 0.88401, 0.17503, 0.7604, 0.063573, 1.0005, 0.93766, 0.016213, 0.045937, 0.99855, 0.93568, 0.0041439, 0.045582, 0.00082877, 0.014089, 0.99956, 1.0002, 0.020702, 0.9791, 0.005362, 0.0098302, 0.96247, 0.022341, 0.093243, 0.031985, 0.60446, 0.01789, 0.054211, 0.033611, 0.053127, 0.0037948, 0.0070475, 0.10083, 0.99912, 0.99912, 0.36811, 0.63231, 0.97951, 0.0029022, 0.015962, 0.99867, 0.089907, 0.15287, 0.31273, 0.21971, 0.035237, 0.12255, 0.052856, 0.002591, 0.011659, 0.99973, 0.040749, 0.10437, 0.1126, 0.032528, 0.59694, 0.072562, 0.014655, 0.010723, 0.0096511, 0.0050043, 1.0003, 0.98586, 0.014407, 1.0001, 0.99918, 0.087207, 0.012427, 0.24527, 0.010901, 0.61307, 0.023982, 0.0071946, 0.019576, 0.43838, 0.0041525, 0.01661, 0.056058, 0.13258, 0.026694, 0.0032626, 0.24203, 0.0011864, 0.053685, 0.0041525, 0.001483, 0.028961, 0.97227, 0.020715, 0.11401, 0.86527, 0.012397, 0.0064939, 0.93571, 0.0076746, 0.0088553, 0.018301, 0.010626, 1.0004, 0.99963, 0.99963, 0.99867, 0.84772, 0.10372, 0.039457, 0.0092663, 0.97094, 0.028867, 0.99934, 0.043969, 0.1097, 0.002612, 0.055288, 0.53068, 0.021767, 0.0078361, 0.076184, 0.054852, 0.035262, 0.027426, 0.0017413, 0.020896, 0.0021767, 0.002612, 0.0069654, 1, 1.0001, 1.0005, 1.0003, 0.082011, 0.044305, 0.039591, 0.0065986, 0.084839, 0.0065986, 0.0075412, 0.020738, 0.70605, 0.060323, 0.006187, 0.85226, 0.012374, 0.0023201, 0.026295, 0.010054, 0.010054, 0.0092805, 0.00077338, 0.011601, 0.29955, 0.00049147, 0.24254, 0.18184, 0.045215, 0.043495, 0.04841, 0.0027031, 0.11009, 0.0076178, 0.010075, 0.0081093, 0.061865, 0.015541, 0.20113, 0.011955, 0.035266, 0.043634, 0.13299, 0.39241, 0.1049, 0.00029886, 0.7685, 0.0096964, 0.0043241, 0.049137, 0.16838, 0.99934, 0.02131, 0.80366, 0.00059608, 0.17063, 0.0038745, 1.0001, 0.0061794, 0.0016853, 0.00056177, 0.0061794, 0.012921, 0.0191, 0.1983, 0.67974, 0.033144, 0.0044941, 0.025279, 0.0089883, 0.0033706, 0.99917, 0.20456, 0.79501, 0.99963, 0.0090589, 0.17083, 0.055001, 0.10418, 0.66066, 0.99883, 1.0053, 1.0053, 1.0002, 0.020128, 0.98123, 0.02553, 0.0026089, 0.11554, 0.792, 0.0074541, 0.014908, 0.042116, 0.82367, 0.17492, 0.0016424, 0.38793, 0.56577, 0.028221, 0.0017918, 0.016574, 0.99855, 0.99999, 0.012756, 0.00049062, 0.026493, 0.49749, 0.006378, 0.025021, 0.0034343, 0.030909, 0.0078499, 0.010794, 0.044155, 0.0068686, 0.044155, 0.03974, 0.021097, 0.010303, 0.09518, 0.097633, 0.014228, 0.0049062, 0.0042347, 0.22988, 0.078341, 0.00030248, 0.0051421, 0.065335, 0.013006, 0.096187, 0.49727, 0.010284, 0.46325, 0.029709, 0.056526, 0.023925, 0.0047325, 0.011568, 0.054423, 0.082292, 0.10017, 0.006047, 0.060996, 0.011042, 0.0089391, 0.056789, 0.0094649, 0.019456, 0.078139, 0.10409, 0.0056779, 0.0056779, 0.068135, 0.10004, 0.63728, 0.0010815, 0.99934, 1.0005, 0.99995, 0.0027853, 0.99713, 0.042262, 0.036225, 0.92072, 1.0001, 0.062805, 0.39243, 0.53993, 0.0048642, 0.99883, 0.9907, 0.0085405, 0.019092, 0.98092, 0.1092, 0.057271, 0.022909, 0.81058, 0.7198, 0.02198, 0.25344, 0.0047735, 0.82882, 0.088486, 0.082587, 0.98472, 0.015111, 0.99917, 0.99903, 0.99992, 0.99992, 1, 1, 0.94611, 0.030492, 0.023522, 0.044029, 0.0023173, 0.023173, 0.0057933, 0.078788, 0.0023173, 0.66043, 0.037077, 0.0092692, 0.07763, 0.027808, 0.031284, 0.99912, 0.99963, 0.98326, 0.018209, 0.11485, 0.055644, 0.55501, 0.12199, 0.070268, 0.031389, 0.0017835, 0.049224, 0.011603, 0.090804, 0.89745, 0.99992, 0.99917, 0.4387, 0.062073, 0.48659, 0.012554, 0.82434, 0.17584, 0.062295, 0.34608, 0.0049836, 0.011905, 0.038207, 0.0013843, 0.12293, 0.3112, 0.012736, 0.017719, 0.052328, 0.01855, 0.012186, 0.98706, 0.99912, 1.0003, 0.051033, 0.11387, 0.0070456, 0.043226, 0.0039989, 0.037132, 0.011235, 0.73236, 0.061174, 0.080663, 0.00054137, 0.12235, 0.73517, 0.022919, 0.060839, 0.75133, 0.0041671, 0.10293, 0.051255, 0.0066673, 0.0098916, 0.98916, 0.0010675, 0.033093, 0.95757, 0.0085402, 0.99867, 1.0001, 0.043197, 0.00024544, 0.080012, 0.0017181, 0.0080994, 0.034607, 0.065531, 0.00024544, 0.016935, 0.016935, 0.726, 0.0063813, 0.00024544, 0.042555, 0.040234, 0.91726, 0.19836, 0.031933, 0.77014, 1.0012, 0.99984, 0.041719, 0.036156, 0.80471, 0.048209, 0.0046354, 0.05748, 0.0064896, 0.022526, 0.023427, 0.014417, 0.0027031, 0.039646, 0.0045052, 0.83887, 0.021625, 0.00090104, 0.0099114, 0.019823, 0.10441, 0.87705, 0.018318, 0.46374, 0.53638, 0.17962, 0.0061939, 0.81347, 0.007047, 0.046275, 0.46487, 0.031946, 0.22621, 0.0096309, 0.11604, 0.026544, 0.0068121, 0.056846, 0.0082215, 0.034368, 0.13429, 0.018457, 0.47075, 0.0046672, 0.0099709, 0.17629, 0.018669, 0.033943, 0.086556, 0.0053036, 0.0065765, 0.035618, 0.42325, 0.54075, 0.00046257, 0.99867, 1.0005, 1.0005, 0.99867, 0.98386, 0.016307, 0.99963, 0.99883, 1.0015, 0.048719, 0.94694, 0.0042533, 0.99973, 0.016341, 0.0067288, 0.22253, 0.14996, 0.5335, 0.024032, 0.025473, 0.021628, 0.10252, 0.88164, 0.020503, 0.99903, 1.0015, 0.99855, 0.97946, 0.019111, 1.0001, 0.91965, 0.080331, 0.87828, 0.12185, 0.99924, 0.92552, 0.048712, 0.0066859, 0.012417, 0.007641, 1.0001, 0.99994, 0.017939, 0.014514, 0.24364, 0.041911, 0.22277, 0.35029, 0.016471, 0.0071755, 0.0032616, 0.067352, 0.012231, 0.0022831, 0.016034, 0.8853, 0.02176, 0.048102, 0.028632, 0.15627, 0.052583, 0.00098286, 0.52436, 0.0024572, 0.0063886, 0.018183, 0.01376, 0.025554, 0.098778, 0.014251, 0.04128, 0.011303, 0.010811, 0.0024572, 0.00049143, 0.00049143, 0.019657, 0.2743, 0.11038, 0.55617, 0.052112, 0.0071061, 0.33888, 0.070581, 0.0030382, 0.0044405, 0.22016, 0.017996, 0.010517, 0.19632, 0.041133, 0.050715, 0.023137, 0.013321, 0.0091147, 0.00070113, 0.87524, 0.0028982, 0.10288, 0.018838, 0.99999, 0.99903, 0.068134, 0.030472, 0.058205, 0.0075324, 0.035265, 0.065052, 0.0030814, 0.040743, 0.062313, 0.13182, 0.0010271, 0.0095867, 0.048276, 0.048276, 0.30849, 0.010271, 0.02157, 0.03595, 0.014038, 1.0001, 0.99995, 0.00083682, 0.16318, 0.05523, 0.77322, 0.0075314, 0.021752, 0.045609, 0.057538, 0.014735, 0.0056135, 0.028067, 0.71501, 0.042803, 0.050521, 0.0077185, 0.011227, 0.078055, 0.00048937, 0.074874, 0.046001, 0.036948, 0.00024469, 0.36801, 0.056523, 0.076587, 0.040373, 0.038905, 0.034256, 0.14143, 0.0066066, 0.00073406, 0.0034648, 0.00069297, 0.82602, 0.14968, 0.0090086, 0.010395, 0.99917, 0.97774, 0.022607, 0.99973, 0.0064571, 0.049351, 0.0071489, 0.012914, 0.0069183, 0.077255, 0.090861, 0.69299, 0.056038, 0.025457, 0.017347, 0.12819, 0.33004, 0.010138, 0.093042, 0.022303, 0.063079, 0.00022528, 0.14824, 0.15094, 0.0049562, 0.0060826, 0.98943, 0.010415, 1.0028, 0.8226, 0.02748, 0.06153, 0.020908, 0.01135, 0.010156, 0.019714, 0.026882, 0.00042226, 0.052994, 0.18389, 0.2485, 0.077063, 0.030192, 0.32641, 0.0040115, 0.0069673, 0.046027, 0.023013, 0.00042226, 1.0009, 1.0009, 0.003459, 0.0049963, 0.065528, 0.12318, 0.079748, 0.49617, 0.073983, 0.026134, 0.038625, 0.088011, 0.4831, 0.045156, 0.27426, 0.011289, 0.043164, 0.045488, 0.097617, 1.0015, 0.95386, 0.027064, 0.0044186, 0.014913, 0.99912, 0.061525, 0.07178, 0.026606, 0.37941, 0.0063743, 0.16324, 0.077045, 0.02134, 0.013026, 0.0088685, 0.0013857, 0.02716, 0.024388, 0.023834, 0.023557, 0.060694, 0.0096999, 0.056739, 0.92753, 0.015603, 0.0027917, 0.26614, 0.023078, 0.018425, 0.0201, 0.0072584, 0.028848, 0.0011167, 0.025684, 0.00037223, 0.21329, 0.0014889, 0.0061418, 0.10664, 0.010795, 0.24269, 0.014331, 0.010795, 0.90265, 0.096637, 1.0005, 0.99984, 0.059187, 0.013946, 0.2228, 0.47757, 0.048982, 0.0074834, 0.060547, 0.0027212, 0.024491, 0.069731, 0.012245, 0.018763, 0.06807, 0.015708, 0.00043635, 0.068943, 0.011345, 0.027054, 0.0043635, 0.0056725, 0.075052, 0.044507, 0.037526, 0.09556, 0.055416, 0.0069816, 0.46471, 0.52288, 0.1135, 0.013775, 0.0055098, 0.0022039, 0.043528, 0.058955, 0.059506, 0.0044079, 0.10799, 0.023141, 0.04463, 0.020344, 0.96486, 0.0155, 0.99992, 1.0005, 0.06153, 0.010255, 0.92295, 0.99994, 0.98541, 0.014522, 0.99883, 0.099387, 0.048786, 0.20013, 0.011572, 0.078511, 0.035852, 0.04924, 0.0054458, 0.0061266, 0.0068073, 0.13501, 0.020649, 0.0011346, 0.010892, 0.0081688, 0.026322, 0.18652, 0.060358, 0.0088495, 0.0055682, 0.09061, 0.54366, 0.14275, 0.030372, 0.002531, 0.10833, 0.002531, 0.012149, 0.05062, 0.01063, 0.99397, 0.0017171, 0.0042927, 0.99912, 0.047763, 0.13135, 0.00032272, 0.069062, 0.43535, 0.00032272, 0.013877, 0.0142, 0.039695, 0.021622, 0.013232, 0.042599, 0.015168, 0.028399, 0.015168, 0.0090362, 0.00064544, 0.017104, 0.0029045, 0.013232, 0.014845, 0.053894, 0.023993, 0.21343, 0.0017906, 0.27431, 0.46411, 0.01146, 0.0021487, 0.0089528, 0.10694, 0.011514, 0.031544, 0.0033122, 0.00015772, 0.84302, 0.0036276, 0.39608, 0.14102, 0.46302, 1.0003, 1.0053, 0.034295, 0.010322, 0.50576, 0.0053273, 0.012652, 0.13352, 0.0023307, 0.057602, 0.0066592, 0.0056603, 0.007658, 0.066592, 0.0023307, 0.00033296, 0.033962, 0.019978, 0.053273, 0.00066592, 0.018313, 0.0053273, 0.017647, 0.11591, 0.28082, 0.076479, 0.52699, 0.99973, 0.046713, 0.049726, 0.021096, 0.88226, 0.0041519, 0.0086003, 0.0062278, 0.013938, 0.00059312, 0.45641, 0.0026691, 0.0062278, 0.030249, 0.031139, 0.030842, 0.032325, 0.052491, 0.017794, 0.025801, 0.044188, 0.020759, 0.17675, 0.020463, 0.01809, 0.017191, 0.049618, 0.073451, 0.026177, 0.00039069, 0.40515, 0.0168, 0.0019535, 0.0066418, 0.005079, 0.074232, 0.033209, 0.1008, 0.083218, 0.0039069, 0.00078139, 0.031646, 0.054697, 0.014456, 0.70156, 0.1964, 0.016973, 0.084866, 0.31646, 0.61526, 0.056377, 0.012027, 1.0003, 0.057626, 0.027182, 0.010601, 0.055179, 0.84346, 0.0057082, 0.99945, 0.99995, 0.99995, 0.99419, 1.0002, 1, 0.036924, 0.059187, 0.12869, 0.000543, 0.015747, 0.018462, 0.012489, 0.11186, 0.01086, 0.024978, 0.45775, 0.034209, 0.073848, 0.006516, 0.008688, 0.025214, 0.051193, 0.0045844, 0.20095, 0.70447, 0.012225, 0.0022922, 1.0012, 0.032803, 0.96652, 0.052536, 0.01299, 0.056577, 0.058309, 0.0046186, 0.034351, 0.047629, 0.01068, 0.072742, 0.0034639, 0.0072165, 0.010103, 0.50515, 0.088041, 0.0092371, 0.026557, 1.0002, 1.0002, 0.99995, 0.99934, 0.096494, 0.049263, 0.0096494, 0.21, 0.1389, 0.012189, 0.095986, 0.019299, 0.07618, 0.03682, 0.01549, 0.023616, 0.023108, 0.0027933, 0.023362, 0.0093955, 0.15769, 0.018898, 0.96942, 0.0053046, 0.0066308, 0.076056, 0.087757, 0.83662, 0.90977, 0.0067966, 0.036896, 0.034954, 0.011651, 0.55497, 0.004159, 0.24876, 0.008838, 0.015336, 0.018456, 0.084481, 0.010398, 0.016376, 0.0036392, 0.0025994, 0.031713, 0.99883, 0.47813, 0.00042052, 0.23002, 0.021026, 0.032801, 0.025231, 0.00084104, 0.013457, 0.01598, 0.0016821, 0.04836, 0.011354, 0.00084104, 0.042052, 0.057191, 0.0012616, 0.0088309, 0.0012616, 0.0096719, 1.0005, 0.010524, 0.0010524, 0.089458, 0.11156, 0.078933, 0.027364, 0.019996, 0.092615, 0.56832, 1.0001, 0.060788, 0.60991, 0.03546, 0.015197, 0.029888, 0.0086117, 0.0091183, 0.11246, 0.010638, 0.047111, 0.016717, 0.03394, 0.0015197, 0.0086117, 0.042063, 0.028884, 0.12254, 0.00028042, 0.0014021, 0.015143, 0.20835, 0.020751, 0.18087, 0.01991, 0.022153, 0.016825, 0.084127, 0.001963, 0.021873, 0.0044868, 0.022714, 0.041783, 0.14358, 0.99995, 0.82872, 0.10381, 0.068016, 0.99867, 0.021015, 0.12259, 0.032106, 0.0015567, 0.424, 0.15742, 0.22435, 0.01401, 0.0029188, 0.44692, 0.033257, 0.09066, 0.021412, 0.059225, 0.083371, 0.03189, 0.010478, 0.22278, 1.0003, 0.069085, 0.05605, 0.013904, 0.13165, 0.04345, 0.0095589, 0.022594, 0.015642, 0.013904, 0.059092, 0.021725, 0.46708, 0.031718, 0.036498, 0.007821, 1.0053, 1, 0.0080049, 0.020679, 0.036022, 0.032687, 0.0066707, 0.021346, 0.82717, 0.032019, 0.0040024, 0.0020012, 0.0080049, 1.0001, 0.059944, 0.14116, 0.012891, 0.056399, 0.012569, 0.10635, 0.011602, 0.088627, 0.020304, 0.48987, 1.0004, 0.026334, 0.97434, 0.036, 0.00045, 0.12442, 0.30487, 0.15547, 0.30352, 0.0027, 0.0018, 0.049275, 0.005175, 0.011025, 0.005175, 0.027259, 0.010358, 0.2148, 0.058879, 0.0010903, 0.00054517, 0.68801, 1, 0.85633, 0.016764, 0.010059, 0.082481, 0.0040235, 0.030176, 0.05493, 0.92678, 0.01831, 0.78564, 0.1212, 0.073245, 0.017439, 0.0017439, 1.0015, 0.98365, 0.016237, 0.02042, 0.049106, 0.77937, 0.06199, 0.089217, 0.99903, 0.24744, 0.07321, 0.65562, 0.023722, 0.015811, 0.57026, 0.050666, 0.00071867, 0.022279, 0.001078, 0.14733, 0.030903, 0.016889, 0.002156, 0.13188, 0.010061, 0.99984, 1.0004, 0.99984, 0.0044895, 0.0022447, 0.21942, 0.049384, 0.043211, 0.020764, 0.028059, 0.015713, 0.089229, 0.0033671, 0.020764, 0.024131, 0.47252, 0.0011224, 0.0056119, 1, 1.0015, 1.0005, 1.0005, 0.99903, 1, 1.0002, 0.99994, 1.0003, 0.99994, 1.0003, 0.99855, 0.99995, 1.0053, 0.24498, 0.047881, 0.010227, 0.0041838, 0.56341, 0.0027892, 0.08507, 0.028357, 0.0041838, 0.0092972, 1.0003, 0.99975, 0.99994, 1.0003, 0.19154, 0.62726, 0.12892, 0.0024196, 0.0046456, 0.0025164, 0.0024196, 0.040262, 0.39626, 0.083833, 0.51527, 0.0044984, 1.0002, 1.0005, 1.0001, 1.0004, 0.087104, 0.46916, 0.028114, 0.09087, 0.19705, 0.0080327, 0.032633, 0.038155, 0.034139, 0.0060245, 0.0032633, 0.0052715, 0.99917, 0.010439, 0.010575, 0.11307, 0.048536, 0.71909, 0.0094902, 0.078904, 0.0098969, 0.99994, 0.93413, 0.017867, 0.048079, 0.99984, 1.0015, 0.015848, 0.047822, 0.1874, 0.034754, 0.53633, 0.010009, 0.0027803, 0.040037, 0.022521, 0.10232, 1.0009, 0.01821, 0.02428, 0.19338, 0.029483, 0.73448, 0.9991, 0.023361, 0.001797, 0.9614, 0.013478, 0.99963, 0.99999, 0.031429, 0.86544, 0.043182, 0.011243, 0.0022997, 0.012265, 0.034239, 0.75653, 0.0076962, 0.17778, 0.052334, 0.0061569, 0.99984, 0.071281, 0.02592, 0.90397, 0.81923, 0.17385, 0.0071445, 1.0015, 0.89746, 0.10175, 0.99924, 0.99642, 0.0042043, 0.1573, 0.017383, 0.0002146, 0.11546, 0.037126, 0.010945, 0.049788, 0.59445, 0.0066527, 0.0072965, 0.0032191, 1.0002, 1, 0.052648, 0.026929, 0.022391, 0.036612, 0.08684, 0.014524, 0.0042361, 0.20575, 0.2115, 0.067777, 0.026324, 0.002118, 0.0075644, 0.23541, 0.067039, 0.009577, 0.92258, 0.99924, 0.99903, 0.089977, 0.90999, 0.99934, 1.0009, 1.0001, 0.66819, 0.32043, 0.00015525, 0.011333, 0.99973, 0.083399, 0.61919, 0.013611, 0.017076, 0.0071768, 0.034399, 0.089091, 0.035142, 0.092556, 0.0081667, 0.00073512, 0.18893, 0.05734, 0.56311, 0.099977, 0.01654, 0.019848, 0.047048, 0.0062486, 0.091467, 0.022087, 0.014552, 0.72628, 0.13122, 0.0041576, 0.010394, 0.073653, 0.016879, 0.89458, 0.01381, 1.0003, 1.0003, 0.99963, 0.086561, 0.28497, 0.006565, 0.080725, 0.51474, 0.0046198, 0.0068081, 0.014589, 0.99999, 0.028071, 0.19275, 0.77943, 0.99912, 0.99975, 1.0002, 1.0001, 1.0001, 0.027806, 0.12808, 0.024436, 0.81943, 0.027298, 0.095543, 0.089742, 0.63911, 0.13581, 0.011943, 0.99934, 0.99167, 0.00757, 0.99984, 0.02481, 0.079082, 0.89161, 0.0015506, 0.0015506, 0.0031012, 0.99924, 0.032497, 0.96753, 0.99945, 0.99867, 1.0003, 0.99999, 0.012903, 0.11723, 0.013272, 0.053087, 0.031705, 0.0073732, 0.0099538, 0.021751, 0.44644, 0.018064, 0.18285, 0.072626, 0.0088478, 0.0036866, 0.64868, 0.21824, 0.029668, 0.020114, 0.031177, 0.015086, 0.0075428, 0.029668, 1.0001, 0.96629, 0.033637, 0.98308, 0.015495, 0.99995, 0.11822, 0.11229, 0.00069744, 0.034174, 0.00034872, 0.011856, 0.029641, 0.027897, 0.004882, 0.0076718, 0.016041, 0.017436, 0.025805, 0.37662, 0.025456, 0.049867, 0.038359, 0.010113, 0.0062769, 0.042195, 0.020226, 0.023364, 0.99945, 1.0015, 0.024956, 0.9708, 0.0041594, 0.99992, 1.0053, 1, 0.02125, 0.01275, 0.00425, 0.95624, 0.00425, 1.0015, 1.0002, 0.99934, 1.0009, 0.99963, 0.99934, 0.99934, 0.030941, 0.038081, 0.11424, 0.48459, 0.04903, 0.0033321, 0.015709, 0.0023801, 0.012376, 0.010472, 0.0042842, 0.030465, 0.049982, 0.068547, 0.024753, 0.025705, 0.022373, 0.0090443, 0.0033321, 0.99903, 1.0003, 0.99855, 0.99855, 0.99973, 0.99973, 0.02876, 0.092762, 0.049216, 0.008304, 0.49581, 0.093774, 0.03909, 0.023899, 0.017216, 0.037469, 0.023292, 0.019241, 0.013772, 0.0099243, 0.0064812, 0.030583, 0.003038, 0.0068862, 0.99917, 0.99989, 1.0004, 1.0003, 0.99867, 1.0002, 0.001114, 0.098406, 0.01671, 0.030821, 0.09952, 0.75346, 0.12455, 0.026892, 0.55568, 0.0059446, 0.18117, 0.026043, 0.027175, 0.010191, 0.011323, 0.030855, 0.99912, 0.044266, 0.94375, 0.010624, 0.99855, 0.98714, 0.013498, 1.0004, 1.0004, 1.0001, 1.0005, 0.99934, 1.0002, 0.99963, 0.029358, 0.011961, 0.03262, 0.009786, 0.01631, 0.018485, 0.027183, 0.80137, 0.053279, 0.04046, 0.0016858, 0.0022478, 0.62544, 0.0022478, 0.011239, 0.015734, 0.030907, 0.01461, 0.25512, 0.99903, 1.0005, 0.06732, 0.8029, 0.098888, 0.00076068, 0.017496, 0.0015214, 0.01141, 1.0005, 0.99984, 0.99934, 0.99934, 0.79366, 0.12092, 0.085516, 1.0002, 1.0001, 0.047603, 0.95359, 0.028066, 0.82931, 0.0088049, 0.0066037, 0.079794, 0.047326, 0.0078735, 0.10166, 0.08244, 0.60927, 0.093324, 0.00023157, 0.01181, 0.0097261, 0.018757, 0.016442, 0.012968, 0.035199, 0.99917, 0.015229, 0.98486, 0.99992, 0.99992, 0.99994, 1.0053, 0.99917, 0.079637, 0.1501, 0.091703, 0.3574, 0.13635, 0.066847, 0.00048265, 0.0045852, 0.028959, 0.083739, 0.039538, 0.0094892, 0.02056, 0.058517, 0.015815, 0.82872, 0.018188, 0.0079077, 0.074799, 0.9253, 1.0012, 1.0009, 0.99975, 1.0009, 0.0018068, 0.83202, 0.012647, 0.088531, 0.022585, 0.036135, 0.0063237, 0.052383, 0.94814, 0.99995, 0.96422, 0.018543, 0.016997, 0.99883, 0.17369, 0.053879, 0.71956, 0.052815, 0.0056927, 0.011385, 0.9336, 0.051234, 0.99867, 0.058132, 0.94174, 0.031378, 0.009949, 0.95893, 0.98886, 0.010669, 0.091642, 0.0083975, 0.030669, 0.029209, 0.84011, 0.025668, 0.00071299, 0.044918, 0.077716, 0.0057039, 0.02852, 0.81637, 0.0052952, 0.99443, 0.99917, 0.32631, 0.078265, 0.11949, 0.27683, 0.0016221, 0.054339, 0.00013517, 0.064072, 0.013788, 0.011219, 0.054204, 1.0002, 0.95699, 0.0435, 1.0005, 0.91808, 0.027779, 0.054168, 0.81294, 0.11498, 0.00047708, 0.0052479, 0.065837, 0.99917, 0.061286, 0.33227, 0.56708, 0.038888, 0.00024613, 0.02321, 0.0002938, 0.52913, 0.074331, 0.079914, 0.20331, 0.0067574, 0.018509, 0.06493, 0.084237, 0.74249, 0.028159, 0.0055356, 0.1006, 0.019495, 0.0055356, 0.013719, 0.99973, 0.024011, 0.97695, 1.0003, 0.99963, 0.99963, 0.032431, 0.14695, 0.0035471, 0.24577, 0.46518, 0.02331, 0.032938, 0.0091212, 0.021283, 0.011148, 0.0081077, 0.021938, 0.35842, 0.080045, 0.1506, 0.268, 0.036762, 0.084196, 0.047716, 0.91926, 0.0068166, 0.0077903, 0.0058428, 0.010712, 0.0019476, 0.034851, 0.96422, 0.0081603, 0.012649, 0.0102, 0.14158, 0.021217, 0.015913, 0.036314, 0.051818, 0.022033, 0.0097924, 0.42352, 0.042434, 0.019177, 0.1628, 0.013873, 0.0073443, 0.00040802, 0.039073, 0.50696, 0.15332, 0.0014838, 0.056384, 0.087049, 0.0019784, 0.06677, 0.00049459, 0.020278, 0.066276, 0.0023858, 0.97422, 0.023858, 0.9467, 0.010454, 0.042979, 1.0004, 1.0003, 0.96931, 0.031045, 1.0004, 0.26483, 0.053956, 0.49402, 0.18711, 0.59101, 0.0053164, 0.27269, 0.12184, 0.0093038, 0.91108, 0.088927, 0.033197, 0.025341, 0.099083, 0.0020273, 0.032943, 0.066647, 0.061578, 0.046881, 0.019259, 0.013684, 0.0093761, 0.46779, 0.0070955, 0.083625, 0.0048148, 0.018245, 0.0045614, 0.0035477, 0.99963, 1.0001, 0.99995, 0.039984, 0.17084, 0.78878, 1.0002, 0.86809, 0.12352, 0.0069586, 0.99912, 0.9901, 0.010039, 1.0001, 0.0020095, 0.0010047, 0.0010047, 0.032152, 0.95048, 0.013062, 0.85116, 0.098187, 0.0090356, 0.040961, 1.0001, 0.23847, 0.017435, 0.0059102, 0.00059102, 0.021277, 0.042849, 0.027482, 0.30378, 0.070922, 0.04935, 0.013889, 0.049941, 0.074763, 0.015071, 0.013593, 0.0082742, 0.047281, 0.99999, 1.0002, 0.99973, 0.99924, 0.86082, 0.12135, 0.017904, 0.99975, 1.0003, 1.0015, 0.12624, 0.021783, 0.82528, 0.015347, 0.011387, 1.0003, 1.0005, 1.0015, 0.99917, 1.0002, 1.0002, 1.0003, 0.99867, 0.99945, 0.99963, 0.99867, 0.9782, 0.022218, 0.99855, 0.037634, 0.0057898, 0.91769, 0.039564, 0.99867, 0.99924, 0.99973, 0.99855, 0.99912, 1.0009, 0.99999, 0.21051, 0.0018465, 0.0095404, 0.02739, 0.11818, 0.061243, 0.0067706, 0.44994, 0.020927, 0.092327, 0.001231, 1.0025, 1.0001, 0.99999, 0.99129, 0.0088115, 0.73681, 0.10225, 0.13054, 0.030459, 1, 1.0007, 0.99924, 1.0031, 0.99992, 0.99934, 0.073668, 0.82859, 0.052971, 0.039991, 0.0021048, 0.0028064, 0.045657, 0.0022332, 0.21861, 0.23225, 0.092306, 0.40049, 0.0084365, 0.00024813, 1.0003, 0.99934, 0.99934, 1.0003, 0.99994, 0.99963, 0.99992, 0.99912, 1.0002, 0.99867, 0.99903, 1.0015, 1.0002, 0.99975, 0.99906, 0.99867, 0.99419, 1.0003, 1.0003, 1.0015, 1.0003, 0.99867, 0.99867, 0.99995, 0.083807, 0.081572, 0.81349, 0.021231, 0.99945, 0.99867, 0.0087715, 0.0042883, 0.0044832, 0.10116, 0.00077969, 0.029823, 0.011111, 0.031967, 0.1766, 0.036061, 0.042493, 0.00038984, 0.43175, 0.0046781, 0.07485, 0.0093563, 0.005068, 0.014034, 0.00019492, 0.011695, 1.0002, 0.0718, 0.32401, 0.14573, 0.057196, 0.054154, 0.027685, 0.016124, 0.0091271, 0.12443, 0.00030424, 0.015516, 0.11318, 0.033466, 0.0069974, 1.0001, 1.0001, 0.016621, 0.25667, 0.00023744, 0.056511, 0.014009, 0.36946, 0.025406, 0.0078356, 0.015909, 0.0054611, 0.00071232, 0.027543, 0.024219, 0.022557, 0.023982, 0.055799, 0.0061735, 0.037278, 0.0033242, 0.030392, 0.99934, 0.19111, 0.029801, 0.064136, 0.0071262, 0.032392, 0.5986, 0.075797, 0.99975, 1.0015, 1.0012, 1.0002, 0.99994, 0.027398, 0.012019, 0.0067202, 0.61839, 0.070045, 0.094083, 0.0037478, 0.16749, 0.99883, 0.99883, 0.99924, 0.99924, 1.0009, 1.0002, 0.99924, 1.0012, 0.99945, 1.0002, 0.99855, 0.010575, 0.047587, 0.91826, 0.024675, 0.99855, 0.99973, 0.99867, 0.99419, 1.0001, 0.91596, 0.043429, 0.041455, 1.0003, 1.0003, 0.13475, 0.0022252, 0.023736, 0.38422, 0.10805, 0.17357, 0.072938, 0.0032142, 0.034615, 0.01706, 0.037829, 0.0074175, 0.99912, 0.0076418, 0.061467, 0.095689, 0.027577, 0.38641, 0.0019935, 0.4193, 0.023481, 0.012661, 0.01151, 0.06722, 0.086787, 0.12615, 0.2965, 0.040746, 0.16966, 0.00092082, 0.043509, 0.017265, 0.0016114, 0.014503, 0.00092082, 0.03315, 0.0034531, 0.031078, 0.012201, 0.0064457, 0.012225, 0.081132, 0.073908, 0.11475, 0.70129, 0.016671, 1.0005, 0.026029, 0.078712, 0.00012514, 0.41346, 0.016393, 0.012138, 0.30321, 0.0062569, 0.0032536, 0.011388, 0.00037541, 0.073206, 0.046551, 0.00050055, 0.0083843, 0.99917, 0.87463, 0.047578, 0.022271, 0.033406, 0.0010123, 0.012148, 0.0091107, 1.0012, 0.049393, 0.1959, 0.58171, 0.00033374, 0.064078, 0.023028, 0.024029, 0.04105, 0.020692, 1.0002, 0.92818, 0.069734, 0.40715, 0.39084, 0.1937, 0.0077252, 0.00028612, 0.048471, 0.002473, 0.17484, 0.080374, 0.41077, 0.072955, 0.13626, 0.021268, 0.03759, 0.015086, 0.048314, 0.88507, 0.066523, 0.94314, 0.056907, 0.98818, 0.012619, 1.0015, 0.9008, 0.0018689, 0.026164, 0.037378, 0.031771, 0.7896, 0.02758, 0.061718, 0.047445, 0.050338, 0.00038574, 0.0054003, 0.0077147, 0.0098363, 0.57584, 0.030173, 0.39429, 1, 0.017736, 0.91872, 0.06385, 0.99855, 0.012513, 0.49657, 0.00020856, 0.0062567, 0.063401, 0.42107, 0.9806, 0.024515, 0.99912, 0.99855, 0.97977, 0.022487, 0.99912, 0.76927, 0.16711, 0.010358, 0.042124, 0.011049, 0.31753, 0.0018093, 0.049756, 0.085037, 0.071467, 0.47404, 0.99995, 0.07626, 0.21805, 0.036381, 0.27822, 0.040812, 0.01889, 0.029618, 0.011427, 0.041512, 0.044077, 0.033116, 0.062034, 0.0069964, 0.081391, 0.0055971, 0.0095617, 0.0062967, 0.99883, 0.99975, 0.99975, 0.99984, 0.99995, 0.0075918, 0.021691, 0.15834, 0.028198, 0.78412, 0.94306, 0.012009, 0.045033, 1.0005, 0.0075597, 0.012334, 0.4309, 0.055305, 0.028249, 0.048939, 0.039788, 0.048541, 0.017905, 0.042175, 0.18899, 0.0039788, 0.025066, 0.00039788, 0.014324, 0.011538, 0.023077, 0.99984, 0.99883, 0.071701, 0.099584, 0.82934, 0.99883, 0.014506, 0.10983, 0.87657, 0.99994, 0.1658, 0.016993, 0.014237, 0.016993, 0.044549, 0.015615, 0.58006, 0.014697, 0.016993, 0.11298, 0.0013778, 0.15474, 0.064529, 0.77748, 0.003759, 0.99963, 0.99973, 0.019388, 0.29525, 0.010525, 0.068412, 0.012741, 0.025204, 0.19748, 0.31242, 0.0011079, 0.0058164, 0.0088631, 0.0072013, 0.0013849, 0.018557, 0.015787, 1.0005, 0.049685, 0.24398, 0.044133, 0.28368, 0.040248, 0.017764, 0.21067, 0.029145, 0.013046, 0.0091598, 0.05829, 0.99975, 0.80426, 0.11172, 0.017786, 0.055025, 0.011116, 0.0099562, 0.94228, 0.019912, 0.016357, 0.011379, 1.0004, 0.86423, 0.1335, 0.99924, 0.99945, 1.0002, 0.99867, 1.0012, 0.99984, 1.0015, 1.0003, 1.0002, 0.0074684, 0.065348, 0.024272, 0.90367, 1.0004, 0.99945, 0.99999, 1.0003, 0.06057, 0.93987, 0.99945, 0.99994, 1.0012, 1.0012, 1.0002, 1.0004, 0.013892, 0.98636, 0.0018955, 0.11436, 0.20281, 0.015164, 0.017059, 0.060023, 0.019586, 0.032223, 0.47576, 0.056232, 0.0050546, 1.0004, 0.99975, 0.020996, 0.064987, 0.18596, 0.0039992, 0.004999, 0.0069985, 0.017496, 0.12197, 0.083483, 0.12897, 0.35893, 0.0014997, 0.99975, 0.99945, 1, 1.0001, 1.0003, 1.0009, 0.0075573, 0.63985, 0.017004, 0.29725, 0.030229, 0.0088168, 0.11753, 0.88233, 1.0002, 0.99975, 0.022448, 0.077755, 0.034486, 0.025701, 0.01464, 0.012363, 0.29183, 0.011712, 0.48833, 0.008784, 0.011387, 0.99992, 0.46477, 0.099127, 0.0074813, 0.11128, 0.16833, 0.00046758, 0.092113, 0.016833, 0.0032731, 0.036004, 0.99945, 1.0001, 1.0002, 1.0004, 0.99999, 0.99917, 0.99984, 0.99973, 0.99973, 0.99973, 0.99995, 0.99992, 1.0001, 1.0012, 1.0001, 0.99994, 0.99924, 1.0012, 0.99994, 0.99994, 0.99473, 0.00041795, 0.0045975, 0.99945, 1.0003, 1.0003, 0.99999, 0.99975, 0.019267, 0.041498, 0.0074103, 0.93222, 0.2772, 0.04763, 0.02953, 0.64491, 0.99917, 0.99963, 0.99903, 0.0087296, 0.023071, 0.95153, 0.016836, 0.99883, 1, 1.0001, 0.059038, 0.94124, 1.0053, 0.11642, 0.75915, 0.12122, 0.0036007, 0.0013583, 0.79732, 0.073348, 0.054332, 0.029883, 0.044824, 0.94515, 0.031198, 0.016878, 0.0066488, 1.0004, 0.99945, 1.0003, 0.03274, 0.10874, 0.008185, 0.85124, 0.99945, 0.96267, 0.03714, 1.0009, 0.88582, 0.029987, 0.002399, 0.081565, 0.97519, 0.0082179, 0.013697, 0.0027393, 0.99975, 0.52629, 0.011265, 0.031542, 0.090119, 0.036048, 0.013518, 0.13112, 0.019376, 0.056775, 0.018024, 0.020277, 0.045059, 0.99903, 0.03329, 0.89443, 0.016516, 0.055741, 0.99999, 0.99975, 0.99912, 0.99999, 0.99963, 0.99992, 1.0025, 0.99992, 0.99975, 0.039489, 0.31222, 0.0084242, 0.59128, 0.044754, 0.0042121, 0.88522, 0.0051566, 0.06188, 0.04641, 0.10291, 0.088008, 0.13769, 0.02626, 0.08162, 0.013485, 0.004495, 0.036906, 0.010646, 0.25243, 0.065533, 0.10078, 0.025314, 0.0035487, 0.014195, 0.016087, 0.0070974, 0.0016561, 0.010883, 0.019847, 0.94046, 0.040458, 0.9951, 0.0050556, 0.023548, 0.092863, 0.022978, 0.0049375, 0.044058, 0.78506, 0.011394, 0.015192, 0.044393, 0.93334, 0.021655, 0.019595, 0.00089068, 0.15587, 0.0062347, 0.79805, 0.019595, 0.00089068, 1.0005, 0.0039399, 0.17598, 0.8195, 0.99912, 0.054598, 0.00066582, 0.28364, 0.03196, 0.53932, 0.025967, 0.021972, 0.041947, 1, 1.0009, 1.0005, 0.10303, 0.25015, 0.2396, 0.40206, 0.0047921, 0.029085, 0.146, 0.022208, 0.0081668, 0.040691, 0.071925, 0.0030088, 0.018196, 0.21449, 0.0068773, 0.0083101, 0.0088832, 0.10832, 0.2695, 0.021635, 0.022495, 0.99994, 0.069513, 0.0053472, 0.57348, 0.047456, 0.0073523, 0.0060156, 0.18715, 0.0127, 0.068845, 0.018047, 0.00066839, 0.003342, 0.16046, 0.74488, 0.064507, 0.0064186, 0.023428, 1.0002, 0.99924, 0.99999, 0.99973, 0.99945, 1.0042, 1.0001, 0.013102, 0.051178, 0.015149, 0.040942, 0.045036, 0.0012283, 0.59039, 0.033573, 0.023746, 0.03521, 0.030707, 0.011873, 0.0073696, 0.010645, 0.040123, 0.04217, 0.007779, 0.99924, 0.99994, 0.99912, 0.99912, 1.0001, 0.87245, 0.009088, 0.11834, 0.1953, 0.80482, 1.0053, 0.043505, 0.03988, 0.82297, 0.0072508, 0.032629, 0.0036254, 0.032629, 0.018127, 0.0048838, 0.057544, 0.0074319, 0.017624, 0.91264, 0.99997, 0.053065, 0.94669, 1.0009, 0.99924, 1.0002, 0.10508, 0.10542, 0.78946, 1.0004, 0.018788, 0.046522, 0.010288, 0.062178, 0.023261, 0.0040259, 0.05189, 0.012525, 0.012972, 0.012972, 0.027287, 0.085886, 0.0093938, 0.026392, 0.0058152, 0.52158, 0.012972, 0.0093938, 0.025945, 0.02013, 0.037353, 0.017076, 0.93596, 0.010672, 1.0002, 1, 0.99999, 0.99992, 0.99934, 1.0009, 0.011949, 0.031501, 0.92258, 0.022087, 0.011587, 0.015635, 0.10906, 0.16531, 0.047667, 0.043663, 0.027265, 0.59126, 0.99963, 1.0009, 0.99992, 0.99975, 0.99975, 0.99999, 1.0003, 0.72222, 0.065472, 0.0074247, 0.088421, 0.050623, 0.065472, 0.89688, 0.005737, 0.066932, 0.0095617, 0.019123, 0.99867, 1.0001, 1.0001, 1.0001, 0.99992, 0.99994, 0.96782, 0.03197, 0.79795, 0.15985, 0.042303, 1.0053, 1.0001, 0.023798, 0.085673, 0.50976, 0.051404, 0.31937, 0.0047596, 0.0052356, 0.99994, 0.9833, 0.016577, 0.99994, 0.96422, 0.030149, 0.0059221, 1.0001, 1.0009, 0.99992, 0.99999, 0.03, 0.062177, 0.1085, 0.032487, 0.12093, 0.0046633, 0.24016, 0.019119, 0.067617, 0.20316, 0.038239, 0.0046633, 0.018031, 0.048809, 0.0010881, 1.0003, 0.077392, 0.92261, 0.092973, 0.0077477, 0.89874, 0.99945, 1.0005, 1.0002, 0.012627, 0.016415, 0.95714, 0.012627, 1, 0.054353, 0.94706, 0.96447, 0.0097225, 0.023334, 1.0012, 0.94132, 0.050181, 0.0082423, 0.97382, 0.0062599, 0.019991, 0.015203, 0.98514, 0.02698, 0.97037, 0.0017986, 1.0001, 0.0032068, 0.99089, 0.0059385, 0.11096, 0.88919, 1.0003, 0.95974, 0.032101, 0.008231, 1.0003, 0.99992, 1.0002, 0.9111, 0.0018556, 0.087213, 0.9998, 0.99973, 1.0015, 1.0001, 0.12644, 0.0027387, 0.024877, 0.35695, 0.13306, 0.16136, 0.071664, 0.0015976, 0.015748, 0.028757, 0.023508, 0.037886, 0.0093574, 0.0061622, 0.75439, 0.24623, 0.99867, 0.99903, 1.0005, 0.99975, 0.028184, 0.070876, 0.032744, 0.036474, 0.013678, 0.061757, 0.0091185, 0.068389, 0.018237, 0.0058027, 0.070876, 0.39997, 0.086626, 0.08704, 0.0049737, 0.0053882, 0.99975, 0.99975, 0.020991, 0.97819, 0.99855, 0.99419, 0.99975, 0.27302, 0.03012, 0.032063, 0.0004858, 0.0063154, 0.10153, 0.0087444, 0.0077728, 0.54021, 0.0004858, 0.99994, 0.028299, 0.94626, 0.022993, 0.99903, 0.23843, 0.080983, 0.41666, 0.091219, 0.017461, 0.11861, 0.017461, 0.0063221, 0.0051179, 0.0072253, 0.0022036, 0.99778, 1.0003, 0.0013025, 0.049496, 0.86293, 0.059917, 0.026702, 0.99975, 0.99995, 0.96276, 0.036482, 0.053233, 0.042929, 0.058384, 0.080707, 0.0062963, 0.059529, 0.68544, 0.0060101, 0.0077273, 0.41374, 0.051391, 0.53482, 0.92608, 0.074952, 0.99995, 0.99867, 0.99992, 0.99855, 1.0005, 0.99924, 0.99903, 0.18466, 0.026042, 0.030438, 0.0084551, 0.026718, 0.086918, 0.37371, 0.15659, 0.014881, 0.091653, 1.0015, 1.0012, 0.80669, 0.19048, 0.0026497, 0.89468, 0.064267, 0.023829, 0.010109, 0.007221, 0.99419, 0.99807, 0.99995, 0.99993, 0.99975, 0.99883, 0.99419, 1.0015, 0.99924, 1.0053, 1.0004, 0.99973, 0.081185, 0.064305, 0.85445, 1.0009, 0.99474, 0.0043918, 1.0001, 0.99867, 0.99973, 1.0004, 1.0009, 0.99984, 0.060874, 0.93996, 0.99984, 0.88705, 0.11338, 1.0053, 0.031551, 0.0097918, 0.91063, 0.047871, 0.99975, 0.99945, 1.0002, 1.0001, 1.0001, 1.0002, 0.99995, 1.0018, 0.002213, 0.054218, 0.023236, 0.71036, 0.0011065, 0.094051, 0.0088519, 0.014384, 0.090732, 0.039142, 0.43277, 0.031424, 0.0099234, 0.048239, 0.040796, 0.0030322, 0.0060643, 0.00027565, 0.14279, 0.16181, 0.021225, 0.01075, 0.039142, 0.012129, 0.022974, 0.048501, 0.039141, 0.13104, 0.019571, 0.73858, 0.99999, 0.0093401, 0.19614, 0.61567, 0.002335, 0.002335, 0.0077834, 0.024129, 0.00077834, 0.077056, 0.065381, 0.011733, 0.10986, 0.87143, 0.0074664, 0.19568, 0.23019, 0.2078, 0.31842, 0.017382, 0.027654, 0.0028971, 0.99945, 0.99419, 0.010622, 0.9894, 0.003437, 0.90909, 0.087644, 0.0054312, 0.99663, 1.0002, 1, 0.023469, 0.021709, 0.032856, 0.92203, 0.99883, 1.0002, 1.0001, 0.023893, 0.28518, 0.22506, 0.02582, 0.014259, 0.0080929, 0.051255, 0.0050099, 0.063587, 0.0023123, 0.0015415, 0.023508, 0.0015415, 0.26013, 0.0092491, 0.20466, 0.0054016, 0.20246, 0.48855, 0.024207, 0.036411, 0.011203, 0.0058018, 0.021206, 1.0003, 0.028535, 0.93749, 0.001189, 0.032696, 0.99999, 0.99994, 0.99903, 1.0002, 0.050052, 0.94989, 1.0003, 1.0003, 1.001, 1.0005, 1.0012, 0.97136, 0.028569, 0.084135, 0.91634, 0.99883, 0.0097416, 0.02471, 0.07627, 0.0099792, 0.04752, 0.0066528, 0.016632, 0.019958, 0.051322, 0.030175, 0.0087912, 0.022334, 0.017107, 0.027086, 0.0014256, 0.04063, 0.01283, 0.008316, 0.023047, 0.013068, 0.51298, 0.01877, 0.0040213, 0.12265, 0.020968, 0.45182, 0.035043, 0.076692, 0.014362, 0.11604, 0.068362, 0.020968, 0.015511, 0.010053, 0.014936, 0.016372, 0.0045957, 0.0074681, 0.99924, 0.073416, 0.0078406, 0.045618, 0.0042767, 0.027798, 0.010692, 0.76552, 0.00071278, 0.03849, 0.0021383, 0.023522, 0.99867, 0.99917, 0.00077131, 0.94948, 0.0084844, 0.028538, 0.012341, 1.0003, 1.0002, 0.99945, 0.99855, 0.01546, 0.038118, 0.063174, 0.0013328, 0.014394, 0.050113, 0.089829, 0.11942, 0.35745, 0.045581, 0.013594, 0.19165, 0.98305, 0.017554, 0.11499, 0.33103, 0.023357, 0.0085341, 0.057942, 0.3773, 0.013475, 0.03234, 0.0049408, 0.035484, 0.0098932, 0.80465, 0.075848, 0.10992, 1.0002, 0.99883, 0.29945, 0.0067618, 0.69357, 1.0004, 1.0001, 0.99924, 0.99992, 1.0015, 0.02335, 0.044277, 0.06961, 0.19077, 0.00022029, 0.38242, 0.0070491, 0.056613, 0.00066086, 0.080404, 0.03084, 0.0072694, 0.1064, 0.095612, 0.0092156, 0.062205, 0.029951, 0.80291, 0.99917, 1.0003, 0.92367, 0.075977, 0.27577, 0.21244, 0.00032066, 0.031906, 0.0099404, 0.017316, 0.011223, 0.051626, 0.018438, 0.075355, 0.050504, 0.020522, 0.02421, 0.12874, 0.061406, 0.010101, 0.096562, 0.69811, 0.0097024, 0.18743, 0.0081624, 0.052846, 0.010569, 0.51789, 0.41854, 0.99917, 0.99945, 0.014656, 0.017505, 0.16773, 0.0016284, 0.027276, 0.58297, 0.14615, 0.041524, 0.99917, 0.031229, 0.59465, 0.029494, 0.023855, 0.018217, 0.12882, 0.026458, 0.057686, 0.090216, 0.99992, 0.38164, 0.0054676, 0.44725, 0.16567, 0.0032576, 0.99682, 1, 0.9776, 0.022682, 0.084062, 0.034481, 0.020058, 0.84829, 0.012621, 0.00045074, 0.079834, 0.82938, 0.03271, 0.010534, 0.034373, 0.01386, 0.019615, 0.86305, 0.11128, 0.0060045, 0.51713, 0.031847, 0.34938, 0.0012613, 0.00063064, 0.023018, 0.012613, 0.0015766, 0.027748, 0.035001, 0.99995, 0.99975, 0.99984, 0.90427, 0.095893, 1.0002, 0.99994, 0.022387, 0.22851, 0.075351, 0.6211, 0.049142, 0.0035491, 1.0053, 0.76855, 0.21283, 0.018721, 0.012316, 0.0061578, 0.20409, 0.10468, 0.67296, 1.0015, 0.039092, 0.96091, 0.80489, 0.17269, 0.0017532, 0.0011104, 0.019519, 0.19259, 0.56621, 0.0070032, 0.0052524, 0.002101, 0.10995, 0.008754, 0.1068, 0.00070032, 1.0004, 0.99992, 0.99912, 0.99999, 1.0001, 0.0099933, 0.20339, 0.034095, 0.0094055, 0.041149, 0.040561, 0.051142, 0.61077, 1.0015, 1.0001, 0.9998, 1.0004, 1.0001, 0.99999, 0.00016726, 0.0093663, 0.12126, 0.030942, 0.011206, 0.0016726, 0.17043, 0.19619, 0.018231, 0.0025088, 0.1604, 0.0040141, 0.013548, 0.25925, 0.00066902, 0.048646, 0.76554, 0.17496, 0.0042672, 0.0059741, 0.95502, 0.037179, 0.006971, 0.99984, 0.97803, 0.022228, 0.93635, 0.063914, 0.01021, 0.00021271, 0.035311, 0.014039, 0.11061, 0.0017017, 0.27823, 0.015954, 0.00042543, 0.078279, 0.0087213, 0.031482, 0.082746, 0.008934, 0.16528, 0.051051, 0.023186, 0.057007, 0.013614, 0.011912, 0.00063814, 0.99999, 0.032169, 0.04574, 0.011561, 0.91027, 0.99973, 1.0012, 0.99994, 1, 1, 1, 0.18127, 0.80489, 0.013528, 0.011704, 0.00022507, 0.52801, 0.44924, 0.0020256, 0.0090027, 0.012398, 0.14736, 0.021254, 0.11477, 0.024088, 0.039319, 0.063053, 0.00070846, 0.010981, 0.076868, 0.025859, 0.44739, 0.0063761, 0.0095642, 0.032221, 0.037255, 0.93071, 0.80149, 0.19857, 0.045117, 0.012254, 0.0094689, 0.93297, 0.99934, 0.17088, 0.00019157, 0.15689, 0.031609, 0.055363, 0.52413, 0.041187, 0.010536, 0.0095784, 1.0001, 0.034264, 0.96661, 0.015165, 0.98572, 0.06764, 0.93315, 0.99934, 0.041639, 0.14293, 0.10856, 0.045424, 0.55448, 0.10705, 0.99903, 0.13121, 0.098313, 0.77006, 0.036943, 0.96298, 0.093574, 0.88203, 0.02426, 0.99924, 0.99855, 1.0004, 0.20795, 0.035227, 0.42689, 0.031818, 0.032576, 0.13788, 0.035606, 0.076515, 0.01553, 1.0001, 0.14024, 0.0012485, 0.12318, 0.063256, 0.096548, 0.028299, 0.38203, 0.019143, 0.13359, 0.00541, 0.0066585, 1.0012, 0.0038283, 0.0071461, 0.10898, 0.20443, 0.0061252, 0.29452, 0.01225, 0.028584, 0.034199, 0.028329, 0.021694, 0.0028074, 0.16308, 0.034455, 0.0035731, 0.0043387, 0.0084222, 0.0030626, 0.018121, 0.01225, 0.46652, 0.07171, 0.29117, 0.093088, 0.076581, 0.00081182, 0.016181, 0.79636, 0.1801, 0.007035, 0.99984, 0.028469, 0.0051337, 0.12648, 0.0032669, 0.71452, 0.094273, 0.011667, 0.015868, 0.0013089, 0.99216, 0.0065446, 0.098025, 0.12122, 0.14666, 0.057618, 0.57692, 0.91761, 0.077354, 0.0049677, 0.0010518, 0.99882, 1.0053, 1.0005, 0.99975, 0.99855, 0.68548, 0.15516, 0.14184, 0.017369, 0.037586, 0.87989, 0.067162, 0.015404, 1.0001, 0.016182, 0.012136, 0.0080909, 0.91428, 0.0445, 0.0080909, 1, 0.032363, 0.95618, 0.011768, 0.017421, 0.008332, 0.022724, 0.52245, 0.016475, 0.17081, 0.18179, 0.00094681, 0.0051128, 0.0024617, 0.019126, 0.032192, 0.99994, 0.98328, 0.015859, 0.0827, 0.0037591, 0.91346, 1.0005, 1.0005, 0.17245, 0.81143, 0.01595, 0.00099685, 0.022755, 0.014055, 0.65589, 0.014055, 0.007362, 0.017401, 0.10173, 0.010039, 0.020078, 0.13519, 0.68077, 0.018709, 0.081962, 0.048108, 0.0050908, 0.10271, 0.062744, 0.038573, 0.96004, 0.016665, 0.014654, 0.36491, 0.17125, 0.094531, 0.012355, 0.25486, 0.024997, 0.038215, 0.0037353, 0.0037353, 0.61095, 0.065446, 0.00035959, 0.0010788, 0.010069, 0.014024, 0.055377, 0.0032363, 0.21, 0.029127, 0.95772, 0.0068409, 0.021243, 0.014042, 0.032167, 0.96404, 0.003899, 0.077993, 0.64418, 0.15644, 0.1212, 0.004445, 0.039482, 0.058308, 0.0041835, 0.65786, 0.00889, 0.036606, 0.037129, 0.0010459, 0.017257, 0.055955, 0.027716, 0.014119, 0.0099359, 0.013858, 0.013335, 1.0004, 0.027621, 0.28693, 0.23251, 0.0037103, 0.14635, 0.30301, 0.31233, 0.050545, 0.12319, 0.0018117, 0.059422, 0.074821, 0.14022, 0.20689, 0.027356, 0.0030798, 0.35268, 0.41355, 0.047263, 0.12843, 0.00051373, 0.057281, 0.93268, 0.015196, 0.0056987, 0.0075982, 0.0094978, 0.024694, 0.0056987, 0.15374, 0.84557, 0.36287, 0.019185, 0.084962, 0.08551, 0.025488, 0.068792, 0.0090443, 0.019185, 0.05591, 0.13594, 0.040288, 0.00082221, 0.011511, 0.03234, 0.047414, 0.5169, 0.0007432, 0.061314, 0.33147, 0.0301, 0.0003716, 0.0029728, 0.032701, 0.023411, 0.026571, 0.30383, 0.39163, 0.11514, 0.026956, 0.0057763, 0.0878, 0.0096272, 0.020795, 0.012323, 0.023016, 0.02665, 0.07995, 0.015748, 0.80676, 0.031495, 0.010902, 0.0048454, 0.99903, 0.18588, 0.36011, 0.01009, 0.0028422, 0.41638, 0.0069634, 0.010516, 0.0069634, 0.99855, 0.054529, 0.024538, 0.85746, 0.063389, 0.026394, 0.0031854, 0.12833, 0.053242, 0.096928, 0.64983, 0.041411, 0.021243, 0.51635, 0.39609, 0.066128, 0.1008, 0.89238, 0.0088941, 1.0003, 0.99945, 0.99963, 1.0002, 0.30481, 0.0028371, 0.052486, 0.028548, 0.018441, 0.13157, 0.0063834, 0.45517, 0.3896, 0.021888, 0.58847, 0.016747, 0.91273, 0.016747, 0.041868, 0.99855, 0.99994, 0.99963, 0.99975, 0.99924, 0.055224, 0.14718, 0.031694, 0.19064, 0.093881, 0.00048021, 0.016567, 0.058826, 0.074432, 0.033855, 0.012005, 0.039137, 0.014406, 0.017047, 0.021369, 0.016567, 0.04562, 0.015127, 0.11621, 0.99984, 0.99934, 0.022179, 0.0079846, 0.91822, 0.031051, 0.0062102, 0.014195, 0.99861, 0.00015304, 0.0013774, 1.0001, 0.99919, 0.99973, 0.99883, 0.99973, 0.99995, 0.025002, 0.18482, 0.032403, 0.083808, 0.056205, 0.0094009, 0.29903, 0.040804, 0.0046004, 0.022602, 0.014801, 0.043204, 0.052605, 0.017602, 0.068407, 0.018402, 0.010601, 0.015602, 0.026515, 0.68117, 0.13231, 0.063106, 0.00026515, 0.015379, 0.014583, 0.067083, 0.99883, 0.013791, 0.036777, 0.89184, 0.041374, 0.01609, 1, 0.021435, 0.0088696, 0.62013, 0.0014783, 0.02587, 0.003942, 0.018478, 0.0046812, 0.04213, 0.20794, 0.01158, 0.033014, 0.9161, 0.011554, 0.0049519, 0.056121, 0.013205, 1.0003, 0.99947, 1.0009, 1.0009, 0.99975, 0.99975, 0.99867, 0.04587, 0.011541, 0.86532, 0.031271, 0.028607, 0.0023675, 0.0065106, 0.0085821, 0.94858, 0.016715, 0.034823, 0.96691, 0.032734, 0.0028281, 0.99266, 0.0056562, 0.057, 0.068213, 0.00093442, 0.0018688, 0.2498, 0.041737, 0.011836, 0.12988, 0.36256, 0.022426, 0.032705, 0.02118, 0.99963, 0.0013497, 0.010798, 0.8439, 0.055337, 0.0094479, 0.061748, 0.017546, 0.99995, 0.05588, 0.93526, 0.0088232, 0.99945, 0.11538, 0.076218, 0.022726, 0.029369, 0.66359, 0.0038459, 0.040207, 0.0041955, 0.00034963, 0.0034963, 0.022376, 0.018181, 1.0005, 0.99975, 0.99992, 0.042417, 0.51286, 0.00027543, 0.036357, 0.066655, 0.013496, 0.05729, 0.026992, 0.05371, 0.0157, 0.050955, 0.00027543, 0.027819, 0.029747, 0.065553, 0.032072, 0.23262, 0.045343, 0.044975, 0.036127, 0.025068, 0.069674, 0.053454, 0.096217, 0.012534, 0.037233, 0.037971, 0.0099534, 0.0099534, 0.032441, 0.041657, 0.18285, 0.00036031, 0.94041, 0.0082871, 0.050803, 0.0010038, 0.99911, 0.99945, 1, 0.47592, 0.074539, 0.0078923, 0.11575, 0.005011, 0.23426, 0.040965, 0.0040088, 0.014281, 0.02731, 0.98259, 0.017391, 1.0053, 1.0053, 1.0001, 0.99215, 0.0040168, 0.0080336, 0.098288, 0.018704, 0.054279, 0.14707, 0.1302, 0.19071, 0.0077017, 0.3055, 0.027873, 0.019804, 0.070907, 0.010276, 0.0048813, 0.038023, 0.03494, 0.32011, 0.038536, 0.10276, 0.048556, 0.025434, 0.027746, 0.043675, 0.025434, 0.0074504, 0.047271, 0.036224, 0.0064227, 0.011304, 0.0061658, 0.028003, 0.038023, 0.027746, 0.99917, 0.62998, 0.0050856, 0.084549, 0.016528, 0.16528, 0.056578, 0.010171, 0.032421, 0.99984, 0.00058343, 0.99942, 0.9452, 0.053841, 0.91368, 0.083701, 0.0026784, 0.0078654, 0.99216, 0.99903, 0.99973, 0.026389, 0.1155, 0.046079, 0.0028419, 0.071656, 0.00020299, 0.057649, 0.027404, 0.042222, 0.12159, 0.030449, 0.0077137, 0.036538, 0.0069017, 0.18574, 0.12281, 0.019081, 0.021923, 0.040395, 0.0085256, 0.0083226, 0.99917, 0.076272, 0.92424, 0.99998, 1.0003, 0.33646, 0.66384, 1.0001, 1.0003, 1.0003, 0.41734, 0.10515, 0.065648, 0.054286, 0.00054106, 0.04581, 0.036071, 0.0057713, 0.15456, 0.00090176, 0.098292, 0.015691, 0.005175, 0.081022, 0.015849, 0.017789, 0.011644, 0.4415, 0.013099, 0.002911, 0.090887, 0.0063071, 0.15056, 0.022964, 0.12388, 0.015202, 0.00016172, 0.00097032, 0.029882, 0.85101, 0.11869, 0.00042088, 0.01425, 0.91483, 0.051299, 0.01995, 0.0025288, 0.013909, 0.81302, 0.0063221, 0.080923, 0.021495, 0.058163, 0.0037933, 0.040787, 0.85431, 0.069447, 0.035275, 0.26102, 0.6705, 0.020403, 0.033068, 0.014775, 0.00070357, 0.99945, 0.35926, 0.10059, 0.1488, 0.00019761, 0.027666, 0.10612, 0.044661, 0.017983, 0.028852, 0.025492, 0.098017, 0.00019761, 0.014623, 0.019169, 0.0081022, 1.0001, 0.99963, 0.99995, 0.78123, 0.11863, 0.0074403, 0.076057, 0.011987, 0.0049602, 0.010516, 0.99378, 1.0001, 0.071981, 0.089414, 0.011247, 0.01912, 0.14284, 0.024743, 0.58147, 0.0028117, 0.0095599, 0.047237, 0.080878, 0.11546, 0.03295, 0.011982, 0.0013616, 0.0057187, 0.63777, 0.11356, 0.11335, 0.39791, 0.0087599, 0.090784, 0.21475, 0.076981, 0.078839, 0.018582, 0.087767, 0.019691, 0.0039383, 0.076796, 0.01069, 0.030381, 0.052041, 0.014628, 0.61296, 0.087204, 0.0042196, 0.014519, 0.14156, 0.027222, 0.69417, 0.078945, 0.0099815, 0.034482, 0.01679, 0.022896, 0.11652, 0.027221, 0.031291, 0.064109, 0.55409, 0.065127, 0.041213, 0.0035616, 0.02137, 0.035871, 0.051016, 0.29402, 0.023906, 0.052742, 0.2154, 0.0098582, 0.08207, 0.0313, 0.036229, 0.041898, 0.0044362, 0.013555, 0.013802, 0.0066543, 0.0066543, 0.00073937, 0.015773, 0.064818, 0.0034504, 0.025631, 0.0029575, 0.0032039, 0.017664, 0.052638, 0.042746, 0.17522, 0.073834, 0.02261, 0.012718, 0.58608, 0.016251, 0.97974, 0.018841, 1.0005, 0.8076, 0.041724, 0.055868, 0.045967, 0.048796, 0.92142, 0.041381, 0.012414, 0.024829, 0.99917, 0.99999, 1.0002, 0.020193, 0.9798, 1.0009, 1.0002, 1.0004, 0.99999, 0.047235, 0.42512, 0.046441, 0.045647, 0.42512, 0.010717, 1.0002, 0.99903, 0.072816, 0.036121, 0.1722, 0.00095559, 0.019112, 0.0089825, 0.0087914, 0.012231, 0.0061157, 0.24635, 0.28515, 0.091736, 0.016436, 0.0036312, 0.0015289, 0.017965, 0.0078798, 0.041797, 0.044881, 0.10415, 0.74105, 0.060298, 1.0002, 0.79513, 0.011037, 0.010557, 0.1454, 0.0043188, 0.0067181, 0.026392, 0.98118, 0.018386, 0.7609, 0.21055, 0.028264, 1.0002, 0.98242, 0.018772, 0.030996, 0.04347, 0.027594, 0.086561, 0.078245, 0.0075599, 0.012474, 0.46607, 0.13381, 0.004914, 0.029862, 0.058967, 0.019656, 0.99903, 0.99974, 0.99994, 1.0023, 0.99994, 0.99867, 0.034052, 0.0176, 0.47232, 0.017217, 0.068486, 0.082451, 0.031947, 0.0007652, 0.014539, 0.10675, 0.0005739, 0.0091825, 0.0011478, 0.0059303, 0.034243, 0.024869, 0.064086, 0.0080347, 0.005739, 1.0015, 0.99984, 0.99934, 0.065401, 0.1761, 0.12323, 0.0098952, 0.072359, 0.026903, 0.0057207, 0.026593, 0.49383, 1.0012, 0.018455, 0.23622, 0.00073818, 0.18824, 0.30782, 0.00024606, 0.049212, 0.01624, 0.12525, 0.0012303, 0.0091043, 0.044045, 0.0034449, 0.01094, 0.9553, 0.02661, 0.0032523, 0.0041393, 0.99912, 0.99883, 0.99883, 1.0002, 0.026159, 0.01189, 0.12247, 0.83827, 0.095045, 0.0080857, 0.0067127, 0.87158, 0.01846, 0.00062712, 0.888, 0.079644, 0.029475, 0.0025085, 0.011928, 0.84049, 0.038963, 0.052083, 0.011928, 0.0071565, 0.037373, 0.020737, 0.010368, 0.0070237, 0.10736, 0.029433, 0.77528, 0.015051, 0.023747, 0.0040135, 0.0066892, 0.99419, 1.0002, 0.95635, 0.043558, 0.98044, 0.019575, 0.038418, 0.027999, 0.92528, 0.0084649, 1.0001, 1.0002, 1.0001, 0.002215, 0.99344, 0.0040609, 1.0053, 0.99973, 1.0001, 1.0009, 1.0004, 0.99994, 1.0004, 0.99934, 0.36505, 0.068878, 0.56618, 0.47405, 0.00019115, 0.026952, 0.14336, 0.09653, 0.15043, 0.0068814, 0.083532, 0.013954, 0.0042053, 0.98909, 0.010924, 0.98569, 0.012885, 1.0003, 1.0005, 0.83788, 0.026525, 0.10142, 0.0005201, 0.024965, 0.0005201, 0.0088417, 0.99857, 1.0001, 1.0002, 0.65446, 0.10759, 0.037243, 0.013688, 0.077669, 0.047747, 0.061753, 1.0003, 0.99934, 0.16751, 0.83301, 0.82349, 0.018436, 0.15824, 0.99855, 0.0013723, 0.98874, 0.010292, 0.97903, 0.020979, 0.00079792, 0.00039896, 0.077997, 0.12168, 0.021943, 0.033513, 0.092559, 0.032316, 0.13425, 0.0093756, 0.074207, 0.17235, 0.023738, 0.020547, 0.035707, 0.012767, 0.098943, 0.0041891, 0.0039896, 0.028725, 0.0033907, 0.080246, 0.7516, 0.15032, 0.014693, 1.0004, 0.010004, 0.99036, 0.961, 0.039051, 0.0071534, 0.077257, 0.027898, 0.66026, 0.13448, 0.04149, 0.01073, 0.040059, 0.99984, 0.99903, 0.94757, 0.015383, 0.036918, 0.083767, 0.81387, 0.013732, 0.042113, 0.013732, 0.0022887, 0.027922, 0.0022887, 0.99975, 0.024652, 0.00077383, 0.051404, 0.02023, 0.31528, 0.38183, 0.035817, 0.0037586, 0.14592, 0.020341, 0.2664, 0.73375, 0.22955, 0.76044, 0.0072454, 0.002964, 0.99912, 0.99855, 0.99459, 0.0047588, 0.032031, 0.96734, 0.99883, 0.99912, 0.033989, 0.028129, 0.02305, 0.021488, 0.0046882, 0.20902, 0.016799, 0.0062509, 0.65635, 1.0004, 1, 0.18267, 0.0074676, 0.037683, 0.011374, 0.10995, 0.64716, 0.0036764, 0.99973, 1, 0.01109, 0.047504, 0.017375, 0.019039, 0.013124, 0.4682, 0.012015, 0.04658, 0.045286, 0.31959, 1.0012, 0.99995, 0.18308, 0.26968, 0.39158, 0.048006, 0.048947, 0.0063537, 0.00094129, 0.0513, 0.06536, 0.24708, 0.60905, 0.078549, 0.99917, 0.99973, 0.031973, 0.0092366, 0.40996, 0.0135, 0.53572, 0.99984, 0.99945, 0.99984, 1.0001, 0.085808, 0.36632, 0.00057015, 0.099206, 0.17304, 0.015109, 0.053594, 0.034494, 0.044757, 0.0028507, 0.013113, 0.018245, 0.040196, 0.00057015, 0.0059866, 0.021096, 0.014254, 0.010833, 0.00087377, 0.15378, 0.060727, 0.25645, 0.076892, 0.0034951, 0.0043689, 0.048494, 0.29009, 0.10398, 0.00070285, 0.40695, 0.020383, 0.028817, 0.015814, 0.29449, 0.033385, 0.022491, 0.0042171, 0.00035142, 0.036548, 0.027411, 0.011246, 0.024248, 0.010543, 0.0042171, 0.054471, 0.0031628, 0.99165, 0.0082452, 0.97031, 0.029162, 0.046968, 0.95278, 1.0001, 0.99912, 0.99904, 0.06204, 0.013148, 0.015407, 0.30465, 0.0024652, 0.2118, 0.010477, 0.0045195, 0.091827, 0.0080118, 0.023008, 0.0049303, 0.004314, 0.01664, 0.010888, 0.015202, 0.011915, 0.18365, 0.0051358, 0.98993, 0.010101, 0.054647, 0.0032723, 0.66394, 0.035995, 0.057592, 0.058573, 0.12598, 0.99999, 0.99973, 0.99945, 0.037754, 0.11947, 0.028674, 0.57443, 0.00095579, 0.23034, 0.0076463, 1.0002, 0.018341, 0.98254, 0.0083993, 0.0025844, 0.0012922, 0.069779, 0.56663, 0.062672, 0.0071071, 0.0051688, 0.025844, 0.016799, 0.02649, 0.089808, 0.0071071, 0.027782, 0.0071071, 0.047811, 0.025844, 1.0039, 0.89786, 0.082607, 0.018685, 0.05492, 0.90961, 0.036041, 0.99988, 0.99995, 0.016572, 0.012052, 0.018079, 0.057249, 0.85271, 0.04369, 0.99995, 0.99995, 0.99934, 0.00045257, 0.99928, 0.022889, 0.060614, 0.037725, 0.62649, 0.038997, 0.0029671, 0.0050865, 0.024585, 0.045779, 0.0016955, 0.054256, 0.022465, 0.003391, 0.010173, 0.0084775, 0.0080536, 0.02628, 0.077316, 0.28843, 0.0052956, 0.074844, 0.48402, 0.013415, 0.049778, 0.0070608, 0.44247, 0.030485, 0.038324, 0.00021775, 0.021775, 0.10147, 0.00871, 0.060317, 0.14676, 0.09581, 0.007839, 0.045728, 0.017158, 0.089183, 0.019986, 0.12633, 0.52906, 0.025831, 0.011124, 0.18119, 0.99912, 1.0002, 1.0003, 0.1217, 0.036509, 0.025398, 0.040742, 0.69262, 0.0047621, 0.044975, 0.00052912, 0.023281, 0.0095242, 0.02448, 0.15232, 0.0136, 0.05712, 0.75344, 0.12013, 0.061838, 0.56749, 0.036689, 0.00088763, 0.024262, 0.048228, 0.016865, 0.0059176, 0.071602, 0.0076928, 0.02367, 0.010947, 0.0041423, 0.83662, 0.024837, 0.13464, 0.0039216, 0.09314, 0.092719, 0.79401, 0.0012643, 0.019387, 0.12861, 0.87152, 0.0014372, 0.96292, 0.0086232, 0.025869, 0.99999, 1.0001, 0.85408, 0.022986, 0.019404, 0.03851, 0.015822, 0.023285, 0.025673, 0.049844, 0.38575, 0.01717, 0.0040008, 0.042842, 0.036174, 0.10552, 0.17804, 0.011336, 0.074349, 0.09502, 0.99975, 0.99975, 0.0049869, 0.036059, 0.083626, 0.008823, 0.011892, 0.032223, 0.046033, 0.028387, 0.042964, 0.11815, 0.05639, 0.070584, 0.11086, 0.34908, 0.72781, 0.014154, 0.051232, 0.15848, 0.0053823, 0.018938, 0.010366, 0.013556, 0.99999, 0.99903, 0.99903, 1.0001, 0.00028231, 0.56547, 0.0070578, 0.15894, 0.088364, 0.036136, 0.038677, 0.10502, 1.0001, 0.9921, 0.0079687, 1.0001, 0.99917, 0.036955, 0.9625, 0.10417, 0.022037, 0.066111, 0.0040067, 0.80234, 0.0010017, 0.99419, 0.99917, 0.3258, 0.002084, 0.072941, 0.029871, 0.52413, 0.044807, 0.94503, 0.054421, 0.99419, 0.0056615, 0.030485, 0.96377, 0.29425, 0.10926, 0.035976, 0.00044415, 0.067067, 0.30247, 0.050855, 0.013769, 0.075061, 0.0077726, 0.01288, 0.0073285, 0.023096, 0.94407, 0.056644, 1.0053, 0.99917, 0.99867, 1.0001, 1.0009, 0.99995, 0.96173, 0.020636, 0.017756, 1.0009, 0.0080003, 0.015408, 0.38283, 0.070521, 0.0044446, 0.043261, 0.28179, 0.011852, 0.040298, 0.056891, 0.0071114, 0.00059262, 0.0050372, 0.053039, 0.0059262, 0.013038, 0.05114, 0.7349, 0.032199, 0.073869, 0.035988, 0.0018941, 0.028411, 0.024623, 0.018941, 0.0052951, 0.9751, 0.0033696, 0.016046, 0.01365, 0.97737, 0.0090139, 1.0003, 0.99945, 1.0004, 0.0043109, 0.01437, 0.045504, 0.015328, 0.031613, 0.60735, 0.0071848, 0.076638, 0.035445, 0.0043109, 0.016286, 0.032571, 0.075201, 0.0076638, 0.025865, 1, 0.63111, 0.36886, 0.0044312, 0.24076, 0.0078073, 0.0025321, 0.00063302, 0.25131, 0.0048532, 0.032706, 0.24034, 0.0044312, 0.024899, 0.038825, 0.14222, 0.0040091, 0.17552, 0.0010768, 0.040381, 0.20621, 0.066584, 0.032664, 0.041996, 0.032484, 0.012204, 0.0035894, 0.011127, 0.0057431, 0.086326, 0.03733, 0.11971, 0.024408, 0.02028, 0.04415, 0.003051, 0.009512, 0.025665, 0.005046, 0.051208, 0.1968, 0.38836, 0.25155, 0.0031771, 0.0054198, 0.0037378, 0.034762, 0.024856, 0.0080363, 0.0093445, 0.017755, 0.99973, 0.22826, 0.05343, 0.0018173, 0.015266, 0.013812, 0.055974, 0.0094502, 0.012721, 0.016356, 0.031622, 0.025443, 0.00036347, 0.13085, 0.0047251, 0.0036347, 0.36965, 0.005452, 0.017447, 0.0036347, 1.0003, 0.0086764, 0.012029, 0.10175, 0.17136, 0.15558, 0.10372, 0.03017, 0.030368, 0.014198, 0.015184, 0.00098596, 0.0029579, 0.015775, 0.0094652, 0.014198, 0.043777, 0.018142, 0.24728, 0.0045354, 0.064731, 0.93552, 0.041736, 0.1222, 0.025822, 0.51254, 0.0057049, 0.26783, 0.00060052, 0.02342, 0.037521, 0.30311, 0.65918, 0.10258, 0.78843, 0.032181, 0.055311, 0.022124, 0.3614, 0.013092, 0.0083989, 0.035078, 0.030384, 0.011363, 0.03656, 0.015563, 0.0074108, 0.00074108, 0.016057, 0.021985, 0.43106, 0.010622, 0.99912, 0.99419, 0.99867, 0.037755, 0.96186, 0.0047227, 0.52564, 0.0094455, 0.0037782, 0.0018891, 0.12374, 0.050061, 0.043449, 0.070841, 0.075564, 0.015113, 0.052422, 0.011807, 0.0056673, 0.005195, 0.80215, 0.029599, 0.0073999, 0.065119, 0.087318, 0.0059199, 0.010888, 0.025252, 0.29815, 0.0044016, 0.63129, 0.019692, 0.010193, 0.0071352, 0.032109, 0.7932, 0.11654, 0.0095136, 0.0023784, 0.039244, 0.99884, 0.015528, 0.0088734, 0.97552, 0.99372, 0.0056222, 0.98094, 0.019068, 0.0362, 0.44236, 0.41292, 0.0095472, 0.099053, 0.99999, 0.99963, 0.99963, 0.99934, 0.99984, 1.0016, 0.076969, 0.26843, 0.0038485, 0.60132, 0.049549, 0.021101, 0.079884, 0.21614, 0.4371, 0.026527, 0.1046, 0.050945, 0.0208, 0.042806, 0.99945, 0.041291, 0.033896, 0.0098605, 0.047454, 0.0067791, 0.0030814, 0.8098, 0.0265, 0.010477, 0.010477, 1.0012, 1.0001, 0.7346, 0.013433, 0.11024, 0.0052565, 0.06629, 0.0040884, 0.0090529, 0.024676, 0.023946, 0.0083228, 1, 0.99985, 0.12323, 0.8544, 0.022182, 0.92012, 0.028167, 0.046945, 0.019649, 0.048467, 0.013536, 0.14235, 0.00043664, 0.53794, 0.0082962, 0.022269, 0.017466, 0.023142, 0.00043664, 0.070736, 0.020086, 0.00043664, 0.05458, 0.019649, 0.060489, 0.9396, 1.0053, 1.0003, 0.079908, 0.66579, 0.085408, 0.012617, 0.021675, 0.085731, 0.047557, 0.0012941, 0.99903, 0.1543, 0.023408, 0.003344, 0.038695, 0.118, 0.020542, 0.059714, 0.030096, 0.013854, 0.019586, 0.021975, 0.025797, 0.41131, 0.023408, 0.035351, 0.99997, 1, 0.063102, 0.13992, 0.11194, 0.00054871, 0.0021948, 0.019205, 0.027984, 0.099865, 0.015913, 0.031276, 0.08505, 0.017559, 0.029082, 0.040056, 0.0010974, 0.010425, 0.031276, 0.27326, 0.027376, 0.027376, 0.94903, 1.0053, 0.031595, 0.053551, 0.035023, 0.00021421, 0.84943, 0.0023563, 0.02774, 0.0001071, 0.7115, 0.28871, 0.043648, 0.02527, 0.17689, 0.0022973, 0.014932, 0.018378, 0.72019, 1.0012, 0.96728, 0.012407, 0.020329, 0.72395, 0.012716, 0.0027455, 0.019941, 0.19175, 0.040749, 0.003468, 0.004624, 0.99994, 0.99883, 0.99999, 0.26148, 0.086766, 0.014382, 0.034659, 0.00023578, 0.15255, 0.029236, 0.019805, 0.033245, 0.095726, 0.20466, 0.014382, 0.053286, 0.21473, 0.0075207, 0.00025933, 0.30368, 0.061721, 0.057313, 0.063796, 0.036307, 0.0088173, 0.0044087, 0.086358, 0.043568, 0.028527, 0.045383, 0.01167, 0.00051867, 0.010114, 0.01556, 1.0001, 0.0032831, 0.99674, 1.0009, 0.074633, 0.44014, 0.064144, 0.0040342, 0.0056479, 0.0084719, 0.0068582, 0.00040342, 0.10731, 0.029047, 0.10408, 0.12587, 0.0048411, 0.023802, 0.00040342, 0.99994, 0.99994, 1.0015, 0.99986, 0.99912, 0.051101, 0.16446, 0.17606, 0.020753, 0.026108, 0.0031241, 0.00022315, 0.014505, 0.059581, 0.0482, 0.39653, 0.0035704, 0.011827, 0.012719, 0.0046861, 0.0064713, 0.16001, 0.017581, 0.037388, 0.019807, 0.042062, 0.55348, 0.10215, 0.00022255, 0.054525, 0.0040059, 0.0026706, 0.0004451, 0.0057863, 0.99903, 0.030218, 0.0053961, 0.019426, 0.73818, 0.029139, 0.17807, 0.058482, 0.74831, 0.02049, 0.13148, 0.0051225, 0.023478, 0.00085375, 0.0059762, 0.0064031, 0.73833, 0.046099, 0.028998, 0.01264, 0.15837, 0.016358, 0.90695, 0.018254, 0.0028822, 0.01345, 0.00096075, 0.026901, 0.010568, 0.020176, 0.00091405, 0.59002, 0.023765, 0.034734, 0.03382, 0.014168, 0.057585, 0.019195, 0.053929, 0.055757, 0.062612, 0.014625, 0.015082, 0.015996, 0.0068554, 0.0018281, 0.036307, 0.08246, 0.74584, 0.12554, 0.010461, 1.0007, 0.99912, 0.99984, 0.99172, 0.0047451, 0.99963, 0.99855, 0.92741, 0.072738, 0.063584, 0.04714, 0.048236, 0.0021926, 0.04714, 0.012059, 0.098665, 0.039466, 0.086606, 0.031792, 0.021926, 0.052621, 0.44947, 0.0089588, 0.0095187, 0.025756, 0.067191, 0.010639, 0.041434, 0.036955, 0.47929, 0.07391, 0.0078389, 0.059912, 0.15454, 0.024077, 0.99883, 0.0052437, 0.99526, 0.99112, 0.0090011, 1.0001, 0.99963, 0.99995, 0.014704, 0.022546, 0.79008, 0.12645, 0.047052, 0.99963, 1.002, 0.17355, 0.16252, 0.11468, 0.088617, 0.028824, 0.4115, 0.020238, 1.0001, 0.035804, 0.0097648, 0.081373, 0.074863, 0.1009, 0.043942, 0.65261, 1.0003, 0.023971, 0.037493, 0.022742, 0.1469, 0.75846, 0.0098342, 0.94984, 0.022284, 0.0055709, 0.022284, 0.073771, 0.041384, 0.79914, 0.006426, 0.019792, 0.00077112, 0.058348, 0.99903, 0.99308, 0.0044674, 0.0026279, 1.0005, 1.0012, 0.24447, 0.71271, 0.017353, 0.025269, 0.02092, 0.89351, 0.045404, 0.040135, 0.10253, 0.83422, 0.062916, 0.1363, 0.14886, 0.47079, 0.013003, 0.10895, 0.026902, 0.030489, 0.017935, 0.010313, 0.0058288, 0.030938, 0.088017, 0.19884, 0.010197, 0.041593, 0.0050985, 0.060377, 0.46933, 0.020394, 0.106, 0.076703, 0.923, 0.99867, 0.99994, 0.057065, 0.9273, 0.015693, 0.0158, 0.71437, 0.22007, 0.038371, 0.010157, 0.99694, 0.0010152, 0.0020304, 0.61894, 0.19197, 0.010177, 0.13508, 0.043946, 0.99994, 0.44399, 0.040598, 0.017276, 0.00086379, 0.058738, 0.025914, 0.0051828, 0.40857, 0.96942, 0.030698, 0.012611, 0.3497, 0.63766, 1.0003, 0.02698, 0.0089933, 0.012928, 0.039345, 0.27935, 0.63234, 1.0005, 0.011871, 0.063922, 0.0018263, 0.021003, 0.049768, 0.046572, 0.12373, 0.64013, 0.0068488, 0.033787, 0.21139, 0.78143, 0.0047503, 0.0023752, 1.0001, 0.99992, 0.026246, 0.0079675, 0.15654, 0.80905, 0.00011717, 0.00025777, 0.023457, 0.030159, 0.06135, 0.016497, 0.021911, 0.050266, 0.11651, 0.024746, 0.60963, 0.026293, 0.018817, 1.0009, 1.0011, 0.60656, 0.34552, 0.047516, 0.82071, 0.071304, 0.096617, 0.011409, 0.99855, 0.014141, 0.96689, 0.019444, 0.83413, 0.097357, 0.051154, 0.017326, 1.0003, 0.012884, 0.016463, 0.81671, 0.052252, 0.011453, 0.040084, 0.012168, 0.028631, 0.0093052, 0.56695, 0.002849, 0.26838, 0.0062678, 0.051282, 0.016524, 0.030199, 0.015385, 0.02735, 0.010826, 0.0034188, 0.047594, 0.086184, 0.084126, 0.0010291, 0.29174, 0.0025727, 0.0054026, 0.067404, 0.019809, 0.027527, 0.058142, 0.024697, 0.034988, 0.0084898, 0.029586, 0.049652, 0.0090043, 0.091586, 0.020838, 0.011062, 0.028556, 0.99975, 0.99975, 0.99975, 1.0053, 1.0009, 0.9962, 0.0037537, 0.14273, 0.13383, 0.02704, 0.19441, 0.0044496, 0.014033, 0.0010268, 0.11261, 0.040731, 0.019852, 0.0017114, 0.013349, 0.013691, 0.021906, 0.0051342, 0.023275, 0.0068456, 0.002396, 0.027382, 0.19339, 1.0012, 0.99121, 0.0082372, 1.0004, 0.99963, 0.010058, 0.08647, 0.025983, 0.16651, 0.026961, 0.47999, 0.040232, 0.020675, 0.029056, 0.11427, 0.99992, 0.99984, 0.91706, 0.082248, 0.033983, 0.29215, 0.65684, 0.0063401, 0.0063401, 0.0043113, 0.078322, 0.010942, 0.010366, 0.018141, 0.0005759, 0.7884, 0.016125, 0.06594, 0.011518, 0.08867, 0.91133, 1, 1.0007, 1.0001, 0.99934, 0.0097754, 0.096725, 0.23324, 0.45344, 0.013891, 0.083177, 0.10976, 0.0041113, 0.047965, 0.072176, 0.24165, 0.19917, 0.0077658, 0.42712, 0.093591, 0.10084, 0.00065909, 0.029, 0.70194, 0.0039546, 0.063932, 0.0065909, 0.33219, 0.27521, 0.053969, 0.19459, 0.14414, 0.99912, 0.99883, 0.026259, 0.0055633, 0.54876, 0.12061, 0.044506, 0.12707, 0.003783, 0.0053407, 0.0086787, 0.0089012, 0.10058, 0.77626, 0.058632, 0.11974, 0.045419, 0.016984, 0.058596, 0.0050953, 0.03595, 0.067937, 0.14125, 0.024344, 0.32723, 0.0090583, 0.0062275, 0.10106, 0.033402, 0.041611, 0.086336, 0.038215, 0.0065106, 0.78462, 0.10525, 0.0031444, 0.031259, 0.032739, 0.043097, 0.015554, 0.32445, 0.16671, 0.20321, 0.1019, 0.061819, 0.00039883, 0.0049854, 0.018147, 0.062417, 0.00099708, 0.029314, 0.009572, 0.017876, 0.53377, 0.1383, 0.079501, 0.045788, 0.024776, 0.10663, 0.030421, 0.017406, 0.0053315, 0.00015681, 0.067887, 0.0094896, 0.17446, 0.71464, 0.0080297, 0.0021899, 0.022629, 0.99917, 0.15777, 0.10628, 0.008765, 0.7264, 0.014957, 0.024928, 0.95974, 0.51293, 0.036167, 0.000169, 0.14923, 0.038364, 0.043772, 0.000169, 0.01183, 0.029914, 0.028055, 0.055095, 0.048166, 0.019773, 0.026196, 0.017029, 0.16309, 0.044757, 0.093007, 0.038207, 0.0078598, 0.05873, 0.0056765, 0.00043665, 0.028819, 0.009388, 0.0032749, 0.0030566, 0.072048, 0.28361, 0.034932, 0.05349, 0.021833, 0.0034932, 0.052617, 0.0048032, 0.0010167, 0.089724, 0.021605, 0.87767, 0.0099129, 0.019497, 0.0013354, 0.01095, 0.014957, 0.0098821, 0.21046, 0.31009, 0.048342, 0.33653, 0.021901, 0.016292, 0.99945, 0.99975, 0.07595, 0.0083028, 0.46632, 0.44944, 1.0003, 0.99924, 1.0004, 0.99867, 0.95718, 0.031453, 0.011476, 0.032488, 0.86921, 0.098384, 0.38741, 0.046747, 0.02213, 0.22429, 0.095732, 0.0022379, 0.012681, 0.052218, 0.058185, 0.012184, 0.0049731, 0.02412, 0.0047245, 0.031082, 0.020141, 0.00099462, 1, 1.0015, 0.23364, 0.00070268, 0.065349, 0.0098375, 0.079051, 0.0094862, 0.0066755, 0.060782, 0.0084322, 0.032323, 0.39455, 0.0080808, 0.029513, 0.012297, 0.038999, 0.0098375, 0.00070268, 0.66926, 0.089122, 0.050502, 0.038195, 0.039044, 0.029283, 0.059414, 0.025039, 0.99992, 0.044007, 0.74999, 0.15543, 0.051497, 0.99995, 0.99975, 1.0001, 1, 0.99984, 0.99995, 0.01662, 0.98388, 0.08833, 0.91048, 0.0011324, 0.99975, 0.99999, 0.037047, 0.031755, 0.059209, 0.48724, 0.014885, 0.031424, 0.0092618, 0.25735, 0.037378, 0.0076079, 0.0086002, 0.010585, 0.0079387, 1.0002, 0.017281, 0.067396, 0.0057603, 0.048387, 0.03053, 0.81509, 0.015553, 0.99963, 0.043847, 0.042161, 0.020518, 0.063242, 0.83001, 0.0095984, 0.19818, 0.03557, 0.099371, 0.65777, 1.0002, 1.0002, 1.0003, 1.0002, 0.89553, 0.10471, 0.9398, 0.060324, 1.0001, 1.0015, 1.0015, 0.99461, 0.0055154, 0.71953, 0.021217, 0.040589, 0.21771, 0.99924, 1.0004, 0.99917, 0.99984, 0.99883, 0.020933, 0.91058, 0.031399, 0.031399, 0.99973, 0.99606, 0.0036959, 0.087292, 0.9124, 0.99917, 0.21644, 0.0413, 0.034779, 0.096108, 0.0093158, 0.60211, 1.0001, 0.043416, 0.15778, 0.11842, 0.012531, 0.20243, 0.063007, 0.02965, 0.0052947, 0.12231, 0.00035298, 0.0093539, 0.0010589, 0.10254, 0.099364, 0.0030003, 0.019061, 0.0012354, 0.0091775, 0.059703, 0.023392, 0.015013, 0.90182, 0.6813, 0.10372, 0.040314, 0.010995, 0.0040314, 0.028953, 0.00073298, 0.0018324, 0.081361, 0.046911, 0.99421, 0.0059095, 0.99855, 1.0002, 0.99855, 0.013977, 0.25042, 0.65482, 0.021431, 0.042164, 0.0088521, 0.0083862, 0.99999, 0.069121, 0.92979, 0.95881, 0.041239, 0.012642, 0.011311, 0.01863, 0.0086495, 0.078511, 0.022622, 0.022622, 0.0066535, 0.04724, 0.75916, 0.0026614, 0.0099802, 0.99867, 0.49097, 0.30416, 0.031003, 0.011048, 0.00033821, 0.11262, 0.049942, 0.0083334, 0.0055032, 0.0048743, 0.53491, 0.14639, 0.2923, 0.0077045, 0.059584, 0.088184, 0.097717, 0.74122, 0.011917, 0.085895, 0.91407, 0.99924, 0.99924, 1.0004, 0.0036968, 0.93899, 0.04621, 0.0036968, 0.0055452, 1.0005, 0.0047847, 0.99521, 0.99924, 0.021222, 0.001179, 0.02358, 0.044801, 0.8076, 0.10021, 0.001179, 0.99995, 0.99903, 1.0001, 0.99994, 0.0065549, 0.0065549, 0.94128, 0.027531, 0.017043, 1.0003, 0.0051729, 0.99493, 0.99924, 0.023223, 0.97827, 1.0004, 0.99924, 0.99924, 0.99945, 0.99992, 0.99992, 0.014443, 0.92606, 0.058622, 1.0012, 0.002487, 0.040621, 0.033989, 0.10736, 0.088289, 0.076268, 0.056372, 0.052227, 0.50818, 0.0062175, 0.011192, 0.005803, 0.010777, 1.0001, 0.99934, 0.066102, 0.064565, 0.87009, 0.99994, 0.99855, 0.014002, 0.037446, 0.002605, 0.0065124, 0.068706, 0.60663, 0.0019537, 0.017583, 0.13969, 0.015304, 0.074893, 0.014327, 1, 0.035163, 0.0038014, 0.96079, 1.0002, 0.99994, 0.99992, 0.99883, 0.021677, 0.017341, 0.79337, 0.062863, 0.073701, 0.032515, 0.020632, 0.27384, 0.00062521, 0.011566, 0.59489, 0.017506, 0.017037, 0.0029697, 0.060333, 0.0003126, 0.0003126, 0.038836, 0.017281, 0.018768, 0.025085, 0.071911, 0.094581, 0.24435, 0.25606, 0.0035305, 0.12487, 0.10499, 0.12433, 0.00021038, 0.12602, 0.095512, 0.046073, 0.16283, 0.41318, 0.017251, 0.014726, 0.81614, 0.0043958, 0.18023, 0.12111, 0.74233, 0.12946, 0.0052203, 0.0031322, 0.35345, 0.034264, 0.089519, 0.31841, 0.0050933, 0.028399, 0.17101, 0.9499, 0.050711, 1.0005, 0.021707, 0.023799, 0.048121, 0.0031383, 0.10095, 0.004969, 0.010461, 0.21393, 0.3154, 0.16032, 0.061459, 0.035306, 1.0004, 1.0003, 0.99934, 0.99934, 0.035575, 0.27623, 0.0039527, 0.00023251, 0.016276, 0.026972, 0.085333, 0.028832, 0.063011, 0.016974, 0.16229, 0.13672, 0.10068, 0.04255, 0.0020926, 0.0020926, 1.0012, 0.99945, 0.020258, 0.10481, 0.076627, 0.55356, 0.070461, 0.035231, 0.005725, 0.044919, 0.088958, 0.94584, 0.034284, 0.01815, 0.013224, 0.98669, 1.0001, 0.0014384, 0.92491, 0.012946, 0.056099, 0.0057537, 1.0001, 0.9996, 1.0004, 1.0001, 1.0002, 0.022317, 0.075265, 0.9023, 0.022479, 0.15694, 0.024977, 0.44209, 0.0070768, 0.040796, 0.0016651, 0.0062443, 0.19066, 0.023728, 0.010823, 0.024561, 0.0054117, 0.00083257, 0.010823, 0.0074931, 0.023312, 1.0001, 0.99945, 1.0015, 0.78303, 0.14393, 0.023483, 0.00075752, 0.0020201, 0.016413, 0.0047976, 0.025251, 1.0005, 0.80227, 0.16232, 0.035414, 0.34753, 0.0053541, 0.027744, 0.53493, 0.070577, 0.0058409, 0.0073011, 0.80982, 0.024973, 0.019027, 0.037459, 0.10821, 0.18126, 0.12593, 0.0482, 0.0241, 0.0071282, 0.0044127, 0.16123, 0.03666, 0.0057705, 0.40325, 0.0020366, 0.042496, 0.96042, 0.99419, 0.029073, 0.11706, 0.052025, 0.0045904, 0.72758, 0.010711, 0.046669, 0.0084157, 0.0038253, 0.052042, 0.1053, 0.020329, 0.0048789, 0.04391, 0.52245, 0.040658, 0.010571, 0.15165, 0.012197, 0.017483, 0.018296, 1.0001, 0.62515, 0.3311, 0.043742, 1, 1.0001, 1.0002, 1.0003, 1.0012, 1.0012, 0.227, 0.03735, 0.016643, 0.0042575, 0.00019352, 0.03406, 0.039866, 0.021094, 0.019352, 0.046639, 0.024771, 0.0048381, 0.19875, 0.004064, 0.011418, 0.010837, 0.015095, 0.11882, 0.12618, 0.038898, 1, 0.99963, 0.99995, 0.051944, 0.93684, 0.012986, 1.0015, 0.064103, 0.93577, 1.0012, 1.0002, 0.10237, 0.068519, 0.00082553, 0.00082553, 0.084204, 0.018987, 0.0090809, 0.020638, 0.0082553, 0.63318, 0.018162, 0.035498, 1.0009, 1.0003, 0.087573, 0.91233, 1.0012, 0.00045913, 0.044535, 0.0022956, 0.061523, 0.00045913, 0.014233, 0.034435, 0.04729, 0.0045913, 0.40679, 0.018824, 0.087693, 0.16483, 0.0068869, 0.10468, 0.98977, 0.010242, 0.049411, 0.39044, 0.018408, 0.49217, 0.0019377, 0.0087196, 0.039238, 0.91177, 0.037991, 0.037991, 0.0081408, 0.0027136, 0.99924, 0.0075495, 0.072979, 0.029359, 0.88497, 0.0041942, 0.049578, 0.084535, 0.016083, 0.2217, 0.61979, 0.0082408, 1.0003, 0.97165, 0.028654, 0.99912, 0.70506, 0.014325, 0.0089532, 0.1719, 0.050138, 0.047899, 0.001343, 0.99903, 0.1617, 0.050532, 0.7883, 1.0001, 0.69753, 0.14984, 0.089129, 0.0012917, 0.016792, 0.045856, 0.99883, 1.0012, 1.0053, 0.73018, 0.08523, 0.18442, 1.0053, 1.0002, 0.99984, 0.18539, 0.80553, 0.0089054, 0.016486, 0.40186, 0.0026281, 0.16199, 0.12376, 0.021742, 0.065703, 0.011229, 0.021981, 0.00023892, 0.049218, 0.016008, 0.016008, 0.012663, 0.037033, 0.0093179, 0.0040617, 0.0093179, 0.018397, 1.0001, 0.99995, 0.99883, 1.0001, 1.0001, 0.99855, 1.0001, 1.0015, 0.026792, 0.59111, 0.063694, 0.0042126, 0.20557, 0.075152, 0.011458, 0.0043811, 0.017524, 0.061614, 0.090051, 0.84838, 0.99924, 1.0001, 1.0003, 0.99973, 1.0002, 0.99855, 0.99992, 0.11304, 0.88581, 1.0001, 1.0001, 1, 1.0004 ] | |
| }, | |
| "R": 30, | |
| "lambda.step": 0.1, | |
| "plot.opts": { | |
| "xlab": "PC1", | |
| "ylab": "PC2" | |
| }, | |
| "topic.order": [ 17, 1, 13, 23, 15, 18, 12, 24, 9, 10, 6, 19, 25, 27, 31, 5, 30, 20, 3, 16, 11, 7, 14, 2, 28, 22, 21, 8, 32, 4, 26, 29 ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LDAvis = function(to_select, json_file) { | |
| // This section sets up the logic for event handling | |
| var current_clicked = { | |
| what: "nothing", | |
| element: undefined | |
| }, | |
| current_hover = { | |
| what: "nothing", | |
| element: undefined | |
| }, | |
| old_winning_state = { | |
| what: "nothing", | |
| element: undefined | |
| }, | |
| vis_state = { | |
| lambda: 1, | |
| topic: 0, | |
| term: "" | |
| }; | |
| // Set up a few 'global' variables to hold the data: | |
| var K, // number of topics | |
| R, // number of terms to display in bar chart | |
| mdsData, // (x,y) locations and topic proportions | |
| mdsData3, // topic proportions for all terms in the viz | |
| lamData, // all terms that are among the top-R most relevant for all topics, lambda values | |
| lambda = { | |
| old: 1, | |
| current: 1 | |
| }, | |
| color1 = "#1f77b4", // baseline color for default topic circles and overall term frequencies | |
| color2 = "#d62728"; // 'highlight' color for selected topics and term-topic frequencies | |
| // Set the duration of each half of the transition: | |
| var duration = 750; | |
| // Set global margins used for everything | |
| var margin = { | |
| top: 30, | |
| right: 30, | |
| bottom: 70, | |
| left: 30 | |
| }, | |
| mdswidth = 530, | |
| mdsheight = 530, | |
| barwidth = 530, | |
| barheight = 530, | |
| termwidth = 90, // width to add between two panels to display terms | |
| mdsarea = mdsheight * mdswidth; | |
| // controls how big the maximum circle can be | |
| // doesn't depend on data, only on mds width and height: | |
| var rMax = 60; | |
| // proportion of area of MDS plot to which the sum of default topic circle areas is set | |
| var circle_prop = 0.25; | |
| var word_prop = 0.25; | |
| // opacity of topic circles: | |
| var base_opacity = 0.2, | |
| highlight_opacity = 0.6; | |
| // topic/lambda selection names are specific to *this* vis | |
| var topic_select = to_select + "-topic"; | |
| var lambda_select = to_select + "-lambda"; | |
| // get rid of the # in the to_select (useful) for setting ID values | |
| var parts = to_select.split("#"); | |
| var visID = parts[parts.length - 1]; | |
| var topicID = visID + "-topic"; | |
| var lambdaID = visID + "-lambda"; | |
| var termID = visID + "-term"; | |
| var topicDown = topicID + "-down"; | |
| var topicUp = topicID + "-up"; | |
| var topicClear = topicID + "-clear"; | |
| ////////////////////////////////////////////////////////////////////////////// | |
| // sort array according to a specified object key name | |
| // Note that default is decreasing sort, set decreasing = -1 for increasing | |
| // adpated from http://stackoverflow.com/questions/16648076/sort-array-on-key-value | |
| function fancysort(key_name, decreasing) { | |
| decreasing = (typeof decreasing === "undefined") ? 1 : decreasing; | |
| return function(a, b) { | |
| if (a[key_name] < b[key_name]) | |
| return 1 * decreasing; | |
| if (a[key_name] > b[key_name]) | |
| return -1 * decreasing; | |
| return 0; | |
| }; | |
| } | |
| // The actual read-in of the data and main code: | |
| d3.json(json_file, function(error, data) { | |
| // set the number of topics to global variable K: | |
| K = data['mdsDat'].x.length; | |
| // R is the number of top relevant (or salient) words whose bars we display | |
| R = data['R']; | |
| // a (K x 5) matrix with columns x, y, topics, Freq, cluster (where x and y are locations for left panel) | |
| mdsData = []; | |
| for (var i = 0; i < K; i++) { | |
| var obj = {}; | |
| for (var key in data['mdsDat']) { | |
| obj[key] = data['mdsDat'][key][i]; | |
| } | |
| mdsData.push(obj); | |
| } | |
| // a huge matrix with 3 columns: Term, Topic, Freq, where Freq is all non-zero probabilities of topics given terms | |
| // for the terms that appear in the barcharts for this data | |
| mdsData3 = []; | |
| for (var i = 0; i < data['token.table'].Term.length; i++) { | |
| var obj = {}; | |
| for (var key in data['token.table']) { | |
| obj[key] = data['token.table'][key][i]; | |
| } | |
| mdsData3.push(obj); | |
| } | |
| // large data for the widths of bars in bar-charts. 6 columns: Term, logprob, loglift, Freq, Total, Category | |
| // Contains all possible terms for topics in (1, 2, ..., k) and lambda in the user-supplied grid of lambda values | |
| // which defaults to (0, 0.01, 0.02, ..., 0.99, 1). | |
| lamData = []; | |
| for (var i = 0; i < data['tinfo'].Term.length; i++) { | |
| var obj = {}; | |
| for (var key in data['tinfo']) { | |
| obj[key] = data['tinfo'][key][i]; | |
| } | |
| lamData.push(obj); | |
| } | |
| // Create the topic input & lambda slider forms. Inspired from: | |
| // http://bl.ocks.org/d3noob/10632804 | |
| // http://bl.ocks.org/d3noob/10633704 | |
| init_forms(topicID, lambdaID, visID); | |
| // When the value of lambda changes, update the visualization | |
| d3.select(lambda_select) | |
| .on("mouseup", function() { | |
| // store the previous lambda value | |
| lambda.old = lambda.current; | |
| lambda.current = document.getElementById(lambdaID).value; | |
| vis_state.lambda = +this.value; | |
| // adjust the text on the range slider | |
| d3.select(lambda_select).property("value", vis_state.lambda); | |
| d3.select(lambda_select + "-value").text(vis_state.lambda); | |
| // transition the order of the bars | |
| var increased = lambda.old < vis_state.lambda; | |
| if (vis_state.topic > 0) reorder_bars(increased); | |
| // store the current lambda value | |
| state_save(true); | |
| document.getElementById(lambdaID).value = vis_state.lambda; | |
| }); | |
| d3.select("#" + topicUp) | |
| .on("click", function() { | |
| // remove term selection if it exists (from a saved URL) | |
| var termElem = document.getElementById(termID + vis_state.term); | |
| if (termElem !== undefined) term_off(termElem); | |
| vis_state.term = ""; | |
| var value_old = document.getElementById(topicID).value; | |
| var value_new = Math.min(K, +value_old + 1).toFixed(0); | |
| // increment the value in the input box | |
| document.getElementById(topicID).value = value_new; | |
| topic_off(document.getElementById(topicID + value_old)); | |
| topic_on(document.getElementById(topicID + value_new)); | |
| vis_state.topic = value_new; | |
| state_save(true); | |
| }) | |
| d3.select("#" + topicDown) | |
| .on("click", function() { | |
| // remove term selection if it exists (from a saved URL) | |
| var termElem = document.getElementById(termID + vis_state.term); | |
| if (termElem !== undefined) term_off(termElem); | |
| vis_state.term = ""; | |
| var value_old = document.getElementById(topicID).value; | |
| var value_new = Math.max(0, +value_old - 1).toFixed(0); | |
| // increment the value in the input box | |
| document.getElementById(topicID).value = value_new; | |
| topic_off(document.getElementById(topicID + value_old)); | |
| topic_on(document.getElementById(topicID + value_new)); | |
| vis_state.topic = value_new; | |
| state_save(true); | |
| }) | |
| d3.select("#" + topicID) | |
| .on("keyup", function() { | |
| // remove term selection if it exists (from a saved URL) | |
| var termElem = document.getElementById(termID + vis_state.term); | |
| if (termElem !== undefined) term_off(termElem); | |
| vis_state.term = ""; | |
| topic_off(document.getElementById(topicID + vis_state.topic)) | |
| var value_new = document.getElementById(topicID).value; | |
| if (!isNaN(value_new) && value_new > 0) { | |
| value_new = Math.min(K, Math.max(1, value_new)) | |
| topic_on(document.getElementById(topicID + value_new)); | |
| vis_state.topic = value_new; | |
| state_save(true); | |
| document.getElementById(topicID).value = vis_state.topic; | |
| } | |
| }) | |
| d3.select("#" + topicClear) | |
| .on("click", function() { | |
| state_reset(); | |
| state_save(true); | |
| }) | |
| // create linear scaling to pixels (and add some padding on outer region of scatterplot) | |
| var xrange = d3.extent(mdsData, function(d) { | |
| return d.x; | |
| }); //d3.extent returns min and max of an array | |
| var xdiff = xrange[1] - xrange[0], | |
| xpad = 0.05; | |
| var yrange = d3.extent(mdsData, function(d) { | |
| return d.y; | |
| }); | |
| var ydiff = yrange[1] - yrange[0], | |
| ypad = 0.05; | |
| if (xdiff > ydiff) { | |
| var xScale = d3.scale.linear() | |
| .range([0, mdswidth]) | |
| .domain([xrange[0] - xpad * xdiff, xrange[1] + xpad * xdiff]); | |
| var yScale = d3.scale.linear() | |
| .range([mdsheight, 0]) | |
| .domain([yrange[0] - 0.5*(xdiff - ydiff) - ypad*xdiff, yrange[1] + 0.5*(xdiff - ydiff) + ypad*xdiff]); | |
| } else { | |
| var xScale = d3.scale.linear() | |
| .range([0, mdswidth]) | |
| .domain([xrange[0] - 0.5*(ydiff - xdiff) - xpad*ydiff, xrange[1] + 0.5*(ydiff - xdiff) + xpad*ydiff]); | |
| var yScale = d3.scale.linear() | |
| .range([mdsheight, 0]) | |
| .domain([yrange[0] - ypad * ydiff, yrange[1] + ypad * ydiff]); | |
| } | |
| // Create new svg element (that will contain everything): | |
| var svg = d3.select(to_select).append("svg") | |
| .attr("width", mdswidth + barwidth + margin.left + termwidth + margin.right) | |
| .attr("height", mdsheight + 2 * margin.top + margin.bottom + 2 * rMax); | |
| // Create a group for the mds plot | |
| var mdsplot = svg.append("g") | |
| .attr("id", "leftpanel") | |
| .attr("class", "points") | |
| .attr("transform", "translate(" + margin.left + "," + 2 * margin.top + ")"); | |
| // Clicking on the mdsplot should clear the selection | |
| mdsplot | |
| .append("rect") | |
| .attr("x", 0) | |
| .attr("y", 0) | |
| .attr("height", mdsheight) | |
| .attr("width", mdswidth) | |
| .style("fill", color1) | |
| .attr("opacity", 0) | |
| .on("click", function() { | |
| state_reset(); | |
| state_save(true); | |
| }); | |
| mdsplot.append("line") // draw x-axis | |
| .attr("x1", 0) | |
| .attr("x2", mdswidth) | |
| .attr("y1", mdsheight / 2) | |
| .attr("y2", mdsheight / 2) | |
| .attr("stroke", "gray") | |
| .attr("opacity", 0.3); | |
| mdsplot.append("text") // label x-axis | |
| .attr("x", 0) | |
| .attr("y", mdsheight/2 - 5) | |
| .text(data['plot.opts'].xlab) | |
| .attr("fill", "gray"); | |
| mdsplot.append("line") // draw y-axis | |
| .attr("x1", mdswidth / 2) | |
| .attr("x2", mdswidth / 2) | |
| .attr("y1", 0) | |
| .attr("y2", mdsheight) | |
| .attr("stroke", "gray") | |
| .attr("opacity", 0.3); | |
| mdsplot.append("text") // label y-axis | |
| .attr("x", mdswidth/2 + 5) | |
| .attr("y", 7) | |
| .text(data['plot.opts'].ylab) | |
| .attr("fill", "gray"); | |
| // new definitions based on fixing the sum of the areas of the default topic circles: | |
| var newSmall = Math.sqrt(0.02*mdsarea*circle_prop/Math.PI); | |
| var newMedium = Math.sqrt(0.05*mdsarea*circle_prop/Math.PI); | |
| var newLarge = Math.sqrt(0.10*mdsarea*circle_prop/Math.PI); | |
| var cx = 10 + newLarge, | |
| cx2 = cx + 1.5 * newLarge; | |
| // circle guide inspired from | |
| // http://www.nytimes.com/interactive/2012/02/13/us/politics/2013-budget-proposal-graphic.html?_r=0 | |
| circleGuide = function(rSize, size) { | |
| d3.select("#leftpanel").append("circle") | |
| .attr('class', "circleGuide" + size) | |
| .attr('r', rSize) | |
| .attr('cx', cx) | |
| .attr('cy', mdsheight + rSize) | |
| .style('fill', 'none') | |
| .style('stroke-dasharray', '2 2') | |
| .style('stroke', '#999'); | |
| d3.select("#leftpanel").append("line") | |
| .attr('class', "lineGuide" + size) | |
| .attr("x1", cx) | |
| .attr("x2", cx2) | |
| .attr("y1", mdsheight + 2 * rSize) | |
| .attr("y2", mdsheight + 2 * rSize) | |
| .style("stroke", "gray") | |
| .style("opacity", 0.3); | |
| } | |
| circleGuide(newSmall, "Small"); | |
| circleGuide(newMedium, "Medium"); | |
| circleGuide(newLarge, "Large"); | |
| var defaultLabelSmall = "2%"; | |
| var defaultLabelMedium = "5%"; | |
| var defaultLabelLarge = "10%"; | |
| d3.select("#leftpanel").append("text") | |
| .attr("x", 10) | |
| .attr("y", mdsheight - 10) | |
| .attr('class', "circleGuideTitle") | |
| .style("text-anchor", "left") | |
| .style("fontWeight", "bold") | |
| .text("Marginal topic distribtion"); | |
| d3.select("#leftpanel").append("text") | |
| .attr("x", cx2 + 10) | |
| .attr("y", mdsheight + 2 * newSmall) | |
| .attr('class', "circleGuideLabelSmall") | |
| .style("text-anchor", "start") | |
| .text(defaultLabelSmall); | |
| d3.select("#leftpanel").append("text") | |
| .attr("x", cx2 + 10) | |
| .attr("y", mdsheight + 2 * newMedium) | |
| .attr('class', "circleGuideLabelMedium") | |
| .style("text-anchor", "start") | |
| .text(defaultLabelMedium); | |
| d3.select("#leftpanel").append("text") | |
| .attr("x", cx2 + 10) | |
| .attr("y", mdsheight + 2 * newLarge) | |
| .attr('class', "circleGuideLabelLarge") | |
| .style("text-anchor", "start") | |
| .text(defaultLabelLarge); | |
| // bind mdsData to the points in the left panel: | |
| var points = mdsplot.selectAll("points") | |
| .data(mdsData) | |
| .enter(); | |
| // text to indicate topic | |
| points.append("text") | |
| .attr("class", "txt") | |
| .attr("x", function(d) { | |
| return (xScale(+d.x)); | |
| }) | |
| .attr("y", function(d) { | |
| return (yScale(+d.y) + 4); | |
| }) | |
| .attr("stroke", "black") | |
| .attr("opacity", 1) | |
| .style("text-anchor", "middle") | |
| .style("font-size", "11px") | |
| .style("fontWeight", 100) | |
| .text(function(d) { | |
| return d.topics; | |
| }); | |
| // draw circles | |
| points.append("circle") | |
| .attr("class", "dot") | |
| .style("opacity", 0.2) | |
| .style("fill", color1) | |
| .attr("r", function(d) { | |
| //return (rScaleMargin(+d.Freq)); | |
| return (Math.sqrt((d.Freq/100)*mdswidth*mdsheight*circle_prop/Math.PI)); | |
| }) | |
| .attr("cx", function(d) { | |
| return (xScale(+d.x)); | |
| }) | |
| .attr("cy", function(d) { | |
| return (yScale(+d.y)); | |
| }) | |
| .attr("stroke", "black") | |
| .attr("id", function(d) { | |
| return (topicID + d.topics) | |
| }) | |
| .on("mouseover", function(d) { | |
| var old_topic = topicID + vis_state.topic; | |
| if (vis_state.topic > 0 && old_topic != this.id) { | |
| topic_off(document.getElementById(old_topic)); | |
| } | |
| topic_on(this); | |
| }) | |
| .on("click", function(d) { | |
| // prevent click event defined on the div container from firing | |
| // http://bl.ocks.org/jasondavies/3186840 | |
| d3.event.stopPropagation(); | |
| var old_topic = topicID + vis_state.topic; | |
| if (vis_state.topic > 0 && old_topic != this.id) { | |
| topic_off(document.getElementById(old_topic)); | |
| } | |
| // make sure topic input box value and fragment reflects clicked selection | |
| document.getElementById(topicID).value = vis_state.topic = d.topics; | |
| state_save(true); | |
| topic_on(this); | |
| }) | |
| .on("mouseout", function(d) { | |
| if (vis_state.topic != d.topics) topic_off(this); | |
| if (vis_state.topic > 0) topic_on(document.getElementById(topicID + vis_state.topic)); | |
| }); | |
| svg.append("text") | |
| .text("Intertopic Distance Map (via multidimensional scaling)") | |
| .attr("x", mdswidth/2 + margin.left) | |
| .attr("y", 30) | |
| .style("font-size", "16px") | |
| .style("text-anchor", "middle"); | |
| // establish layout and vars for bar chart | |
| var barDefault2 = lamData.filter(function(d) { | |
| return d.Category == "Default" | |
| }); | |
| var y = d3.scale.ordinal() | |
| .domain(barDefault2.map(function(d) { | |
| return d.Term; | |
| })) | |
| .rangeRoundBands([0, barheight], 0.15); | |
| var x = d3.scale.linear() | |
| .domain([0, d3.max(barDefault2, function(d) { | |
| return d.Total; | |
| })]) | |
| .range([0, barwidth]) | |
| .nice(); | |
| var yAxis = d3.svg.axis() | |
| .scale(y); | |
| // Add a group for the bar chart | |
| var chart = svg.append("g") | |
| .attr("transform", "translate(" + +(mdswidth + margin.left + termwidth) + "," + 2 * margin.top + ")") | |
| .attr("id", "bar-freqs"); | |
| // bar chart legend/guide: | |
| var barguide = {"width": 100, "height": 15}; | |
| d3.select("#bar-freqs").append("rect") | |
| .attr("x", 0) | |
| .attr("y", mdsheight + 10) | |
| .attr("height", barguide.height) | |
| .attr("width", barguide.width) | |
| .style("fill", color1) | |
| .attr("opacity", 0.4); | |
| d3.select("#bar-freqs").append("text") | |
| .attr("x", barguide.width + 5) | |
| .attr("y", mdsheight + 10 + barguide.height/2) | |
| .style("dominant-baseline", "middle") | |
| .text("Overall term frequency"); | |
| d3.select("#bar-freqs").append("rect") | |
| .attr("x", 0) | |
| .attr("y", mdsheight + 10 + barguide.height + 5) | |
| .attr("height", barguide.height) | |
| .attr("width", barguide.width/2) | |
| .style("fill", color2) | |
| .attr("opacity", 0.8); | |
| d3.select("#bar-freqs").append("text") | |
| .attr("x", barguide.width/2 + 5) | |
| .attr("y", mdsheight + 10 + (3/2)*barguide.height + 5) | |
| .style("dominant-baseline", "middle") | |
| .text("Estimated term frequency within the selected topic"); | |
| // footnotes: | |
| d3.select("#bar-freqs") | |
| .append("a") | |
| .attr("xlink:href", "http://vis.stanford.edu/files/2012-Termite-AVI.pdf") | |
| .attr("target", "_blank") | |
| .append("text") | |
| .attr("x", 0) | |
| .attr("y", mdsheight + 10 + (6/2)*barguide.height + 5) | |
| .style("dominant-baseline", "middle") | |
| .text("1. saliency(term w) = frequency(w) * [sum_t p(t | w) * log(p(t | w)/p(t))] for topics t; see Chuang et. al (2012)"); | |
| d3.select("#bar-freqs") | |
| .append("a") | |
| .attr("xlink:href", "http://nlp.stanford.edu/events/illvi2014/papers/sievert-illvi2014.pdf") | |
| .attr("target", "_blank") | |
| .append("text") | |
| .attr("x", 0) | |
| .attr("y", mdsheight + 10 + (8/2)*barguide.height + 5) | |
| .style("dominant-baseline", "middle") | |
| .text("2. relevance(term w | topic t) = \u03BB * p(w | t) + (1 - \u03BB) * p(w | t)/p(w); see Sievert & Shirley (2014)"); | |
| // Bind 'default' data to 'default' bar chart | |
| var basebars = chart.selectAll(".bar-totals") | |
| .data(barDefault2) | |
| .enter(); | |
| // Draw the gray background bars defining the overall frequency of each word | |
| basebars | |
| .append("rect") | |
| .attr("class", "bar-totals") | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .style("fill", color1) | |
| .attr("opacity", 0.4); | |
| // Add word labels to the side of each bar | |
| basebars | |
| .append("text") | |
| .attr("x", -5) | |
| .attr("class", "terms") | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }) | |
| .attr("cursor", "pointer") | |
| .attr("id", function(d) { | |
| return (termID + d.Term) | |
| }) | |
| .style("text-anchor", "end") // right align text - use 'middle' for center alignment | |
| .text(function(d) { | |
| return d.Term; | |
| }) | |
| .on("mouseover", function() { | |
| term_hover(this); | |
| }) | |
| // .on("click", function(d) { | |
| // var old_term = termID + vis_state.term; | |
| // if (vis_state.term != "" && old_term != this.id) { | |
| // term_off(document.getElementById(old_term)); | |
| // } | |
| // vis_state.term = d.Term; | |
| // state_save(true); | |
| // term_on(this); | |
| // debugger; | |
| // }) | |
| .on("mouseout", function() { | |
| vis_state.term = ""; | |
| term_off(this); | |
| state_save(true); | |
| }); | |
| var title = chart.append("text") | |
| .attr("x", barwidth/2) | |
| .attr("y", -30) | |
| .attr("class", "bubble-tool") // set class so we can remove it when highlight_off is called | |
| .style("text-anchor", "middle") | |
| .style("font-size", "16px") | |
| .text("Top-" + R + " Most Salient Terms"); | |
| title.append("tspan") | |
| .attr("baseline-shift", "super") | |
| .attr("font-size", "12px") | |
| .text("(1)"); | |
| // barchart axis adapted from http://bl.ocks.org/mbostock/1166403 | |
| var xAxis = d3.svg.axis().scale(x) | |
| .orient("top") | |
| .tickSize(-barheight) | |
| .tickSubdivide(true) | |
| .ticks(6); | |
| chart.attr("class", "xaxis") | |
| .call(xAxis); | |
| // dynamically create the topic and lambda input forms at the top of the page: | |
| function init_forms(topicID, lambdaID, visID) { | |
| // create container div for topic and lambda input: | |
| var inputDiv = document.createElement("div"); | |
| inputDiv.setAttribute("id", "top"); | |
| inputDiv.setAttribute("style", "width: 1210px"); // to match the width of the main svg element | |
| document.getElementById(visID).appendChild(inputDiv); | |
| // topic input container: | |
| var topicDiv = document.createElement("div"); | |
| topicDiv.setAttribute("style", "padding: 5px; background-color: #e8e8e8; display: inline-block; width: " + mdswidth + "px; height: 50px; float: left"); | |
| inputDiv.appendChild(topicDiv); | |
| var topicLabel = document.createElement("label"); | |
| topicLabel.setAttribute("for", topicID); | |
| topicLabel.setAttribute("style", "font-family: sans-serif; font-size: 14px"); | |
| topicLabel.innerHTML = "Selected Topic: <span id='" + topicID + "-value'></span>"; | |
| topicDiv.appendChild(topicLabel); | |
| var topicInput = document.createElement("input"); | |
| topicInput.setAttribute("style", "width: 50px"); | |
| topicInput.type = "text"; | |
| topicInput.min = "0"; | |
| topicInput.max = K; // assumes the data has already been read in | |
| topicInput.step = "1"; | |
| topicInput.value = "0"; // a value of 0 indicates no topic is selected | |
| topicInput.id = topicID; | |
| topicDiv.appendChild(topicInput); | |
| var previous = document.createElement("button"); | |
| previous.setAttribute("id", topicDown); | |
| previous.setAttribute("style", "margin-left: 5px"); | |
| previous.innerHTML = "Previous Topic"; | |
| topicDiv.appendChild(previous); | |
| var next = document.createElement("button"); | |
| next.setAttribute("id", topicUp); | |
| next.setAttribute("style", "margin-left: 5px"); | |
| next.innerHTML = "Next Topic"; | |
| topicDiv.appendChild(next); | |
| var clear = document.createElement("button"); | |
| clear.setAttribute("id", topicClear); | |
| clear.setAttribute("style", "margin-left: 5px"); | |
| clear.innerHTML = "Clear Topic"; | |
| topicDiv.appendChild(clear); | |
| // lambda inputs | |
| //var lambdaDivLeft = 8 + mdswidth + margin.left + termwidth; | |
| var lambdaDivWidth = barwidth; | |
| var lambdaDiv = document.createElement("div"); | |
| lambdaDiv.setAttribute("id", "lambdaInput"); | |
| lambdaDiv.setAttribute("style", "padding: 5px; background-color: #e8e8e8; display: inline-block; height: 50px; width: " + lambdaDivWidth + "px; float: right; margin-right: 30px"); | |
| inputDiv.appendChild(lambdaDiv); | |
| var lambdaZero = document.createElement("div"); | |
| lambdaZero.setAttribute("style", "padding: 5px; height: 20px; width: 220px; font-family: sans-serif; float: left"); | |
| lambdaZero.setAttribute("id", "lambdaZero"); | |
| lambdaDiv.appendChild(lambdaZero); | |
| var xx = d3.select("#lambdaZero") | |
| .append("text") | |
| .attr("x", 0) | |
| .attr("y", 0) | |
| .style("font-size", "14px") | |
| .text("Slide to adjust relevance metric:"); | |
| var yy = d3.select("#lambdaZero") | |
| .append("text") | |
| .attr("x", 125) | |
| .attr("y", -5) | |
| .style("font-size", "10px") | |
| .style("position", "absolute") | |
| .text("(2)"); | |
| var sliderDiv = document.createElement("div"); | |
| sliderDiv.setAttribute("id", "sliderdiv"); | |
| sliderDiv.setAttribute("style", "padding: 5px; height: 40px; width: 250px; float: right; margin-top: -5px; margin-right: 10px"); | |
| lambdaDiv.appendChild(sliderDiv); | |
| var lambdaInput = document.createElement("input"); | |
| lambdaInput.setAttribute("style", "width: 250px; margin-left: 0px; margin-right: 0px"); | |
| lambdaInput.type = "range"; | |
| lambdaInput.min = 0; | |
| lambdaInput.max = 1; | |
| lambdaInput.step = data['lambda.step']; | |
| lambdaInput.value = vis_state.lambda; | |
| lambdaInput.id = lambdaID; | |
| lambdaInput.setAttribute("list", "ticks"); // to enable automatic ticks (with no labels, see below) | |
| sliderDiv.appendChild(lambdaInput); | |
| var lambdaLabel = document.createElement("label"); | |
| lambdaLabel.setAttribute("id", "lamlabel"); | |
| lambdaLabel.setAttribute("for", lambdaID); | |
| lambdaLabel.setAttribute("style", "height: 20px; width: 60px; font-family: sans-serif; font-size: 14px; margin-left: 80px"); | |
| lambdaLabel.innerHTML = "λ = <span id='" + lambdaID + "-value'>" + vis_state.lambda + "</span>"; | |
| lambdaDiv.appendChild(lambdaLabel); | |
| // Create the svg to contain the slider scale: | |
| var scaleContainer = d3.select("#sliderdiv").append("svg") | |
| .attr("width", 250) | |
| .attr("height", 25); | |
| var sliderScale = d3.scale.linear() | |
| .domain([0, 1]) | |
| .range([7.5, 242.5]) // trimmed by 7.5px on each side to match the input type=range slider: | |
| .nice(); | |
| // adapted from http://bl.ocks.org/mbostock/1166403 | |
| var sliderAxis = d3.svg.axis() | |
| .scale(sliderScale) | |
| .orient("bottom") | |
| .tickSize(10) | |
| .tickSubdivide(true) | |
| .ticks(6); | |
| // group to contain the elements of the slider axis: | |
| var sliderAxisGroup = scaleContainer.append("g") | |
| .attr("class", "slideraxis") | |
| .attr("margin-top", "-10px") | |
| .call(sliderAxis); | |
| // Another strategy for tick marks on the slider; simpler, but not labels | |
| // var sliderTicks = document.createElement("datalist"); | |
| // sliderTicks.setAttribute("id", "ticks"); | |
| // for (var tick = 0; tick <= 10; tick++) { | |
| // var tickOption = document.createElement("option"); | |
| // //tickOption.value = tick/10; | |
| // tickOption.innerHTML = tick/10; | |
| // sliderTicks.appendChild(tickOption); | |
| // } | |
| // append the forms to the containers | |
| //lambdaDiv.appendChild(sliderTicks); | |
| } | |
| // function to re-order the bars (gray and red), and terms: | |
| function reorder_bars(increase) { | |
| // grab the bar-chart data for this topic only: | |
| var dat2 = lamData.filter(function(d) { | |
| //return d.Category == "Topic" + Math.min(K, Math.max(0, vis_state.topic)) // fails for negative topic numbers... | |
| return d.Category == "Topic" + vis_state.topic; | |
| }); | |
| // define relevance: | |
| for (var i = 0; i < dat2.length; i++) { | |
| dat2[i].relevance = vis_state.lambda * dat2[i].logprob + | |
| (1 - vis_state.lambda) * dat2[i].loglift; | |
| } | |
| // sort by relevance: | |
| dat2.sort(fancysort("relevance")); | |
| // truncate to the top R tokens: | |
| var dat3 = dat2.slice(0, R); | |
| var y = d3.scale.ordinal() | |
| .domain(dat3.map(function(d) { | |
| return d.Term; | |
| })) | |
| .rangeRoundBands([0, barheight], 0.15); | |
| var x = d3.scale.linear() | |
| .domain([0, d3.max(dat3, function(d) { | |
| return d.Total; | |
| })]) | |
| .range([0, barwidth]) | |
| .nice(); | |
| // Change Total Frequency bars | |
| var graybars = d3.select("#bar-freqs") | |
| .selectAll(".bar-totals") | |
| .data(dat3, function(d) { | |
| return d.Term; | |
| }); | |
| // Change word labels | |
| var labels = d3.select("#bar-freqs") | |
| .selectAll(".terms") | |
| .data(dat3, function(d) { | |
| return d.Term; | |
| }); | |
| // Create red bars (drawn over the gray ones) to signify the frequency under the selected topic | |
| var redbars = d3.select("#bar-freqs") | |
| .selectAll(".overlay") | |
| .data(dat3, function(d) { | |
| return d.Term; | |
| }); | |
| // adapted from http://bl.ocks.org/mbostock/1166403 | |
| var xAxis = d3.svg.axis().scale(x) | |
| .orient("top") | |
| .tickSize(-barheight) | |
| .tickSubdivide(true) | |
| .ticks(6); | |
| // New axis definition: | |
| var newaxis = d3.selectAll(".xaxis"); | |
| // define the new elements to enter: | |
| var graybarsEnter = graybars.enter().append("rect") | |
| .attr("class", "bar-totals") | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term) + barheight + margin.bottom + 2 * rMax; | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .style("fill", color1) | |
| .attr("opacity", 0.4); | |
| var labelsEnter = labels.enter() | |
| .append("text") | |
| .attr("x", -5) | |
| .attr("class", "terms") | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12 + barheight + margin.bottom + 2 * rMax; | |
| }) | |
| .attr("cursor", "pointer") | |
| .style("text-anchor", "end") | |
| .attr("id", function(d) { | |
| return (termID + d.Term) | |
| }) | |
| .text(function(d) { | |
| return d.Term; | |
| }) | |
| .on("mouseover", function() { | |
| term_hover(this); | |
| }) | |
| // .on("click", function(d) { | |
| // var old_term = termID + vis_state.term; | |
| // if (vis_state.term != "" && old_term != this.id) { | |
| // term_off(document.getElementById(old_term)); | |
| // } | |
| // vis_state.term = d.Term; | |
| // state_save(true); | |
| // term_on(this); | |
| // }) | |
| .on("mouseout", function() { | |
| vis_state.term = ""; | |
| term_off(this); | |
| state_save(true); | |
| }); | |
| var redbarsEnter = redbars.enter().append("rect") | |
| .attr("class", "overlay") | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term) + barheight + margin.bottom + 2 * rMax; | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .style("fill", color2) | |
| .attr("opacity", 0.8); | |
| if (increase) { | |
| graybarsEnter | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .transition().duration(duration) | |
| .delay(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }); | |
| labelsEnter | |
| .transition().duration(duration) | |
| .delay(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }); | |
| redbarsEnter | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }) | |
| .transition().duration(duration) | |
| .delay(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }); | |
| graybars.transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }); | |
| labels.transition().duration(duration) | |
| .delay(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }); | |
| redbars.transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }) | |
| .transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }); | |
| // Transition exiting rectangles to the bottom of the barchart: | |
| graybars.exit() | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .transition().duration(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 6 + i * 18; | |
| }) | |
| .remove(); | |
| labels.exit() | |
| .transition().duration(duration) | |
| .delay(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 18 + i * 18; | |
| }) | |
| .remove(); | |
| redbars.exit() | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }) | |
| .transition().duration(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 6 + i * 18; | |
| }) | |
| .remove(); | |
| // https://github.com/mbostock/d3/wiki/Transitions#wiki-d3_ease | |
| newaxis.transition().duration(duration) | |
| .call(xAxis) | |
| .transition().duration(duration); | |
| } else { | |
| graybarsEnter | |
| .attr("width", 100) // FIXME by looking up old width of these bars | |
| .transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }); | |
| labelsEnter | |
| .transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }); | |
| redbarsEnter | |
| .attr("width", 50) // FIXME by looking up old width of these bars | |
| .transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }); | |
| graybars.transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }); | |
| labels.transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }); | |
| redbars.transition().duration(duration) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .transition().duration(duration) | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }); | |
| // Transition exiting rectangles to the bottom of the barchart: | |
| graybars.exit() | |
| .transition().duration(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 6 + i * 18 + 2 * rMax; | |
| }) | |
| .remove(); | |
| labels.exit() | |
| .transition().duration(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 18 + i * 18 + 2 * rMax; | |
| }) | |
| .remove(); | |
| redbars.exit() | |
| .transition().duration(duration) | |
| .attr("y", function(d, i) { | |
| return barheight + margin.bottom + 6 + i * 18 + 2 * rMax; | |
| }) | |
| .remove(); | |
| // https://github.com/mbostock/d3/wiki/Transitions#wiki-d3_ease | |
| newaxis.transition().duration(duration) | |
| .transition().duration(duration) | |
| .call(xAxis); | |
| } | |
| } | |
| ////////////////////////////////////////////////////////////////////////////// | |
| // function to update bar chart when a topic is selected | |
| // the circle argument should be the appropriate circle element | |
| function topic_on(circle) { | |
| if (circle == null) return null; | |
| // grab data bound to this element | |
| var d = circle.__data__ | |
| var Freq = Math.round(d.Freq * 10) / 10, | |
| topics = d.topics; | |
| // change opacity and fill of the selected circle | |
| circle.style.opacity = highlight_opacity; | |
| circle.style.fill = color2; | |
| // Remove 'old' bar chart title | |
| var text = d3.select(".bubble-tool"); | |
| text.remove(); | |
| // append text with info relevant to topic of interest | |
| d3.select("#bar-freqs") | |
| .append("text") | |
| .attr("x", barwidth/2) | |
| .attr("y", -30) | |
| .attr("class", "bubble-tool") // set class so we can remove it when highlight_off is called | |
| .style("text-anchor", "middle") | |
| .style("font-size", "16px") | |
| .text("Top-" + R + " Most Relevant Terms for Topic " + topics + " (" + Freq + "% of tokens)"); | |
| // grab the bar-chart data for this topic only: | |
| var dat2 = lamData.filter(function(d) { | |
| return d.Category == "Topic" + topics | |
| }); | |
| // define relevance: | |
| for (var i = 0; i < dat2.length; i++) { | |
| dat2[i].relevance = lambda.current * dat2[i].logprob + | |
| (1 - lambda.current) * dat2[i].loglift; | |
| } | |
| // sort by relevance: | |
| dat2.sort(fancysort("relevance")); | |
| // truncate to the top R tokens: | |
| var dat3 = dat2.slice(0, R); | |
| // scale the bars to the top R terms: | |
| var y = d3.scale.ordinal() | |
| .domain(dat3.map(function(d) { | |
| return d.Term; | |
| })) | |
| .rangeRoundBands([0, barheight], 0.15); | |
| var x = d3.scale.linear() | |
| .domain([0, d3.max(dat3, function(d) { | |
| return d.Total; | |
| })]) | |
| .range([0, barwidth]) | |
| .nice(); | |
| // remove the red bars if there are any: | |
| d3.selectAll(".overlay").remove(); | |
| // Change Total Frequency bars | |
| d3.selectAll(".bar-totals") | |
| .data(dat3) | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .style("fill", color1) | |
| .attr("opacity", 0.4); | |
| // Change word labels | |
| d3.selectAll(".terms") | |
| .data(dat3) | |
| .attr("x", -5) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }) | |
| .attr("id", function(d) { | |
| return (termID + d.Term) | |
| }) | |
| .style("text-anchor", "end") // right align text - use 'middle' for center alignment | |
| .text(function(d) { | |
| return d.Term; | |
| }); | |
| // Create red bars (drawn over the gray ones) to signify the frequency under the selected topic | |
| d3.select("#bar-freqs").selectAll(".overlay") | |
| .data(dat3) | |
| .enter() | |
| .append("rect") | |
| .attr("class", "overlay") | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .attr("width", function(d) { | |
| return x(d.Freq); | |
| }) | |
| .style("fill", color2) | |
| .attr("opacity", 0.8); | |
| // adapted from http://bl.ocks.org/mbostock/1166403 | |
| var xAxis = d3.svg.axis().scale(x) | |
| .orient("top") | |
| .tickSize(-barheight) | |
| .tickSubdivide(true) | |
| .ticks(6); | |
| // redraw x-axis | |
| d3.selectAll(".xaxis") | |
| //.attr("class", "xaxis") | |
| .call(xAxis); | |
| } | |
| function topic_off(circle) { | |
| if (circle == null) return circle; | |
| // go back to original opacity/fill | |
| circle.style.opacity = base_opacity; | |
| circle.style.fill = color1; | |
| var title = d3.selectAll(".bubble-tool") | |
| .text("Top-" + R + " Most Salient Terms"); | |
| title.append("tspan") | |
| .attr("baseline-shift", "super") | |
| .attr("font-size", 12) | |
| .text(1); | |
| // remove the red bars | |
| d3.selectAll(".overlay").remove(); | |
| // go back to 'default' bar chart | |
| var dat2 = lamData.filter(function(d) { | |
| return d.Category == "Default" | |
| }); | |
| var y = d3.scale.ordinal() | |
| .domain(dat2.map(function(d) { | |
| return d.Term; | |
| })) | |
| .rangeRoundBands([0, barheight], 0.15); | |
| var x = d3.scale.linear() | |
| .domain([0, d3.max(dat2, function(d) { | |
| return d.Total; | |
| })]) | |
| .range([0, barwidth]) | |
| .nice(); | |
| // Change Total Frequency bars | |
| d3.selectAll(".bar-totals") | |
| .data(dat2) | |
| .attr("x", 0) | |
| .attr("y", function(d) { | |
| return y(d.Term); | |
| }) | |
| .attr("height", y.rangeBand()) | |
| .attr("width", function(d) { | |
| return x(d.Total); | |
| }) | |
| .style("fill", color1) | |
| .attr("opacity", 0.4); | |
| //Change word labels | |
| d3.selectAll(".terms") | |
| .data(dat2) | |
| .attr("x", -5) | |
| .attr("y", function(d) { | |
| return y(d.Term) + 12; | |
| }) | |
| .style("text-anchor", "end") // right align text - use 'middle' for center alignment | |
| .text(function(d) { | |
| return d.Term; | |
| }); | |
| // adapted from http://bl.ocks.org/mbostock/1166403 | |
| var xAxis = d3.svg.axis().scale(x) | |
| .orient("top") | |
| .tickSize(-barheight) | |
| .tickSubdivide(true) | |
| .ticks(6); | |
| // redraw x-axis | |
| d3.selectAll(".xaxis") | |
| .attr("class", "xaxis") | |
| .call(xAxis); | |
| } | |
| // event definition for mousing over a term | |
| function term_hover(term) { | |
| var old_term = termID + vis_state.term; | |
| if (vis_state.term != "" && old_term != term.id) { | |
| term_off(document.getElementById(old_term)); | |
| } | |
| vis_state.term = term.innerHTML; | |
| term_on(term); | |
| state_save(true); | |
| } | |
| // updates vis when a term is selected via click or hover | |
| function term_on(term) { | |
| if (term == null) return null; | |
| term.style["fontWeight"] = "bold"; | |
| var d = term.__data__ | |
| var Term = d.Term; | |
| var dat2 = mdsData3.filter(function(d2) { | |
| return d2.Term == Term | |
| }); | |
| var k = dat2.length; // number of topics for this token with non-zero frequency | |
| var radius = []; | |
| for (var i = 0; i < K; ++i) { | |
| radius[i] = 0; | |
| } | |
| for (i = 0; i < k; i++) { | |
| radius[dat2[i].Topic - 1] = dat2[i].Freq; | |
| } | |
| var size = []; | |
| for (var i = 0; i < K; ++i) { | |
| size[i] = 0; | |
| } | |
| for (i = 0; i < k; i++) { | |
| // If we want to also re-size the topic number labels, do it here | |
| // 11 is the default, so leaving this as 11 won't change anything. | |
| size[dat2[i].Topic - 1] = 11; | |
| } | |
| var rScaleCond = d3.scale.sqrt() | |
| .domain([0, 1]).range([0, rMax]); | |
| // Change size of bubbles according to the word's distribution over topics | |
| d3.selectAll(".dot") | |
| .data(radius) | |
| .transition() | |
| .attr("r", function(d) { | |
| //return (rScaleCond(d)); | |
| return (Math.sqrt(d*mdswidth*mdsheight*word_prop/Math.PI)); | |
| }); | |
| // re-bind mdsData so we can handle multiple selection | |
| d3.selectAll(".dot") | |
| .data(mdsData) | |
| // Change sizes of topic numbers: | |
| d3.selectAll(".txt") | |
| .data(size) | |
| .transition() | |
| .style("font-size", function(d) { | |
| return +d; | |
| }); | |
| // Alter the guide | |
| d3.select(".circleGuideTitle") | |
| .text("Conditional topic distribution given term = '" + term.innerHTML + "'"); | |
| } | |
| function term_off(term) { | |
| if (term == null) return null; | |
| term.style["fontWeight"] = "normal"; | |
| d3.selectAll(".dot") | |
| .data(mdsData) | |
| .transition() | |
| .attr("r", function(d) { | |
| //return (rScaleMargin(+d.Freq)); | |
| return (Math.sqrt((d.Freq/100)*mdswidth*mdsheight*circle_prop/Math.PI)); | |
| }); | |
| // Change sizes of topic numbers: | |
| d3.selectAll(".txt") | |
| .transition() | |
| .style("font-size", "11px"); | |
| // Go back to the default guide | |
| d3.select(".circleGuideTitle") | |
| .text("Marginal topic distribution"); | |
| d3.select(".circleGuideLabelLarge") | |
| .text(defaultLabelLarge); | |
| d3.select(".circleGuideLabelSmall") | |
| .attr("y", mdsheight + 2 * newSmall) | |
| .text(defaultLabelSmall); | |
| d3.select(".circleGuideSmall") | |
| .attr("r", newSmall) | |
| .attr("cy", mdsheight + newSmall); | |
| d3.select(".lineGuideSmall") | |
| .attr("y1", mdsheight + 2 * newSmall) | |
| .attr("y2", mdsheight + 2 * newSmall); | |
| } | |
| // serialize the visualization state using fragment identifiers -- http://en.wikipedia.org/wiki/Fragment_identifier | |
| // location.hash holds the address information | |
| var params = location.hash.split("&"); | |
| if (params.length > 1) { | |
| vis_state.topic = params[0].split("=")[1]; | |
| vis_state.lambda = params[1].split("=")[1]; | |
| vis_state.term = params[2].split("=")[1]; | |
| // Idea: write a function to parse the URL string | |
| // only accept values in [0,1] for lambda, {0, 1, ..., K} for topics (any string is OK for term) | |
| // Allow for subsets of the three to be entered: | |
| // (1) topic only (lambda = 1 term = "") | |
| // (2) lambda only (topic = 0 term = "") visually the same but upon hovering a topic, the effect of lambda will be seen | |
| // (3) term only (topic = 0 lambda = 1) only fires when the term is among the R most salient | |
| // (4) topic + lambda (term = "") | |
| // (5) topic + term (lambda = 1) | |
| // (6) lambda + term (topic = 0) visually lambda doesn't make a difference unless a topic is hovered | |
| // (7) topic + lambda + term | |
| // Short-term: assume format of "#topic=k&lambda=l&term=s" where k, l, and s are strings (b/c they're from a URL) | |
| // Force k (topic identifier) to be an integer between 0 and K: | |
| vis_state.topic = Math.round(Math.min(K, Math.max(0, vis_state.topic))); | |
| // Force l (lambda identifier) to be in [0, 1]: | |
| vis_state.lambda = Math.min(1, Math.max(0, vis_state.lambda)); | |
| // impose the value of lambda: | |
| document.getElementById(lambdaID).value = vis_state.lambda; | |
| document.getElementById(lambdaID + "-value").innerHTML = vis_state.lambda; | |
| // select the topic and transition the order of the bars (if approporiate) | |
| if (!isNaN(vis_state.topic)) { | |
| document.getElementById(topicID).value = vis_state.topic; | |
| if (vis_state.topic > 0) { | |
| topic_on(document.getElementById(topicID + vis_state.topic)); | |
| } | |
| if (vis_state.lambda < 1 && vis_state.topic > 0) { | |
| reorder_bars(false); | |
| } | |
| } | |
| lambda.current = vis_state.lambda; | |
| var termElem = document.getElementById(termID + vis_state.term); | |
| if (termElem !== undefined) term_on(termElem); | |
| } | |
| function state_url() { | |
| return location.origin + location.pathname + "#topic=" + vis_state.topic + | |
| "&lambda=" + vis_state.lambda + "&term=" + vis_state.term; | |
| } | |
| function state_save(replace) { | |
| if (replace) | |
| history.replaceState(vis_state, "Query", state_url()); | |
| else | |
| history.pushState(vis_state, "Query", state_url()); | |
| } | |
| function state_reset() { | |
| if (vis_state.topic > 0) { | |
| topic_off(document.getElementById(topicID + vis_state.topic)); | |
| } | |
| if (vis_state.term != "") { | |
| term_off(document.getElementById(termID + vis_state.term)); | |
| } | |
| vis_state.term = ""; | |
| document.getElementById(topicID).value = vis_state.topic = 0; | |
| state_save(true); | |
| } | |
| }); | |
| // var current_clicked = { | |
| // what: "nothing", | |
| // element: undefined | |
| // }, | |
| //debugger; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment