Created
February 13, 2017 16:43
-
-
Save dselivanov/21c4c992217e08128cb2ca7854e320ae to your computer and use it in GitHub Desktop.
This file contains 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 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 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 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.011326, -0.046751, -0.0058662, -0.014474, 0.3114, -0.11222, -0.089153, -0.103, -0.060534, -0.066351, -0.039626, -0.0026258, 0.27306, -0.056258, -0.10386, 0.12745, -0.08981, 0.21279, -0.10314, -0.04254, 0.036324, -0.031113, 0.020496, -0.099498, 0.11166, -0.043508, 0.12774, -0.080012, 0.12615, -0.1454 ], | |
"y": [ 0.11595, -0.042986, -0.16194, 0.12452, 0.12772, -0.03543, 0.035544, 0.010014, 0.023886, 0.12292, 0.023271, -0.10591, 0.16707, 0.054513, 0.067387, -0.25813, 0.088043, -0.10028, -0.10498, -0.016069, -0.16639, 0.078805, -0.16517, 0.056889, -0.12653, 0.016671, 0.063856, -0.016225, 0.098521, 0.024451 ], | |
"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 ], | |
"Freq": [ 2.8151, 2.2023, 3.9326, 3.1809, 5.8798, 2.4351, 1.8886, 3.2849, 2.5375, 2.138, 2.3301, 3.6197, 3.3698, 2.4461, 1.6106, 4.1008, 3.882, 7.6673, 2.5934, 2.3308, 2.876, 4.8473, 2.1751, 3.2785, 3.5082, 2.9175, 5.3751, 3.4388, 4.3773, 2.9606 ], | |
"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 ] | |
}, | |
"tinfo": { | |
"Term": [ "percent", "sales", "revenue", "growth", "fiscal", "ve", "going", "products", "product", "revenues", "customers", "second", "stores", "compared", "third", "services", "fourth", "ll", "market", "operating", "income", "production", "increased", "debt", "cents", "ph", "store", "slide", "strong", "costs", "time_simply_press_star", "speakers_remarks", "question_press", "background_noise", "harley_davidson", "telephone_keypad", "mute", "time_simply_press", "deluxe", "withdraw", "motorcycle", "motorcycles", "polaris", "telephone_key_pad", "conference_facilitator", "conference_facilitator_today", "mandy", "atv", "question_press_star", "pound_key", "prevent", "answer_period", "owens", "beck", "prevent_background_noise", "speaker", "stacey", "answer_period_caller_instructions", "junction", "dean", "medicare", "medicaid", "nursing", "funeral", "students", "student", "outpatient", "campuses", "pharmacy", "inpatient", "pbm", "nurses", "nurse", "hmo", "hospitals", "acute_care", "skilled_nursing", "tuition", "tricare", "membership", "classroom", "hca", "radiology", "cigna", "ppo", "student_enrollment", "claims_payable", "outlier", "behavioral_health", "surgeries", "design_wins", "semiconductor", "fab", "silicon", "nanometer", "micron", "wafer", "design_win", "dsp", "millimeter", "idt", "lcd", "mixed_signal", "data_storage", "fpga", "serial_ata", "notebook", "asic", "rf", "nm", "scsi", "sram", "dram", "gigabyte", "flat_panel", "broadcom", "wafers", "lithography", "odm", "notebooks", "ounces", "senior_credit_facility", "senior_subordinated_notes", "landfill", "towers", "pegasus", "term_loan", "sci", "harbors", "castle", "senior_notes", "bank_credit_facility", "revolver", "borrowing_capacity", "senior_secured", "early_extinguishment", "ounce", "semi_annual", "covenant", "gross_proceeds", "principal_payments", "debenture", "indebtedness", "debentures", "boulder", "tuck", "converts", "gold", "maintenance_capex", "covenants", "guess", "guys", "yeah", "wondering", "sounds", "wonder", "vis", "sort", "multiple_speakers", "curious", "wouldn_t", "quick_follow", "kind", "hey", "wondered", "nice_job", "awful_lot", "thing", "pretty_good_shape", "happening", "bucks", "bunch", "rid", "smith_barney", "shouldn_t", "stuff", "hadn_t", "legg_mason", "raymond_james", "hoping", "food_service", "milk", "beer", "maytag", "snacks", "cereal", "snack", "diet", "cigarette", "vegetable", "fresh_cut", "banana", "flowers", "hoover", "soup", "wine", "cookies", "soy", "heinz", "sauces", "juice", "kraft", "promotional_spending", "varieties", "baking", "coors", "bakeries", "gillette", "refrigerated", "dream", "revpar", "resorts", "hotels", "lodging", "load_factor", "fedex", "borgata", "asm", "intermodal", "casm", "rev_par", "railway", "atlantic_city", "railroad", "fuel_prices", "casinos", "asms", "casino", "rasm", "fuel_surcharge", "marriott", "ltl", "sheraton", "mirage", "fare", "trailers", "expedia", "hotel", "ritz", "leisure", "constant_currency", "eur", "local_currencies", "cme", "euros", "local_currency", "reconstructive", "constant_currency_basis", "hip", "mis", "currencies", "constant_dollar", "constant_dollars", "foreign_currencies", "americas_region", "brady", "knee", "czech_republic", "favorable_currency", "currency_effects", "yen", "orient", "euro", "japanese_yen", "latin_america", "currency", "latin_american", "icos", "italy", "ceramic", "megawatts", "ferc", "dominion", "colder", "nuclear", "normal_weather", "megawatt_hour", "megawatt", "megawatt_hours", "duke_energy", "txu", "unregulated", "service_territory", "reactor", "electric_utility", "distributable_cash_flow", "public_utility", "nrc", "colder_weather", "electric_generation", "regulatory_commission", "coal_fired", "peabody", "electricity", "spark_spreads", "refueling_outage", "electric", "puc", "doe", "edison", "technical_difficulty", "indiscernible", "percent", "onetime", "answer_session_operator_instructions", "marketshare", "sic", "answer_period_operator_instructions", "operator_instructions", "topline", "productline", "caller_instructions", "troy", "twelve_month", "twelve_months", "trailing_twelve", "parker", "gardner", "sixth_consecutive", "companywide", "grass", "pm_eastern_time", "onboard", "foreign_currency_exchange", "ph", "account_managers", "idaho", "employee_benefit_costs", "gray", "connector", "drilling", "barrels", "wells", "rigs", "drilled", "exploration", "rig", "north_sea", "cubic_feet", "basin", "boe", "deep_water", "deepwater", "oil_equivalent", "mcfe", "onshore", "subsea", "bcfe", "west_africa", "nymex", "gulf_coast", "gulf", "barges", "rig_count", "devon", "rockies", "cubic_feet_equivalent", "pinedale", "deep_shelf", "unocal", "peoplesoft", "analytics", "accenture", "bpo", "forrester", "pwc", "speech", "remedy", "software_licenses", "client_retention", "cios", "agile", "contact_center", "atms", "average_deal_size", "consulting", "clients", "advent", "client_base", "csc", "client_relationships", "patrol", "cio", "signings", "unbilled_receivables", "analytic", "public_sector", "outsourcing", "assignments", "gartner", "slide", "chart", "slides", "column", "left_hand", "cogs", "dana", "cvs", "accompany", "appendix", "powerpoint", "hayes", "graph", "charts", "columns", "admin", "gmac", "definitions", "vic", "buyouts", "organize", "click", "barb", "denominator", "skip", "ira", "removes", "chile", "maria", "deck", "reinsurance", "combined_ratio", "casualty", "persistency", "earned_premium", "catastrophe", "personal_lines", "catastrophe_losses", "property_casualty", "aetna", "disability", "catastrophes", "policyholders", "earned_premiums", "net_premiums_written", "indemnity", "net_written_premium", "net_written_premiums", "variable_annuity", "universal_life", "allstate", "dac", "guaranty", "net_premiums_earned", "reinsurers", "written_premiums", "surety", "treaty", "cna", "insurance_written", "restaurant", "restaurants", "beef", "chicken", "franchisees", "pork", "kroger", "sonic", "monster", "hog", "dinner", "casual_dining", "restaurant_openings", "breeze", "franchisee", "menu", "breakfast", "franchising", "sandwich", "system_wide", "grill", "lunch", "tyson", "logan", "bones", "dining", "wendy", "chili", "poultry", "salads", "linux", "adobe", "firewall", "bar_code", "veritas", "xerox", "eds", "vpn", "raid", "storage_networking", "unix", "purchased_intangibles", "digital_media", "cadence", "network_appliance", "channel_partners", "mx", "interoperability", "mpeg", "microsoft", "digital_tv", "hewlett_packard", "user_interface", "bea", "java", "keynote", "checkpoint", "editing", "idc", "sans", "albany", "laurie", "kerr", "oxford", "months_ended_september", "brent", "telephonic", "northrop_grumman", "brien", "secondary_offering", "months_ended_march", "fred", "ended_september", "fiscal", "general_administrative_expenses", "hopes_beliefs", "grading", "coordinator_today", "months_ended_june", "recorded_wednesday", "touchtone_phone", "exchange_commission_filings", "mms", "ended_june", "touchtone_telephone", "stock_buyback_program", "coordinator", "conference_coordinator_today", "ended_march", "gross_profit_margin", "mccann", "competitive_advantages", "strategic_priorities", "quest", "accountability", "russ", "talent", "best_practices", "reinforcing", "cashflow", "relentless", "decentralized", "marc", "passion", "greetings", "veteran", "loren", "adapt", "tactics", "diane", "journey", "cohesive", "disciplines", "boosting", "underserved", "competitive_advantage", "creating", "berger", "articulated", "energized", "aftermarket", "crane", "oe", "tire", "honda", "missile_defense", "dealerships", "aerospace", "goodyear", "commercial_aviation", "exhaust", "cranes", "filtration", "refrigeration", "titan", "weapons", "missile", "joint_strike_fighter", "emerson", "vehicle", "chrysler", "wastewater", "volkswagen", "gm", "nasa", "carlisle", "audi", "refuse", "missiles", "avionics", "advertisers", "titles", "vod", "box_office", "nascar", "viacom", "harry_potter", "finding_nemo", "broadcasters", "nbc", "movies", "tribune", "thq", "disney", "pacings", "news_corp", "fox", "arbitron", "avid", "theatrical", "radio_stations", "television_stations", "comedy", "viewers", "studios", "advertiser", "political_advertising", "publishing", "wb", "busch", "metrology", "applied_materials", "pulse", "polishing", "stat", "adept", "consumable", "cartridges", "cmp", "capstone", "vacuum", "inspection", "deposition", "cartridge", "life_science", "omni", "tel", "veterinary", "consumables", "electron", "spec", "defects", "sab", "di", "cabinet", "copper", "instrument", "thermal", "erp_system", "probe", "excluding_special_items", "cobalt", "workforce_reductions", "em", "asset_impairment", "nonrecurring_charges", "asset_impairment_charges", "valuation_allowance", "special_items", "extra_week", "severance_charges", "severance", "asset_impairment_charge", "goodwill_impairment_charge", "beth", "annualized_savings", "eva", "work_force_reductions", "restructuring", "cash_outflows", "special_charges", "impairment_charges", "harmon", "restructuring_charge", "goodwill_impairment", "headcount_reductions", "streamlining", "restructuring_charges", "riley", "ncr", "long_distance", "roaming", "sprint", "arpu", "directv", "ebay", "tivo", "churn", "high_speed_data", "subscriber_base", "dvr", "rpu", "ilec", "sprint_pcs", "yahoo", "cingular", "clec", "tdma", "adsl", "number_portability", "gross_adds", "earthlink", "cpga", "pas", "satellite_radio", "amp_t_broadband", "basic_subscribers", "gross_additions", "subscriber_additions", "sbc", "charge_offs", "loans", "lending", "asset_quality", "loan_portfolio", "loan_losses", "performing_assets", "efficiency_ratio", "performing_loans", "core_deposits", "mortgage_banking", "wealth_management", "nonperforming_assets", "earning_assets", "mortgage_backed_securities", "mortgage_servicing_rights", "bancshares", "residential_mortgage", "msr", "loan_balances", "mortgage_servicing", "bancorp", "private_banking", "nonperforming_loans", "servicing_portfolio", "structured_finance", "loan_originations", "noninterest_income", "checking_accounts", "asset_sensitive", "fda", "therapeutic", "oncology", "vaccine", "clinical_trial", "drug_discovery", "hiv", "antibody", "collaborations", "efficacy", "preclinical", "diseases", "cardiovascular", "vascular", "clinical_trials", "therapeutics", "stent", "novel", "pre_clinical", "small_molecule", "implants", "nda", "dosing", "fda_approval", "cancer", "therapies", "placebo", "diabetes", "ind", "phase_iii", "ffo", "tenant", "noi", "tenants", "redevelopment", "apartment", "occupancies", "leasing_activity", "vacancy", "store_noi", "rental_rates", "shopping_center", "realty", "vacant", "sublease_space", "supplemental_package", "submarkets", "lease_termination_fees", "lasalle", "submarket", "vacancies", "kb", "parcels", "direct_vacancy", "suburban", "realty_trust", "vacancy_rate", "apartments", "property_noi", "reits", "court", "proposed_settlement", "safeguard", "complaint", "proxy_statement", "summary_judgment", "investigations", "plaintiffs", "investigation", "equitable", "solicitation", "arbitration", "damages", "district_court", "proposed_merger", "bankruptcy_court", "restatement", "lawsuit", "cooperate", "allegations", "jury", "vote", "av", "internal_controls", "convertible_preferred_stock", "obligated", "stockholders", "lawsuits", "judge", "disputes", "comparable_store", "footwear", "apparel", "jewelry", "markdowns", "assortments", "sportswear", "assortment", "denim", "shopping_experience", "dress", "markdown", "leather", "jeans", "shirts", "sweaters", "barnes_amp_noble", "chico", "upholstery", "outlet_stores", "stores", "department_store", "polo", "handbags", "vendor_allowances", "athletic", "nike", "sell_throughs", "watches", "dresses", "um", "manpower", "economy_recovers", "secular", "fuller", "persist", "economy_improves", "bright_spot", "recovers", "verses", "geopolitical", "economists", "centralization", "bounce", "weigh", "trough", "erosion", "prolonged", "cautious", "remained_steady", "economic_indicators", "rebound", "norms", "roy", "shortfalls", "choppy", "introductory_comments", "pronounced", "gradual", "employment", "pulp", "steel", "lumber", "aluminum", "scrap", "coatings", "resin", "osb", "ethylene", "metric_tons", "tons", "coated", "mill", "monsanto", "paperboard", "plastics", "office_furniture", "flat_rolled", "vinyl", "pvc", "specialty_chemicals", "tractors", "fine_chemicals", "mtbe", "uncoated", "resins", "soybean", "pressure_sensitive", "chlorine", "roofing", "hospital", "schools", "beds", "admissions", "managed_care", "physician", "tenet", "healthcare", "chip", "optical", "analog", "chips", "optics", "foundry", "wireless_lan", "samsung", "ic", "memory", "fibre_channel", "refinancing", "capital_structure", "tower", "notes", "convertible", "ebitda", "waste", "don_t", "lot", "pretty", "things", "bit", "going", "didn_t", "talked", "basically", "talking", "happened", "sure", "doesn_t", "thought", "couple", "looked", "frozen", "foodservice", "fitness", "gaming", "resort", "parks", "rooms", "slot", "europe", "foreign_exchange", "france", "germany", "european", "foreign_currency", "spain", "utility", "regulated", "energy", "utilities", "propane", "power_plants", "dynegy", "electric_power", "frank", "norm", "barrel", "oil", "drill", "crude", "mcf", "crude_oil", "canyon", "client", "professional_services", "engagements", "consultant", "presentation", "left", "underwriting", "asbestos", "premiums", "life_insurance", "annuity", "accident", "ace", "annuities", "claims", "guests", "meat", "guest", "turkey", "enterprise", "server", "software", "servers", "portal", "windows", "tape", "emc", "hp", "solution", "rfid", "mobility", "resellers", "diluted", "compared", "decreased", "period", "team", "teams", "strategy", "culture", "execute", "talented", "role", "consistency", "leaders", "proven", "integrity", "executing", "priority", "differentiate", "defense", "vehicles", "ford", "truck", "dealer", "air_force", "tires", "military", "commercial_aerospace", "ad", "television", "stations", "tv", "radio", "programming", "station", "studio", "entertainment", "newspapers", "broadcast", "movie", "music", "cbs", "hd", "machines", "machine", "orders", "actions", "charges", "discontinued_operations", "savings", "realignment", "goodwill", "subscribers", "broadband", "subscriber", "dsl", "verizon", "directory", "comcast", "amp_t_wireless", "loan", "deposits", "deposit", "banking", "mortgage", "originations", "credit_quality", "delinquencies", "linked", "branches", "investment_banking", "prepayments", "patients", "clinical", "study", "blood", "studies", "drug", "therapy", "disease", "pharma", "dose", "compounds", "treatment", "leasing", "square_feet", "occupancy", "rents", "leased", "rent", "communities", "concessions", "occupied", "homes", "properties", "leases", "litigation", "agreed", "ruling", "proposed", "counsel", "dispute", "auditors", "merchandise", "store", "comp_store", "men", "merchandising", "gift", "accessories", "department_stores", "lifestyle", "distribution_center", "uncertainty", "macro", "recession", "deterioration", "remain_cautious", "economy", "downturn", "modest", "signs", "ton", "raw_material", "selling_prices", "chemicals", "raw_material_costs", "timber", "metal", "metals", "paper", "corn", "wood", "chuck", "mac", "health_care", "education", "medical", "cms", "physicians", "campus", "designs", "micro", "bill_ratio", "debt", "free_cash_flow", "adjusted_ebitda", "people", "talk", "big", "sense", "nice", "question", "happen", "brands", "branded", "foods", "brand", "coffee", "fruit", "golf", "delta", "rail", "airline", "igt", "japan", "north_america", "asia_pacific", "australia", "americas", "asia", "power", "gas", "outage", "outages", "enron", "weather", "transmission", "third", "september", "percentage", "production", "vessels", "seismic", "gas", "services", "revenue", "license", "sue", "hr", "ll", "ve", "adjusted", "walk", "talk", "fin", "numbers", "premium", "insurance", "life", "agents", "homeowners", "food", "franchise", "openings", "solutions", "subscription", "san", "ip", "symbol", "decrease", "income", "revenues", "administrative_expenses", "gentlemen", "fourth", "prior", "amounted", "gross_profit", "focus", "strategic", "drive", "focused", "organization", "quality", "create", "leadership", "success", "goals", "key", "management_team", "commitment", "unique", "automotive", "engine", "dod", "engines", "army", "emission", "advertising", "ratings", "dvd", "media", "circulation", "equipment", "automated", "tool", "installed", "laser", "stan", "reduction", "reductions", "impairment", "fourth", "reducing", "charge", "$", "voice", "carriers", "cable", "wireless", "pcs", "cox", "bank", "servicing", "delinquency", "trial", "dr", "trials", "pharmaceutical", "phase_ii", "lease", "land", "square_foot", "southern_california", "dallas", "legal", "settlement", "nasdaq", "directors", "filed", "definitive", "ray", "retail", "fashion", "women", "square_footage", "comp", "comps", "catalog", "decline", "sequential", "weak", "levels", "economic", "environment", "conditions", "weakness", "difficult", "forecast", "trends", "pressure", "declines", "recovery", "modestly", "flat", "raw_materials", "pound", "export", "dover", "glass", "question", "lines", "health", "care", "school", "design", "devices", "bookings", "oems", "networking", "taiwan", "cash", "percent", "bonds", "credit_facility", "acquisition", "cash_flow", "ve", "good", "terms", "side", "category", "innovation", "beverage", "aircraft", "travel", "fuel", "park", "airlines", "international", "worldwide", "global", "north_american", "brazil", "countries", "commission", "fuel", "natural_gas", "compared", "increased", "totaled", "months", "growth", "cents", "day", "mexico", "revenues", "india", "wins", "integration", "offshore", "headcount", "deals", "going", "side", "items", "move", "good", "item", "accounting", "fact", "moving", "claim", "ratio", "reserves", "statutory", "mcdonald", "bakery", "security", "gaap", "version", "platform", "customers", "content", "application", "architecture", "users", "functionality", "pro_forma", "increased", "cents", "third", "expenses", "comparable", "ended", "mode", "totaled", "listen", "operating", "growth", "opportunities", "ability", "model", "deliver", "long_term", "efforts", "goal", "approach", "industrial", "backlog", "dealers", "commercial", "aviation", "systems", "sports", "news", "film", "product", "manufacturing", "system", "rental", "tools", "manufacturers", "systems", "excluding", "lower", "costs", "reduce", "billion", "pension", "operating", "reduced", "decline", "initiatives", "loss", "network", "telecom", "carrier", "satellite", "interest", "flows", "equity", "portfolio", "fees", "drugs", "property", "real_estate", "atlanta", "agreement", "contract", "board", "transaction", "status", "matters", "law", "pending", "options", "inventory", "retailers", "challenging", "remains", "sector", "slow", "declined", "prices", "volumes", "plant", "second", "number", "sales", "good_morning", "cents", "remarks", "press_release", "patient", "members", "centers", "products", "sequentially", "wireless", "oem", "china", "pc", "power", "acquisitions", "interest", "dollars", "capital_expenditures", "numbers", "feel", "products", "consumer", "volume", "sales", "trade", "retail", "growth", "grocery", "freight", "fleet", "growth", "sales", "region", "china", "double_digit", "plants", "generation", "plant", "wholesale", "coal", "sales", "period", "second", "total", "prior", "feet", "field", "prospect", "software", "maintenance", "contracts", "global", "deferred", "processing", "solutions", "mentioned", "point", "eps", "detail", "basis", "gaap", "guidance", "reserve", "losses", "book", "investment", "labor", "opened", "sales", "product", "technology", "applications", "products", "revenue", "network", "web", "storage", "months", "december", "current", "sales", "st", "performance", "years", "market", "progress", "build", "opportunity", "initiatives", "industry", "segment", "car", "parts", "aircraft", "marine", "government", "games", "magazine", "products", "sales", "order", "customers", "inventory", "test", "backlog", "instruments", "cost", "businesses", "improvement", "improve", "services", "service", "search", "networks", "gsm", "credit", "assets", "funds", "fee", "billion", "banks", "trading", "development", "phase", "approval", "collaboration", "portfolio", "space", "rental", "center", "received", "public", "financial", "september", "option", "shares", "issues", "sales", "brand", "opened", "spring", "categories", "markets", "market", "level", "improvement", "positive", "range", "march", "volume", "price", "demand", "segment", "higher", "operating", "guidance", "income", "range", "increased", "state", "states", "revenue", "technology", "product", "customers", "revenues", "inventory", "gross_margin", "market", "applications", "balance_sheet", "total", "pay", "operating", "times", "proceeds", "financing", "facility", "ll", "number", "great", "product", "segment", "food", "consumers", "strong", "grew", "capacity", "room", "ticket", "air", "strong", "operating", "profit", "grew", "impact", "cents", "trading", "contracts", "rate", "revenue", "income", "ago", "days", "rate", "operating", "natural_gas", "offshore", "service", "contract", "companies", "management", "acquisition", "total", "cents", "number", "course", "start", "income", "loss", "risk", "segment", "property", "fiscal", "costs", "comps", "channel", "market", "ibm", "expense", "financial", "actual", "june", "operations", "strong", "management", "position", "ve", "sales", "orders", "pension", "margin", "programs", "profit", "revenue", "video", "print", "technology", "process", "facility", "gross_margins", "customer", "operations", "cash", "expense", "included", "progress", "full", "customers", "access", "communications", "basis_points", "income", "growth", "securities", "asset", "data", "product", "launch", "markets", "development", "additional", "ph", "announced", "currently", "update", "second", "amount", "loss", "third", "june", "basis_points", "gross_margin", "inventories", "wholesale", "impact", "remain", "revenue", "lower", "expected", "costs", "second", "production", "sales", "cost", "shipments", "ll", "growth", "expense", "growth", "programs", "days", "services", "fiscal", "orders", "inaudible", "expect", "shipments", "fourth", "third", "expense", "consolidated", "ph", "outstanding", "basis", "point", "coming", "fact", "distribution", "fiscal", "marketing", "spending", "half", "increased", "channels", "retailers", "property", "revenues", "service", "ebitda", "increased", "full", "market", "dollar", "pipeline", "higher", "case", "regulatory", "assets", "prices", "revenues", "performance", "project", "activity", "reserves", "projects", "volumes", "second", "customers", "customer", "large", "fourth", "three", "amp", "lot", "rate", "portfolio", "capital", "second", "increases", "store", "basis_points", "percent", "cost", "opening", "fresh", "customer", "data", "based", "systems", "revenue", "september", "ago", "differ_materially", "customers", "future", "margins", "production", "strong", "full", "acquisitions", "revenues", "national", "operating", "second", "compared", "units", "gross_margin", "third", "market", "impact", "improved", "revenue", "customer", "ebitda", "internet", "rate", "rates", "average", "investment", "second", "products", "programs", "program", "patient", "assets", "market", "rate", "cash", "current", "future", "process", "review", "provide", "operations", "versus", "brands", "guidance", "quarters", "products", "third", "pricing", "lower", "increased", "inventories", "strong", "compared", "versus", "revenue", "prior", "second", "high", "amp", "second", "expect", "rate", "financial", "income", "completed", "better", "full", "fourth", "price", "versus", "revenue", "operating", "second", "traffic", "cents", "continued", "expect", "second", "billion", "amp", "costs", "service", "operations", "continued", "second", "program", "third", "canada", "compared", "operating", "expenses", "guidance", "cash", "balance_sheet", "market", "financial", "growth", "average", "units", "impact", "fourth", "margins", "total", "expenses", "access", "second", "loss", "cash", "financial", "provide", "growth", "billion", "businesses", "program", "operating", "growth", "strong", "second", "revenues", "large", "distribution", "third", "expect", "second", "revenues", "growth", "data", "management", "margin", "third", "ph", "pipeline", "amp", "potential", "progress", "average", "fourth", "period", "reported", "second", "increased", "fiscal", "customer", "third", "expect", "revenues", "basis", "rate", "market", "operating", "improved", "fourth", "industry", "cents", "increases", "financial", "operating", "increased", "expect", "service", "fiscal", "growth", "fourth", "demand", "cash", "revenues", "operations", "increased", "months", "versus", "market", "years", "mentioned", "second", "expect", "lower", "cents", "higher", "increased", "cost", "costs", "third", "september", "higher", "economy", "group", "performance", "versus", "prior", "basis", "customers", "impact", "cost", "compared", "income", "improvement", "higher", "improved", "average", "area", "interest", "development", "financial", "days", "rates", "billion", "lines", "operations", "second", "higher", "markets", "lower", "operating", "open", "total", "services", "service", "system", "fiscal", "total", "market", "performance", "increased", "income", "third", "ebitda", "markets", "current", "cost", "service", "sales", "compared", "expenses", "financial", "third", "total", "expect", "total", "increased", "strong", "expect", "second", "second", "cents", "companies", "total", "plan", "fourth", "product", "open", "higher", "current", "income", "compared", "performance", "ago", "pleased", "cost", "fourth", "strong", "margin", "loss", "expenses", "production", "revenue", "result", "costs", "third", "expect", "performance", "industry", "fourth", "total", "income", "reported", "product", "market", "system", "increased", "project", "capacity", "going", "fourth", "expect", "costs", "price", "income", "expect", "performance", "financial", "ago", "half", "third", "compared", "increased", "increased", "third", "expect", "versus", "ago", "sales", "financial", "including", "result", "plan", "debt", "expect", "lower", "higher", "fourth", "expenses", "expect", "future", "development", "performance", "cents", "strong", "capital", "fourth", "sales", "expenses", "including", "third", "interest", "total", "debt", "capital", "result", "costs", "strong", "basis", "compared", "debt", "levels", "expenses", "revenues", "rate", "management", "basis", "number", "guidance", "development", "markets", "margins", "percent", "ago", "months", "improvement", "growth", "result", "prior", "higher", "operating", "expect", "lower", "segment", "operations", "strong", "expenses", "higher", "rate", "income", "cash", "including", "third", "quarters", "fourth", "operating", "strong", "cents", "cash", "management", "higher", "three", "markets", "marketing", "total", "market", "full", "total", "costs", "costs", "debt", "result", "cash", "markets", "product", "market", "performance", "market", "cash", "financial", "guidance", "review", "loss", "growth", "expect", "including", "cost", "cents", "performance", "expect", "including", "higher", "industry", "versus", "operations", "product", "markets" ], | |
"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, -5.6273, -5.548, -5.786, -5.2311, -7.5543, -5.2016, -5.1482, -7.7418, -7.3661, -5.2489, -7.9326, -7.7203, -7.7749, -6.5673, -6.4355, -5.6027, -8.2925, -7.7749, -6.2171, -5.9171, -5.199, -5.2093, -8.2739, -8.0148, -8.0888, -6.1891, -8.4558, -8.5733, -8.5986, -7.344, -5.442, -6.0628, -6.2072, -6.376, -5.941, -6.21, -6.2896, -6.4706, -5.2956, -7.0199, -7.0392, -7.1273, -7.1561, -7.0327, -5.037, -7.4411, -7.4607, -7.6567, -7.6935, -5.4368, -7.4124, -7.7447, -7.8127, -7.5431, -7.9163, -7.9808, -7.4908, -7.5324, -8.0859, -7.3137, -5.8925, -5.4355, -6.4505, -6.4946, -6.8735, -7.0703, -6.582, -7.1663, -7.2136, -6.7808, -7.3402, -7.0551, -7.4127, -7.1211, -7.6277, -7.6754, -7.3914, -7.451, -6.6726, -7.794, -7.794, -7.8341, -7.8341, -7.859, -7.8932, -7.9376, -7.6479, -7.9652, -7.9652, -8.0033, -6.8796, -7.7393, -7.5421, -7.5957, -7.2144, -8.07, -6.6413, -7.6196, -8.5469, -8.0207, -6.6815, -7.6608, -6.216, -8.2197, -7.6863, -7.9737, -6.9807, -8.5267, -7.0931, -8.296, -8.4685, -8.7247, -7.767, -8.045, -8.4685, -8.7007, -8.1627, -6.6203, -8.7247, -6.7333, -5.6591, -6.0436, -6.5516, -6.7468, -7.6361, -8.2495, -7.7313, -5.7545, -8.025, -7.9045, -7.1139, -9.0462, -4.9395, -8.2963, -8.7934, -9.0462, -8.424, -5.3696, -9.2114, -6.6907, -8.8336, -8.3539, -8.9807, -8.5811, -8.4705, -7.2816, -8.7674, -9.2114, -9.0806, -7.674, -6.1434, -7.1941, -6.9182, -7.3671, -7.375, -7.4237, -7.4927, -7.2485, -7.5861, -7.5959, -7.6677, -7.4321, -7.8164, -7.5477, -6.7823, -6.9751, -8.0059, -7.5107, -7.3515, -8.0673, -7.4237, -7.6059, -7.3135, -8.0059, -7.7111, -7.6261, -8.2399, -8.116, -7.5016, -7.5198, -5.5196, -6.3054, -5.1142, -6.4078, -6.7334, -6.9436, -7.0248, -7.0964, -6.5696, -7.1131, -7.1215, -6.849, -7.1473, -6.7051, -6.7865, -7.3811, -7.3811, -6.4037, -7.4146, -7.4974, -6.7805, -7.5742, -7.615, -7.6721, -6.811, -7.1826, -7.9022, -5.1861, -7.7643, -6.6195, -6.4931, -7.2484, -7.2587, -7.8063, -7.2851, -5.91, -7.9007, -7.264, -7.1884, -7.4599, -6.6557, -8.2668, -8.2812, -7.8063, -8.5446, -8.1717, -7.0914, -7.9514, -7.3982, -8.2527, -7.2433, -8.5259, -5.4241, -8.583, -5.5716, -4.9889, -7.4663, -8.5259, -6.7023, -7.8063, -6.5267, -6.8886, -6.9185, -7.0827, -6.2854, -7.1314, -7.6111, -7.0946, -7.6212, -7.3544, -7.7063, -7.7402, -7.9292, -7.9292, -7.9573, -8.001, -8.0161, -8.0313, -7.7517, -8.0947, -8.0947, -8.1451, -7.8492, -6.2962, -8.1801, -8.1981, -5.2535, -8.2164, -7.9863, -6.9544, -5.0508, -3.6682, -1.2907, -6.3602, -7.8414, -7.7421, -7.9854, -7.8716, -6.1865, -6.7588, -8.3562, -6.4788, -8.3814, -8.3814, -7.4022, -8.748, -8.3075, -8.5787, -8.1743, -8.5787, -8.9077, -8.952, -8.9983, -8.8247, -3.7364, -9.1516, -8.7856, -8.9983, -8.8247, -9.4014, -4.3844, -5.0286, -4.5274, -5.3223, -5.6196, -5.2877, -5.5733, -6.2221, -5.7208, -6.2595, -6.4511, -6.5738, -6.762, -6.8319, -6.8814, -6.9123, -6.9551, -7.0769, -7.1146, -7.134, -6.2705, -5.1324, -7.2372, -6.9497, -7.2517, -7.2666, -7.3046, -7.344, -7.3936, -7.4107, -6.9286, -7.2866, -7.5097, -8.1163, -7.7152, -8.3246, -7.3722, -7.6766, -8.4314, -8.498, -8.607, -7.731, -8.4641, -8.3842, -8.5154, -5.4486, -4.4594, -7.8864, -7.3021, -8.2683, -8.2022, -8.4314, -7.7635, -7.9742, -8.7737, -8.2547, -7.3179, -5.6654, -8.1046, -7.6394, -3.7388, -5.469, -5.6677, -6.8226, -8.188, -8.3289, -7.1489, -8.2146, -7.8843, -8.424, -8.6892, -8.78, -7.8096, -7.5426, -8.7565, -8.2146, -8.7336, -8.6468, -8.7112, -8.6678, -9.0205, -7.2313, -8.9907, -8.9064, -8.6678, -8.9064, -9.0828, -8.9907, -8.424, -8.606, -5.5293, -5.9972, -5.8937, -6.7109, -6.9627, -7.0125, -7.1525, -7.3625, -7.4553, -7.1723, -6.9466, -7.6182, -7.6286, -7.6392, -7.6938, -7.7051, -7.7165, -7.7756, -7.7756, -7.7879, -7.3386, -7.3386, -7.8648, -7.8917, -7.8917, -7.9774, -7.2925, -7.7635, -7.2556, -8.1214, -4.669, -4.5578, -6.4051, -6.1915, -6.0412, -6.8805, -6.5836, -6.3506, -6.2221, -7.0171, -7.0086, -7.5804, -7.7268, -6.9668, -7.5804, -5.6869, -6.453, -7.5075, -7.5654, -6.4678, -7.5654, -7.1856, -7.4395, -6.8582, -7.7994, -7.8378, -6.612, -7.9851, -7.2487, -7.7624, -7.2538, -7.2982, -8.0092, -8.1063, -8.2025, -7.9207, -7.3543, -8.2252, -8.2603, -8.4004, -8.0092, -8.5318, -8.0092, -7.7789, -8.7014, -7.4714, -8.4142, -8.4282, -8.7391, -6.2448, -7.9465, -7.8632, -8.5798, -8.6475, -8, -8.1479, -8.5163, -7.9909, -8.2025, -8.7014, -8.1672, -8.3611, -8.6201, -8.9974, -6.5995, -9.0247, -8.5838, -9.0247, -8.7802, -8.7171, -8.099, -6.8549, -6.6318, -3.21, -8.7802, -9.2752, -9.3114, -9.3114, -6.9975, -8.4985, -8.6388, -8.7587, -8.8709, -6.6785, -9.2402, -8.9974, -8.3611, -9.4288, -7.1467, -6.8423, -9.241, -8.5654, -8.8699, -7.9116, -8.4309, -8.5403, -7.2099, -7.7606, -9.1458, -9.116, -8.6632, -9.5505, -8.8033, -9.1458, -9.621, -9.1014, -9.4637, -9.0451, -8.9537, -8.9413, -9.3461, -9.5281, -8.5403, -9.5281, -9.241, -7.3279, -6.6485, -9.6456, -8.8585, -8.8931, -6.3152, -7.0407, -7.0687, -6.5869, -7.2486, -7.6436, -7.3791, -5.7672, -7.6138, -8.0638, -7.3562, -8.111, -7.1515, -7.4349, -7.6236, -7.6743, -7.9617, -8.3257, -8.0638, -5.1208, -7.7842, -8.1949, -8.2489, -6.3205, -7.75, -7.75, -8.3459, -7.6537, -8.1775, -7.869, -5.9342, -5.7907, -6.3242, -6.8069, -6.9725, -7.2678, -7.2835, -7.2995, -7.3158, -7.0961, -6.8943, -7.4468, -7.4753, -6.4401, -7.6197, -7.6308, -5.9466, -7.7006, -7.1854, -7.7373, -7.7499, -7.8018, -7.8152, -7.5346, -7.324, -7.9294, -7.9447, -5.5694, -7.6536, -7.6886, -7.0111, -8.0181, -7.5216, -8.0889, -7.6268, -7.5995, -7.0313, -8.2307, -7.655, -7.655, -7.8544, -6.2026, -8.1037, -7.9519, -7.4571, -8.501, -7.9778, -8.5698, -6.8499, -8.5464, -7.9519, -8.3007, -8.4366, -8.6438, -8.0045, -6.7223, -6.5892, -7.3892, -8.416, -8.3007, -7.2739, -8.0304, -8.6269, -8.5077, -8.2361, -8.3573, -8.9002, -7.7546, -6.5452, -8.8462, -8.613, -6.2278, -8.795, -8.7306, -8.3153, -8.6269, -9.0387, -9.0602, -4.6443, -8.9572, -6.9991, -7.5199, -9.0821, -6.6742, -8.4953, -8.6555, -7.7784, -6.2265, -9.175, -8.4472, -6.027, -6.2738, -5.6414, -6.3752, -6.3521, -6.2097, -6.7175, -5.4109, -6.8109, -6.6672, -7.0352, -7.0882, -7.2422, -7.3335, -6.5105, -7.1088, -7.4149, -7.4632, -6.9788, -7.5139, -7.5243, -7.5349, -7.6836, -7.1733, -7.7342, -7.7342, -7.8152, -7.8583, -7.8583, -6.8969, -5.8251, -4.2414, -5.736, -6.4623, -6.2499, -6.8461, -6.9745, -6.9867, -7.0369, -7.1126, -6.8285, -7.1946, -7.2461, -7.2621, -7.5041, -7.5824, -7.5973, -7.7084, -7.7253, -7.7253, -7.7779, -7.5532, -7.8922, -7.9126, -7.9126, -7.944, -7.9547, -7.9764, -8.0445, -8.0683, -5.3216, -6.433, -6.4515, -6.4824, -6.5837, -6.6965, -6.7085, -6.7548, -6.8793, -6.5864, -6.9047, -6.985, -7.0551, -7.0724, -6.2081, -7.1491, -7.1586, -6.8793, -7.2021, -7.2323, -7.2633, -7.2846, -7.29, -7.2954, -5.8579, -7.357, -7.357, -6.8722, -7.4414, -6.608, -4.7921, -5.6329, -5.9564, -5.7664, -6.6395, -6.704, -6.831, -6.9054, -6.6494, -7.2811, -6.5945, -7.4217, -7.2748, -7.3258, -7.9014, -7.913, -7.9612, -7.9612, -7.9736, -7.9736, -7.4733, -7.702, -8.0118, -8.0928, -7.2323, -8.1213, -7.856, -7.7309, -8.2609, -8.0928, -6.5199, -8.5584, -8.2773, -8.6918, -8.1534, -9.0277, -8.2134, -8.8457, -7.1393, -8.2868, -8.2223, -7.5799, -8.1126, -8.9146, -8.8292, -8.6229, -7.3065, -7.3654, -8.9885, -9.0894, -8.5966, -7.7317, -9.1552, -9.0684, -8.7812, -9.1552, -7.3503, -8.1534, -7.5119, -8.4188, -5.7625, -6.1163, -5.7636, -6.9085, -7.0086, -7.093, -7.1473, -6.466, -7.3761, -7.5548, -7.3249, -7.6813, -7.424, -7.4873, -7.854, -7.9023, -7.7217, -7.799, -8.0864, -8.0983, -3.3931, -6.9573, -7.9955, -8.3122, -8.3122, -7.817, -7.1426, -8.4224, -8.4391, -8.4912, -7.6238, -8.9138, -8.9138, -8.7939, -8.7752, -8.5451, -8.1017, -7.9055, -8.7213, -8.7569, -7.372, -8.8323, -9.1, -8.6214, -9.2972, -8.6536, -7.8675, -8.2763, -6.639, -9.1, -9.2079, -6.8937, -8.9796, -8.488, -8.6869, -9.3289, -9.2079, -8.6373, -8.0116, -6.6791, -6.5516, -5.3093, -6.6035, -6.9305, -6.9794, -7.3121, -7.111, -7.463, -7.5319, -7.6319, -5.6295, -6.9932, -6.1784, -7.7728, -7.857, -6.9261, -7.9489, -7.961, -7.961, -7.961, -7.9983, -7.743, -8.0771, -8.0909, -8.1049, -8.119, -8.1334, -8.148, -8.1628, -8.1778, -4.8556, -6.2683, -6.567, -6.1739, -6.5589, -5.6813, -7.001, -5, -6.0708, -6.1301, -6.2107, -6.6523, -7.0402, -7.1373, -7.0741, -7.1052, -7.2092, -6.4363, -7.5758, -5.8881, -6.386, -6.386, -5.6954, -6.9807, -4.3369, -6.7534, -4.4282, -4.4128, -4.9281, -4.5426, -4.4944, -3.4607, -5.9453, -5.3102, -5.697, -5.7187, -6.5322, -5.4606, -6.5268, -6.0114, -4.8505, -6.6701, -6.7823, -7.2555, -7.6892, -5.5775, -6.2906, -6.4078, -6.4459, -6.3914, -3.9504, -5.545, -6.1692, -5.9291, -4.8737, -6.5004, -6.8852, -4.906, -5.9845, -4.1697, -5.8168, -6.7818, -7.0419, -7.3012, -7.6844, -6.8708, -8.1743, -5.7129, -4.5916, -5.6973, -6.4315, -6.3688, -6.4577, -6.9335, -5.1798, -6.6303, -7.4005, -7.5161, -4.7911, -6.5283, -5.1813, -5.8555, -5.7173, -6.5811, -6.2044, -6.6302, -7.1925, -7.0954, -4.9595, -6.2457, -6.4336, -6.1728, -6.6834, -4.746, -5.9054, -4.4453, -6.51, -6.8899, -6.7624, -6.9299, -7.3258, -6.7921, -5.0878, -7.6547, -7.7287, -7.2538, -4.546, -3.308, -5.1021, -4.1423, -5.2723, -6.7617, -4.8581, -7.2706, -6.4637, -8.0332, -6.6996, -7.9338, -7.1755, -6.9686, -7.8643, -6.9449, -7.0434, -7.8559, -5.232, -5.7519, -6.1437, -5.948, -5.9973, -7.0801, -7.2554, -5.5739, -7.6138, -5.4586, -5.1832, -5.5017, -5.2842, -5.2746, -5.6252, -5.2218, -6.623, -5.3406, -6.7683, -5.3016, -6.8318, -6.1189, -7.1432, -7.116, -6.2984, -6.3695, -4.504, -5.2201, -4.8747, -6.3186, -5.6757, -7.3261, -6.4357, -4.7733, -5.1028, -5.1409, -5.5367, -6.3521, -6.7461, -6.1052, -7.0482, -4.3749, -5.3941, -5.5157, -5.4825, -5.025, -6.7776, -5.9839, -6.8822, -6.3635, -6.2979, -6.9705, -6.9389, -4.6403, -4.8174, -4.9539, -6.199, -5.6681, -5.4108, -5.9055, -5.6649, -6.4609, -6.5864, -6.6729, -5.3507, -5.0557, -4.8274, -4.5436, -5.6057, -5.5533, -5.2267, -5.6721, -6.3552, -6.7005, -5.5248, -4.489, -5.2886, -5.9458, -6.8456, -7.4817, -6.8707, -7.9041, -7.6182, -7.9371, -4.9619, -3.7482, -6.005, -5.8538, -5.7203, -6.5701, -6.251, -6.7591, -7.0842, -6.6833, -6.1209, -7.5238, -7.4673, -7.409, -7.8381, -5.1626, -6.9606, -5.7684, -6.3807, -5.6354, -6.2397, -6.4966, -6.3096, -6.6516, -7.0072, -6.2224, -6.9658, -5.4325, -6.9749, -6.3748, -6.6119, -7.344, -5.2425, -5.6421, -4.5828, -6.4891, -5.6615, -6.4204, -6.4322, -6.5429, -7.1333, -3.6287, -5.0376, -6.444, -4.7083, -4.7625, -5.4067, -5.9684, -6.1195, -4.2517, -6.2106, -4.6156, -5.7968, -6.2638, -4.4627, -6.9488, -6.8409, -6.6862, -5.8645, -6.2402, -6.3092, -7.0402, -5.1112, -4.7822, -5.827, -6.0289, -6.2362, -5.2789, -4.3271, -4.587, -6.6974, -6.8692, -7.1314, -5.1467, -6.0845, -3.5045, -4.9038, -5.3357, -3.5553, -6.3041, -6.8128, -4.4402, -3.6561, -3.0194, -5.4396, -7.8408, -7.5489, -3.6281, -3.5497, -5.3506, -6.6733, -5.0373, -7.3433, -5.02, -4.871, -4.5225, -5.0344, -6.2779, -7.3625, -4.8942, -4.784, -5.8687, -4.5235, -6.0923, -6.8719, -6.1283, -7.4553, -4.9888, -3.8474, -4.0103, -6.5921, -5.6582, -3.869, -4.4501, -6.9442, -5.9855, -4.7527, -5.4622, -5.5608, -5.3956, -5.9247, -5.598, -6.3221, -6.2928, -5.415, -6.1268, -5.0504, -6.3851, -6.2594, -6.3212, -5.2375, -5.7859, -7.2832, -6.3561, -6.9409, -7.4853, -4.2151, -5.5751, -6.052, -4.9443, -6.3582, -4.4617, -6.7074, -6.1569, -6.3257, -6.8164, -7.5995, -4.6404, -5.5495, -6.4956, -3.6981, -5.8897, -5.2126, -6.6923, -5.4367, -5.4738, -5.1536, -4.678, -5.8826, -6.6672, -4.6699, -6.3061, -7.2097, -5.273, -5.7632, -5.9668, -5.6101, -6.6245, -4.745, -5.3224, -5.5622, -6.1028, -5.9749, -6.0368, -5.9196, -7.3173, -6.415, -5.6931, -7.8171, -6.9804, -4.0919, -6.049, -6.0109, -6.5701, -5.6236, -5.7304, -6.2721, -4.5326, -5.3448, -5.8209, -4.5478, -5.5581, -4.8834, -5.3419, -6.2707, -5.3177, -5.6685, -5.2833, -6.0801, -6.1209, -5.785, -6.7138, -5.1616, -6.4, -6.4966, -6.4661, -7.0853, -6.6129, -4.3493, -4.9296, -5.0414, -5.2555, -5.8422, -5.2839, -5.8681, -5.5266, -6.5317, -6.4044, -6.6959, -3.9723, -3.3571, -6.2793, -6.4074, -4.5625, -4.5976, -3.8554, -4.1584, -4.5761, -4.9177, -4.9887, -5.9148, -6.6244, -5.3418, -5.3606, -5.0157, -5.8455, -6.2473, -4.3982, -5.1617, -4.8651, -5.5127, -6.178, -5.9542, -5.7903, -5.449, -5.5857, -4.1336, -4.2768, -5.809, -4.9474, -4.1198, -4.5192, -3.975, -5.043, -3.7662, -6.5341, -6.1548, -5.4413, -6.3216, -6.4222, -5.8792, -4.2086, -5.0763, -5.1391, -5.1856, -4.5551, -6.0052, -5.7298, -5.1133, -5.3361, -5.947, -4.8511, -5.2165, -6.7109, -6.7405, -6.612, -5.4191, -4.8908, -6.2672, -5.2807, -4.0372, -5.8754, -5.672, -6.5895, -6.0214, -6.6881, -5.268, -4.0259, -4.1936, -3.9689, -4.5495, -5.745, -5.6468, -5.8018, -5.7408, -5.7132, -4.1089, -3.902, -5.1524, -5.4599, -5.5971, -5.8633, -5.3091, -5.5105, -5.7425, -6.2764, -4.8631, -4.7972, -6.294, -4.6959, -6.6902, -4.4598, -6.0223, -5.2907, -6.0427, -3.6729, -4.7682, -4.6493, -5.8849, -5.8897, -6.0559, -4.7195, -5.0354, -4.4355, -4.3218, -5.3498, -4.8138, -5.741, -3.9756, -5.1776, -4.98, -5.3621, -4.6722, -4.2524, -5.2936, -5.831, -5.8565, -3.8147, -6.3591, -4.7477, -4.4786, -5.3518, -6.2284, -4.6583, -5.2494, -6.0522, -5.4986, -5.2796, -5.5441, -5.5465, -6.4863, -6.5976, -7.1984, -6.7349, -6.4343, -4.4061, -5.8361, -5.8473, -5.3697, -5.8815, -6.2292, -5.3194, -4.7022, -4.7949, -5.2049, -3.7984, -4.3442, -3.6333, -4.8489, -4.2437, -5.7192, -5.059, -5.5241, -5.442, -5.5029, -3.9711, -5.0114, -5.5656, -6.0174, -5.6542, -6.2792, -5.2731, -4.9177, -4.4022, -5.0011, -5.4285, -5.0586, -5.462, -3.7949, -4.8299, -4.5406, -3.3599, -5.6509, -4.7316, -3.6936, -6.8317, -6.058, -5.6843, -3.3121, -3.1801, -5.5082, -5.4867, -5.7076, -5.8286, -5.2611, -5.336, -5.7409, -6.1691, -4.0355, -4.9359, -4.3467, -4.7283, -5.0069, -5.8089, -5.1702, -6.0873, -5.3194, -5.7379, -5.4987, -5.4062, -5.948, -6.0379, -5.4016, -4.9511, -4.7456, -5.3875, -5.4989, -4.706, -5.3018, -4.7772, -5.4596, -5.0631, -5.2269, -4.6408, -5.3662, -5.2275, -3.2691, -4.0557, -4.6566, -5.3863, -4.2068, -3.8854, -5.2788, -6.0239, -5.7894, -4.8612, -5.2964, -4.8764, -3.9945, -5.6411, -4.6451, -4.9121, -4.3802, -5.2869, -5.8123, -5.5769, -5.6339, -5.1181, -4.39, -6.1992, -5.6928, -5.9278, -6.4742, -5.47, -5.9466, -6.1066, -3.9187, -3.4228, -5.0216, -4.2668, -4.8453, -5.6751, -5.4439, -6.6328, -4.5225, -5.0879, -4.8806, -5.2182, -4.0482, -4.1664, -5.7674, -5.5013, -6.3521, -4.9277, -4.6457, -5.5423, -5.6499, -4.5549, -6.0846, -5.7221, -4.2319, -5.3807, -5.6335, -6.1668, -4.4145, -5.1699, -5.645, -5.2709, -5.5943, -6.127, -4.7318, -5.4323, -6.6481, -5.6106, -5.8616, -3.1342, -5.0101, -5.5243, -5.8577, -5.5541, -4.6635, -4.1084, -4.9035, -4.8669, -4.9651, -4.8536, -5.309, -4.6149, -4.5688, -4.7065, -4.4988, -4.2067, -4.3298, -4.7455, -4.511, -4.9115, -4.524, -5.1022, -5.595, -4.0252, -4.8466, -4.406, -4.5121, -4.4589, -5.0516, -5.1929, -4.3146, -5.5389, -4.9524, -4.5069, -5.5789, -4.3757, -5.4888, -5.8421, -5.7916, -5.4467, -4.4174, -4.5715, -5.183, -4.2221, -4.6815, -5.8386, -5.8839, -4.4973, -5.2098, -5.061, -5.8061, -6.3914, -5.7551, -4.1661, -4.0534, -5.0239, -5.0436, -4.6447, -4.0771, -5.7887, -5.4215, -4.7404, -4.4356, -4.7723, -5.1743, -5.4668, -5.1417, -4.7363, -5.5774, -5.8569, -5.0094, -5.4188, -5.3017, -4.9738, -5.1473, -4.7595, -4.7218, -4.7052, -5.4315, -5.4003, -4.1064, -4.491, -5.2308, -4.7031, -5.3031, -4.1721, -4.2562, -5.7076, -5.7356, -4.4614, -6.4735, -4.9646, -4.7706, -5.3518, -5.3518, -4.922, -4.7725, -5.0971, -5.3953, -4.9247, -3.6094, -5.1571, -5.3831, -4.7844, -5.1055, -5.1355, -3.7103, -5.6763, -6.0921, -4.8656, -5.0822, -5.3279, -5.4919, -4.9459, -4.7107, -4.6323, -4.8393, -5.1966, -5.1763, -4.9195, -3.967, -5.0834, -5.4109, -4.8799, -4.1863, -4.0457, -5.2731, -5.2643, -4.8862, -4.2231, -5.3247, -4.5368, -4.6538, -5.1244, -5.2132, -5.468, -5.5068, -5.6658, -4.6185, -5.7972, -5.2181, -4.7381, -5.5576, -5.0549, -5.1493, -5.6503, -5.9445, -4.8837, -5.3107, -4.3955, -4.865, -5.0047, -4.266, -3.9119, -4.7755, -3.9417, -4.5294, -5.562, -4.7956, -4.4932, -4.9395, -3.9443, -4.9824, -4.8793, -4.7682, -4.7487, -5.4535, -5.2438, -4.7799, -5.7473, -4.4958, -4.5389, -4.9906, -5.5799, -5.1294, -5.5072, -5.0153, -4.8706, -5.2914, -5.1675, -5.3897, -4.843, -5.218, -5.3887, -5.0636, -4.7115, -6.085, -6.0959, -5.2452, -4.4754, -4.8863, -5.1703, -4.3502, -4.7554, -4.397, -5.4167, -5.5175, -4.8426, -5.6546, -5.921, -5.2994, -5.583, -4.9408, -5.1397, -5.075, -5.031, -5.4705, -5.2133, -5.2, -4.4765, -4.9301, -5.2013, -5.5336, -4.8846, -5.0283, -5.1441, -5.4891, -4.7282, -5.0219, -5.0526, -4.3928, -5.2365, -4.8758, -4.9161, -4.2416, -4.6503, -5.7576, -6.1545, -5.1368, -5.4177, -5.1269, -5.3449, -4.6499, -5.3753, -5.1673, -5.5916, -4.9769, -5.2468, -4.8911, -4.9351, -4.553, -4.7873, -5.1512, -4.2639, -5.352, -4.4838, -4.3364, -4.6692, -5.3754, -5.3004, -4.6173, -4.6127, -4.9687, -5.097, -4.0215, -4.6373, -4.9523, -5.3458, -4.678, -4.9179, -4.8869, -4.9995, -4.3577, -4.6619, -5.3007, -5.1275, -5.9975, -5.0363, -4.4028, -4.769, -5.0703, -5.2546, -5.2867, -5.5853, -5.495, -5.401, -5.2423, -5.0328, -5.707, -4.9565, -5.2415, -4.5064, -4.428, -5.2517, -4.8162, -4.5861, -5.6213, -4.8274, -4.7933, -5.093, -4.4487, -4.7668, -4.6513, -5.2968, -5.225, -4.8819, -4.8666, -5.0629, -4.9552, -4.9418, -5.4195, -5.0507, -5.1455, -4.9278, -5.3142, -5.2356, -4.4948, -4.7106, -4.6836, -5.7551, -4.9194, -4.8718, -4.7314, -4.5959, -5.0562, -5.1381, -5.0015, -5.243, -5.2652, -5.3272, -4.4336, -5.1422, -4.7663, -5.6712, -4.9871, -4.935, -5.157, -5.1899, -5.0509, -5.33, -4.5942, -4.916, -4.7225, -5.0919, -5.3131, -5.0157, -4.7712, -5.1447, -4.9256, -5.2039, -5.7328, -4.7769, -5.1891, -5.1154, -5.096, -5.4256, -4.4461, -4.9976, -5.1071, -5.0929, -4.6969, -4.4207, -4.8727, -4.7285, -5.043, -5.4714, -5.614, -4.7376, -4.8285, -4.361, -4.5547, -4.5265, -5.1467, -4.8715, -4.9779, -4.6064, -5.1758, -5.5813, -5.2192, -5.4826, -5.3648, -5.0179, -4.7499, -5.4122, -5.5223, -4.746, -4.8908, -5.0356, -5.2071, -4.8772, -4.8198, -4.8773, -5.0505, -5.1235, -4.6187, -4.7419, -5.1362, -4.7908, -5.0903, -4.8823, -5.2847, -5.0112, -4.7816, -4.8411, -4.9841, -5.2118, -5.1432, -4.9423, -5.0486, -5.4259, -5.2801, -5.0346, -5.1181, -5.0201, -5.2144, -5.2232, -4.8467, -5.1111, -5.2222, -4.8724, -5.0867, -5.1927, -5.1575, -5.2171, -4.9782, -5.0697, -5.1442, -5.0861, -5.4221, -5.2196, -5.5649, -5.4504, -4.8766, -5.0003, -5.0107, -5.0363, -5.1246, -5.2224, -5.2004, -5.1562, -5.1887, -5.4503, -5.3653, -5.5006, -5.2171, -5.2971, -5.1449, -5.22, -5.1811, -5.4962, -5.2375, -5.2375, -5.3613, -5.0381, -4.8698, -5.0744, -5.1554, -5.1992, -5.072, -5.3679, -5.2521, -5.3737, -5.4122, -5.5282, -5.3585, -5.0896, -4.8764, -4.9911, -4.8642, -4.9809, -5.0583, -5.4728, -5.3148, -5.3067, -5.2528, -5.403, -4.6932, -4.895, -5.006, -4.959, -4.9507, -5.0798, -5.0536, -4.7719, -4.873, -4.9382, -5.0498, -5.1017, -4.745, -4.9834, -5.6769, -5.1257, -5.3008, -5.0983, -5.2178, -5.4578, -5.0748, -5.1611, -4.8817, -4.8896, -5.1523, -5.211, -5.2364, -5.1679, -5.1403, -5.1983, -5.2899, -5.3707, -5.3596, -5.4657, -5.1221, -5.2986, -5.2199, -5.1697, -5.2159, -5.3548, -5.4098, -5.349, -5.4113, -5.0539, -5.17, -5.1021, -5.1968, -5.4966, -5.3517, -5.5817, -5.5924, -5.3933, -5.0552, -5.1493, -5.2593, -5.3342, -5.2475, -5.2968, -5.1759, -5.2269, -5.293, -5.3106, -5.0777, -5.1068, -5.1868, -5.1083, -5.1122, -5.2034, -5.2914, -5.3147, -5.195, -5.3723, -5.4331, -5.217, -5.527, -5.1437, -5.0905, -5.1672, -5.2026, -5.1583, -5.2885, -5.3694, -5.4439, -5.4682, -5.017, -5.0019, -5.2386, -5.152, -5.0755, -5.17, -5.4157, -5.4469, -5.0469, -5.1313, -5.1335, -5.2132, -5.3339, -5.5435, -5.579, -5.2892, -5.3723, -5.3692, -5.1647, -5.208, -5.2698, -5.3139, -5.3516, -5.354, -5.3552, -5.3649, -5.4259, -5.4422, -5.4827, -5.3522, -5.3175, -5.3062, -5.3326, -5.4811, -5.4811, -5.4926, -5.4943, -5.1752, -5.4329, -5.4455, -5.4857, -5.4881, -5.4929, -5.4367, -5.4435, -5.3202, -5.3615, -5.3851, -5.3709, -5.438, -5.4413, -5.3955, -5.2128, -5.2269, -5.2817, -5.2792, -5.4711, -5.5137, -5.3131, -5.5189, -5.54, -5.5726, -5.2132, -5.4523, -5.4586, -5.4911, -5.5044, -5.4692, -5.1275, -5.1309, -5.3107, -5.392, -5.4698, -5.1137, -5.2585, -5.4157, -5.4598, -5.5261, -5.5382, -5.5429, -5.5677, -5.2307, -5.2903, -5.6257, -5.6439, -5.4383, -5.5771, -5.5887, -5.6075, -5.6155, -5.2777, -5.3142, -5.1957, -5.2104, -5.2372 ], | |
"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, 3.5653, 3.5646, 3.5603, 3.5576, 3.5458, 3.5452, 3.5359, 3.531, 3.5296, 3.5292, 3.523, 3.5224, 3.5194, 3.5192, 3.5189, 3.5117, 3.5032, 3.4993, 3.4936, 3.4609, 3.4571, 3.4512, 3.4411, 3.401, 3.3991, 3.368, 3.3155, 3.287, 3.2802, 3.2139, 3.8118, 3.8086, 3.8075, 3.806, 3.8051, 3.8047, 3.8038, 3.8014, 3.801, 3.7973, 3.797, 3.7953, 3.7947, 3.7907, 3.7891, 3.7879, 3.7873, 3.7813, 3.7801, 3.7794, 3.7794, 3.7782, 3.7756, 3.7746, 3.7714, 3.7685, 3.7674, 3.7655, 3.7634, 3.7573, 3.2325, 3.2323, 3.2281, 3.2276, 3.227, 3.2251, 3.2246, 3.224, 3.2234, 3.2223, 3.2217, 3.2215, 3.2207, 3.2206, 3.2171, 3.2161, 3.2157, 3.2147, 3.2138, 3.2137, 3.2137, 3.2128, 3.2128, 3.2122, 3.2114, 3.2103, 3.2099, 3.2096, 3.2096, 3.2086, 3.4369, 3.4134, 3.4048, 3.4027, 3.3724, 3.353, 3.3424, 3.321, 3.3158, 3.3026, 3.26, 3.24, 3.2191, 3.1811, 3.161, 3.1596, 3.1555, 3.1303, 3.1261, 3.1249, 3.1241, 3.1182, 3.1129, 3.0956, 3.079, 3.0741, 3.0669, 3.0664, 3.0405, 3.0387, 2.8312, 2.831, 2.8293, 2.8193, 2.8119, 2.8102, 2.8095, 2.8031, 2.8022, 2.7999, 2.7976, 2.7824, 2.7796, 2.7762, 2.7673, 2.7653, 2.7593, 2.7558, 2.7539, 2.7509, 2.7502, 2.7398, 2.7382, 2.7365, 2.7274, 2.7206, 2.7168, 2.7157, 2.7116, 2.7085, 3.7035, 3.6955, 3.6953, 3.6918, 3.6916, 3.6904, 3.6887, 3.6871, 3.6861, 3.6859, 3.6837, 3.6817, 3.6788, 3.6781, 3.6757, 3.672, 3.6713, 3.6698, 3.6692, 3.6686, 3.6668, 3.6658, 3.6555, 3.6413, 3.6386, 3.6247, 3.6228, 3.6182, 3.6181, 3.6164, 3.9645, 3.9588, 3.9583, 3.9539, 3.9533, 3.9496, 3.9479, 3.9463, 3.9463, 3.946, 3.9458, 3.9452, 3.9452, 3.943, 3.9409, 3.9389, 3.9389, 3.938, 3.9379, 3.9352, 3.935, 3.9325, 3.931, 3.9157, 3.9116, 3.9026, 3.9019, 3.9005, 3.8951, 3.8885, 3.4085, 3.4004, 3.3948, 3.389, 3.383, 3.3769, 3.3758, 3.3736, 3.3718, 3.3703, 3.3667, 3.3594, 3.359, 3.3445, 3.3418, 3.3384, 3.3306, 3.3237, 3.3154, 3.3053, 3.2901, 3.2898, 3.2866, 3.2639, 3.2531, 3.2497, 3.2385, 3.2377, 3.2272, 3.2165, 3.6643, 3.66, 3.6596, 3.6571, 3.6559, 3.6504, 3.6455, 3.6454, 3.6452, 3.6442, 3.6426, 3.6416, 3.635, 3.635, 3.6339, 3.6321, 3.6315, 3.6309, 3.6295, 3.6281, 3.6281, 3.6258, 3.6257, 3.6244, 3.6241, 3.6232, 3.6229, 3.6223, 3.6181, 3.6147, 3.771, 3.6108, 3.6008, 3.5966, 3.5879, 3.5384, 3.4896, 3.372, 3.3621, 3.3387, 3.3235, 3.3054, 3.28, 3.1833, 3.1209, 3.0996, 2.7512, 2.7442, 2.7081, 2.6765, 2.643, 2.6371, 2.6338, 2.6079, 2.5731, 2.5313, 2.4709, 2.4604, 2.4501, 2.4016, 3.758, 3.7569, 3.7564, 3.7561, 3.755, 3.7541, 3.7537, 3.7514, 3.7511, 3.7511, 3.7494, 3.7481, 3.7459, 3.7449, 3.7442, 3.7437, 3.743, 3.7409, 3.7402, 3.7399, 3.7398, 3.7386, 3.7378, 3.7376, 3.7375, 3.7371, 3.7363, 3.7354, 3.7342, 3.7338, 3.3051, 3.2992, 3.2821, 3.2745, 3.2666, 3.2646, 3.2554, 3.2538, 3.2449, 3.2396, 3.2305, 3.2218, 3.2115, 3.2066, 3.2057, 3.2043, 3.2042, 3.1825, 3.1687, 3.1587, 3.1586, 3.1585, 3.1477, 3.1378, 3.118, 3.1146, 3.1114, 3.1049, 3.0938, 3.0936, 3.3899, 3.3772, 3.3628, 3.3571, 3.3522, 3.3466, 3.3005, 3.298, 3.298, 3.25, 3.162, 3.1379, 3.1271, 3.1065, 3.0861, 3.034, 3.0092, 2.9758, 2.9732, 2.9433, 2.9118, 2.901, 2.8806, 2.8717, 2.8418, 2.8331, 2.8291, 2.8154, 2.813, 2.8047, 3.7069, 3.7047, 3.7015, 3.6985, 3.6951, 3.6943, 3.6919, 3.6875, 3.6853, 3.685, 3.6848, 3.6809, 3.6806, 3.6802, 3.6786, 3.6782, 3.6778, 3.6759, 3.6759, 3.6755, 3.6731, 3.6728, 3.6727, 3.6717, 3.6717, 3.6683, 3.6675, 3.6647, 3.662, 3.6618, 4.1261, 4.1257, 4.115, 4.1139, 4.1089, 4.1068, 4.1068, 4.0982, 4.0936, 4.0868, 4.0865, 4.0852, 4.0786, 4.0738, 4.0707, 4.0702, 4.0639, 4.0618, 4.058, 4.055, 4.0438, 4.0244, 3.9911, 3.9592, 3.9433, 3.915, 3.9126, 3.8951, 3.8932, 3.8796, 3.1815, 3.181, 3.1676, 3.165, 3.1621, 3.1616, 3.1615, 3.1614, 3.1603, 3.1553, 3.1503, 3.15, 3.1497, 3.1447, 3.142, 3.142, 3.1416, 3.1412, 3.1401, 3.1367, 3.1361, 3.1326, 3.132, 3.1282, 3.1255, 3.1239, 3.1212, 3.1172, 3.1093, 3.1088, 3.0707, 2.9564, 2.8996, 2.7992, 2.7721, 2.7445, 2.7437, 2.6897, 2.6889, 2.6796, 2.6766, 2.6749, 2.6575, 2.6354, 2.6002, 2.5718, 2.5628, 2.5368, 2.4874, 2.4703, 2.469, 2.4642, 2.4516, 2.4388, 2.4372, 2.423, 2.4138, 2.3713, 2.3693, 2.3595, 2.5204, 2.4958, 2.4811, 2.4775, 2.443, 2.4427, 2.427, 2.3934, 2.3619, 2.3487, 2.345, 2.3248, 2.3191, 2.3111, 2.3109, 2.3069, 2.2967, 2.29, 2.2889, 2.2847, 2.2792, 2.2782, 2.274, 2.268, 2.265, 2.2642, 2.2627, 2.2603, 2.2411, 2.2407, 3.6391, 3.6363, 3.6359, 3.635, 3.6258, 3.6233, 3.6227, 3.6215, 3.6147, 3.6086, 3.6083, 3.6065, 3.6065, 3.6051, 3.6046, 3.6024, 3.5991, 3.5959, 3.5942, 3.5916, 3.5864, 3.5856, 3.583, 3.5826, 3.5776, 3.5769, 3.5754, 3.5749, 3.5717, 3.5678, 3.7531, 3.7521, 3.7503, 3.7449, 3.7424, 3.7368, 3.7365, 3.7361, 3.7358, 3.7339, 3.733, 3.7325, 3.7318, 3.7301, 3.7276, 3.7273, 3.7271, 3.7251, 3.7245, 3.7238, 3.7234, 3.7215, 3.721, 3.7205, 3.7197, 3.7165, 3.7159, 3.7157, 3.7153, 3.7149, 3.5349, 3.5112, 3.5102, 3.5084, 3.5054, 3.4905, 3.4871, 3.4869, 3.4862, 3.4718, 3.4637, 3.458, 3.4552, 3.4242, 3.3935, 3.3576, 3.3462, 3.3026, 3.2977, 3.2893, 3.2728, 3.2566, 3.2421, 3.2323, 3.2276, 3.2207, 3.2101, 3.2039, 3.2018, 3.1945, 3.016, 2.9818, 2.9585, 2.8398, 2.8328, 2.825, 2.8233, 2.7602, 2.7575, 2.7379, 2.6991, 2.6875, 2.6833, 2.6816, 2.6789, 2.678, 2.6714, 2.6711, 2.6664, 2.6648, 2.6611, 2.6391, 2.6373, 2.6094, 2.6021, 2.602, 2.6004, 2.5969, 2.5952, 2.592, 3.8212, 3.8193, 3.8186, 3.8183, 3.8152, 3.8144, 3.8144, 3.8141, 3.813, 3.8107, 3.8093, 3.8083, 3.805, 3.8028, 3.8027, 3.8011, 3.8007, 3.7994, 3.798, 3.7979, 3.7976, 3.7973, 3.7924, 3.7917, 3.7906, 3.7906, 3.7875, 3.7857, 3.7857, 3.7836, 3.414, 3.4112, 3.4108, 3.4107, 3.4101, 3.4074, 3.406, 3.4059, 3.4052, 3.4043, 3.4041, 3.4031, 3.4023, 3.4021, 3.3978, 3.3962, 3.3959, 3.3934, 3.393, 3.393, 3.3916, 3.3899, 3.3885, 3.3879, 3.3879, 3.387, 3.3867, 3.386, 3.3838, 3.383, 3.3465, 3.3436, 3.3435, 3.3433, 3.3426, 3.3417, 3.3416, 3.3412, 3.3401, 3.3399, 3.3398, 3.3389, 3.3381, 3.3379, 3.3375, 3.337, 3.3368, 3.3368, 3.3363, 3.3358, 3.3354, 3.3351, 3.335, 3.3349, 3.3341, 3.334, 3.334, 3.3332, 3.3326, 3.3322, 3.5329, 3.531, 3.5296, 3.5291, 3.525, 3.5243, 3.523, 3.5221, 3.5217, 3.5165, 3.516, 3.5138, 3.5105, 3.5031, 3.5013, 3.5009, 3.4993, 3.4993, 3.4989, 3.4989, 3.498, 3.4979, 3.4975, 3.4945, 3.4941, 3.4933, 3.4921, 3.4873, 3.4873, 3.4811, 2.8982, 2.8888, 2.8883, 2.8839, 2.8693, 2.8686, 2.865, 2.8621, 2.854, 2.8534, 2.8404, 2.8398, 2.8133, 2.8094, 2.7905, 2.7791, 2.7698, 2.7613, 2.7554, 2.7546, 2.7517, 2.7218, 2.708, 2.7071, 2.7066, 2.7044, 2.7038, 2.7023, 2.7005, 2.6925, 3.3655, 3.3653, 3.362, 3.3595, 3.3584, 3.3574, 3.3567, 3.3565, 3.3533, 3.35, 3.3487, 3.3474, 3.3465, 3.345, 3.3432, 3.3419, 3.3384, 3.3363, 3.3362, 3.3358, 3.3328, 3.329, 3.3285, 3.3279, 3.3279, 3.3266, 3.325, 3.3231, 3.3223, 3.3198, 3.1002, 2.9032, 2.8388, 2.8235, 2.818, 2.773, 2.7635, 2.7358, 2.6791, 2.6768, 2.6747, 2.6645, 2.6502, 2.642, 2.6412, 2.6232, 2.6211, 2.6187, 2.6183, 2.6137, 2.6083, 2.5968, 2.5967, 2.5912, 2.5911, 2.5873, 2.5844, 2.5824, 2.5664, 2.5624, 3.5112, 3.5097, 3.5077, 3.5029, 3.5022, 3.5016, 3.4998, 3.4986, 3.4971, 3.4948, 3.4928, 3.4926, 3.4924, 3.491, 3.4885, 3.4864, 3.4856, 3.4852, 3.4852, 3.4852, 3.4839, 3.4821, 3.481, 3.4805, 3.4799, 3.4794, 3.4788, 3.4782, 3.4776, 3.477, 3.7174, 3.7277, 3.7547, 3.7099, 3.7447, 3.6468, 3.7439, 3.4955, 3.1461, 3.1449, 3.1062, 3.1553, 3.1762, 3.1857, 3.1784, 3.1717, 3.1731, 3.0865, 3.2057, 2.9739, 3.0266, 3.0136, 2.9169, 3.0336, 2.7165, 2.9562, 2.6947, 2.6352, 2.6898, 2.5911, 2.5606, 2.4232, 2.6419, 2.557, 2.5986, 2.586, 2.6752, 2.5497, 2.653, 2.5953, 2.4591, 2.6567, 3.5554, 3.5618, 3.6095, 3.8069, 3.87, 3.8701, 3.8626, 3.8459, 3.0625, 3.1722, 3.2011, 3.1189, 2.981, 3.1612, 3.1877, 3.6121, 3.5844, 3.326, 3.4969, 3.5906, 3.6141, 3.5781, 3.5924, 2.3366, 2.3806, 3.7058, 3.5772, 3.6787, 3.7067, 3.6981, 3.706, 3.7164, 3.0852, 3.0324, 3.0752, 3.069, 2.5115, 2.6061, 3.6016, 3.6316, 3.5511, 3.6431, 3.5724, 3.6151, 3.6513, 3.6231, 3.3784, 3.8218, 3.8241, 3.7846, 3.838, 3.029, 3.0922, 2.8734, 3.0706, 3.1009, 3.0723, 3.068, 3.0882, 3.0265, 2.8199, 3.0944, 3.0966, 3.0406, 2.287, 2.1117, 2.0538, 1.935, 2.1082, 2.1043, 1.8858, 2.1511, 2.0564, 2.2241, 2.0743, 2.2104, 2.1197, 2.0958, 2.1923, 2.0817, 2.0915, 2.1684, 3.4806, 3.523, 3.5005, 3.4371, 3.4409, 3.5477, 3.5594, 3.3346, 3.5595, 3.669, 3.6034, 3.6341, 3.6019, 3.5881, 3.627, 3.5685, 3.6896, 3.5386, 3.6919, 3.5262, 3.6891, 3.6045, 3.7065, 3.7023, 3.1736, 3.071, 2.8212, 2.5833, 2.4543, 2.421, 2.3261, 2.494, 2.3922, 3.741, 3.7738, 3.7561, 3.7691, 3.7702, 3.7576, 3.6781, 3.7766, 3.3283, 3.3824, 3.3538, 3.3164, 3.2647, 3.3797, 3.2723, 3.3634, 3.2961, 3.2826, 3.3306, 3.3201, 3.2488, 3.2486, 3.2201, 3.317, 3.2463, 3.2108, 3.2636, 3.2362, 3.3208, 3.3198, 3.3142, 3.1544, 3.4685, 3.4148, 3.3622, 3.4661, 3.4391, 3.3775, 3.3928, 3.4154, 3.436, 3.2912, 3.1603, 3.2346, 2.6331, 2.656, 2.6863, 2.6169, 2.6914, 2.6519, 2.6865, 3.3195, 3.076, 3.2953, 3.2775, 3.2575, 3.3055, 3.2579, 3.2823, 3.2867, 3.2146, 2.5526, 2.5193, 2.5004, 2.4913, 2.5387, 2.2258, 2.4216, 2.2844, 2.3495, 3.4491, 3.4634, 3.4614, 3.4211, 3.4314, 3.4654, 3.3705, 3.4421, 3.2552, 3.3961, 3.3213, 2.9962, 2.9854, 3.452, 3.4934, 3.2191, 3.6396, 3.4184, 3.5861, 3.0424, 3.0068, 3.1447, 2.4895, 2.5428, 2.8106, 2.3415, 2.3281, 2.4197, 2.5494, 2.5871, 2.1188, 2.5924, 3.2539, 3.2813, 3.3714, 2.8717, 3.4922, 3.4553, 3.4116, 3.6532, 3.7314, 3.7137, 3.8623, 2.9327, 2.8286, 3.0353, 3.0023, 3.0402, 2.7655, 2.9502, 2.949, 3.4269, 3.4452, 3.5102, 2.9899, 3.1931, 1.6849, 1.9409, 1.7948, 3.045, 3.6079, 3.7027, 3.0957, 2.5705, 2.0628, 2.6591, 3.0901, 2.9968, 2.2112, 2.1894, 2.3876, 2.5082, 2.0533, 2.627, 1.9855, 3.1281, 2.996, 3.0909, 3.3801, 3.6279, 3.5323, 3.5019, 3.7239, 2.6894, 2.8067, 2.9403, 2.7171, 3.0464, 1.9545, 1.6147, 1.5281, 2.1642, 1.9132, 1.4414, 1.5845, 2.1901, 1.9474, 1.7631, 1.8961, 1.8958, 1.8369, 1.9465, 1.8294, 1.9896, 1.9593, 1.7229, 1.8938, 1.6165, 1.9495, 1.9118, 1.9173, 3.0812, 3.2027, 3.5152, 3.2675, 3.4036, 3.5378, 3.3137, 3.4001, 3.4671, 3.188, 3.5167, 2.7926, 3.0189, 2.8728, 2.8336, 2.9527, 3.1422, 2.0759, 2.2637, 2.3431, 1.6123, 2.1263, 1.945, 2.3095, 3.5053, 3.5049, 3.3924, 3.2556, 3.553, 3.6727, 2.8375, 3.1379, 3.3428, 3.1328, 3.0804, 3.1302, 3.0397, 3.2779, 3.1375, 3.1431, 3.1512, 3.2691, 3.2312, 2.4648, 2.3433, 2.5881, 2.3536, 2.1194, 2.644, 2.4152, 2.7112, 3.0957, 3.0258, 3.164, 2.9238, 2.9432, 3.0603, 2.0912, 2.1727, 2.2855, 1.9424, 2.1802, 1.9635, 2.0458, 2.2731, 2.019, 2.1044, 2.0066, 2.198, 2.2061, 2.1154, 2.347, 1.9333, 3.3035, 3.2609, 3.2314, 3.3852, 3.2654, 2.0211, 2.1601, 3.1549, 3.0772, 3.2754, 2.5596, 2.791, 2.5802, 2.9392, 2.8806, 2.9661, 1.8226, 1.5344, 2.6626, 2.7174, 1.9203, 1.9237, 1.8837, 1.9983, 2.1494, 2.1271, 2.7111, 2.9852, 3.2719, 3.3955, 3.39, 3.2352, 3.4272, 3.5842, 2.5262, 2.6858, 2.4508, 2.7135, 2.9786, 2.8696, 2.9662, 2.8019, 2.8442, 1.286, 1.1223, 1.7574, 1.2675, 0.867, 1.0223, 2.7268, 3.1833, 1.7722, 2.7191, 2.5373, 2.2146, 2.5647, 2.6068, 2.3672, 1.6753, 1.9685, 1.9519, 1.9114, 1.6015, 2.2136, 2.074, 1.7892, 1.8701, 3.2144, 2.7264, 2.8163, 3.4447, 3.7766, 3.721, 2.4901, 2.1032, 2.6885, 2.2532, 1.7111, 2.4987, 2.3979, 2.7787, 2.5329, 2.8109, 2.1975, 1.3732, 1.3478, 1.2204, 1.3872, 1.8533, 1.8083, 1.86, 1.8256, 1.8131, 1.1239, 1.0849, 1.5787, 1.691, 1.6949, 1.7774, 1.5336, 1.565, 1.6549, 1.8807, 2.8456, 2.7762, 3.2129, 2.4693, 3.3085, 2.3181, 3.3605, 3.0186, 3.3387, 1.9093, 2.3571, 2.2127, 2.7131, 2.5973, 2.6497, 2.0583, 1.845, 1.5643, 1.4976, 1.9173, 1.6631, 2.0211, 1.2572, 1.7592, 1.6437, 1.7874, 1.4877, 3.0577, 3.2151, 3.3815, 3.3114, 2.1923, 3.0903, 2.3987, 2.2754, 2.631, 3.1071, 2.8488, 2.9396, 3.1408, 2.0099, 1.8301, 1.9153, 1.8176, 2.2187, 2.2551, 2.4506, 2.2459, 2.1061, 2.2915, 2.8002, 2.1017, 1.8227, 2.0394, 2.1806, 1.7699, 2.7051, 2.504, 2.6418, 1.197, 1.5234, 1.0342, 1.829, 1.2977, 2.1953, 1.691, 3.1244, 3.0276, 2.8571, 1.6626, 2.2194, 2.3679, 2.5507, 2.2922, 2.6757, 2.0042, 2.0463, 1.6048, 1.842, 2.0633, 1.947, 2.1317, 1.8389, 2.4633, 2.1924, 1.3075, 2.709, 2.0715, 1.2932, 3.3303, 3.4176, 3.1057, 1.6747, 1.4874, 2.5934, 2.4597, 2.5266, 2.8691, 2.4791, 2.5107, 2.7041, 2.9732, 0.632, 1.1413, 0.6486, 0.9008, 1.0278, 3.2366, 2.747, 3.3506, 1.9992, 2.2202, 1.987, 1.9097, 2.2406, 2.243, 1.8113, 1.6894, 1.546, 1.855, 1.925, 1.3031, 1.6922, 1.268, 2.7491, 2.4706, 2.5637, 1.9913, 3.0062, 2.8777, 1.3984, 1.5265, 1.8559, 2.2232, 1.427, 1.1968, 2.0313, 2.5144, 2.2966, 1.3537, 1.6005, 1.2938, 0.673, 1.7581, 1.1023, 1.2628, 0.7947, 1.3678, 1.6688, 1.4986, 1.5156, 1.1631, 1.9517, 3.0285, 2.6598, 2.8095, 3.138, 2.4669, 3.2882, 3.2989, 1.7151, 1.2447, 2.1833, 1.4815, 1.8522, 2.3228, 2.1295, 2.8495, 1.2977, 1.6022, 1.4176, 1.5928, 2.1784, 2.1972, 3.2125, 3.0128, 3.521, 2.3635, 2.1162, 2.7012, 2.7528, 1.9221, 2.9196, 2.676, 2.0852, 2.6495, 2.7927, 3.0168, 2.3395, 2.6769, 2.953, 2.5777, 1.6021, 1.9218, 0.9613, 1.4124, 2.1817, 1.4656, 1.6084, 1.5333, 2.3243, 2.5809, 2.7341, 2.4405, 1.4578, 1.0665, 1.5112, 1.4313, 1.4476, 1.3482, 1.6471, 2.1182, 1.9823, 1.9818, 1.8429, 1.6034, 0.903, 1.2997, 0.9511, 1.2902, 0.8752, 2.4309, 2.8908, 1.0569, 1.6659, 1.1762, 1.2362, 1.0795, 1.6459, 1.7756, 0.8603, 2.0707, 1.648, 1.1222, 2.0624, 0.857, 1.9438, 2.2452, 2.1937, 1.8166, 1.4219, 1.2961, 1.8993, 1.3601, 1.6601, 2.5879, 2.6248, 1.1285, 1.7728, 2.3335, 3.0747, 3.5727, 2.9325, 1.4597, 1.1794, 2.058, 1.939, 1.5166, 1.4643, 2.6094, 2.0642, 1.3169, 0.6465, 0.6898, 1.0494, 1.294, 0.9156, 0.4965, 2.8524, 3.0294, 1.3542, 1.6909, 1.5625, 1.2097, 1.3355, 0.8695, 0.8196, 1.1624, 1.6473, 1.5618, 1.3557, 1.6689, 2.3114, 1.6386, 2.204, 1.6733, 1.5632, 2.9661, 2.1939, 0.7135, 2.7104, 1.1293, 0.9224, 1.468, 1.4657, 1.0312, 0.8533, 1.0865, 1.2965, 0.8145, 1.0581, 2.1681, 2.379, 1.7113, 1.9632, 1.9465, 1.3718, 2.7496, 3.1103, 1.6469, 1.7647, 1.9354, 2.0347, 1.4291, 1.2426, 1.1626, 1.2545, 1.5295, 1.4784, 1.2141, 1.7813, 2.5368, 2.7154, 2.024, 1.2758, 0.9412, 2.1574, 2.1374, 2.1291, 1.3591, 2.3322, 1.5845, 1.6633, 1.0997, 1.0962, 1.3058, 1.3361, 1.4705, 0.3768, 1.5215, 0.9418, 0.4513, 1.2599, 1.849, 1.8192, 2.2091, 2.5004, 1.2775, 1.6466, 0.6866, 1.1347, 1.2529, 1.5534, 1.0834, 1.8248, 0.7258, 1.2909, 2.2877, 1.0438, 0.4937, 1.1544, 1.0425, 2.0863, 1.8815, 1.4584, 1.0967, 1.8717, 1.4358, 0.7001, 2.1024, 0.8146, 0.6504, 1.1033, 1.906, 1.18, 1.7452, 0.9938, 1.421, 1.9448, 1.7349, 1.8741, 1.0024, 1.5066, 1.7154, 1.224, 0.6877, 2.5692, 2.5404, 2.2619, 1.063, 1.4774, 1.8831, 1.0489, 1.3782, 0.7778, 2.1719, 2.0201, 0.9675, 2.1123, 2.4794, 1.4625, 1.8243, 0.5976, 0.6078, 2.2219, 1.9155, 2.5624, 2.1601, 2.0989, 0.5189, 0.8182, 1.1738, 1.4143, 0.4258, 1.0841, 1.143, 1.5589, 1.3291, 1.7321, 1.5989, 0.6025, 1.5918, 1.9484, 1.9878, 0.6499, 1.17, 2.6556, 3.2238, 1.2382, 1.5976, 1.1227, 1.4329, 0.4322, 1.4695, 1.0564, 1.6883, 0.7715, 0.9244, 1.6517, 1.6652, 1.0728, 1.3464, 1.8128, 1.2746, 2.276, 0.749, 0.659, 0.7504, 1.8069, 1.6682, 0.5721, 0.5622, 1.1925, 1.3684, 1.0606, 1.7377, 2.1011, 2.6328, 1.3793, 1.7162, 1.6095, 1.6326, 0.6377, 0.9718, 1.768, 1.4397, 2.651, 1.7256, 0.7721, 1.2883, 0.7246, 0.9157, 0.8845, 1.2615, 1.1213, 0.9693, 0.711, 1.1971, 2.1625, 1.0887, 1.3057, 1.1273, 0.7614, 1.9001, 1.1836, 0.813, 2.2381, 0.7984, 0.6264, 1.1369, 0.6335, 1.2679, 0.344, 1.2472, 1.0622, 0.1135, 0.6134, 0.9944, 0.7379, 0.5203, 1.5571, 1.4988, 0.9881, 0.3826, 1.2368, 0.9943, 0.5873, 0.5221, 0.3117, 2.5792, 0.622, 1.188, 0.7486, 0.3994, 1.4207, 1.149, 0.8179, 1.1207, 0.688, 0.7326, 0.5618, 1.425, 0.4231, 2.4751, 0.4326, 0.2978, 0.7796, 0.8553, 0.744, 1.2704, 0.5807, 0.7771, 0.2644, 1.4045, 1.8692, 1.1455, 0.5392, 1.398, 0.7035, 0.7327, 1.8874, 0.2184, 0.9707, 0.6795, 0.597, 0.9447, 0.5408, 1.4794, 1.583, 1.4743, 0.5359, 0.5661, 0.7531, 0.2668, 0.4954, 1.4765, 1.6499, 0.4517, 0.6514, 0.6344, 0.9838, 0.4604, 1.8685, 1.312, 1.5178, 0.5829, 1.1336, 1.9563, 1.068, 1.6344, 1.2898, 1.4785, 0.5605, 0.665, 0.8944, 0.2494, 0.5084, 0.8098, 1.1679, 0.3121, 0.6602, 0.6611, 0.9586, 0.9338, 0.5561, 0.4909, 1.3292, 0.5196, 1.191, 0.6591, 1.5436, 0.6819, 0.4511, 0.5581, 0.4959, 1.1519, 0.7022, 0.0446, 0.2618, 1.2624, 0.5148, 0.5039, 0.8351, 0.3791, 1.0005, 1.0067, 0.3282, 1.0638, 1.4183, 0.1229, 0.3933, 0.8071, 0.3839, 0.593, 0.4209, 0.7506, 0.6752, 0.1032, 1.4226, 0.5905, 1.8234, 1.277, 0.8708, 1.2296, 1.024, 0.9728, 0.6237, 0.9388, 0.6198, 0.2635, 0.2734, 0.848, 0.4449, 0.9648, 1.2793, 1.5477, 0.8621, 1.0971, 0.512, 1.2646, 1.3966, 1.2395, 1.7285, 0.9152, 0.1256, 0.7357, 0.9659, 0.8006, 0.1608, 1.3318, 0.377, 0.8529, 0.9515, 1.3337, 0.4869, 0.5395, 0.2985, 0.7563, 0.5349, 0.4813, 0.131, 1.5806, 0.8065, 0.8635, 0.5675, 0.9606, -0.0257, 0.5247, 0.9306, 0.7341, 0.2386, 0.5493, 0.4263, 0.8572, 0.5261, 0.6876, 0.4302, -0.1063, 0.2504, 0.558, 1.1873, 0.5034, 1.1551, 0.2121, 0.3644, 1.2418, 0.7353, 1.0091, 0.5804, 0.53, 0.5951, 1.0127, 1.2222, 0.6523, 0.1701, 0.4275, 1.2057, 0.7892, 0.577, 1.1346, -0.04, 0.7396, 0.5996, 0.0197, 0.2641, 0.3927, 0.8715, -0.0386, 0.2177, 0.4082, 1.2466, 0.4801, -0.0219, 1.3653, 0.0474, 1.7151, 1.8022, 0.4907, 0.2552, 0.3307, 0.5601, 1.2169, 0.2146, 0.1832, 0.5715, 0.4661, 0.9307, 0.977, 0.1116, 0.3128, 0.2124, 0.2908, 0.0772, 0.2766, 0.9385, 0.909, -0.5275, 0.3207, 0.7271, 0.8211, 0.929, 0.9745, 0.3895, 0.8325, 0.6076, 0.1521, 0.6481, 0.1106, 0.7274, 0.8489, 0.7304, 0.5395, 0.3872, 1.4995, 0.2349, -0.5025, 0.5209, 0.7133, 0.1424, 0.8756, 0.4956, 0.9051, 1.3176, 0.4947, 0.2404, 0.3366, 0.6368, 0.0505, 0.9535, 1.2821, 0.6669, 0.2245, 0.7057, 0.8295, 0.6539, 0.5027, 0.6193, 0.8749, 0.6385, 1.1905, -0.426, 0.9175, 0.8823, 0.8171, -0.4942, 0.5455, 0.5404, 0.6349, -0.2001, 0.0344, 0.514, 0.8536, 0.4603, 0.1891, 0.4932, 0.4899, 0.6958, 0.077, 0.424, 0.7222, -0.2519, 1.1517, 0.0977, 0.0058, 0.3441, 0.2622, 0.3238, 0.6699, 0.497, 0.5936, 0.5812, 1.152, 0.4159, -0.2774, 0.675, 0.138, 0.315, 0.3502, 0.9907, 0.9072, 0.4842, 0.7292, 0.1124, 0.0612, 0.489, -0.2409, 0.3351, 0.167, 0.507, 1.0735, 0.5922, -0.2439, 0.1897, 0.5345, 0.1764, 0.1032, 0.1704, -0.1088, 0.5527, 0.1946, 1.0035, 0.9157, 0.7576, 0.3718, 0.8841 ], | |
"Freq": [ 28752, 35971, 23761, 26137, 11076, 12318, 10657, 13687, 14410, 15056, 12205, 25915, 4591, 16954, 21346, 7565, 18912, 11144, 21657, 20438, 16249, 5206, 17305, 8431, 15011, 6964, 4162, 3069, 13796, 11367, 387.81, 419.82, 330.89, 576.35, 56.461, 593.63, 626.15, 46.805, 68.15, 566.19, 38.674, 47.822, 45.281, 151.49, 172.84, 397.46, 26.985, 45.281, 215.02, 290.23, 595.15, 589.05, 27.494, 35.625, 33.084, 221.12, 22.92, 20.379, 19.871, 69.674, 365.16, 196.28, 169.89, 143.5, 221.7, 169.41, 156.45, 130.55, 422.73, 75.372, 73.933, 67.696, 65.777, 74.413, 547.47, 49.465, 48.505, 39.869, 38.43, 367.07, 50.904, 36.511, 34.112, 44.667, 30.753, 28.834, 47.066, 45.147, 25.956, 56.181, 415.56, 656.28, 237.84, 227.58, 155.81, 127.98, 208.54, 116.26, 110.89, 170.94, 97.702, 129.93, 90.867, 121.63, 73.289, 69.871, 92.82, 87.449, 190.47, 62.059, 62.059, 59.618, 59.618, 58.153, 56.2, 53.758, 71.824, 52.294, 52.294, 50.34, 125.25, 53.018, 64.575, 61.205, 89.616, 38.09, 158.96, 59.76, 23.644, 40.017, 152.7, 57.352, 243.23, 32.793, 55.908, 41.943, 113.21, 24.125, 101.17, 30.386, 25.57, 19.792, 51.574, 39.053, 25.57, 20.273, 34.72, 162.33, 19.792, 144.99, 784.61, 534.16, 321.41, 264.41, 108.66, 58.842, 98.788, 713.24, 73.654, 83.079, 183.17, 26.526, 1611.4, 56.149, 34.156, 26.526, 49.417, 1048.1, 22.487, 279.67, 32.81, 53.007, 28.321, 42.235, 47.172, 154.89, 35.054, 22.487, 25.628, 104.62, 200.21, 70.013, 92.254, 58.892, 58.429, 55.649, 51.942, 66.306, 47.308, 46.845, 43.602, 55.185, 37.578, 49.162, 105.69, 87.157, 31.091, 51.015, 59.819, 29.238, 55.649, 46.382, 62.136, 31.091, 41.748, 45.455, 24.604, 27.848, 51.479, 50.552, 289.77, 132.06, 434.63, 119.2, 86.076, 69.76, 64.322, 59.872, 101.4, 58.883, 58.389, 76.682, 56.906, 88.548, 81.626, 45.04, 45.04, 119.7, 43.557, 40.096, 82.12, 37.13, 35.647, 33.669, 79.648, 54.928, 26.747, 404.47, 30.702, 96.458, 190.39, 89.456, 88.534, 51.203, 86.229, 341.09, 46.594, 88.073, 94.986, 72.403, 161.81, 32.307, 31.846, 51.203, 24.472, 35.533, 104.66, 44.29, 77.012, 32.768, 89.916, 24.933, 554.48, 23.551, 478.43, 856.81, 71.942, 24.933, 154.44, 51.203, 142.2, 99.022, 96.111, 81.556, 181.02, 77.675, 48.08, 80.586, 47.595, 62.15, 43.713, 42.258, 34.98, 34.98, 34.01, 32.555, 32.069, 31.584, 41.773, 29.644, 29.644, 28.188, 37.891, 179.07, 27.218, 26.733, 508.02, 26.247, 33.04, 92.715, 524.22, 2089, 22516, 141.52, 32.179, 35.536, 27.863, 31.22, 168.38, 95.003, 19.231, 125.69, 18.751, 18.751, 49.923, 12.996, 20.19, 15.394, 23.067, 15.394, 11.078, 10.598, 10.119, 12.037, 1951.4, 8.6802, 12.517, 10.119, 12.037, 6.7619, 1112.5, 584.13, 964.22, 435.44, 323.45, 450.77, 338.79, 177.08, 292.32, 170.58, 140.84, 124.58, 103.2, 96.232, 91.585, 88.797, 85.08, 75.322, 72.534, 71.14, 168.72, 526.51, 64.17, 85.545, 63.241, 62.311, 59.988, 57.665, 54.877, 53.947, 135.72, 94.875, 75.909, 41.383, 61.807, 33.602, 87.094, 64.238, 30.198, 28.253, 25.336, 60.834, 29.226, 31.657, 27.767, 596.24, 1603.3, 52.081, 93.416, 35.548, 37.979, 30.198, 58.889, 47.705, 21.445, 36.034, 91.957, 480.01, 41.869, 66.67, 3068.3, 543.86, 445.84, 140.48, 35.862, 31.149, 101.36, 34.919, 48.585, 28.322, 21.724, 19.839, 52.355, 68.377, 20.311, 34.919, 20.782, 22.667, 21.253, 22.196, 15.598, 93.353, 16.069, 17.483, 22.196, 17.483, 14.656, 16.069, 28.322, 23.609, 371.66, 232.79, 258.17, 114.02, 88.642, 84.332, 73.317, 59.43, 54.162, 71.881, 90.078, 46.021, 45.542, 45.063, 42.669, 42.19, 41.711, 39.317, 39.317, 38.838, 60.866, 60.866, 35.964, 35.007, 35.007, 32.133, 63.74, 39.795, 66.134, 27.823, 578.48, 646.56, 101.93, 126.21, 146.68, 63.366, 85.265, 107.64, 122.4, 55.272, 55.748, 31.469, 27.184, 58.129, 31.469, 209.04, 97.167, 33.849, 31.945, 95.739, 31.945, 46.703, 36.229, 64.794, 25.28, 24.327, 82.885, 20.995, 43.847, 26.232, 111.08, 106.25, 52.184, 47.356, 43.012, 57.011, 100.46, 42.046, 40.598, 35.288, 52.184, 30.943, 52.184, 65.7, 26.116, 89.354, 34.805, 34.322, 25.151, 304.65, 55.563, 60.39, 29.495, 27.564, 52.666, 45.425, 31.426, 53.149, 43.012, 26.116, 42.182, 34.747, 26.816, 18.39, 202.29, 17.894, 27.808, 17.894, 22.851, 24.338, 45.156, 156.68, 195.84, 5997.8, 22.851, 13.929, 13.433, 13.433, 135.87, 30.286, 26.321, 23.346, 20.868, 186.92, 14.424, 18.39, 34.747, 11.946, 117.03, 158.67, 28.469, 55.943, 41.258, 107.58, 63.996, 57.364, 217, 125.1, 31.311, 32.258, 50.732, 20.89, 44.101, 31.311, 19.469, 32.732, 22.785, 34.627, 37.943, 38.416, 25.627, 21.363, 57.364, 21.363, 28.469, 192.84, 380.42, 18.995, 41.732, 40.311, 179.57, 86.93, 84.53, 136.85, 70.609, 47.569, 61.969, 310.61, 49.009, 31.249, 63.409, 29.809, 77.81, 58.609, 48.529, 46.129, 34.609, 24.049, 31.249, 592.86, 41.329, 27.409, 25.969, 178.61, 42.769, 42.769, 23.568, 47.089, 27.889, 37.969, 236.24, 272.69, 159.94, 98.703, 83.638, 62.254, 61.282, 60.31, 59.339, 73.918, 90.441, 52.049, 50.591, 142.44, 43.787, 43.301, 233.32, 40.385, 67.6, 38.927, 38.441, 36.497, 36.011, 47.675, 58.853, 32.123, 31.637, 340.24, 42.329, 40.871, 99.297, 36.275, 59.598, 33.794, 53.643, 55.132, 97.312, 29.328, 52.154, 52.154, 42.726, 222.86, 33.297, 38.756, 63.568, 22.38, 37.764, 20.892, 116.67, 21.388, 38.756, 27.343, 23.869, 19.403, 36.771, 132.54, 151.4, 68.034, 24.365, 27.343, 128.68, 60.388, 33.258, 37.468, 49.162, 43.549, 25.306, 79.567, 266.67, 26.709, 33.726, 366.31, 28.113, 29.984, 45.42, 33.258, 22.032, 21.564, 1784.6, 23.903, 169.38, 100.62, 21.096, 234.4, 37.936, 32.323, 77.696, 366.77, 19.225, 39.807, 200.92, 156.97, 295.45, 141.84, 145.15, 167.36, 100.72, 372.02, 91.741, 105.92, 73.307, 69.526, 59.601, 54.402, 123.88, 68.108, 50.148, 47.785, 77.561, 45.421, 44.949, 44.476, 38.332, 63.855, 36.441, 36.441, 33.605, 32.187, 32.187, 84.178, 370.58, 1805.9, 405.12, 195.96, 242.34, 133.5, 117.41, 115.99, 110.31, 102.26, 135.86, 94.218, 89.486, 88.066, 69.137, 63.932, 62.985, 56.36, 55.414, 55.414, 52.575, 65.825, 46.896, 45.95, 45.95, 44.53, 44.057, 43.11, 40.271, 39.324, 656.06, 215.91, 211.95, 205.52, 185.71, 165.91, 163.93, 156.5, 138.18, 185.22, 134.72, 124.32, 115.9, 113.92, 270.38, 105.51, 104.52, 138.18, 100.06, 97.09, 94.119, 92.139, 91.644, 91.149, 383.75, 85.702, 85.702, 139.17, 78.771, 181.26, 926.54, 399.66, 289.19, 349.7, 146.06, 136.93, 120.6, 111.96, 144.62, 76.896, 152.78, 66.809, 77.376, 73.534, 41.354, 40.873, 38.952, 38.952, 38.472, 38.472, 63.447, 50.479, 37.031, 34.149, 80.738, 33.189, 43.275, 49.038, 28.866, 34.149, 303.28, 39.494, 52.314, 34.564, 59.217, 24.702, 55.765, 29.633, 163.25, 51.821, 55.272, 105.07, 61.682, 27.661, 30.126, 37.029, 138.11, 130.22, 25.689, 23.223, 38.015, 90.28, 21.744, 23.716, 31.605, 21.744, 132.19, 59.217, 112.47, 45.411, 413.83, 290.51, 413.35, 131.55, 119.03, 109.39, 103.61, 204.77, 82.419, 68.931, 86.754, 60.742, 78.565, 73.748, 51.108, 48.7, 58.334, 53.998, 40.511, 40.029, 4424, 125.29, 44.364, 32.322, 32.322, 53.035, 104.1, 28.95, 28.468, 27.023, 81.892, 22.543, 22.543, 25.415, 25.893, 32.594, 50.781, 61.79, 27.329, 26.372, 105.34, 24.457, 18.714, 30.201, 15.364, 29.244, 64.183, 42.645, 219.25, 18.714, 16.799, 169.96, 21.107, 34.508, 28.286, 14.885, 16.799, 29.722, 55.568, 210.64, 161.84, 560.55, 153.66, 110.8, 105.5, 75.648, 92.502, 65.055, 60.721, 54.942, 406.94, 104.06, 235.03, 47.72, 43.867, 111.28, 40.015, 39.534, 39.534, 39.534, 38.089, 49.164, 35.2, 34.718, 34.237, 33.755, 33.274, 32.792, 32.311, 31.829, 656.38, 159.81, 118.55, 175.65, 119.51, 287.43, 76.812, 568.1, 347.7, 327.68, 302.29, 194.38, 131.88, 119.67, 127.49, 123.58, 111.37, 241.25, 77.195, 337.61, 205.19, 205.19, 409.36, 113.21, 1592.5, 142.1, 2686.8, 2728.5, 1629.8, 2396.4, 2514.9, 7070.1, 589.36, 1112.3, 755.43, 739.27, 327.69, 956.96, 329.49, 551.66, 1761.3, 285.5, 105.69, 65.842, 42.675, 273.45, 134.03, 119.2, 114.75, 121.18, 2420.6, 491.34, 263.21, 334.64, 961.43, 189, 128.63, 719.06, 244.57, 1501.6, 289.21, 110.18, 84.953, 65.546, 44.684, 84.932, 23.067, 294.64, 904.28, 299.29, 143.63, 152.92, 139.91, 86.939, 780.05, 182.89, 84.663, 75.423, 1071.2, 188.54, 526.34, 268.22, 307.97, 129.83, 189.21, 123.6, 70.444, 77.627, 657.08, 119.54, 99.071, 128.59, 77.172, 1363.8, 427.75, 1842.2, 233.69, 159.83, 181.56, 153.56, 103.35, 176.25, 968.9, 74.39, 69.079, 111.08, 1576.8, 5438.1, 904.17, 2361, 1506.4, 339.68, 2279.4, 204.21, 457.63, 95.259, 361.47, 105.21, 224.58, 276.21, 112.79, 282.84, 256.31, 113.73, 530.46, 315.41, 213.17, 259.25, 246.77, 83.57, 70.129, 376.86, 49.009, 380.09, 500.61, 364.05, 452.5, 456.87, 321.77, 481.66, 118.63, 427.71, 102.59, 444.72, 96.273, 196.39, 70.516, 72.46, 202.51, 188.62, 1218.3, 1003.4, 1417.4, 334.5, 636.21, 122.13, 297.55, 703.82, 506.25, 487.35, 328.06, 145.15, 97.885, 185.8, 72.362, 1580.1, 570.28, 504.97, 522.01, 824.87, 142.96, 316.16, 128.76, 216.31, 230.98, 117.88, 121.66, 1296.7, 1086.3, 947.68, 272.85, 463.96, 600.11, 365.93, 465.45, 209.97, 185.22, 169.87, 637.25, 711.85, 894.36, 1187.8, 410.7, 432.8, 599.94, 384.29, 194.09, 137.41, 445.28, 1254.6, 563.92, 538.47, 218.97, 115.92, 213.54, 75.981, 101.13, 73.515, 921.54, 3101.7, 324.71, 377.7, 431.65, 184.54, 253.9, 152.75, 110.36, 164.79, 368.11, 90.507, 95.771, 101.51, 66.097, 959.68, 158.95, 523.66, 283.87, 404.53, 221.07, 170.99, 206.14, 146.43, 102.61, 224.92, 106.95, 495.54, 105.98, 193.14, 144.89, 69.674, 445.76, 298.95, 862.2, 128.15, 293.19, 137.26, 242.23, 216.84, 120.16, 3233.2, 790.27, 193.63, 2030.6, 1923.3, 1009.9, 575.9, 495.11, 3205.6, 452.02, 922.58, 283.15, 177.51, 1075, 89.473, 99.667, 116.35, 205.23, 140.95, 131.56, 63.333, 758.18, 1053.6, 370.59, 302.84, 246.15, 641.12, 1282.8, 989.3, 119.88, 100.96, 77.675, 565.27, 221.28, 2460.7, 607.18, 394.25, 2548.7, 163.14, 98.091, 1052, 3580.1, 6767.2, 601.59, 54.513, 72.992, 3427.4, 3706.8, 612.19, 163.1, 837.45, 83.457, 852.05, 717.9, 1017.2, 609.67, 175.8, 59.43, 461.84, 515.64, 174.29, 1703.6, 354.86, 162.73, 342.31, 90.803, 1012.7, 3170.9, 2694.1, 203.77, 518.53, 3103, 1735.4, 143.3, 373.79, 2532.9, 1245.9, 1128.9, 1331.6, 784.48, 1087.6, 527.26, 542.9, 1306, 640.95, 1880.6, 495.05, 561.37, 527.74, 527.58, 304.85, 68.209, 172.37, 96.05, 55.729, 1318, 338.29, 209.99, 635.71, 154.59, 1270.9, 134.53, 233.28, 197.06, 120.63, 55.132, 1791.6, 721.81, 280.24, 4596.8, 513.65, 1010.9, 230.19, 362.57, 349.33, 481.2, 774.24, 232.12, 105.92, 1176.5, 229.09, 92.798, 688.74, 421.88, 344.15, 491.69, 178.29, 971.21, 545.19, 428.95, 249.8, 283.9, 491.63, 552.77, 136.63, 336.81, 693.29, 82.884, 191.36, 2199.5, 310.74, 322.79, 184.54, 475.48, 427.32, 248.6, 1802, 799.82, 496.85, 1774.8, 646.18, 1268.9, 802.21, 316.89, 821.84, 578.7, 850.55, 383.42, 368.11, 515.04, 203.46, 960.63, 188.33, 170.99, 176.29, 94.909, 152.21, 1392, 779.12, 545.07, 440, 244.73, 763.7, 425.82, 599.15, 219.28, 249.07, 186.08, 2293.2, 4242.5, 228.3, 200.85, 1270.8, 1227, 4764.4, 3518.9, 2317.4, 1646.8, 635.3, 251.65, 123.76, 346.13, 339.7, 479.62, 209.18, 139.97, 1546.7, 720.85, 969.72, 507.47, 260.9, 326.34, 296.97, 417.78, 364.41, 1311.7, 1136.6, 245.59, 581.29, 1329.9, 892.05, 1675.2, 575.77, 3206.6, 201.37, 294.25, 600.61, 249.03, 225.2, 387.62, 1918, 805.4, 756.39, 721.99, 1356.3, 318.14, 418.98, 776.18, 621.15, 244.76, 732.26, 508.15, 114.02, 72.887, 82.885, 695.67, 1179.9, 297.9, 798.98, 2770.5, 440.79, 540.23, 215.83, 380.93, 195.56, 809.11, 2652.4, 2243, 2808.1, 1571.4, 475.41, 524.48, 449.13, 477.39, 490.77, 2441.3, 5930.2, 1698.2, 1248.7, 1088.6, 834.22, 1451.9, 1187.1, 941.27, 551.9, 767.1, 819.43, 183.41, 906.79, 123.41, 1148.2, 216.31, 449.58, 211.94, 2796.8, 935.45, 1053.6, 306.23, 304.74, 258.09, 982.1, 1206.9, 2199, 2463.8, 881.32, 1506.2, 595.98, 3483, 1046.9, 1275.6, 870.56, 1735.5, 1185, 418.34, 244.41, 238.26, 2767, 217.25, 1088.5, 1424.4, 594.88, 264.93, 1059.1, 586.49, 262.77, 842.2, 1048.3, 804.73, 802.75, 313.64, 280.6, 153.88, 244.61, 330.4, 1606.5, 384.44, 483.93, 780.2, 467.66, 330.29, 820.4, 1028.6, 937.59, 622.18, 2415, 1399.1, 2848.5, 844.68, 1547, 353.76, 684.6, 336.37, 365.16, 343.57, 2838.4, 1003, 576.21, 366.74, 527.38, 282.27, 772, 890.91, 1491.9, 819.64, 534.56, 1430.5, 955.61, 2096.3, 744.65, 994.4, 3238.4, 327.64, 821.57, 2319.6, 100.59, 169.14, 245.77, 4582.5, 5229.1, 509.77, 520.83, 417.6, 285.81, 504.14, 467.75, 312.01, 203.33, 1446.9, 588, 1059.9, 723.72, 547.72, 267.69, 506.99, 202.64, 678.42, 446.46, 567.06, 622.01, 361.85, 330.72, 624.93, 912.84, 1121.1, 590.04, 527.84, 1166.4, 642.82, 1086.3, 398.48, 592.43, 502.88, 903.71, 288.07, 330.92, 2345.7, 2719.8, 1491.2, 718.84, 2338.4, 3224.7, 800.42, 379.96, 480.37, 1150.5, 744.56, 1133.2, 2737.2, 527.45, 2820.4, 2159.6, 3675.9, 1484.6, 877.8, 1110.9, 1049.3, 1757.4, 1231.3, 201.65, 334.61, 264.53, 153.17, 418.14, 233.32, 198.82, 2187.5, 3591.8, 726.04, 1544.3, 865.98, 377.69, 475.94, 144.95, 2015.6, 1145.1, 1409, 1005.3, 1453.4, 1291.3, 260.48, 339.88, 145.15, 909.1, 1205.3, 491.72, 441.56, 1319.9, 285.87, 410.8, 1950.8, 618.43, 480.3, 281.76, 1351.6, 635, 394.85, 574, 765.28, 449.23, 1813, 899.89, 266.8, 752.95, 585.81, 5731.3, 878.19, 525.1, 376.26, 509.69, 1580.9, 2754, 1243.5, 1289.9, 1169.3, 1307.2, 829.01, 1122.5, 1175.5, 1024.3, 1260.7, 1688.3, 1419.5, 936.66, 1184.2, 793.35, 1168.9, 512.93, 313.34, 2688.9, 1182.6, 1837.4, 1652.3, 1742.7, 963.4, 836.45, 2013.2, 591.83, 860.57, 1343.6, 459.93, 1531.8, 503.26, 353.5, 371.8, 524.93, 2715.9, 2328.1, 1263.1, 1367.4, 863.74, 271.57, 259.52, 1038.4, 509.27, 458.36, 217.59, 121.18, 228.96, 1950.9, 2183.7, 827.31, 811.18, 1208.9, 1647.2, 297.46, 429.42, 848.6, 969.74, 692.55, 463.31, 345.82, 478.66, 717.96, 337.39, 255.15, 924.97, 614.23, 690.58, 958.52, 805.83, 1187.6, 1233.3, 1167.3, 564.6, 582.5, 1542.1, 1049.8, 500.96, 849.11, 466, 950.77, 874.12, 204.76, 506.92, 1812.7, 242.38, 1037.5, 1259.6, 704.41, 704.41, 1082.6, 2483.1, 1794.9, 1332.1, 2132.6, 2687.6, 571.74, 456.06, 829.99, 601.98, 584.22, 2183.6, 305.73, 201.73, 848.61, 683.37, 534.5, 453.61, 783.11, 1670, 1806.1, 1468.4, 1027.3, 1048.3, 1355.2, 1576.3, 516.18, 372.02, 953.58, 1908.1, 2196.3, 643.62, 649.3, 1014, 1968.1, 654.08, 1196, 1063.9, 1224.3, 1120.3, 868.33, 835.3, 712.52, 2030.5, 624.76, 1114.9, 1801.7, 793.88, 839.65, 764.02, 462.96, 344.94, 1268.4, 827.58, 2066.7, 1292.3, 1123.8, 1591, 2267.1, 955.88, 2200.6, 1222.7, 435.35, 890.92, 1205.5, 771.5, 1632.7, 578.18, 641.03, 716.35, 1304.2, 644.56, 794.95, 1264.2, 480.5, 1358.5, 1301.2, 828.31, 459.44, 720.92, 494.11, 808.08, 1726.3, 1133.4, 1282.8, 425.4, 734.92, 505.1, 425.87, 589.43, 838.25, 212.26, 209.95, 381.23, 823.23, 545.87, 410.9, 1622.8, 1082.2, 1548.6, 558.63, 390.12, 766.13, 340.15, 260.58, 485.21, 365.38, 585.12, 479.62, 557.64, 582.74, 375.5, 485.62, 492.13, 1576.1, 1001.3, 763.52, 547.61, 1048, 844.99, 752.62, 533.02, 828.04, 617.33, 598.66, 1158, 498.09, 470.41, 451.84, 886.98, 589.43, 194.76, 130.97, 922.56, 696.64, 931.73, 749.25, 1421.2, 688.05, 847.16, 554.22, 2024.1, 1545.2, 745.98, 713.82, 1046, 827.59, 575.1, 1255.3, 422.85, 1007.5, 1440.6, 1032.7, 509.68, 549.38, 1087.8, 1092.8, 1290.1, 1134.8, 1492.7, 806.38, 588.49, 397.07, 1167, 918.09, 946.96, 846.16, 1607.6, 1269, 669.92, 796.67, 333.75, 725.78, 1367.5, 948.16, 1292.4, 1074.9, 1040.9, 772.18, 845.16, 928.48, 1088.2, 858.44, 437.43, 1179.4, 886.93, 1251.1, 1353.1, 593.77, 917.84, 1155.2, 410.31, 862.97, 892.96, 661.73, 985.98, 717.31, 805.11, 753.93, 810.09, 1141.6, 937.62, 770.52, 858.16, 869.72, 539.38, 1441.7, 543.1, 675.15, 458.77, 496.3, 807.41, 650.68, 668.48, 228.96, 528.07, 963.27, 1108.4, 1269.3, 801.04, 570.12, 653.57, 513.35, 423.03, 397.61, 1059, 521.4, 759.31, 307.19, 945.88, 996.45, 798.05, 772.27, 826.14, 624.92, 946.81, 686.29, 832.83, 379, 303.78, 409, 522.3, 359.48, 447.56, 862.7, 508.37, 1251.6, 828.82, 892.27, 1796.8, 1292.3, 1164.1, 670.62, 601.02, 609.66, 905.83, 1073.1, 682.85, 788.8, 710.66, 463.04, 401.5, 1625.5, 1484.3, 1063, 875.86, 900.91, 484.51, 961.63, 864.62, 1253.6, 759.04, 506.05, 726.86, 558.53, 628.34, 739.23, 966.41, 918.13, 822.48, 1143.6, 989.46, 856.03, 721.15, 1002.9, 1352.1, 1276.5, 1073.6, 997.97, 1118.2, 988.63, 666.48, 941.44, 697.78, 859.1, 574.51, 718.14, 706.75, 665.97, 577.22, 459.67, 492.3, 1074.7, 966.33, 662.63, 766.63, 792.67, 729.11, 804.23, 662.17, 656.4, 1768, 1357.3, 1214.6, 713.61, 575.99, 518.07, 536.61, 505.56, 497.91, 454.41, 421.78, 446.99, 319.43, 391.12, 276.92, 310.53, 958.66, 847.13, 838.38, 817.18, 577.88, 524.03, 535.67, 559.93, 541.98, 351.57, 382.74, 334.31, 483.76, 446.59, 520.01, 482.37, 779.08, 568.52, 497.61, 497.61, 439.67, 399.95, 473.27, 385.67, 355.68, 340.44, 386.62, 287.6, 822.15, 728.01, 700.5, 623.74, 739.12, 915.57, 757.02, 674.94, 688.69, 612.87, 567.19, 374.74, 438.89, 545.91, 576.18, 495.79, 1699.4, 1388.8, 1242.9, 1302.8, 589.44, 518.07, 531.77, 1062.4, 960.21, 899.64, 861.03, 817.47, 971.21, 765.16, 704.63, 782.33, 656.6, 804, 713.44, 561.23, 1047.7, 961.11, 859.58, 852.84, 623.61, 588.04, 573.3, 480.3, 493.73, 465.91, 425.13, 700.23, 708.04, 636.75, 726.22, 608.72, 504.17, 530.12, 392.61, 341.68, 323.39, 343.66, 322.9, 802.89, 714.86, 765.1, 537.61, 398.37, 460.47, 365.86, 361.98, 372.19, 568.8, 517.68, 463.78, 430.33, 728.99, 693.98, 729.06, 692.77, 648.48, 637.17, 583.81, 567.05, 523.47, 372.81, 371.39, 339.01, 310.45, 303.31, 870.42, 728.98, 686.02, 806.02, 1167.7, 579.42, 611.1, 565.98, 546.3, 513.25, 450.55, 415.56, 475.94, 464.53, 1229.3, 1248, 441.97, 726.44, 784.17, 763.5, 597.14, 578.83, 718.09, 659.98, 658.54, 608.1, 538.94, 805.22, 777.11, 664.31, 611.32, 613.25, 647.7, 620.26, 554.5, 415.05, 399.7, 398.74, 398.26, 394.42, 662.63, 651.89, 626.01, 576.94, 1104.2, 462.47, 450.43, 301.14, 301.14, 297.68, 297.19, 711.17, 424.57, 419.23, 402.74, 401.77, 399.83, 356.37, 353.97, 436.37, 418.71, 408.95, 644.38, 602.56, 600.61, 585.33, 510.06, 502.88, 476.06, 314.26, 660.43, 632.91, 732.17, 1177.2, 1152.5, 1115.6, 540.54, 382.52, 380.09, 367.94, 363.08, 464.03, 1100.7, 1097, 411.25, 379.11, 350.75, 754.83, 653.09, 597.14, 571.4, 534.76, 528.32, 525.85, 512.98, 597.54, 562.96, 741.61, 728.3, 572.31, 498.12, 492.34, 483.19, 479.34, 855.34, 824.71, 627.96, 618.81, 602.44 ], | |
"Total": [ 28752, 35971, 23761, 26137, 11076, 12318, 10657, 13687, 14410, 15056, 12205, 25915, 4591, 16954, 21346, 7565, 18912, 11144, 21657, 20438, 16249, 5206, 17305, 8431, 15011, 6964, 4162, 3069, 13796, 11367, 389.68, 422.18, 334.15, 583.64, 57.851, 608.6, 647.96, 48.675, 70.973, 589.86, 40.543, 50.163, 47.64, 159.42, 181.93, 421.39, 28.855, 48.605, 232.13, 323.73, 666.41, 663.48, 31.281, 42.192, 39.258, 270.64, 29.568, 27.049, 26.554, 99.493, 366.55, 197.67, 171.28, 144.89, 224.06, 171.28, 158.32, 132.42, 428.95, 76.765, 75.326, 69.089, 67.17, 76.291, 562.19, 50.857, 49.898, 41.262, 39.822, 380.62, 52.785, 37.903, 35.504, 46.538, 32.146, 30.227, 49.394, 47.469, 27.348, 59.554, 416.96, 658.65, 239.69, 229.47, 157.2, 129.37, 210.9, 117.65, 112.28, 173.27, 99.094, 131.8, 92.258, 123.5, 74.681, 71.263, 94.708, 89.319, 194.73, 63.451, 63.451, 61.009, 61.009, 59.544, 57.591, 55.15, 73.712, 53.685, 53.685, 51.732, 126.64, 54.883, 67.424, 64.042, 96.656, 41.888, 176.67, 67.853, 26.985, 46.278, 184.29, 70.613, 305.79, 42.825, 74.497, 55.963, 151.67, 33.149, 139.6, 41.977, 35.353, 27.523, 72.101, 55.551, 36.982, 29.464, 50.828, 237.75, 29.748, 218.33, 786.49, 535.55, 322.81, 268.23, 111.05, 60.238, 101.2, 735.4, 76.008, 85.927, 189.89, 27.922, 1700.9, 59.469, 36.499, 28.403, 53.228, 1132.9, 24.353, 303.8, 35.665, 58.223, 31.156, 46.546, 52.459, 173.44, 39.397, 25.301, 28.955, 118.57, 202.56, 71.407, 94.109, 60.286, 59.823, 57.043, 53.336, 68.194, 48.703, 48.239, 44.996, 57.066, 38.972, 51.021, 109.94, 91.007, 32.485, 53.385, 62.631, 30.632, 58.405, 48.729, 65.96, 33.477, 45.07, 49.759, 26.984, 30.684, 56.725, 55.798, 291.16, 133.45, 439.46, 121.05, 87.467, 71.151, 65.713, 61.263, 103.76, 60.275, 59.78, 78.556, 58.297, 90.911, 83.981, 46.431, 46.431, 123.5, 44.948, 41.487, 84.984, 38.521, 37.038, 35.525, 84.378, 58.715, 28.612, 433.28, 33.068, 104.57, 191.78, 90.85, 90.414, 52.598, 89.106, 354.64, 48.497, 91.876, 99.264, 75.78, 169.96, 34.182, 33.709, 54.988, 26.353, 38.393, 113.98, 48.564, 85.147, 36.599, 101.97, 28.283, 630.96, 27.415, 563, 1011.7, 85.903, 29.793, 186.49, 62.498, 143.59, 100.41, 97.503, 82.948, 184.32, 79.532, 49.472, 82.923, 48.987, 64.028, 45.105, 43.65, 36.373, 36.373, 35.402, 33.947, 33.462, 32.976, 43.673, 31.036, 31.036, 29.58, 39.765, 188.18, 28.61, 28.125, 534.64, 27.64, 34.94, 98.378, 564.64, 2641, 28752, 181.48, 41.627, 48.299, 39.767, 50.119, 272.98, 157.66, 32.404, 215.68, 33.001, 36.354, 103.02, 27.395, 60.295, 46.298, 71.922, 49.542, 36.866, 35.477, 33.984, 41.487, 6964.3, 32.299, 49.475, 40.42, 48.58, 28.647, 1113.8, 585.52, 967.04, 436.83, 324.85, 453.12, 340.68, 178.48, 294.7, 171.97, 142.23, 125.97, 104.6, 97.626, 92.979, 90.191, 86.474, 76.716, 73.928, 72.534, 172.04, 537.52, 65.564, 87.415, 64.635, 63.706, 61.382, 59.059, 56.271, 55.342, 137.6, 96.745, 78.747, 43.256, 65.114, 35.474, 92.796, 68.55, 32.512, 30.581, 27.673, 67.026, 32.536, 35.415, 31.09, 668.56, 1797.9, 59.683, 108.54, 41.717, 44.576, 35.446, 69.874, 57.167, 26.213, 44.197, 113.15, 594.47, 52.432, 83.509, 3069.7, 551.05, 458.29, 145.23, 37.255, 32.543, 110.89, 38.296, 53.285, 32.588, 27.296, 25.536, 68.12, 90.815, 27.531, 49.865, 30.424, 34.309, 32.252, 34.706, 25.17, 152.28, 26.754, 29.365, 38.415, 30.522, 25.69, 28.554, 50.446, 42.406, 373.06, 234.18, 260.54, 115.42, 90.034, 85.724, 74.71, 60.822, 55.555, 73.753, 92.439, 47.414, 46.935, 46.456, 44.061, 43.582, 43.104, 40.709, 40.709, 40.23, 63.195, 63.215, 37.357, 36.399, 36.399, 33.526, 66.554, 41.67, 69.433, 29.216, 579.87, 648.44, 103.32, 128.07, 149.6, 64.759, 87.144, 110.95, 126.76, 57.628, 58.143, 32.862, 28.577, 61.399, 33.341, 221.61, 103.66, 36.185, 34.279, 103.05, 34.77, 51.831, 41.566, 76.754, 30.425, 30.119, 102.86, 26.514, 55.484, 33.648, 112.47, 107.64, 53.576, 48.749, 44.404, 58.885, 103.78, 43.439, 41.99, 36.68, 54.511, 32.336, 54.548, 69.019, 27.508, 94.125, 36.678, 36.183, 26.543, 322.63, 58.872, 64.212, 31.383, 29.438, 56.398, 48.721, 33.799, 57.388, 46.814, 28.438, 50.405, 46.548, 38.025, 28.829, 325.83, 29.629, 46.08, 31.299, 40, 43.002, 80.022, 278.14, 353.77, 11076, 43.711, 27.41, 26.674, 27.379, 290.93, 65.973, 57.405, 51.164, 46.313, 420.19, 32.477, 41.995, 80.088, 28.728, 282.01, 386.11, 29.862, 60.142, 45.012, 117.79, 72.535, 65.033, 249.92, 149, 38.486, 40.175, 63.42, 26.646, 56.573, 40.492, 25.182, 42.507, 29.89, 45.736, 50.167, 51.01, 34.215, 28.55, 76.987, 28.843, 38.553, 261.35, 516.37, 25.845, 57.879, 55.931, 181.94, 88.322, 85.922, 139.23, 72.496, 48.962, 63.825, 320.31, 50.883, 32.641, 66.257, 31.201, 81.446, 61.438, 50.896, 48.486, 36.497, 25.441, 33.114, 629.88, 44.141, 29.297, 27.829, 191.49, 46.082, 46.112, 25.449, 50.871, 30.226, 41.314, 237.63, 274.56, 161.33, 100.1, 85.03, 63.646, 62.674, 61.702, 60.73, 75.79, 92.82, 53.441, 51.983, 146.61, 45.179, 44.693, 240.86, 41.777, 69.969, 40.319, 39.833, 37.889, 37.403, 49.546, 61.21, 33.515, 33.029, 355.28, 44.215, 42.712, 100.69, 37.666, 61.941, 35.185, 56.02, 58.443, 103.5, 31.2, 55.523, 56.325, 46.519, 244.04, 36.565, 43.9, 74.245, 27.096, 46.244, 26.723, 149.97, 27.723, 51.071, 36.621, 32.435, 26.626, 50.7, 184.01, 212.43, 96.054, 34.471, 38.966, 130.08, 63.165, 35.606, 45.169, 59.684, 53.286, 31.016, 103.87, 349.08, 35.654, 46.801, 514.23, 39.632, 42.344, 64.316, 47.134, 31.432, 30.772, 2558.8, 34.328, 244.16, 148.25, 31.142, 355.79, 58.006, 49.429, 119, 563.73, 29.599, 61.483, 202.32, 158.36, 298.27, 143.23, 147.04, 169.67, 102.11, 377.28, 93.134, 107.78, 74.701, 70.92, 60.994, 55.795, 127.07, 69.975, 51.541, 49.178, 79.931, 46.815, 46.342, 45.869, 39.725, 66.224, 37.834, 37.834, 34.998, 33.581, 33.581, 88.007, 371.97, 1817.8, 407.95, 197.35, 244.21, 134.89, 118.8, 117.38, 111.7, 103.66, 137.73, 95.611, 90.879, 89.459, 70.53, 65.325, 64.379, 57.754, 56.807, 56.807, 53.968, 67.686, 48.289, 47.343, 47.343, 45.923, 45.45, 44.503, 41.664, 40.718, 658.39, 217.31, 213.34, 206.91, 187.1, 167.3, 165.32, 157.89, 139.57, 187.12, 136.11, 125.71, 117.29, 115.31, 273.8, 106.9, 105.91, 140.02, 101.45, 98.481, 95.51, 93.53, 93.035, 92.54, 389.93, 87.093, 87.093, 141.54, 80.162, 184.52, 927.93, 401.05, 290.58, 351.57, 147.45, 138.33, 122, 113.35, 146.48, 78.288, 155.62, 68.202, 79.248, 75.874, 42.746, 42.266, 40.345, 40.345, 39.864, 39.864, 65.799, 52.36, 38.423, 35.542, 84.062, 34.581, 45.149, 51.404, 30.258, 36.021, 311.04, 40.885, 54.181, 35.955, 62.509, 26.094, 59.119, 31.506, 174.99, 55.578, 60.053, 114.23, 68.86, 31, 34.409, 42.776, 161.03, 153.14, 30.388, 27.493, 45.137, 110.44, 26.97, 29.444, 39.258, 27.068, 164.66, 73.873, 140.55, 57.206, 415.7, 291.9, 416.66, 132.94, 120.42, 110.79, 105.01, 207.56, 83.811, 70.323, 88.628, 62.135, 80.439, 75.619, 52.501, 50.092, 60.206, 55.852, 41.903, 41.422, 4591.9, 130.54, 46.245, 33.714, 33.714, 55.389, 108.89, 30.342, 29.861, 28.416, 84.259, 28.245, 30.124, 34.486, 35.328, 46.52, 73.167, 91.526, 42.846, 41.44, 165.88, 38.908, 30.2, 49.135, 25.016, 48.484, 106.64, 71.02, 365.26, 31.322, 28.268, 289.29, 35.932, 59.073, 48.423, 25.58, 28.952, 51.327, 97.511, 371.12, 163.23, 566.24, 155.52, 112.69, 107.37, 77.041, 94.367, 66.447, 62.113, 56.335, 418.06, 106.93, 241.56, 49.112, 45.26, 115.06, 41.407, 40.926, 40.926, 40.926, 39.481, 51.051, 36.592, 36.111, 35.629, 35.148, 34.666, 34.185, 33.703, 33.221, 724.11, 174.5, 126, 195.24, 128.3, 340.32, 82.527, 782.43, 380.36, 358.87, 344.13, 210.69, 139.99, 125.83, 135.02, 131.77, 118.59, 280.12, 79.562, 542.41, 312.73, 316.82, 696.23, 171.35, 3309.5, 232.37, 3087.1, 3327.4, 1882, 3054.1, 3304.3, 10658, 713.94, 1466.7, 955.58, 947.05, 383.94, 1271.2, 394.72, 700.13, 2561.6, 340.77, 124, 76.758, 47.431, 321.67, 148.02, 131.63, 127.67, 137.1, 3446.4, 626.86, 326.25, 450.35, 1485.1, 243.81, 161.59, 764.97, 267.5, 2126.8, 345.23, 119.76, 90.197, 72.142, 48.48, 383.97, 99.795, 310.81, 1084.8, 324.4, 151.38, 162.56, 147.56, 90.747, 985.3, 243.53, 108.01, 96.822, 2579.6, 413.03, 587, 290.3, 361.26, 138.91, 217.28, 136, 74.753, 84.734, 916.08, 162.47, 134.33, 181.37, 103.2, 1608.5, 473.58, 2538.4, 264.37, 175.42, 205.06, 174.18, 114.88, 208.38, 1408.5, 82.177, 76.147, 129.49, 4125.7, 16955, 2986.9, 8784, 2386.3, 540.21, 4510.2, 309.89, 763.48, 134.39, 592.32, 150.47, 351.67, 443.02, 164.25, 460.07, 412.86, 169.64, 629.77, 358.93, 248.1, 321.46, 304.83, 92.772, 76.946, 517.72, 53.772, 415.84, 584.86, 412.45, 529.43, 541.99, 367.15, 582.69, 127.15, 533.14, 109.71, 561.29, 103.24, 229.19, 74.316, 76.686, 294.72, 304.14, 2521.9, 1563.3, 2512.3, 613.02, 1282, 208.06, 561.19, 767.9, 534.5, 523.73, 348.01, 153.81, 105.04, 215.86, 76.187, 1728, 590.81, 538.35, 577.71, 961.28, 148.51, 365.69, 135.97, 244.29, 264.4, 128.62, 134.15, 1434.9, 1202.4, 1079.2, 282.02, 514.68, 689.8, 398.99, 521.56, 216.21, 190.9, 176.08, 775, 760.37, 1008, 1411, 439.74, 476.11, 701.92, 442.77, 218.63, 151.62, 567.88, 1823.8, 761.13, 719.87, 286.11, 146.94, 290.13, 95.818, 132.67, 93.165, 969.32, 4162.1, 349.91, 414.32, 483.08, 196.84, 284.04, 166.75, 119.95, 192.51, 654.9, 166.48, 179.52, 192.03, 119.25, 2367.5, 322.37, 1218.3, 618.78, 434.15, 233.9, 181.27, 227.53, 159.96, 108.35, 261.13, 115.59, 645.64, 119.94, 235.55, 257.21, 125.03, 641.22, 412.61, 1565.6, 152.81, 436.18, 172.67, 293.93, 272.66, 131.63, 8431.4, 1954, 366.26, 3321.6, 3188.7, 1527.8, 765.24, 633.55, 6552.1, 575.35, 1463.2, 436.96, 250.34, 2498.9, 111.83, 129.24, 157.62, 281.52, 178.81, 169.87, 70.486, 1229.1, 1895.5, 542.19, 457.94, 358.38, 1228.5, 2645.6, 2042.7, 153.48, 126.91, 91.502, 1120.3, 357.92, 21346, 4077.4, 3064.1, 5206.2, 189.81, 103.8, 2042.7, 7565.7, 23762, 1163.6, 68.519, 100.72, 11144, 12318, 1668.6, 394.04, 3188.7, 179.05, 3471.9, 1285.5, 2078.7, 1133.1, 244.68, 64.561, 838.38, 964.91, 261.23, 2821.7, 522.7, 209.72, 551.48, 105.25, 3694.9, 16250, 15056, 602.83, 1971.6, 18912, 9166.2, 413.08, 1373.5, 5665.7, 2439.9, 2211.4, 2766.7, 1460.8, 2277, 940.42, 998.12, 3041.3, 1258.1, 4871.1, 919.11, 1082.2, 1011.8, 933.88, 477.85, 78.226, 253.23, 123.16, 62.482, 2057.2, 484.33, 281.17, 1125.2, 196.96, 2707.1, 228.53, 458.62, 402.91, 218.95, 82.788, 4636.5, 1548.1, 555.15, 18912, 1263.9, 2982.1, 471.62, 500.69, 482.6, 743.97, 1372.5, 305.62, 123.73, 2101.9, 303.07, 100.03, 855.92, 552.45, 428.77, 670.65, 191.63, 1444.4, 806.33, 629.26, 325.72, 384.48, 777.67, 987.4, 191.06, 595.43, 1549.2, 109.6, 318.1, 4250.8, 408.85, 455.42, 226.76, 742.95, 654.8, 338.86, 5085.9, 2080.7, 1154.7, 5812.7, 1668.3, 4068.9, 2369.1, 745.61, 2493, 1611.9, 2612.4, 972.53, 926.08, 1418.8, 444.63, 3174.8, 233.79, 221.51, 235.21, 108.58, 196.31, 6552.1, 3191.3, 1055.4, 920.81, 420.08, 1501.8, 664.38, 1154.2, 295.02, 355.3, 243.7, 11650, 28752, 500.75, 417.06, 5855.6, 5634.3, 12318, 8113.5, 4593.6, 3338, 1734, 522.18, 192.8, 614.41, 606.31, 999.32, 359.73, 205.71, 3765.2, 1495.9, 2545.4, 1024.3, 404, 563.53, 602.72, 999.32, 835.57, 16955, 17306, 1981.3, 7654.5, 26137, 15011, 4703.9, 1024.2, 15056, 366.8, 642.84, 1812, 529.36, 458.97, 1003.9, 10658, 3338, 3187.4, 3168.3, 8113.5, 1032, 1562.7, 3848.9, 2840.7, 402.05, 1959.5, 1242.8, 148.77, 103.64, 124.59, 1406.4, 3512, 493.82, 2047, 12205, 883.48, 1197.6, 326.93, 737.79, 286.83, 2191.6, 17306, 15011, 21346, 10111, 1919.2, 2214.9, 1801, 1981.3, 2062.5, 20439, 26137, 4567.9, 3002.1, 2606.9, 1839.5, 4085.5, 3237.4, 2346.1, 1097.5, 1718.5, 1967.7, 284.58, 2959.5, 174.02, 4359.6, 322.18, 942.63, 322.63, 14411, 3080.2, 4008, 706.26, 789.11, 634.25, 4359.6, 3934.7, 9492.4, 11368, 2672.7, 5889.9, 1629.1, 20439, 3718.8, 5085.9, 3006.3, 8087.8, 2560.2, 772.21, 381.99, 399.45, 9424.1, 301.43, 3015.7, 4464.8, 1306.5, 337.81, 2102.4, 1063.1, 389.54, 2099.7, 3128.2, 2205.2, 2425.7, 634.57, 547.41, 246.91, 481.6, 748.18, 4724, 679.68, 1351.5, 2880.2, 1390, 852.49, 3192.9, 2323.1, 2589.1, 1497.1, 25916, 10833, 35971, 4818, 15011, 1399, 4482.6, 671.46, 803, 895.96, 13687, 2771.6, 1372.5, 727.64, 1355, 494.22, 2645.6, 3618.9, 9424.1, 4084.3, 2134.9, 3471.9, 1928.1, 13687, 2604, 4559.2, 35971, 896.11, 4250.8, 26137, 147.82, 293.66, 582.91, 26137, 35971, 1160.3, 1355, 1016.1, 639.24, 1665.3, 1497.1, 823.01, 409.79, 35971, 8784, 25916, 13751, 9166.2, 451.49, 1395.2, 304.95, 2538.4, 1339.3, 2147.9, 2545.4, 1063.5, 969.74, 2821.7, 5001.5, 7089.6, 2739.4, 2285, 9404, 3512, 9070.4, 1042.4, 2047.4, 1583.4, 5043.5, 884.99, 1156.1, 35971, 14411, 5684.2, 1897.8, 13687, 23762, 2560.2, 749.68, 1178.4, 7654.5, 3870.5, 8004.4, 35971, 2341.9, 12216, 7967.5, 21657, 4931, 2157.7, 3237.4, 3006.3, 7163.1, 6743.3, 376.26, 902.69, 614.41, 256.14, 1368, 373.59, 314.97, 13687, 35971, 2844.3, 12205, 4724, 1286.9, 1967.7, 291.68, 11358, 4759.3, 7042.7, 4217.2, 7565.7, 6596.5, 482.08, 768.08, 197.32, 2609, 4429.7, 1006.7, 858.64, 5889.9, 470.47, 862.52, 6911, 1246, 838.63, 393.22, 4464.8, 1497, 706.26, 1494.3, 2868.6, 1223, 12899, 4077.4, 560.16, 3235, 2182, 35971, 2498.9, 1156.1, 710.64, 1291.2, 8406, 21657, 6268.2, 7042.7, 6281, 7755.7, 3647.7, 4559.2, 5469.2, 4768.1, 6743.3, 11474, 20439, 9070.4, 16250, 7755.7, 17306, 2048.6, 790.07, 23762, 5684.2, 14411, 12205, 15056, 4724, 3602.6, 21657, 1897.8, 5206, 13751, 1838.4, 20439, 2265, 1177, 1303.3, 2682.9, 11144, 10833, 3215.2, 14411, 6743.3, 838.38, 772.22, 13796, 3552.3, 2352.9, 532.28, 180.17, 645.68, 13796, 20439, 3216.4, 3552.3, 8076.7, 15011, 862.52, 2147.9, 8961.1, 23762, 16250, 7587.7, 4434.6, 8961.1, 20439, 835.57, 529.36, 6596.5, 3128.2, 3998.8, 7898.4, 5855.6, 13751, 15011, 10833, 3226.4, 3626, 16250, 8087.8, 2030, 6743.3, 2102.4, 11076, 11368, 654.8, 1378, 21657, 393.12, 8639.8, 12899, 4180.4, 4189.9, 9943.7, 13796, 7898.4, 4751.4, 12318, 35971, 2521.9, 1629.1, 5780.9, 3259.3, 3216.4, 23762, 838.84, 385.9, 5684.2, 4068.9, 2682.9, 2061.8, 6522, 9943.7, 11650, 8639.8, 4591.2, 4931, 8302.7, 12205, 1877.7, 1131.9, 3843.2, 16250, 26137, 2270, 2336.3, 3438.2, 14411, 1810, 8406, 6911, 7584.3, 6964.3, 4377.2, 4085.1, 3046.3, 25916, 2538.3, 8087.8, 21346, 4189.9, 3843.2, 3602.6, 1478.2, 823.01, 8076.7, 3643.1, 23762, 9492.4, 7334.8, 11368, 25916, 5206.2, 35971, 11358, 1492.6, 11144, 26137, 8639.8, 26137, 3259.3, 4434.6, 7565.7, 11076, 2521.9, 4809.6, 15962, 1492.6, 18912, 21346, 8639.8, 2147.5, 6964.3, 2712.5, 9404, 7089.6, 2756.8, 3848.9, 2681.5, 11076, 4597.6, 3145.9, 7118, 17306, 667.66, 679.68, 2102.4, 15056, 6596.5, 3309.5, 17306, 8302.7, 21657, 1937.9, 2039.3, 11474, 1621.5, 860.5, 4429.7, 2323.1, 15056, 12216, 2594.5, 3683.1, 1242.8, 2403.3, 2589.1, 25916, 12205, 6522, 3677.8, 18912, 8480.2, 7121.3, 3327.4, 8961.1, 4464.8, 4946.7, 25916, 4145.2, 4162.1, 3843.2, 28752, 11358, 849.55, 323.67, 6522, 3438.2, 7393.1, 4359.6, 23762, 4077.4, 7587.7, 2638.9, 12205, 7996, 5515, 5206.2, 13796, 8302.7, 3618.9, 15056, 1863.1, 20439, 25916, 16955, 2909.3, 3602.6, 21346, 21657, 8076.7, 5958.6, 23762, 6522, 3309.5, 1312.2, 8961.1, 5033.5, 5776.5, 5043.5, 25916, 13687, 3259.3, 5382.1, 671.46, 4429.7, 21657, 8961.1, 11650, 8004.4, 7996, 4068.9, 5123.5, 6552.9, 9943.7, 7540.8, 1463.2, 9070.4, 5490.5, 13687, 21346, 2999.5, 9492.4, 17306, 1478.2, 13796, 16955, 7540.8, 23762, 9166.2, 25916, 5507.9, 7121.3, 25916, 15962, 8961.1, 12899, 16250, 3573.6, 5477.6, 8302.7, 18912, 5469.2, 7540.8, 23762, 20439, 25916, 919.3, 15011, 8938.6, 15962, 25916, 5889.9, 7121.3, 11368, 6596.5, 9943.7, 8938.6, 25916, 5382.1, 21346, 1109.5, 16955, 20439, 10111, 9070.4, 11650, 5206, 21657, 12899, 26137, 5776.5, 2909.3, 8076.7, 18912, 5515, 13751, 10111, 1877.7, 25916, 8087.8, 11650, 12899, 6552.9, 26137, 5889.9, 4759.3, 5382.1, 20439, 26137, 13796, 25916, 15056, 3677.8, 2681.5, 21346, 15962, 25916, 15056, 26137, 3438.2, 7898.4, 5780.9, 21346, 6964.3, 2039.3, 7121.3, 3105.5, 4931, 5776.5, 18912, 8784, 6256, 25916, 17306, 11076, 6522, 21346, 15962, 15056, 9404, 8961.1, 21657, 20439, 5958.6, 18912, 7163.1, 15011, 4145.2, 12899, 20439, 17306, 15962, 6596.5, 11076, 26137, 18912, 4768.1, 11650, 15056, 9943.7, 17306, 7654.5, 7540.8, 21657, 7967.5, 5001.5, 25916, 15962, 9492.4, 15011, 11474, 17306, 11358, 11368, 21346, 4077.4, 11474, 2367.5, 4585.3, 12216, 7540.8, 9166.2, 9404, 12205, 8076.7, 11358, 16955, 16250, 7042.7, 11474, 5958.6, 5776.5, 4077.2, 9424.1, 6911, 12899, 4434.6, 5033.5, 5889.9, 3191.3, 9943.7, 25916, 11474, 8406, 9492.4, 20439, 4714.3, 13751, 7565.7, 6596.5, 4008, 11076, 13751, 21657, 12216, 17306, 16250, 21346, 3309.5, 8406, 8004.4, 11358, 6596.5, 35971, 16955, 10111, 12899, 21346, 13751, 15962, 13751, 17306, 13796, 15962, 25916, 25916, 15011, 3998.8, 13751, 6015, 18912, 14411, 4714.3, 11474, 8004.4, 16250, 16955, 12216, 7587.7, 5999.1, 11358, 18912, 13796, 5780.9, 8087.8, 10111, 5206.2, 23762, 9134.3, 11368, 21346, 15962, 12216, 7163.1, 18912, 13751, 16250, 6256, 14411, 21657, 4008, 17306, 2594.5, 2352.9, 10658, 18912, 15962, 11368, 5469.2, 16250, 15962, 12216, 12899, 7587.7, 7118, 21346, 16955, 17306, 17306, 21346, 15962, 7540.8, 7587.7, 35971, 12899, 8085.1, 9134.3, 6015, 8431.4, 15962, 9492.4, 11474, 18912, 10111, 15962, 7996, 6911, 12216, 15011, 13796, 4946.7, 18912, 35971, 10111, 8085.1, 21346, 9424.1, 13751, 8431.4, 4946.7, 9134.3, 11368, 13796, 9404, 16955, 8431.4, 5812.7, 10111, 15056, 8961.1, 7898.4, 9404, 10833, 9070.4, 6911, 8406, 5515, 28752, 7587.7, 7654.5, 7042.7, 26137, 9134.3, 9166.2, 11474, 20439, 15962, 9492.4, 6743.3, 9943.7, 13796, 10111, 11474, 8961.1, 16250, 11650, 8085.1, 21346, 5490.5, 18912, 20439, 13796, 15011, 11650, 7898.4, 11474, 8480.2, 8406, 4597.6, 13751, 21657, 8302.7, 13751, 11368, 11368, 8431.4, 9134.3, 11650, 8406, 14411, 21657, 12216, 21657, 11650, 12899, 9070.4, 5123.5, 8087.8, 26137, 15962, 8085.1, 11358, 15011, 12216, 15962, 8085.1, 11474, 7163.1, 7540.8, 9943.7, 14411, 8406 ], | |
"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", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic27", "Topic28", "Topic28", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic12", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic17", "Topic17", "Topic17", "Topic18", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic30", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic4", "Topic4", "Topic4", "Topic5", "Topic5", "Topic5", "Topic6", "Topic6", "Topic6", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic16", "Topic16", "Topic17", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic21", "Topic22", "Topic22", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic24", "Topic25", "Topic25", "Topic26", "Topic26", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic30", "Topic30", "Topic1", "Topic1", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic4", "Topic4", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic8", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic11", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic13", "Topic13", "Topic13", "Topic13", "Topic14", "Topic14", "Topic14", "Topic15", "Topic15", "Topic15", "Topic15", "Topic15", "Topic16", "Topic16", "Topic16", "Topic17", "Topic18", "Topic19", "Topic19", "Topic19", "Topic19", "Topic20", "Topic20", "Topic20", "Topic21", "Topic21", "Topic22", "Topic22", "Topic23", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic26", "Topic26", "Topic26", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic30", "Topic30", "Topic1", "Topic2", "Topic2", "Topic2", "Topic2", "Topic2", "Topic3", "Topic3", "Topic3", "Topic4", "Topic5", "Topic6", "Topic6", "Topic7", "Topic7", "Topic7", "Topic7", "Topic8", "Topic9", "Topic9", "Topic9", "Topic9", "Topic9", "Topic10", "Topic10", "Topic11", "Topic11", "Topic11", "Topic12", "Topic12", "Topic12", "Topic13", "Topic14", "Topic14", "Topic14", "Topic15", "Topic16", "Topic16", "Topic17", "Topic18", "Topic18", "Topic18", "Topic19", "Topic20", "Topic20", "Topic20", "Topic20", "Topic21", "Topic22", "Topic22", "Topic23", "Topic23", "Topic23", "Topic24", "Topic24", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic25", "Topic26", "Topic26", "Topic27", "Topic27", "Topic28", "Topic28", "Topic28", "Topic28", "Topic28", "Topic29", "Topic29", "Topic30", "Topic30", "Topic30" ] | |
}, | |
"token.table": { | |
"Term": [ "$", "$", "$", "$", "$", "$", "$", "$", "$", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "ability", "accenture", "accenture", "accenture", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "access", "accessories", "accessories", "accessories", "accessories", "accident", "accident", "accident", "accident", "accident", "accident", "accompany", "accompany", "accompany", "accompany", "accompany", "account_managers", "account_managers", "account_managers", "accountability", "accountability", "accountability", "accountability", "accountability", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "accounting", "ace", "ace", "ace", "ace", "ace", "ace", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisition", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "acquisitions", "actions", "actions", "actions", "actions", "actions", "actions", "actions", "actions", "actions", "actions", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "activity", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "actual", "acute_care", "ad", "ad", "ad", "ad", "ad", "ad", "adapt", "adapt", "adapt", "adapt", "adapt", "adapt", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "additional", "adept", "adept", "adept", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted", "adjusted_ebitda", "adjusted_ebitda", "adjusted_ebitda", "adjusted_ebitda", "admin", "admin", "admin", "admin", "admin", "admin", "admin", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "administrative_expenses", "admissions", "admissions", "admissions", "admissions", "adobe", "adsl", "adsl", "advent", "advent", "advent", "advent", "advent", "advent", "advent", "advent", "advertiser", "advertisers", "advertising", "advertising", "advertising", "advertising", "advertising", "advertising", "advertising", "advertising", "advertising", "advertising", "aerospace", "aerospace", "aetna", "aetna", "aftermarket", "aftermarket", "agents", "agents", "agents", "agents", "agents", "agents", "agents", "agents", "agents", "agents", "agents", "agile", "agile", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "ago", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreed", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "agreement", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air", "air_force", "air_force", "air_force", "air_force", "air_force", "air_force", "air_force", "aircraft", "aircraft", "aircraft", "airline", "airline", "airline", "airline", "airline", "airline", "airline", "airlines", "airlines", "airlines", "airlines", "airlines", "airlines", "albany", "albany", "albany", "albany", "albany", "allegations", "allegations", "allstate", "allstate", "aluminum", "aluminum", "americas", "americas", "americas", "americas", "americas", "americas_region", "americas_region", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amount", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amounted", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp", "amp_t_broadband", "amp_t_wireless", "amp_t_wireless", "analog", "analog", "analog", "analog", "analog", "analytic", "analytic", "analytic", "analytic", "analytic", "analytics", "analytics", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "announced", "annualized_savings", "annualized_savings", "annualized_savings", "annualized_savings", "annualized_savings", "annualized_savings", "annuities", "annuities", "annuities", "annuities", "annuities", "annuity", "annuity", "annuity", "annuity", "annuity", "annuity", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period", "answer_period_caller_instructions", "answer_period_caller_instructions", "answer_period_caller_instructions", "answer_period_operator_instructions", "answer_period_operator_instructions", "answer_period_operator_instructions", "answer_period_operator_instructions", "answer_period_operator_instructions", "answer_period_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "answer_session_operator_instructions", "antibody", "apartment", "apartments", "apartments", "apartments", "apparel", "apparel", "appendix", "appendix", "application", "application", "application", "application", "application", "application", "application", "application", "application", "application", "application", "applications", "applications", "applications", "applications", "applications", "applications", "applications", "applications", "applied_materials", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approach", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "approval", "arbitration", "arbitration", "arbitration", "arbitration", "arbitration", "arbitron", "architecture", "architecture", "architecture", "architecture", "architecture", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "area", "army", "army", "army", "arpu", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "articulated", "asbestos", "asbestos", "asbestos", "asia", "asia", "asia", "asia", "asia", "asia", "asia_pacific", "asia_pacific", "asia_pacific", "asia_pacific", "asic", "asic", "asm", "asms", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset", "asset_impairment", "asset_impairment", "asset_impairment", "asset_impairment", "asset_impairment_charge", "asset_impairment_charge", "asset_impairment_charge", "asset_impairment_charge", "asset_impairment_charge", "asset_impairment_charge", "asset_impairment_charges", "asset_impairment_charges", "asset_impairment_charges", "asset_impairment_charges", "asset_impairment_charges", "asset_quality", "asset_sensitive", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assets", "assignments", "assignments", "assignments", "assignments", "assignments", "assignments", "assignments", "assortment", "assortment", "assortment", "assortments", "athletic", "athletic", "athletic", "atlanta", "atlanta", "atlanta", "atlanta", "atlanta", "atlanta", "atlanta", "atlantic_city", "atms", "atms", "atv", "atv", "atv", "atv", "audi", "audi", "auditors", "auditors", "auditors", "auditors", "auditors", "auditors", "auditors", "australia", "australia", "australia", "australia", "australia", "australia", "australia", "australia", "automated", "automated", "automated", "automated", "automated", "automated", "automated", "automated", "automated", "automated", "automotive", "automotive", "automotive", "automotive", "automotive", "automotive", "av", "av", "av", "av", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average", "average_deal_size", "average_deal_size", "aviation", "aviation", "aviation", "avid", "avid", "avionics", "avionics", "awful_lot", "awful_lot", "awful_lot", "awful_lot", "awful_lot", "background_noise", "background_noise", "background_noise", "backlog", "backlog", "backlog", "backlog", "backlog", "bakeries", "bakeries", "bakery", "bakery", "baking", "baking", "baking", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "balance_sheet", "banana", "banana", "bancorp", "bancorp", "bancshares", "bank", "bank", "bank", "bank", "bank", "bank", "bank", "bank", "bank_credit_facility", "bank_credit_facility", "bank_credit_facility", "bank_credit_facility", "bank_credit_facility", "bank_credit_facility", "bank_credit_facility", "banking", "banking", "banking", "banking", "banking", "banking", "bankruptcy_court", "bankruptcy_court", "bankruptcy_court", "bankruptcy_court", "bankruptcy_court", "banks", "banks", "banks", "banks", "banks", "banks", "banks", "banks", "banks", "bar_code", "barb", "barb", "barb", "barb", "barges", "barnes_amp_noble", "barnes_amp_noble", "barrel", "barrel", "barrel", "barrels", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "based", "basic_subscribers", "basically", "basically", "basically", "basically", "basically", "basin", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "basis_points", "bcfe", "bea", "bea", "beck", "beck", "beck", "beck", "beds", "beds", "beds", "beef", "beer", "beer", "behavioral_health", "berger", "berger", "berger", "berger", "best_practices", "best_practices", "best_practices", "best_practices", "best_practices", "best_practices", "best_practices", "beth", "beth", "beth", "beth", "beth", "beth", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "better", "beverage", "beverage", "beverage", "beverage", "big", "big", "big", "big", "big", "big", "big", "big", "big", "big", "big", "big", "bill_ratio", "bill_ratio", "bill_ratio", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "billion", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "bit", "blood", "blood", "blood", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "board", "boe", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bonds", "bones", "bones", "bones", "bones", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "book", "bookings", "bookings", "bookings", "bookings", "bookings", "boosting", "boosting", "boosting", "boosting", "boosting", "borgata", "borrowing_capacity", "borrowing_capacity", "borrowing_capacity", "borrowing_capacity", "borrowing_capacity", "borrowing_capacity", "borrowing_capacity", "boulder", "boulder", "boulder", "boulder", "bounce", "bounce", "bounce", "bounce", "bounce", "bounce", "box_office", "bpo", "bpo", "brady", "brady", "brady", "branches", "branches", "branches", "branches", "branches", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "brand", "branded", "branded", "branded", "branded", "branded", "branded", "branded", "branded", "brands", "brands", "brands", "brands", "brands", "brazil", "brazil", "brazil", "brazil", "brazil", "brazil", "breakfast", "breakfast", "breeze", "breeze", "breeze", "breeze", "breeze", "brent", "brent", "brent", "brent", "brent", "brent", "brent", "brent", "brien", "brien", "brien", "brien", "brien", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "bright_spot", "broadband", "broadband", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcast", "broadcasters", "broadcom", "bucks", "bucks", "bucks", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "build", "bunch", "bunch", "bunch", "bunch", "bunch", "bunch", "busch", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "businesses", "buyouts", "buyouts", "buyouts", "cabinet", "cabinet", "cabinet", "cable", "cable", "cable", "cable", "cable", "cable", "cable", "cadence", "cadence", "cadence", "caller_instructions", "caller_instructions", "caller_instructions", "caller_instructions", "caller_instructions", "campus", "campus", "campus", "campus", "campus", "campuses", "campuses", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "canada", "cancer", "cancer", "canyon", "canyon", "canyon", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capacity", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_expenditures", "capital_structure", "capital_structure", "capital_structure", "capital_structure", "capital_structure", "capital_structure", "capital_structure", "capital_structure", "capstone", "capstone", "car", "car", "car", "car", "car", "car", "car", "cardiovascular", "care", "care", "care", "care", "care", "care", "care", "care", "care", "care", "carlisle", "carlisle", "carlisle", "carrier", "carrier", "carrier", "carrier", "carrier", "carrier", "carriers", "carriers", "carriers", "carriers", "carriers", "carriers", "carriers", "carriers", "carriers", "cartridge", "cartridge", "cartridge", "cartridge", "cartridges", "cartridges", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "case", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_flow", "cash_outflows", "cash_outflows", "cash_outflows", "cash_outflows", "cash_outflows", "cashflow", "cashflow", "cashflow", "cashflow", "casino", "casino", "casinos", "casm", "castle", "castle", "castle", "casual_dining", "casualty", "casualty", "casualty", "catalog", "catalog", "catalog", "catalog", "catastrophe", "catastrophe_losses", "catastrophes", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "categories", "category", "category", "category", "category", "category", "category", "category", "category", "category", "category", "category", "category", "category", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cautious", "cbs", "cbs", "cbs", "center", "center", "center", "center", "center", "center", "center", "center", "center", "center", "center", "center", "center", "centers", "centers", "centers", "centers", "centers", "centers", "centers", "centers", "centers", "centers", "centralization", "centralization", "centralization", "centralization", "centralization", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "cents", "ceramic", "ceramic", "ceramic", "cereal", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "challenging", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel", "channel_partners", "channel_partners", "channel_partners", "channel_partners", "channels", "channels", "channels", "channels", "channels", "channels", "channels", "channels", "channels", "channels", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge", "charge_offs", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "charges", "chart", "chart", "chart", "chart", "chart", "charts", "charts", "charts", "charts", "charts", "charts", "charts", "checking_accounts", "checkpoint", "checkpoint", "checkpoint", "chemicals", "chemicals", "chemicals", "chemicals", "chicken", "chicken", "chico", "chico", "chile", "chile", "chile", "chili", "chili", "chili", "china", "china", "china", "china", "china", "chip", "chip", "chip", "chip", "chip", "chip", "chips", "chips", "chips", "chips", "chlorine", "choppy", "choppy", "choppy", "choppy", "choppy", "chrysler", "chrysler", "chuck", "chuck", "chuck", "chuck", "chuck", "chuck", "chuck", "chuck", "churn", "churn", "churn", "churn", "cigarette", "cigna", "cigna", "cingular", "cingular", "cio", "cio", "cio", "cio", "cio", "cios", "cios", "circulation", "circulation", "circulation", "claim", "claim", "claim", "claim", "claim", "claim", "claim", "claim", "claim", "claim", "claims", "claims", "claims", "claims", "claims", "claims", "claims", "claims_payable", "claims_payable", "classroom", "classroom", "clec", "click", "click", "click", "click", "click", "click", "click", "click", "click", "click", "click", "click", "click", "click", "client", "client", "client", "client", "client_base", "client_base", "client_base", "client_relationships", "client_relationships", "client_retention", "client_retention", "clients", "clients", "clients", "clinical", "clinical", "clinical_trial", "clinical_trials", "clinical_trials", "cme", "cmp", "cmp", "cms", "cms", "cms", "cms", "cms", "cna", "cna", "cna", "cna", "cna", "coal", "coal", "coal", "coal", "coal_fired", "coated", "coated", "coated", "coatings", "cobalt", "cobalt", "coffee", "coffee", "coffee", "coffee", "coffee", "cogs", "cohesive", "cohesive", "cohesive", "cohesive", "colder", "colder_weather", "colder_weather", "collaboration", "collaboration", "collaboration", "collaboration", "collaboration", "collaboration", "collaboration", "collaboration", "collaboration", "collaborations", "column", "column", "column", "column", "column", "column", "columns", "columns", "columns", "columns", "columns", "columns", "combined_ratio", "comcast", "comcast", "comcast", "comedy", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "coming", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial", "commercial_aerospace", "commercial_aerospace", "commercial_aviation", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commission", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "commitment", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communications", "communities", "communities", "communities", "communities", "communities", "communities", "communities", "communities", "comp", "comp", "comp", "comp", "comp", "comp", "comp", "comp", "comp", "comp_store", "comp_store", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companies", "companywide", "companywide", "companywide", "companywide", "companywide", "companywide", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable", "comparable_store", "comparable_store", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "compared", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantage", "competitive_advantages", "competitive_advantages", "competitive_advantages", "competitive_advantages", "complaint", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "completed", "compounds", "compounds", "comps", "comps", "comps", "concessions", "concessions", "concessions", "concessions", "concessions", "concessions", "concessions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conditions", "conference_coordinator_today", "conference_coordinator_today", "conference_coordinator_today", "conference_coordinator_today", "conference_coordinator_today", "conference_coordinator_today", "conference_coordinator_today", "conference_facilitator", "conference_facilitator", "conference_facilitator", "conference_facilitator", "conference_facilitator", "conference_facilitator", "conference_facilitator", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "conference_facilitator_today", "connector", "connector", "connector", "connector", "connector", "connector", "connector", "consistency", "consistency", "consistency", "consistency", "consistency", "consistency", "consistency", "consistency", "consistency", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "consolidated", "constant_currency", "constant_currency_basis", "constant_currency_basis", "constant_currency_basis", "constant_dollar", "constant_dollar", "constant_dollars", "constant_dollars", "consultant", "consultant", "consultant", "consultant", "consultant", "consultant", "consultant", "consulting", "consulting", "consulting", "consulting", "consulting", "consulting", "consulting", "consulting", "consulting", "consulting", "consumable", "consumable", "consumable", "consumables", "consumables", "consumables", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumer", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "consumers", "contact_center", "contact_center", "content", "content", "content", "content", "content", "content", "content", "content", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "continued", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contract", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "contracts", "convertible", "convertible", "convertible", "convertible", "convertible", "convertible", "convertible", "convertible", "convertible", "convertible_preferred_stock", "convertible_preferred_stock", "convertible_preferred_stock", "convertible_preferred_stock", "convertible_preferred_stock", "converts", "converts", "converts", "converts", "converts", "cookies", "cooperate", "cooperate", "cooperate", "cooperate", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator", "coordinator_today", "coordinator_today", "coordinator_today", "coordinator_today", "coordinator_today", "coordinator_today", "coors", "coors", "coors", "coors", "copper", "copper", "core_deposits", "corn", "corn", "corn", "corn", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "cost", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "costs", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "counsel", "countries", "countries", "countries", "countries", "countries", "countries", "countries", "countries", "countries", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "couple", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "course", "court", "court", "court", "court", "covenant", "covenant", "covenant", "covenant", "covenant", "covenant", "covenants", "covenants", "covenants", "covenants", "covenants", "cox", "cox", "cox", "cox", "cox", "cox", "cox", "cox", "cpga", "crane", "cranes", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "create", "creating", "creating", "creating", "creating", "creating", "creating", "creating", "creating", "creating", "creating", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit", "credit_facility", "credit_facility", "credit_facility", "credit_facility", "credit_facility", "credit_facility", "credit_facility", "credit_facility", "credit_quality", "credit_quality", "credit_quality", "credit_quality", "credit_quality", "credit_quality", "crude", "crude", "crude", "crude", "crude", "crude", "crude_oil", "crude_oil", "csc", "csc", "csc", "cubic_feet", "cubic_feet", "cubic_feet", "cubic_feet_equivalent", "culture", "culture", "culture", "culture", "culture", "culture", "culture", "culture", "culture", "culture", "culture", "curious", "curious", "curious", "curious", "currencies", "currencies", "currencies", "currencies", "currencies", "currencies", "currencies", "currency", "currency", "currency", "currency", "currency", "currency", "currency_effects", "currency_effects", "currency_effects", "currency_effects", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "current", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "currently", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customer", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "customers", "cvs", "cvs", "cvs", "cvs", "czech_republic", "czech_republic", "czech_republic", "czech_republic", "dac", "dac", "dac", "dallas", "dallas", "dallas", "dallas", "dallas", "dallas", "dallas", "dallas", "dallas", "dallas", "damages", "damages", "damages", "damages", "damages", "dana", "dana", "dana", "dana", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data", "data_storage", "data_storage", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "day", "days", "days", "days", "days", "days", "days", "days", "days", "days", "days", "days", "days", "days", "days", "dealer", "dealer", "dealer", "dealer", "dealers", "dealers", "dealers", "dealers", "dealers", "dealers", "dealers", "dealers", "dealerships", "dealerships", "deals", "deals", "deals", "deals", "deals", "deals", "deals", "deals", "deals", "deals", "dean", "dean", "dean", "dean", "dean", "dean", "debenture", "debenture", "debenture", "debenture", "debenture", "debenture", "debentures", "debentures", "debentures", "debentures", "debentures", "debentures", "debentures", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "debt", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "december", "decentralized", "decentralized", "decentralized", "decentralized", "decentralized", "decentralized", "decentralized", "deck", "deck", "deck", "deck", "deck", "deck", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "decline", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declined", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "declines", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decrease", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "decreased", "deep_shelf", "deep_water", "deepwater", "defects", "defects", "defects", "defects", "defects", "defects", "defense", "defense", "defense", "defense", "defense", "defense", "defense", "defense", "deferred", "deferred", "deferred", "deferred", "deferred", "deferred", "deferred", "deferred", "deferred", "deferred", "definitions", "definitions", "definitions", "definitions", "definitions", "definitions", "definitions", "definitive", "definitive", "definitive", "definitive", "definitive", "definitive", "definitive", "definitive", "definitive", "delinquencies", "delinquencies", "delinquencies", "delinquencies", "delinquency", "delinquency", "delinquency", "delinquency", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "deliver", "delta", "delta", "delta", "delta", "delta", "deluxe", "deluxe", "deluxe", "deluxe", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "demand", "denim", "denominator", "denominator", "denominator", "denominator", "denominator", "denominator", "denominator", "department_store", "department_store", "department_store", "department_stores", "department_stores", "department_stores", "department_stores", "deposit", "deposit", "deposit", "deposit", "deposit", "deposit", "deposit", "deposit", "deposition", "deposition", "deposition", "deposits", "deposits", "deposits", "deposits", "deposits", "deposits", "deposits", "deposits", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design", "design_win", "design_wins", "designs", "designs", "designs", "designs", "designs", "designs", "designs", "designs", "designs", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "detail", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "deterioration", "development", "development", "development", "development", "development", "development", "development", "development", "development", "development", "development", "development", "development", "devices", "devices", "devices", "devices", "devices", "devices", "devices", "devon", "di", "di", "di", "di", "di", "diabetes", "diabetes", "diane", "diane", "diane", "diane", "diane", "diane", "didn_t", "didn_t", "didn_t", "didn_t", "didn_t", "didn_t", "diet", "diet", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differ_materially", "differentiate", "differentiate", "differentiate", "differentiate", "differentiate", "differentiate", "differentiate", "differentiate", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "difficult", "digital_media", "digital_media", "digital_tv", "digital_tv", "digital_tv", "digital_tv", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "diluted", "dining", "dining", "dining", "dinner", "dinner", "dinner", "direct_vacancy", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directors", "directory", "directory", "directory", "directv", "directv", "disability", "disability", "disability", "disciplines", "disciplines", "disciplines", "disciplines", "disciplines", "disciplines", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "discontinued_operations", "disease", "disease", "disease", "disease", "disease", "diseases", "disney", "disney", "dispute", "dispute", "dispute", "dispute", "dispute", "dispute", "disputes", "disputes", "disputes", "disputes", "disputes", "distributable_cash_flow", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution", "distribution_center", "distribution_center", "distribution_center", "distribution_center", "distribution_center", "district_court", "district_court", "district_court", "district_court", "dod", "dod", "dod", "dod", "doe", "doe", "doesn_t", "doesn_t", "doesn_t", "doesn_t", "doesn_t", "doesn_t", "doesn_t", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollar", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dollars", "dominion", "don_t", "don_t", "don_t", "don_t", "don_t", "don_t", "dose", "dose", "dose", "dose", "dose", "dosing", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "double_digit", "dover", "dover", "dover", "downturn", "downturn", "downturn", "downturn", "downturn", "downturn", "downturn", "downturn", "dr", "dr", "dr", "dr", "dr", "dr", "dr", "dr", "dram", "dream", "dream", "dream", "dream", "dress", "dress", "dresses", "drill", "drill", "drill", "drill", "drill", "drill", "drill", "drill", "drilled", "drilling", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drive", "drug", "drug", "drug", "drug_discovery", "drugs", "drugs", "dsl", "dsl", "dsp", "duke_energy", "duke_energy", "dvd", "dvd", "dvr", "dynegy", "dynegy", "dynegy", "early_extinguishment", "early_extinguishment", "early_extinguishment", "early_extinguishment", "early_extinguishment", "early_extinguishment", "earned_premium", "earned_premiums", "earning_assets", "earthlink", "ebay", "ebay", "ebitda", "ebitda", "ebitda", "ebitda", "ebitda", "ebitda", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic", "economic_indicators", "economic_indicators", "economic_indicators", "economic_indicators", "economic_indicators", "economists", "economists", "economists", "economists", "economists", "economists", "economists", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy", "economy_improves", "economy_improves", "economy_improves", "economy_improves", "economy_improves", "economy_improves", "economy_improves", "economy_improves", "economy_recovers", "economy_recovers", "economy_recovers", "economy_recovers", "economy_recovers", "economy_recovers", "economy_recovers", "edison", "edison", "edison", "edison", "edison", "editing", "editing", "editing", "eds", "eds", "eds", "eds", "eds", "education", "education", "education", "education", "education", "efficacy", "efficacy", "efficiency_ratio", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "efforts", "electric", "electric", "electric", "electric", "electric", "electric", "electric_generation", "electric_power", "electric_power", "electric_power", "electric_utility", "electricity", "electricity", "electricity", "electron", "electron", "electron", "em", "em", "em", "em", "em", "emc", "emc", "emc", "emerson", "emerson", "emission", "emission", "emission", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employee_benefit_costs", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "employment", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_june", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_march", "ended_september", "ended_september", "ended_september", "ended_september", "ended_september", "ended_september", "ended_september", "ended_september", "ended_september", "energized", "energized", "energized", "energized", "energized", "energized", "energized", "energized", "energized", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "energy", "engagements", "engagements", "engagements", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engine", "engines", "engines", "engines", "engines", "engines", "engines", "engines", "engines", "engines", "engines", "enron", "enron", "enron", "enron", "enron", "enron", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "enterprise", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "entertainment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "environment", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "eps", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equipment", "equitable", "equitable", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "equity", "erosion", "erosion", "erosion", "erosion", "erosion", "erosion", "erosion", "erosion", "erosion", "erp_system", "erp_system", "erp_system", "ethylene", "eur", "euro", "euro", "euro", "euro", "euro", "euro", "euro", "euro", "europe", "europe", "europe", "europe", "europe", "europe", "europe", "europe", "europe", "europe", "european", "european", "european", "european", "european", "european", "european", "european", "euros", "euros", "euros", "eva", "eva", "eva", "eva", "eva", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "exchange_commission_filings", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding", "excluding_special_items", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "execute", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "executing", "exhaust", "exhaust", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expect", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expected", "expedia", "expedia", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expense", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "expenses", "exploration", "exploration", "export", "export", "export", "export", "export", "export", "export", "export", "extra_week", "extra_week", "extra_week", "extra_week", "fab", "fab", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "facility", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fact", "fare", "fare", "fare", "fare", "fare", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "fashion", "favorable_currency", "favorable_currency", "favorable_currency", "favorable_currency", "favorable_currency", "favorable_currency", "fda", "fda", "fda_approval", "fedex", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "fee", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "feel", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "fees", "feet", "feet", "feet", "feet", "feet", "feet", "feet", "feet", "ferc", "ffo", "fibre_channel", "fibre_channel", "fibre_channel", "field", "field", "field", "field", "field", "field", "field", "field", "field", "field", "field", "field", "field", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "filed", "film", "film", "film", "filtration", "filtration", "fin", "fin", "fin", "fin", "fin", "fin", "fin", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financial", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "financing", "finding_nemo", "fine_chemicals", "firewall", "fiscal", "fiscal", "fiscal", "fiscal", "fiscal", "fiscal", "fiscal", "fitness", "fitness", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat", "flat_panel", "flat_rolled", "fleet", "fleet", "fleet", "fleet", "fleet", "flowers", "flows", "flows", "flows", "flows", "flows", "flows", "flows", "flows", "flows", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focus", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "focused", "food", "food", "food", "food", "food", "food", "food", "food", "food_service", "food_service", "foods", "foods", "foods", "foodservice", "foodservice", "footwear", "ford", "ford", "ford", "ford", "ford", "ford", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "forecast", "foreign_currencies", "foreign_currencies", "foreign_currencies", "foreign_currencies", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency", "foreign_currency_exchange", "foreign_currency_exchange", "foreign_currency_exchange", "foreign_currency_exchange", "foreign_currency_exchange", "foreign_exchange", "foreign_exchange", "foreign_exchange", "foreign_exchange", "foreign_exchange", "foreign_exchange", "foreign_exchange", "forrester", "forrester", "foundry", "foundry", "foundry", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fourth", "fox", "fox", "fpga", "france", "france", "france", "france", "france", "france", "france", "france", "france", "franchise", "franchise", "franchise", "franchise", "franchise", "franchise", "franchise", "franchise", "franchise", "franchise", "franchisee", "franchisee", "franchisees", "franchisees", "franchising", "franchising", "franchising", "frank", "frank", "frank", "frank", "frank", "frank", "fred", "fred", "fred", "fred", "fred", "fred", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "free_cash_flow", "freight", "freight", "freight", "freight", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh", "fresh_cut", "frozen", "frozen", "frozen", "frozen", "frozen", "frozen", "frozen", "frozen", "frozen", "frozen", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fruit", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel", "fuel_prices", "fuel_prices", "fuel_prices", "fuel_surcharge", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "full", "fuller", "fuller", "fuller", "fuller", "fuller", "functionality", "functionality", "functionality", "functionality", "functionality", "funds", "funds", "funds", "funds", "funds", "funds", "funds", "funds", "funds", "funds", "funds", "funeral", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "future", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "gaap", "games", "games", "games", "gaming", "gaming", "gaming", "gaming", "gardner", "gardner", "gardner", "gardner", "gardner", "gardner", "gardner", "gartner", "gartner", "gas", "gas", "general_administrative_expenses", "general_administrative_expenses", "general_administrative_expenses", "general_administrative_expenses", "general_administrative_expenses", "general_administrative_expenses", "general_administrative_expenses", "generation", "generation", "generation", "generation", "generation", "generation", "generation", "generation", "generation", "generation", "generation", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "gentlemen", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "geopolitical", "germany", "germany", "germany", "germany", "germany", "germany", "germany", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gift", "gigabyte", "gillette", "gillette", "gillette", "gillette", "glass", "glass", "glass", "glass", "glass", "glass", "glass", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global", "global", "gm", "gm", "gm", "gm", "gm", "gm", "gmac", "gmac", "gmac", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goal", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "goals", "going", "going", "going", "going", "going", "going", "going", "going", "going", "going", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "gold", "golf", "golf", "golf", "golf", "golf", "golf", "golf", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "good_morning", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill", "goodwill_impairment", "goodwill_impairment", "goodwill_impairment", "goodwill_impairment", "goodwill_impairment_charge", "goodwill_impairment_charge", "goodwill_impairment_charge", "goodwill_impairment_charge", "goodyear", "goodyear", "government", "government", "government", "government", "government", "government", "government", "government", "government", "grading", "grading", "grading", "grading", "grading", "grading", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "gradual", "graph", "graph", "graph", "graph", "graph", "graph", "grass", "grass", "grass", "grass", "grass", "grass", "grass", "gray", "gray", "gray", "gray", "gray", "gray", "gray", "great", "great", "great", "great", "great", "great", "great", "great", "great", "greetings", "greetings", "greetings", "greetings", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grew", "grill", "grill", "grill", "grocery", "grocery", "grocery", "gross_additions", "gross_adds", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margin", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_margins", "gross_proceeds", "gross_proceeds", "gross_proceeds", "gross_proceeds", "gross_proceeds", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "gross_profit_margin", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "group", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "growth", "gsm", "gsm", "guaranty", "guess", "guess", "guest", "guest", "guest", "guest", "guests", "guests", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "guidance", "gulf", "gulf", "gulf", "gulf", "gulf_coast", "gulf_coast", "guys", "hadn_t", "hadn_t", "hadn_t", "hadn_t", "hadn_t", "hadn_t", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "half", "handbags", "happen", "happen", "happen", "happen", "happen", "happen", "happen", "happen", "happen", "happen", "happened", "happened", "happened", "happened", "happened", "happened", "happened", "happened", "happening", "happening", "happening", "happening", "harbors", "harbors", "harbors", "harley_davidson", "harmon", "harmon", "harmon", "harry_potter", "hayes", "hayes", "hayes", "hayes", "hca", "hd", "hd", "hd", "headcount", "headcount", "headcount", "headcount", "headcount", "headcount", "headcount", "headcount", "headcount_reductions", "headcount_reductions", "headcount_reductions", "headcount_reductions", "headcount_reductions", "headcount_reductions", "health", "health", "health", "health", "health", "health", "health", "health", "health", "health", "health", "health", "health_care", "health_care", "health_care", "health_care", "health_care", "health_care", "health_care", "health_care", "health_care", "healthcare", "healthcare", "healthcare", "healthcare", "healthcare", "healthcare", "healthcare", "heinz", "heinz", "hewlett_packard", "hewlett_packard", "hey", "hey", "hey", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high", "high_speed_data", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "higher", "hip", "hip", "hip", "hip", "hip", "hip", "hiv", "hmo", "hmo", "hog", "hog", "hog", "homeowners", "homeowners", "homeowners", "homeowners", "homes", "homes", "homes", "homes", "homes", "homes", "honda", "honda", "hoover", "hoover", "hopes_beliefs", "hopes_beliefs", "hopes_beliefs", "hopes_beliefs", "hoping", "hoping", "hoping", "hoping", "hoping", "hoping", "hoping", "hospital", "hospital", "hospital", "hospitals", "hospitals", "hospitals", "hotel", "hotel", "hotel", "hotel", "hotels", "hotels", "hotels", "hp", "hp", "hp", "hr", "hr", "hr", "hr", "ibm", "ibm", "ibm", "ibm", "ibm", "ibm", "ic", "ic", "icos", "icos", "idaho", "idaho", "idaho", "idaho", "idaho", "idc", "idc", "idc", "idc", "idt", "igt", "igt", "igt", "ilec", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impact", "impairment", "impairment", "impairment", "impairment", "impairment", "impairment", "impairment", "impairment_charges", "impairment_charges", "impairment_charges", "impairment_charges", "impairment_charges", "impairment_charges", "impairment_charges", "implants", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improve", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improved", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "improvement", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "inaudible", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "included", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "including", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "income", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increased", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "increases", "ind", "indebtedness", "indebtedness", "indebtedness", "indebtedness", "indebtedness", "indebtedness", "indebtedness", "indemnity", "india", "india", "india", "india", "india", "india", "india", "indiscernible", "indiscernible", "indiscernible", "indiscernible", "industrial", "industrial", "industrial", "industrial", "industrial", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "industry", "initiatives", "initiatives", "initiatives", "initiatives", "initiatives", "initiatives", "initiatives", "initiatives", "initiatives", "innovation", "innovation", "innovation", "innovation", "innovation", "innovation", "innovation", "inpatient", "inspection", "inspection", "inspection", "inspection", "installed", "installed", "installed", "installed", "installed", "installed", "installed", "installed", "installed", "installed", "installed", "instrument", "instrument", "instrument", "instrument", "instrument", "instrument", "instrument", "instruments", "instruments", "instruments", "instruments", "instruments", "instruments", "instruments", "instruments", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance", "insurance_written", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integration", "integrity", "integrity", "integrity", "integrity", "integrity", "integrity", "integrity", "integrity", "integrity", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "interest", "intermodal", "intermodal", "intermodal", "internal_controls", "internal_controls", "internal_controls", "internal_controls", "internal_controls", "internal_controls", "internal_controls", "international", "international", "international", "international", "international", "international", "international", "international", "international", "international", "international", "international", "international", "international", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "internet", "interoperability", "interoperability", "introductory_comments", "introductory_comments", "introductory_comments", "introductory_comments", "introductory_comments", "inventories", "inventories", "inventories", "inventories", "inventories", "inventories", "inventories", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "inventory", "investigation", "investigation", "investigation", "investigations", "investigations", "investigations", "investigations", "investigations", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment", "investment_banking", "investment_banking", "investment_banking", "ip", "ip", "ip", "ip", "ira", "ira", "ira", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "issues", "italy", "italy", "italy", "italy", "italy", "italy", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "item", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "items", "japan", "japan", "japan", "japan", "japan", "japanese_yen", "japanese_yen", "japanese_yen", "java", "java", "jeans", "jeans", "jewelry", "joint_strike_fighter", "journey", "journey", "journey", "journey", "judge", "judge", "judge", "judge", "judge", "juice", "juice", "juice", "junction", "junction", "junction", "junction", "junction", "junction", "junction", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "june", "jury", "jury", "jury", "jury", "jury", "jury", "kb", "kb", "kerr", "kerr", "kerr", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "key", "keynote", "keynote", "keynote", "keynote", "kind", "kind", "kind", "kind", "kind", "kind", "kind", "knee", "knee", "kraft", "kraft", "kraft", "kroger", "kroger", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "labor", "land", "land", "land", "land", "land", "land", "land", "landfill", "landfill", "landfill", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "large", "lasalle", "laser", "laser", "laser", "laser", "laser", "laser", "laser", "latin_america", "latin_america", "latin_america", "latin_america", "latin_america", "latin_american", "latin_american", "latin_american", "latin_american", "latin_american", "launch", "launch", "launch", "launch", "launch", "launch", "launch", "launch", "launch", "laurie", "laurie", "laurie", "laurie", "laurie", "laurie", "law", "law", "law", "law", "law", "law", "law", "law", "law", "law", "law", "law", "law", "law", "lawsuit", "lawsuit", "lawsuit", "lawsuit", "lawsuit", "lawsuit", "lawsuits", "lawsuits", "lawsuits", "lcd", "lcd", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leaders", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "leadership", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease", "lease_termination_fees", "leased", "leased", "leased", "leased", "leased", "leased", "leased", "leased", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leases", "leasing", "leasing", "leasing", "leasing", "leasing", "leasing_activity", "leather", "leather", "left", "left", "left", "left", "left", "left", "left", "left", "left", "left", "left", "left", "left_hand", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legal", "legg_mason", "legg_mason", "legg_mason", "leisure", "leisure", "leisure", "leisure", "leisure", "leisure", "lending", "lending", "lending", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "level", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "levels", "license", "license", "license", "license", "license", "license", "license", "license", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life", "life_insurance", "life_insurance", "life_insurance", "life_insurance", "life_insurance", "life_science", "life_science", "life_science", "life_science", "lifestyle", "lifestyle", "lifestyle", "lifestyle", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "lines", "linked", "linked", "linked", "linked", "linked", "linked", "linked", "linux", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "listen", "lithography", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "litigation", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "ll", "load_factor", "loan", "loan", "loan", "loan", "loan", "loan", "loan", "loan_balances", "loan_losses", "loan_originations", "loan_portfolio", "loan_portfolio", "loans", "loans", "loans", "loans", "loans", "loans", "local_currencies", "local_currencies", "local_currency", "local_currency", "local_currency", "lodging", "lodging", "logan", "logan", "logan", "long_distance", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "long_term", "looked", "looked", "looked", "looked", "looked", "looked", "looked", "looked", "loren", "loren", "loren", "loren", "loren", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "loss", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "losses", "lot", "lot", "lot", "lot", "lot", "lot", "lot", "lot", "lot", "lot", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "lower", "ltl", "lumber", "lumber", "lunch", "lunch", "lunch", "lunch", "mac", "mac", "mac", "mac", "mac", "mac", "mac", "mac", "mac", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machine", "machines", "machines", "machines", "machines", "macro", "macro", "macro", "macro", "macro", "macro", "macro", "macro", "macro", "macro", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "magazine", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance", "maintenance_capex", "maintenance_capex", "maintenance_capex", "maintenance_capex", "managed_care", "managed_care", "managed_care", "managed_care", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "management_team", "mandy", "mandy", "manpower", "manpower", "manpower", "manufacturers", "manufacturers", "manufacturers", "manufacturers", "manufacturers", "manufacturers", "manufacturers", "manufacturers", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "manufacturing", "marc", "marc", "marc", "marc", "marc", "marc", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "march", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margin", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "margins", "maria", "maria", "maria", "maria", "maria", "maria", "marine", "marine", "marine", "markdown", "markdowns", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "market", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "marketing", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "markets", "marketshare", "marketshare", "marketshare", "marketshare", "marketshare", "marketshare", "marriott", "marriott", "marriott", "marriott", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "matters", "maytag", "mccann", "mcdonald", "mcdonald", "mcdonald", "mcdonald", "mcdonald", "mcdonald", "mcf", "mcf", "mcfe", "meat", "meat", "meat", "meat", "meat", "media", "media", "media", "media", "media", "media", "media", "media", "media", "media", "medicaid", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medical", "medicare", "megawatt", "megawatt", "megawatt_hour", "megawatt_hours", "megawatts", "members", "members", "members", "members", "members", "members", "members", "members", "members", "members", "membership", "membership", "memory", "memory", "memory", "memory", "memory", "memory", "memory", "men", "men", "men", "men", "men", "men", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "mentioned", "menu", "menu", "menu", "merchandise", "merchandise", "merchandise", "merchandising", "merchandising", "metal", "metal", "metal", "metal", "metal", "metals", "metals", "metals", "metals", "metals", "metals", "metals", "metals", "metric_tons", "metrology", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "mexico", "micro", "micro", "micro", "micro", "micro", "micro", "micro", "micron", "microsoft", "microsoft", "microsoft", "microsoft", "microsoft", "microsoft", "military", "military", "military", "military", "military", "military", "military", "milk", "mill", "mill", "mill", "mill", "mill", "mill", "millimeter", "millimeter", "mirage", "mirage", "mis", "mis", "mis", "mis", "missile", "missile", "missile_defense", "missiles", "missiles", "mixed_signal", "mms", "mms", "mms", "mms", "mms", "mms", "mobility", "mobility", "mobility", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "mode", "model", "model", "model", "model", "model", "model", "model", "model", "model", "model", "model", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modest", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "modestly", "monsanto", "monster", "monster", "monster", "monster", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months", "months_ended_june", "months_ended_june", "months_ended_june", "months_ended_june", "months_ended_june", "months_ended_june", "months_ended_june", "months_ended_march", "months_ended_march", "months_ended_march", "months_ended_march", "months_ended_march", "months_ended_march", "months_ended_march", "months_ended_september", "months_ended_september", "months_ended_september", "months_ended_september", "months_ended_september", "months_ended_september", "mortgage", "mortgage", "mortgage", "mortgage", "mortgage_backed_securities", "mortgage_banking", "mortgage_banking", "mortgage_servicing", "mortgage_servicing_rights", "motorcycle", "motorcycle", "motorcycles", "motorcycles", "motorcycles", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "move", "movie", "movie", "movie", "movies", "movies", "movies", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "moving", "mpeg", "msr", "mtbe", "multiple_speakers", "multiple_speakers", "music", "music", "music", "music", "music", "music", "mute", "mute", "mute", "mute", "mute", "mx", "mx", "nanometer", "nasa", "nasa", "nasa", "nascar", "nasdaq", "nasdaq", "nasdaq", "nasdaq", "nasdaq", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "national", "natural_gas", "natural_gas", "natural_gas", "nbc", "nbc", "ncr", "ncr", "ncr", "nda", "net_premiums_earned", "net_premiums_written", "net_written_premium", "net_written_premiums", "network", "network", "network", "network", "network", "network", "network", "network", "network", "network_appliance", "networking", "networking", "networking", "networking", "networking", "networking", "networking", "networking", "networking", "networking", "networks", "networks", "networks", "networks", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news", "news_corp", "newspapers", "newspapers", "newspapers", "newspapers", "newspapers", "nice", "nice", "nice", "nice", "nice", "nice", "nice", "nice_job", "nice_job", "nike", "nike", "nm", "noi", "noninterest_income", "nonperforming_assets", "nonperforming_loans", "nonrecurring_charges", "nonrecurring_charges", "nonrecurring_charges", "nonrecurring_charges", "nonrecurring_charges", "nonrecurring_charges", "norm", "norm", "norm", "norm", "norm", "norm", "norm", "norm", "normal_weather", "normal_weather", "norms", "norms", "norms", "norms", "norms", "norms", "norms", "north_america", "north_america", "north_america", "north_america", "north_america", "north_america", "north_america", "north_america", "north_america", "north_american", "north_american", "north_american", "north_american", "north_american", "north_american", "north_american", "north_american", "north_sea", "northrop_grumman", "northrop_grumman", "northrop_grumman", "northrop_grumman", "notebook", "notebook", "notebooks", "notes", "notes", "notes", "notes", "notes", "notes", "notes", "notes", "notes", "notes", "novel", "nrc", "nuclear", "nuclear", "nuclear", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number", "number_portability", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "numbers", "nurse", "nurses", "nursing", "nymex", "obligated", "obligated", "obligated", "obligated", "occupancies", "occupancy", "occupancy", "occupancy", "occupancy", "occupancy", "occupancy", "occupied", "occupied", "occupied", "occupied", "occupied", "odm", "oe", "oem", "oem", "oem", "oem", "oem", "oems", "oems", "oems", "office_furniture", "offshore", "offshore", "offshore", "offshore", "offshore", "offshore", "offshore", "oil", "oil", "oil", "oil", "oil", "oil", "oil_equivalent", "omni", "omni", "omni", "omni", "omni", "onboard", "onboard", "onboard", "onboard", "onboard", "onboard", "onboard", "onboard", "oncology", "onetime", "onetime", "onetime", "onetime", "onetime", "onetime", "onetime", "onetime", "onetime", "onshore", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "open", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opened", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "opening", "openings", "openings", "openings", "openings", "openings", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operating", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operations", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "operator_instructions", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunities", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "opportunity", "optical", "optical", "optical", "optical", "optics", "optics", "optics", "optics", "option", "option", "option", "option", "option", "option", "option", "option", "option", "option", "options", "options", "options", "options", "options", "options", "options", "options", "options", "options", "options", "options", "options", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "order", "orders", "orders", "orders", "orders", "orders", "orders", "orders", "orders", "organization", "organization", "organization", "organization", "organization", "organization", "organization", "organization", "organization", "organization", "organization", "organize", "organize", "organize", "organize", "organize", "organize", "orient", "orient", "orient", "originations", "originations", "originations", "originations", "originations", "osb", "ounce", "ounce", "ounces", "outage", "outage", "outage", "outage", "outages", "outages", "outlet_stores", "outlier", "outlier", "outpatient", "outpatient", "outsourcing", "outsourcing", "outsourcing", "outsourcing", "outsourcing", "outsourcing", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "outstanding", "owens", "owens", "owens", "owens", "oxford", "oxford", "oxford", "oxford", "oxford", "oxford", "oxford", "pacings", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paper", "paperboard", "parcels", "park", "park", "park", "park", "park", "park", "parker", "parker", "parker", "parker", "parker", "parker", "parks", "parks", "parks", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "parts", "pas", "pas", "passion", "passion", "passion", "passion", "passion", "patient", "patient", "patients", "patients", "patrol", "patrol", "patrol", "patrol", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pay", "pbm", "pc", "pc", "pc", "pcs", "pcs", "pcs", "pcs", "peabody", "peabody", "pegasus", "pegasus", "pegasus", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pending", "pension", "pension", "pension", "pension", "pension", "pension", "pension", "pension", "people", "people", "people", "people", "people", "people", "people", "people", "people", "people", "people", "people", "peoplesoft", "peoplesoft", "percent", "percent", "percent", "percent", "percent", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "percentage", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performance", "performing_assets", "performing_loans", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "period", "persist", "persist", "persist", "persist", "persistency", "personal_lines", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "ph", "pharma", "pharma", "pharma", "pharmaceutical", "pharmaceutical", "pharmaceutical", "pharmaceutical", "pharmacy", "pharmacy", "pharmacy", "pharmacy", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase", "phase_ii", "phase_ii", "phase_ii", "phase_ii", "phase_ii", "phase_iii", "phase_iii", "phase_iii", "physician", "physician", "physicians", "physicians", "pinedale", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "pipeline", "placebo", "plaintiffs", "plaintiffs", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plan", "plant", "plant", "plant", "plant", "plant", "plant", "plant", "plant", "plant", "plant", "plant", "plants", "plants", "plants", "plants", "plants", "plastics", "plastics", "plastics", "plastics", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "platform", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pleased", "pm_eastern_time", "pm_eastern_time", "pm_eastern_time", "pm_eastern_time", "pm_eastern_time", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "point", "polaris", "polaris", "polaris", "policyholders", "polishing", "political_advertising", "polo", "polo", "pork", "portal", "portal", "portal", "portal", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "portfolio", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "position", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "positive", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "potential", "poultry", "poultry", "poultry", "poultry", "pound", "pound", "pound", "pound", "pound", "pound_key", "pound_key", "pound_key", "pound_key", "pound_key", "pound_key", "pound_key", "pound_key", "power", "power", "power", "power", "power", "power", "power", "power", "power", "power", "power_plants", "power_plants", "powerpoint", "powerpoint", "powerpoint", "powerpoint", "powerpoint", "powerpoint", "powerpoint", "ppo", "pre_clinical", "preclinical", "premium", "premium", "premium", "premium", "premium", "premium", "premium", "premium", "premium", "premium", "premium", "premiums", "premiums", "premiums", "premiums", "premiums", "premiums", "premiums", "premiums", "premiums", "prepayments", "prepayments", "prepayments", "prepayments", "prepayments", "prepayments", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "presentation", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "press_release", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure", "pressure_sensitive", "pretty", "pretty", "pretty", "pretty", "pretty_good_shape", "pretty_good_shape", "prevent", "prevent", "prevent", "prevent", "prevent", "prevent", "prevent", "prevent_background_noise", "prevent_background_noise", "prevent_background_noise", "prevent_background_noise", "prevent_background_noise", "prevent_background_noise", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "price", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "prices", "pricing", "pricing", "pricing", "pricing", "pricing", "pricing", "pricing", "pricing", "pricing", "principal_payments", "principal_payments", "principal_payments", "print", "print", "print", "print", "print", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "prior", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "priority", "private_banking", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "pro_forma", "probe", "probe", "probe", "probe", "probe", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "proceeds", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "process", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "processing", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "product", "production", "production", "production", "production", "production", "production", "production", "production", "production", "production", "production", "production", "productline", "productline", "productline", "productline", "products", "products", "products", "products", "products", "products", "products", "products", "products", "products", "products", "products", "products", "products", "professional_services", "professional_services", "professional_services", "professional_services", "professional_services", "professional_services", "professional_services", "professional_services", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "profit", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "program", "programming", "programming", "programming", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "programs", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "progress", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "project", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "projects", "prolonged", "prolonged", "prolonged", "prolonged", "prolonged", "prolonged", "prolonged", "prolonged", "prolonged", "promotional_spending", "promotional_spending", "pronounced", "pronounced", "pronounced", "pronounced", "pronounced", "pronounced", "pronounced", "pronounced", "pronounced", "propane", "propane", "properties", "properties", "properties", "properties", "properties", "properties", "properties", "properties", "property", "property", "property", "property", "property", "property", "property", "property", "property", "property", "property_casualty", "property_noi", "proposed", "proposed", "proposed", "proposed", "proposed", "proposed", "proposed", "proposed", "proposed", "proposed_merger", "proposed_merger", "proposed_merger", "proposed_merger", "proposed_settlement", "prospect", "prospect", "prospect", "prospect", "prospect", "prospect", "prospect", "prospect", "prospect", "prospect", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "proven", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "provide", "proxy_statement", "proxy_statement", "proxy_statement", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public", "public_sector", "public_sector", "public_sector", "public_utility", "publishing", "publishing", "publishing", "publishing", "publishing", "publishing", "publishing", "puc", "pulp", "pulse", "pulse", "pulse", "purchased_intangibles", "pvc", "pwc", "pwc", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quality", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quarters", "quest", "quest", "quest", "quest", "quest", "quest", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question", "question_press", "question_press", "question_press", "question_press", "question_press_star", "question_press_star", "question_press_star", "quick_follow", "radio", "radio", "radio", "radio", "radio", "radio_stations", "radiology", "raid", "rail", "rail", "rail", "rail", "railroad", "railroad", "railway", "railway", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "range", "rasm", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rate", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "rates", "ratings", "ratings", "ratings", "ratings", "ratings", "ratings", "ratings", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "ratio", "raw_material", "raw_material", "raw_material", "raw_material", "raw_material", "raw_material", "raw_material_costs", "raw_material_costs", "raw_material_costs", "raw_material_costs", "raw_materials", "raw_materials", "raw_materials", "raw_materials", "raw_materials", "raw_materials", "raw_materials", "raw_materials", "ray", "ray", "ray", "ray", "ray", "raymond_james", "raymond_james", "raymond_james", "raymond_james", "reactor", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "real_estate", "realignment", "realignment", "realignment", "realignment", "realignment", "realignment", "realignment", "realignment", "realignment", "realty", "realty", "realty_trust", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "rebound", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "received", "recession", "recession", "recession", "recession", "recession", "recession", "recession", "reconstructive", "reconstructive", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recorded_wednesday", "recovers", "recovers", "recovers", "recovers", "recovers", "recovers", "recovers", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "recovery", "redevelopment", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduce", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reduced", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reducing", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reduction", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "reductions", "refinancing", "refinancing", "refinancing", "refinancing", "refinancing", "refinancing", "refinancing", "refinancing", "refrigerated", "refrigerated", "refrigeration", "refrigeration", "refrigeration", "refueling_outage", "refuse", "refuse", "refuse", "refuse", "refuse", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "region", "regulated", "regulated", "regulated", "regulated", "regulated", "regulated", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory", "regulatory_commission", "reinforcing", "reinforcing", "reinforcing", "reinforcing", "reinforcing", "reinsurance", "reinsurers", "reits", "reits", "relentless", "relentless", "relentless", "relentless", "relentless", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remain_cautious", "remained_steady", "remained_steady", "remained_steady", "remained_steady", "remained_steady", "remained_steady", "remained_steady", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remains", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remarks", "remedy", "remedy", "remedy", "remedy", "remedy", "removes", "removes", "removes", "removes", "removes", "removes", "removes", "removes", "rent", "rent", "rent", "rent", "rent", "rent", "rental", "rental", "rental", "rental_rates", "rental_rates", "rental_rates", "rents", "rents", "rents", "rents", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "reported", "resellers", "resellers", "resellers", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserve", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "reserves", "residential_mortgage", "resin", "resin", "resins", "resort", "resort", "resort", "resort", "resort", "resorts", "restatement", "restatement", "restatement", "restatement", "restatement", "restatement", "restatement", "restaurant", "restaurant_openings", "restaurants", "restaurants", "restructuring", "restructuring", "restructuring", "restructuring", "restructuring", "restructuring", "restructuring", "restructuring", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charge", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "restructuring_charges", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "result", "retail", "retail", "retail", "retail", "retail", "retail", "retail", "retail", "retail", "retail", "retailers", "retailers", "retailers", "retailers", "retailers", "rev_par", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenue", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "revenues", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "review", "revolver", "revolver", "revolver", "revolver", "revolver", "revolver", "revolver", "revolver", "revolver", "revpar", "rf", "rf", "rf", "rfid", "rfid", "rfid", "rid", "rid", "rig", "rig", "rig_count", "rig_count", "rigs", "riley", "riley", "riley", "riley", "riley", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "risk", "ritz", "ritz", "ritz", "roaming", "rockies", "role", "role", "role", "role", "role", "role", "role", "role", "role", "role", "role", "role", "roofing", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "room", "rooms", "rooms", "rooms", "rooms", "rooms", "roy", "roy", "roy", "roy", "roy", "rpu", "ruling", "ruling", "ruling", "ruling", "ruling", "russ", "russ", "russ", "russ", "sab", "sab", "sab", "sab", "sab", "sab", "safeguard", "safeguard", "salads", "salads", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "sales", "samsung", "samsung", "samsung", "samsung", "san", "san", "san", "san", "sandwich", "sandwich", "sandwich", "sans", "sans", "satellite", "satellite", "satellite", "satellite", "satellite", "satellite", "satellite", "satellite", "satellite_radio", "sauces", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "savings", "sbc", "sbc", "sbc", "school", "school", "school", "school", "school", "school", "school", "schools", "schools", "schools", "schools", "schools", "schools", "sci", "sci", "scrap", "scrap", "scsi", "search", "search", "search", "search", "search", "search", "search", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "second", "secondary_offering", "secondary_offering", "secondary_offering", "secondary_offering", "secondary_offering", "secondary_offering", "secondary_offering", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "sector", "secular", "secular", "secular", "secular", "secular", "secular", "secular", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "securities", "security", "security", "security", "security", "security", "security", "security", "security", "security", "security", "security", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "segment", "seismic", "seismic", "seismic", "sell_throughs", "selling_prices", "selling_prices", "selling_prices", "semi_annual", "semi_annual", "semi_annual", "semi_annual", "semi_annual", "semi_annual", "semi_annual", "semiconductor", "semiconductor", "senior_credit_facility", "senior_credit_facility", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_notes", "senior_secured", "senior_secured", "senior_secured", "senior_secured", "senior_secured", "senior_secured", "senior_subordinated_notes", "senior_subordinated_notes", "senior_subordinated_notes", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "sense", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "september", "sequential", "sequential", "sequential", "sequential", "sequential", "sequential", "sequential", "sequential", "sequential", "sequentially", "sequentially", "sequentially", "sequentially", "sequentially", "sequentially", "sequentially", "sequentially", "sequentially", "serial_ata", "server", "server", "servers", "servers", "servers", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service", "service_territory", "services", "services", "services", "services", "services", "services", "services", "services", "services", "services", "services", "services", "services", "servicing", "servicing", "servicing", "servicing", "servicing", "servicing", "servicing", "servicing", "servicing", "servicing_portfolio", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "settlement", "severance", "severance", "severance", "severance", "severance", "severance", "severance", "severance", "severance", "severance", "severance_charges", "severance_charges", "severance_charges", "severance_charges", "severance_charges", "severance_charges", "severance_charges", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "shares", "sheraton", "shipments", "shipments", "shipments", "shipments", "shipments", "shipments", "shirts", "shopping_center", "shopping_experience", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shortfalls", "shouldn_t", "shouldn_t", "shouldn_t", "shouldn_t", "shouldn_t", "sic", "sic", "sic", "sic", "sic", "sic", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "side", "signings", "signings", "signings", "signings", "signings", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "signs", "silicon", "silicon", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "sixth_consecutive", "skilled_nursing", "skip", "skip", "skip", "slide", "slides", "slides", "slides", "slides", "slides", "slides", "slides", "slot", "slot", "slot", "slot", "slot", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "slow", "small_molecule", "smith_barney", "smith_barney", "smith_barney", "smith_barney", "snack", "snacks", "software", "software", "software", "software", "software_licenses", "software_licenses", "solicitation", "solicitation", "solicitation", "solicitation", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solution", "solutions", "solutions", "solutions", "solutions", "solutions", "solutions", "solutions", "solutions", "sonic", "sonic", "sonic", "sort", "sort", "sort", "sort", "sort", "sort", "sort", "sounds", "sounds", "soup", "soup", "soup", "southern_california", "southern_california", "southern_california", "southern_california", "southern_california", "southern_california", "soy", "soy", "soy", "soybean", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "space", "spain", "spain", "spain", "spain", "spain", "spain", "spain", "spark_spreads", "speaker", "speaker", "speaker", "speaker", "speaker", "speaker", "speaker", "speakers_remarks", "speakers_remarks", "speakers_remarks", "spec", "spec", "spec", "spec", "special_charges", "special_charges", "special_charges", "special_charges", "special_charges", "special_items", "special_items", "special_items", "specialty_chemicals", "speech", "speech", "speech", "speech", "speech", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "spending", "sports", "sports", "sports", "sports", "sports", "sports", "sports", "sports", "sportswear", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "spring", "sprint", "sprint", "sprint", "sprint_pcs", "square_feet", "square_feet", "square_foot", "square_foot", "square_foot", "square_foot", "square_foot", "square_footage", "square_footage", "square_footage", "sram", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "st", "stacey", "stacey", "stacey", "stacey", "stan", "stan", "stan", "stan", "stan", "stan", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "start", "stat", "stat", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "state", "states", "states", "states", "states", "states", "states", "states", "states", "states", "station", "station", "station", "station", "station", "station", "station", "stations", "stations", "stations", "stations", "stations", "stations", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "status", "statutory", "statutory", "statutory", "statutory", "statutory", "statutory", "statutory", "steel", "steel", "steel", "steel", "stent", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stock_buyback_program", "stockholders", "stockholders", "stockholders", "stockholders", "stockholders", "stockholders", "stockholders", "storage", "storage", "storage", "storage", "storage", "storage_networking", "store", "store", "store", "store", "store", "store", "store_noi", "stores", "stores", "stores", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic", "strategic_priorities", "strategic_priorities", "strategic_priorities", "strategic_priorities", "strategic_priorities", "strategic_priorities", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "strategy", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "streamlining", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "strong", "structured_finance", "student", "student", "student_enrollment", "students", "students", "studies", "studies", "studies", "studies", "studies", "studies", "studies", "studies", "studies", "studies", "studies", "studio", "studio", "studio", "studio", "studios", "studios", "study", "study", "study", "study", "study", "study", "study", "study", "stuff", "stuff", "stuff", "stuff", "stuff", "stuff", "stuff", "stuff", "stuff", "stuff", "sublease_space", "submarket", "submarkets", "subscriber", "subscriber", "subscriber_additions", "subscriber_base", "subscriber_base", "subscribers", "subscribers", "subscription", "subscription", "subscription", "subscription", "subsea", "suburban", "suburban", "suburban", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "success", "sue", "sue", "sue", "sue", "sue", "sue", "sue", "summary_judgment", "supplemental_package", "sure", "sure", "sure", "sure", "sure", "sure", "sure", "surety", "surety", "surety", "surgeries", "surgeries", "sweaters", "symbol", "symbol", "symbol", "symbol", "symbol", "symbol", "symbol", "symbol", "symbol", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system", "system_wide", "system_wide", "system_wide", "systems", "systems", "systems", "systems", "systems", "systems", "systems", "systems", "systems", "systems", "systems", "tactics", "tactics", "tactics", "tactics", "tactics", "tactics", "tactics", "taiwan", "taiwan", "taiwan", "talent", "talent", "talent", "talent", "talent", "talent", "talent", "talented", "talented", "talented", "talented", "talented", "talented", "talented", "talented", "talented", "talk", "talk", "talk", "talk", "talk", "talk", "talk", "talk", "talk", "talked", "talked", "talked", "talked", "talked", "talked", "talking", "talking", "talking", "talking", "talking", "talking", "talking", "tape", "tape", "tape", "tape", "tape", "tape", "tdma", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "team", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "teams", "technical_difficulty", "technical_difficulty", "technical_difficulty", "technical_difficulty", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "technology", "tel", "tel", "tel", "tel", "telecom", "telecom", "telecom", "telecom", "telecom", "telecom", "telephone_key_pad", "telephone_key_pad", "telephone_key_pad", "telephone_key_pad", "telephone_key_pad", "telephone_key_pad", "telephone_key_pad", "telephone_keypad", "telephone_keypad", "telephone_keypad", "telephone_keypad", "telephonic", "telephonic", "telephonic", "telephonic", "telephonic", "telephonic", "telephonic", "telephonic", "television", "television", "television", "television", "television", "television", "television", "television", "television_stations", "tenant", "tenants", "tenants", "tenet", "tenet", "term_loan", "term_loan", "term_loan", "term_loan", "term_loan", "term_loan", "term_loan", "term_loan", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "terms", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "test", "theatrical", "therapeutic", "therapeutics", "therapies", "therapy", "therapy", "thermal", "thermal", "thermal", "thermal", "thermal", "thermal", "thermal", "thing", "thing", "thing", "things", "things", "things", "things", "things", "things", "things", "things", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "third", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thought", "thq", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "three", "ticket", "ticket", "ticket", "ticket", "ticket", "ticket", "timber", "timber", "timber", "timber", "time_simply_press", "time_simply_press", "time_simply_press_star", "time_simply_press_star", "times", "times", "times", "times", "times", "times", "times", "times", "times", "times", "times", "times", "times", "times", "tire", "tire", "tire", "tires", "tires", "titan", "titan", "titan", "titles", "titles", "tivo", "ton", "ton", "ton", "tons", "tons", "tons", "tons", "tool", "tool", "tool", "tool", "tool", "tool", "tool", "tool", "tool", "tools", "tools", "tools", "tools", "tools", "tools", "tools", "topline", "topline", "topline", "topline", "topline", "topline", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "total", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "totaled", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_phone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "touchtone_telephone", "tower", "tower", "tower", "tower", "tower", "tower", "towers", "towers", "towers", "towers", "towers", "towers", "towers", "tractors", "tractors", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trade", "trading", "trading", "trading", "trading", "trading", "trading", "trading", "trading", "traffic", "traffic", "traffic", "traffic", "traffic", "traffic", "traffic", "trailers", "trailers", "trailers", "trailers", "trailing_twelve", "trailing_twelve", "trailing_twelve", "trailing_twelve", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transaction", "transmission", "transmission", "transmission", "transmission", "transmission", "transmission", "transmission", "transmission", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "travel", "treatment", "treatment", "treatment", "treatment", "treatment", "treatment", "treatment", "treatment", "treatment", "treaty", "treaty", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trends", "trial", "trial", "trial", "trial", "trial", "trial", "trial", "trials", "trials", "trials", "trials", "trials", "trials", "trials", "tribune", "tricare", "trough", "trough", "trough", "trough", "trough", "troy", "troy", "troy", "troy", "troy", "troy", "truck", "truck", "tuck", "tuck", "tuck", "tuck", "tuck", "tuck", "tuck", "tuition", "turkey", "turkey", "turkey", "turkey", "tv", "tv", "tv", "tv", "tv", "tv", "twelve_month", "twelve_month", "twelve_month", "twelve_month", "twelve_month", "twelve_month", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "twelve_months", "txu", "tyson", "tyson", "tyson", "tyson", "tyson", "um", "um", "um", "unbilled_receivables", "unbilled_receivables", "unbilled_receivables", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncertainty", "uncoated", "underserved", "underserved", "underserved", "underserved", "underserved", "underserved", "underwriting", "underwriting", "underwriting", "underwriting", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "unique", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "units", "universal_life", "unix", "unix", "unocal", "unregulated", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "update", "upholstery", "user_interface", "user_interface", "users", "users", "users", "users", "users", "users", "users", "users", "users", "utilities", "utilities", "utilities", "utilities", "utilities", "utilities", "utilities", "utilities", "utility", "utility", "utility", "utility", "utility", "utility", "vacancies", "vacancies", "vacancy", "vacancy", "vacancy_rate", "vacancy_rate", "vacant", "vacant", "vacant", "vaccine", "vacuum", "vacuum", "vacuum", "vacuum", "vacuum", "valuation_allowance", "valuation_allowance", "valuation_allowance", "valuation_allowance", "valuation_allowance", "valuation_allowance", "variable_annuity", "varieties", "varieties", "vascular", "ve", "ve", "ve", "ve", "ve", "ve", "ve", "ve", "ve", "vegetable", "vehicle", "vehicle", "vehicle", "vehicle", "vehicle", "vehicle", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vehicles", "vendor_allowances", "veritas", "verizon", "verizon", "verizon", "verses", "verses", "verses", "verses", "verses", "verses", "verses", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "version", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "versus", "vessels", "vessels", "vessels", "vessels", "veteran", "veteran", "veterinary", "veterinary", "veterinary", "viacom", "vic", "vic", "vic", "video", "video", "video", "viewers", "viewers", "vinyl", "vis", "vis", "vod", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "voice", "volkswagen", "volkswagen", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volume", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "volumes", "vote", "vote", "vote", "vote", "vote", "vote", "vpn", "wafer", "wafer", "wafers", "wafers", "walk", "walk", "walk", "walk", "walk", "walk", "walk", "walk", "walk", "walk", "waste", "waste", "waste", "waste", "wastewater", "wastewater", "watches", "wb", "wb", "weak", "weak", "weak", "weak", "weak", "weak", "weak", "weak", "weakness", "weakness", "weakness", "weakness", "weakness", "weakness", "weakness", "weakness", "weakness", "wealth_management", "weapons", "weapons", "weapons", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "weather", "web", "web", "web", "web", "web", "web", "web", "web", "web", "web", "web", "weigh", "weigh", "weigh", "weigh", "weigh", "weigh", "weigh", "wells", "wells", "wendy", "wendy", "wendy", "wendy", "wendy", "west_africa", "wholesale", "wholesale", "wholesale", "wholesale", "wholesale", "windows", "windows", "windows", "windows", "windows", "windows", "windows", "wine", "wine", "wine", "wins", "wins", "wins", "wins", "wins", "wins", "wins", "wins", "wins", "wireless", "wireless", "wireless", "wireless", "wireless_lan", "wireless_lan", "withdraw", "withdraw", "withdraw", "withdraw", "withdraw", "withdraw", "withdraw", "withdraw", "withdraw", "women", "women", "women", "women", "women", "women", "wonder", "wondered", "wondered", "wondering", "wondering", "wondering", "wood", "wood", "wood", "wood", "wood", "wood", "wood", "work_force_reductions", "work_force_reductions", "work_force_reductions", "work_force_reductions", "work_force_reductions", "workforce_reductions", "workforce_reductions", "workforce_reductions", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "worldwide", "wouldn_t", "wouldn_t", "wouldn_t", "wouldn_t", "wouldn_t", "wouldn_t", "wouldn_t", "written_premiums", "xerox", "xerox", "yahoo", "yahoo", "yeah", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "years", "yen", "yen", "yen", "yen" ], | |
"Topic": [ 4, 13, 16, 17, 18, 22, 27, 29, 30, 1, 2, 4, 5, 7, 9, 10, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 4, 12, 16, 1, 2, 4, 9, 10, 11, 13, 16, 18, 23, 24, 25, 26, 27, 17, 19, 21, 28, 14, 17, 18, 23, 28, 30, 8, 11, 13, 26, 29, 2, 10, 12, 1, 18, 22, 24, 29, 1, 2, 3, 4, 8, 9, 11, 12, 13, 14, 17, 22, 24, 26, 27, 28, 30, 14, 17, 18, 19, 20, 25, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 23, 24, 26, 30, 2, 4, 5, 6, 8, 11, 12, 17, 19, 24, 26, 29, 3, 6, 8, 13, 14, 18, 19, 22, 27, 30, 1, 2, 3, 5, 6, 11, 12, 14, 19, 21, 23, 24, 25, 26, 29, 30, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 2, 5, 6, 11, 14, 16, 20, 2, 18, 20, 23, 26, 27, 1, 2, 3, 4, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 30, 2, 21, 26, 1, 2, 4, 7, 8, 11, 13, 14, 20, 22, 24, 2, 4, 19, 23, 2, 5, 13, 18, 19, 25, 26, 1, 2, 6, 10, 11, 15, 17, 19, 21, 22, 25, 27, 28, 30, 2, 7, 13, 18, 16, 3, 23, 3, 8, 12, 16, 17, 18, 24, 27, 20, 20, 6, 7, 13, 14, 15, 18, 20, 23, 26, 28, 3, 19, 10, 14, 3, 19, 2, 7, 14, 16, 18, 20, 21, 23, 25, 29, 30, 12, 19, 1, 2, 3, 5, 6, 8, 10, 12, 13, 14, 15, 17, 19, 20, 23, 24, 28, 29, 30, 2, 7, 9, 11, 13, 15, 16, 19, 22, 25, 27, 2, 4, 6, 7, 9, 12, 14, 15, 16, 19, 20, 21, 23, 25, 26, 27, 30, 6, 7, 15, 18, 19, 20, 21, 23, 26, 27, 30, 1, 3, 9, 13, 16, 17, 19, 7, 10, 19, 7, 12, 14, 19, 22, 24, 27, 7, 12, 14, 16, 19, 24, 2, 5, 17, 20, 26, 2, 27, 14, 22, 25, 30, 3, 8, 16, 24, 27, 8, 12, 1, 3, 4, 5, 9, 11, 12, 13, 14, 17, 22, 23, 24, 25, 26, 27, 29, 30, 3, 4, 6, 11, 13, 14, 17, 18, 21, 22, 24, 26, 27, 29, 30, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 21, 22, 23, 25, 26, 27, 29, 30, 23, 12, 23, 3, 11, 20, 23, 25, 7, 12, 18, 21, 28, 12, 29, 1, 2, 3, 7, 11, 12, 13, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 8, 12, 19, 20, 22, 30, 10, 14, 15, 19, 24, 9, 14, 16, 19, 24, 26, 1, 2, 3, 6, 7, 8, 15, 19, 21, 23, 24, 26, 27, 1, 9, 10, 1, 4, 10, 21, 25, 27, 3, 5, 7, 10, 16, 25, 27, 25, 26, 2, 26, 27, 28, 30, 13, 14, 3, 9, 12, 13, 14, 16, 19, 21, 23, 24, 25, 3, 12, 16, 19, 21, 23, 24, 25, 21, 1, 3, 5, 8, 14, 16, 18, 22, 25, 27, 28, 29, 1, 2, 4, 5, 7, 9, 11, 19, 25, 26, 27, 29, 8, 25, 27, 28, 30, 20, 3, 9, 12, 15, 16, 1, 2, 3, 5, 9, 10, 11, 13, 15, 16, 18, 19, 21, 22, 24, 25, 26, 28, 29, 16, 19, 27, 23, 5, 6, 7, 10, 12, 16, 18, 22, 23, 26, 28, 8, 14, 30, 3, 8, 16, 19, 20, 30, 3, 8, 12, 16, 3, 29, 7, 7, 4, 9, 11, 13, 14, 18, 20, 21, 22, 24, 26, 30, 6, 14, 22, 30, 1, 22, 23, 26, 27, 30, 8, 15, 17, 22, 28, 24, 24, 3, 4, 9, 11, 13, 14, 17, 18, 20, 22, 24, 25, 26, 27, 28, 30, 1, 7, 8, 9, 12, 25, 26, 3, 6, 28, 28, 26, 28, 30, 1, 6, 7, 20, 24, 26, 28, 7, 12, 24, 1, 16, 17, 24, 3, 19, 4, 11, 12, 14, 16, 19, 27, 6, 8, 9, 11, 12, 20, 25, 27, 1, 2, 4, 7, 8, 12, 16, 21, 22, 28, 3, 4, 6, 19, 20, 30, 3, 8, 16, 27, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 20, 21, 23, 24, 26, 28, 30, 12, 16, 7, 14, 19, 3, 20, 3, 19, 4, 5, 6, 21, 27, 1, 16, 25, 3, 12, 17, 19, 21, 6, 27, 6, 15, 2, 3, 6, 1, 3, 4, 7, 8, 10, 12, 13, 15, 17, 18, 21, 22, 23, 24, 26, 27, 28, 29, 30, 6, 20, 22, 24, 24, 4, 5, 11, 12, 23, 24, 27, 29, 4, 7, 11, 22, 23, 28, 30, 12, 15, 16, 20, 24, 26, 9, 14, 20, 26, 27, 3, 5, 7, 11, 12, 16, 24, 27, 28, 16, 4, 8, 13, 27, 11, 26, 28, 7, 11, 15, 11, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 30, 23, 5, 6, 13, 21, 24, 11, 1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, 16, 17, 22, 23, 24, 26, 28, 29, 2, 4, 6, 7, 8, 13, 15, 20, 21, 24, 26, 28, 29, 11, 16, 30, 1, 11, 26, 30, 2, 6, 28, 15, 6, 8, 2, 1, 10, 18, 25, 2, 12, 15, 18, 19, 20, 29, 4, 5, 18, 22, 25, 27, 2, 3, 5, 6, 7, 10, 12, 13, 14, 15, 18, 20, 22, 28, 29, 30, 6, 7, 15, 20, 1, 5, 6, 8, 13, 15, 18, 19, 20, 21, 26, 28, 2, 3, 19, 3, 4, 6, 7, 8, 9, 11, 12, 14, 19, 22, 24, 26, 28, 1, 5, 7, 11, 12, 13, 17, 25, 27, 29, 12, 25, 28, 1, 3, 5, 10, 13, 14, 17, 18, 22, 27, 30, 11, 3, 4, 7, 9, 13, 14, 15, 19, 20, 24, 30, 6, 15, 17, 22, 2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 17, 19, 20, 24, 26, 3, 7, 12, 19, 21, 2, 4, 8, 18, 24, 7, 4, 7, 12, 13, 15, 23, 29, 4, 13, 15, 21, 4, 5, 7, 18, 21, 29, 20, 12, 30, 7, 8, 9, 2, 12, 18, 19, 24, 6, 7, 15, 18, 20, 21, 23, 28, 6, 7, 13, 16, 19, 20, 25, 28, 6, 7, 19, 20, 28, 8, 9, 11, 18, 22, 30, 6, 15, 6, 8, 15, 19, 23, 1, 4, 7, 8, 10, 11, 17, 18, 6, 7, 12, 17, 18, 1, 3, 5, 7, 12, 21, 23, 28, 29, 30, 3, 23, 1, 3, 9, 13, 14, 17, 19, 20, 21, 23, 24, 27, 28, 20, 3, 5, 7, 13, 1, 2, 3, 5, 6, 8, 15, 16, 18, 22, 25, 26, 28, 29, 30, 5, 7, 11, 16, 20, 26, 20, 6, 8, 9, 13, 14, 16, 18, 19, 20, 22, 23, 24, 28, 30, 7, 13, 26, 6, 21, 23, 4, 9, 10, 16, 19, 20, 23, 4, 16, 28, 2, 5, 10, 20, 27, 2, 16, 19, 26, 27, 2, 26, 5, 6, 8, 9, 11, 12, 15, 16, 17, 19, 23, 25, 27, 28, 30, 14, 25, 9, 11, 18, 2, 3, 5, 7, 9, 11, 14, 15, 18, 19, 21, 22, 23, 26, 30, 4, 5, 7, 9, 11, 13, 14, 18, 19, 21, 22, 23, 24, 26, 27, 30, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 15, 17, 19, 20, 21, 22, 23, 28, 29, 30, 4, 9, 13, 17, 18, 24, 26, 29, 6, 21, 3, 4, 7, 14, 19, 23, 28, 25, 2, 3, 5, 6, 14, 19, 21, 23, 24, 25, 14, 19, 21, 3, 6, 7, 14, 19, 23, 2, 7, 11, 14, 19, 23, 24, 26, 28, 3, 8, 19, 21, 4, 21, 2, 3, 5, 6, 9, 10, 12, 13, 14, 18, 22, 23, 25, 27, 29, 1, 3, 4, 5, 7, 10, 12, 13, 16, 17, 19, 22, 23, 25, 27, 28, 30, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 20, 22, 23, 29, 2, 8, 11, 17, 22, 6, 11, 18, 27, 7, 16, 7, 7, 4, 17, 20, 15, 7, 9, 14, 20, 21, 27, 28, 14, 14, 14, 2, 3, 6, 7, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 28, 29, 1, 2, 3, 5, 6, 7, 8, 13, 15, 16, 20, 24, 28, 3, 5, 6, 10, 16, 21, 22, 23, 27, 28, 29, 30, 4, 20, 28, 1, 2, 5, 8, 9, 11, 12, 16, 18, 20, 21, 25, 26, 2, 4, 12, 15, 17, 18, 23, 25, 26, 28, 4, 16, 24, 28, 29, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 24, 25, 26, 28, 30, 3, 8, 21, 6, 3, 6, 12, 16, 18, 21, 22, 24, 26, 27, 28, 29, 30, 3, 6, 8, 9, 16, 17, 20, 22, 23, 24, 27, 28, 12, 16, 21, 22, 3, 6, 14, 15, 16, 18, 20, 23, 24, 28, 3, 4, 5, 6, 8, 13, 14, 16, 17, 22, 24, 26, 27, 28, 30, 24, 1, 3, 4, 6, 8, 9, 14, 16, 17, 22, 24, 25, 27, 28, 7, 13, 15, 19, 20, 6, 12, 13, 16, 19, 20, 24, 24, 7, 12, 16, 7, 8, 11, 30, 11, 15, 8, 28, 8, 13, 15, 5, 6, 15, 3, 8, 11, 19, 30, 3, 6, 14, 24, 25, 27, 3, 6, 28, 30, 30, 1, 10, 23, 26, 29, 19, 24, 1, 5, 6, 7, 9, 11, 15, 18, 2, 9, 18, 23, 6, 2, 29, 18, 23, 5, 12, 16, 27, 28, 12, 23, 20, 21, 28, 2, 3, 13, 14, 15, 18, 24, 25, 26, 27, 2, 7, 14, 18, 19, 25, 27, 2, 22, 2, 3, 23, 3, 4, 6, 7, 10, 11, 13, 16, 17, 20, 23, 25, 27, 28, 12, 14, 16, 24, 12, 24, 29, 12, 24, 12, 22, 12, 14, 24, 2, 25, 25, 1, 25, 8, 7, 21, 2, 3, 4, 9, 22, 8, 14, 20, 26, 29, 1, 9, 11, 30, 9, 12, 25, 30, 30, 8, 22, 3, 6, 15, 18, 29, 13, 12, 18, 20, 28, 9, 1, 9, 3, 4, 6, 12, 14, 16, 18, 19, 25, 25, 3, 11, 13, 17, 19, 30, 3, 10, 11, 13, 27, 29, 14, 20, 23, 29, 20, 1, 3, 5, 6, 8, 10, 11, 12, 13, 15, 16, 18, 20, 23, 25, 27, 29, 2, 9, 11, 14, 16, 19, 21, 23, 24, 25, 26, 30, 19, 30, 19, 2, 6, 9, 10, 14, 17, 20, 23, 24, 27, 29, 1, 2, 3, 6, 7, 8, 9, 11, 16, 18, 19, 22, 25, 26, 27, 3, 5, 9, 11, 12, 13, 16, 18, 19, 20, 23, 25, 27, 2, 7, 15, 19, 23, 24, 26, 27, 5, 9, 11, 13, 14, 15, 16, 24, 28, 15, 28, 3, 4, 5, 8, 12, 13, 14, 16, 17, 18, 19, 21, 25, 27, 29, 7, 10, 11, 17, 18, 24, 1, 2, 4, 7, 8, 9, 10, 12, 13, 15, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 26, 28, 1, 3, 4, 7, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 1, 3, 5, 8, 9, 14, 15, 16, 18, 20, 22, 24, 27, 3, 8, 18, 22, 27, 2, 3, 4, 6, 7, 9, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 25, 30, 15, 20, 28, 5, 7, 11, 20, 26, 29, 30, 1, 3, 9, 12, 14, 16, 17, 19, 20, 21, 22, 24, 26, 27, 29, 30, 14, 17, 19, 24, 25, 26, 30, 1, 3, 10, 14, 15, 16, 29, 1, 2, 7, 10, 12, 24, 25, 30, 3, 7, 9, 10, 19, 21, 27, 4, 13, 14, 15, 16, 18, 21, 24, 28, 1, 2, 4, 7, 8, 10, 11, 12, 14, 15, 17, 20, 22, 23, 25, 27, 28, 30, 8, 6, 8, 12, 8, 19, 8, 22, 2, 3, 9, 12, 17, 21, 25, 2, 7, 11, 12, 14, 16, 20, 27, 28, 29, 13, 21, 28, 21, 25, 28, 3, 6, 9, 15, 19, 20, 22, 23, 24, 28, 30, 2, 4, 6, 13, 14, 15, 18, 20, 23, 24, 28, 10, 12, 2, 3, 14, 16, 19, 20, 22, 23, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 1, 2, 5, 9, 11, 12, 19, 23, 25, 26, 27, 2, 4, 5, 9, 11, 12, 14, 15, 19, 23, 24, 27, 4, 10, 11, 12, 14, 23, 24, 25, 27, 14, 16, 20, 26, 27, 4, 7, 12, 24, 27, 6, 11, 19, 23, 27, 2, 8, 10, 11, 13, 17, 18, 21, 24, 25, 26, 27, 9, 13, 16, 17, 21, 26, 2, 6, 12, 20, 21, 30, 24, 6, 11, 15, 30, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 15, 16, 17, 19, 21, 22, 23, 24, 26, 27, 29, 30, 2, 3, 4, 6, 7, 9, 10, 11, 12, 15, 17, 19, 20, 21, 22, 24, 26, 27, 28, 30, 6, 7, 8, 10, 11, 17, 18, 21, 24, 25, 27, 5, 8, 12, 13, 16, 18, 20, 21, 25, 2, 5, 13, 15, 16, 17, 23, 24, 29, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18, 20, 21, 24, 25, 27, 29, 1, 3, 20, 27, 4, 7, 8, 22, 23, 30, 4, 26, 27, 28, 30, 11, 12, 19, 20, 23, 24, 25, 30, 23, 19, 19, 1, 2, 3, 5, 9, 11, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 4, 6, 16, 18, 20, 25, 26, 27, 28, 29, 1, 4, 7, 9, 10, 12, 14, 19, 22, 23, 24, 26, 27, 28, 30, 3, 4, 7, 17, 26, 27, 28, 30, 9, 12, 14, 16, 24, 26, 7, 11, 16, 18, 25, 27, 11, 30, 3, 12, 24, 1, 11, 30, 11, 1, 5, 7, 9, 10, 14, 18, 22, 24, 27, 29, 2, 5, 14, 27, 8, 13, 15, 17, 19, 20, 23, 6, 8, 12, 13, 19, 30, 1, 3, 8, 19, 2, 3, 4, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 3, 6, 7, 9, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 28, 3, 7, 9, 12, 15, 16, 18, 21, 23, 24, 28, 30, 1, 13, 16, 21, 8, 9, 11, 30, 8, 14, 25, 2, 7, 8, 11, 15, 18, 20, 21, 24, 26, 9, 14, 17, 27, 28, 13, 15, 19, 29, 1, 2, 3, 5, 6, 11, 12, 13, 14, 16, 23, 24, 25, 26, 29, 3, 16, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 15, 16, 17, 18, 19, 23, 24, 27, 28, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 16, 17, 21, 19, 21, 23, 24, 1, 10, 14, 19, 20, 21, 23, 24, 6, 19, 1, 4, 5, 12, 13, 15, 16, 24, 25, 26, 1, 3, 14, 17, 19, 21, 3, 4, 11, 14, 21, 25, 2, 3, 4, 12, 21, 23, 30, 1, 3, 4, 5, 6, 7, 9, 11, 13, 14, 16, 19, 20, 22, 26, 28, 30, 1, 3, 4, 6, 7, 9, 10, 11, 14, 17, 18, 20, 22, 24, 25, 27, 29, 30, 9, 10, 12, 14, 16, 18, 25, 7, 11, 13, 17, 25, 30, 3, 4, 6, 7, 8, 9, 10, 12, 14, 16, 19, 22, 24, 27, 28, 29, 30, 1, 2, 3, 6, 7, 8, 14, 17, 22, 24, 28, 29, 30, 6, 7, 8, 11, 14, 19, 20, 22, 23, 24, 26, 29, 30, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 1, 2, 3, 4, 7, 9, 10, 11, 12, 15, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 30, 11, 11, 11, 13, 16, 17, 21, 25, 27, 2, 3, 8, 14, 16, 18, 19, 26, 4, 8, 9, 12, 14, 16, 21, 22, 26, 27, 2, 5, 7, 13, 15, 23, 30, 5, 7, 9, 11, 19, 25, 26, 27, 30, 3, 24, 26, 29, 1, 22, 24, 26, 1, 4, 6, 7, 8, 9, 12, 13, 16, 18, 19, 20, 21, 22, 6, 7, 11, 19, 28, 1, 6, 7, 15, 2, 3, 5, 7, 8, 9, 11, 12, 16, 17, 19, 20, 21, 23, 24, 26, 28, 29, 30, 28, 4, 5, 6, 13, 16, 24, 30, 20, 26, 28, 10, 20, 26, 28, 7, 8, 9, 13, 14, 21, 23, 24, 4, 11, 21, 5, 7, 10, 14, 21, 23, 24, 26, 2, 3, 5, 6, 9, 11, 12, 16, 18, 19, 21, 25, 28, 3, 3, 1, 2, 3, 11, 18, 21, 25, 28, 29, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 29, 4, 6, 8, 9, 12, 14, 19, 24, 26, 27, 29, 30, 3, 11, 12, 14, 15, 16, 17, 18, 19, 21, 25, 26, 27, 3, 8, 16, 17, 18, 23, 25, 11, 3, 4, 15, 21, 26, 3, 25, 1, 2, 18, 19, 21, 26, 5, 11, 13, 16, 20, 22, 6, 7, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 12, 14, 16, 18, 21, 23, 24, 28, 3, 5, 6, 7, 8, 12, 15, 18, 19, 20, 21, 22, 27, 28, 29, 30, 16, 20, 3, 8, 10, 16, 1, 2, 6, 7, 8, 10, 11, 12, 14, 15, 17, 24, 26, 28, 30, 7, 15, 28, 1, 15, 27, 26, 1, 4, 5, 6, 11, 12, 15, 17, 18, 24, 27, 28, 30, 13, 16, 23, 7, 23, 7, 14, 24, 12, 13, 18, 19, 23, 28, 7, 9, 11, 13, 21, 22, 23, 26, 27, 2, 3, 10, 14, 25, 25, 6, 20, 4, 9, 20, 23, 27, 30, 19, 22, 23, 27, 29, 9, 1, 3, 6, 7, 9, 16, 17, 18, 19, 20, 21, 23, 26, 28, 1, 21, 25, 28, 30, 9, 13, 17, 27, 2, 6, 16, 19, 1, 9, 5, 13, 15, 16, 17, 20, 29, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 19, 21, 22, 24, 26, 27, 28, 30, 1, 4, 5, 6, 9, 10, 12, 14, 17, 20, 22, 28, 29, 9, 1, 5, 13, 18, 20, 29, 3, 10, 15, 16, 25, 25, 4, 6, 8, 11, 14, 18, 19, 20, 24, 28, 7, 18, 30, 3, 10, 14, 19, 21, 23, 29, 30, 2, 3, 13, 16, 17, 18, 22, 25, 3, 3, 6, 10, 24, 28, 30, 28, 5, 8, 9, 11, 12, 18, 21, 24, 11, 11, 1, 3, 6, 7, 8, 16, 18, 20, 22, 23, 24, 28, 29, 2, 17, 25, 25, 2, 25, 3, 23, 3, 9, 12, 3, 20, 23, 9, 18, 23, 4, 7, 21, 22, 26, 29, 14, 14, 24, 23, 6, 23, 2, 4, 7, 20, 23, 30, 8, 9, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 26, 27, 29, 30, 1, 8, 24, 29, 30, 1, 4, 12, 14, 26, 29, 30, 1, 5, 7, 9, 12, 15, 16, 17, 18, 19, 20, 24, 26, 28, 29, 30, 14, 17, 19, 20, 24, 28, 29, 30, 6, 10, 18, 19, 20, 29, 30, 3, 9, 11, 13, 15, 13, 16, 28, 1, 8, 12, 16, 24, 1, 2, 16, 18, 25, 1, 25, 24, 1, 3, 6, 7, 8, 10, 11, 12, 16, 17, 18, 20, 21, 22, 23, 25, 27, 28, 30, 8, 9, 19, 25, 28, 30, 9, 9, 10, 12, 9, 9, 12, 30, 3, 21, 25, 3, 8, 17, 20, 22, 3, 13, 16, 19, 24, 1, 9, 19, 1, 4, 9, 10, 17, 19, 20, 22, 24, 27, 30, 2, 5, 9, 10, 12, 14, 20, 22, 23, 24, 26, 28, 29, 1, 3, 4, 7, 9, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 7, 10, 14, 15, 16, 17, 18, 21, 25, 27, 1, 2, 3, 4, 7, 11, 16, 17, 18, 22, 24, 25, 26, 27, 28, 3, 4, 7, 10, 16, 17, 24, 25, 27, 1, 13, 14, 16, 18, 20, 24, 25, 27, 3, 5, 6, 9, 11, 14, 19, 30, 3, 12, 23, 3, 5, 6, 7, 9, 12, 15, 16, 18, 19, 20, 21, 23, 25, 2, 3, 7, 10, 12, 13, 19, 20, 25, 26, 8, 9, 13, 14, 17, 30, 3, 4, 12, 16, 22, 23, 24, 25, 3, 7, 12, 13, 15, 16, 18, 20, 26, 30, 3, 7, 8, 12, 14, 15, 16, 18, 20, 21, 22, 24, 26, 28, 29, 1, 2, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 28, 2, 3, 4, 5, 11, 15, 19, 21, 23, 24, 30, 24, 27, 4, 6, 7, 8, 9, 11, 13, 14, 17, 20, 22, 23, 24, 26, 7, 14, 18, 22, 23, 26, 28, 29, 30, 1, 16, 21, 30, 8, 8, 10, 16, 19, 20, 23, 24, 30, 3, 8, 12, 16, 17, 19, 21, 25, 28, 30, 8, 12, 16, 19, 21, 23, 25, 30, 8, 17, 27, 3, 6, 7, 22, 28, 1, 3, 7, 9, 17, 19, 21, 25, 29, 1, 4, 6, 7, 8, 9, 10, 12, 14, 15, 17, 19, 20, 22, 24, 25, 26, 30, 22, 1, 3, 4, 7, 10, 11, 12, 13, 15, 16, 18, 20, 22, 23, 24, 26, 27, 6, 9, 12, 13, 16, 18, 19, 20, 21, 22, 23, 25, 29, 9, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 1, 2, 3, 6, 8, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 7, 24, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 28, 29, 30, 1, 3, 4, 9, 10, 12, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 28, 29, 2, 11, 3, 8, 11, 12, 13, 21, 24, 30, 6, 15, 20, 22, 3, 22, 1, 2, 4, 9, 11, 19, 21, 22, 25, 26, 27, 30, 1, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 17, 18, 20, 21, 29, 7, 15, 22, 26, 30, 1, 5, 8, 11, 18, 19, 22, 25, 26, 28, 29, 8, 12, 16, 19, 28, 30, 13, 25, 25, 7, 2, 5, 7, 11, 12, 14, 19, 20, 23, 24, 25, 26, 27, 5, 7, 8, 10, 11, 13, 14, 18, 21, 23, 25, 28, 29, 2, 3, 4, 7, 8, 12, 14, 15, 20, 23, 24, 26, 27, 5, 7, 11, 16, 23, 26, 28, 29, 9, 26, 3, 10, 17, 2, 3, 5, 11, 13, 15, 16, 17, 18, 19, 21, 25, 26, 1, 2, 3, 9, 10, 12, 13, 14, 16, 17, 18, 20, 23, 24, 25, 27, 28, 30, 20, 21, 30, 5, 19, 3, 7, 13, 14, 22, 24, 26, 1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 4, 7, 9, 13, 19, 20, 22, 24, 25, 26, 27, 29, 20, 30, 16, 2, 3, 6, 15, 16, 17, 28, 6, 26, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 22, 24, 26, 28, 29, 30, 3, 30, 7, 9, 11, 19, 26, 6, 5, 9, 12, 13, 18, 23, 24, 26, 30, 2, 4, 5, 6, 12, 13, 16, 17, 18, 21, 22, 23, 24, 25, 27, 28, 29, 3, 4, 5, 9, 10, 12, 13, 14, 16, 18, 21, 22, 23, 25, 26, 28, 6, 7, 15, 16, 18, 21, 25, 30, 6, 15, 6, 15, 20, 6, 15, 28, 5, 6, 12, 19, 20, 28, 3, 4, 6, 7, 8, 9, 10, 11, 13, 15, 16, 19, 20, 22, 23, 25, 29, 30, 8, 13, 17, 30, 7, 8, 10, 11, 14, 21, 27, 30, 8, 10, 11, 16, 21, 8, 17, 19, 22, 24, 27, 30, 12, 14, 3, 10, 19, 2, 3, 4, 6, 7, 11, 12, 13, 14, 15, 17, 19, 20, 22, 24, 25, 26, 28, 30, 20, 24, 3, 3, 5, 6, 7, 8, 12, 16, 18, 28, 6, 7, 8, 9, 13, 14, 15, 20, 24, 25, 2, 15, 1, 15, 6, 10, 15, 1, 10, 13, 14, 18, 27, 1, 5, 7, 17, 25, 29, 2, 4, 6, 8, 12, 19, 20, 22, 23, 6, 7, 28, 30, 2, 5, 6, 15, 20, 28, 6, 2, 3, 6, 8, 9, 16, 20, 25, 26, 30, 5, 6, 7, 9, 13, 15, 18, 29, 6, 7, 9, 11, 15, 16, 18, 19, 22, 23, 7, 9, 29, 7, 1, 2, 6, 7, 8, 9, 11, 12, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26, 28, 30, 1, 8, 14, 17, 29, 3, 12, 16, 23, 28, 6, 8, 13, 14, 17, 19, 22, 24, 26, 27, 28, 2, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 24, 25, 27, 28, 29, 3, 4, 5, 8, 12, 13, 14, 15, 16, 17, 22, 23, 25, 26, 7, 16, 20, 3, 7, 20, 26, 4, 10, 12, 15, 16, 20, 26, 12, 16, 9, 11, 6, 10, 16, 17, 22, 25, 27, 3, 8, 9, 16, 18, 19, 21, 22, 23, 24, 25, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 28, 29, 30, 8, 12, 15, 16, 17, 19, 20, 22, 24, 28, 29, 8, 12, 16, 17, 21, 25, 30, 6, 8, 10, 11, 13, 15, 20, 28, 3, 6, 17, 18, 23, 5, 6, 8, 10, 18, 21, 30, 6, 8, 12, 14, 16, 18, 19, 21, 22, 23, 30, 14, 15, 18, 19, 20, 28, 12, 13, 26, 1, 3, 4, 5, 10, 11, 13, 16, 18, 19, 22, 24, 25, 28, 1, 3, 4, 9, 12, 13, 16, 17, 18, 19, 22, 25, 26, 1, 4, 5, 10, 13, 17, 18, 21, 22, 29, 3, 4, 6, 7, 14, 16, 25, 28, 1, 5, 6, 7, 12, 27, 29, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 21, 23, 24, 28, 29, 30, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 3, 4, 6, 11, 12, 13, 16, 17, 22, 24, 29, 13, 21, 22, 29, 4, 6, 17, 22, 4, 19, 2, 7, 8, 11, 12, 16, 19, 26, 27, 3, 11, 15, 17, 19, 24, 1, 3, 8, 9, 12, 15, 22, 24, 28, 29, 30, 13, 14, 18, 20, 24, 25, 2, 4, 6, 9, 10, 25, 28, 3, 4, 5, 6, 10, 17, 27, 5, 6, 7, 13, 15, 16, 18, 20, 28, 9, 18, 24, 26, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 16, 19, 20, 23, 24, 28, 29, 10, 15, 18, 6, 15, 26, 23, 23, 3, 6, 8, 9, 10, 12, 16, 17, 19, 21, 22, 23, 28, 1, 3, 8, 10, 12, 16, 17, 18, 19, 21, 25, 28, 4, 9, 16, 25, 26, 1, 2, 3, 4, 6, 10, 12, 17, 21, 28, 3, 6, 8, 12, 16, 17, 21, 22, 28, 2, 5, 6, 7, 8, 9, 10, 12, 14, 17, 19, 20, 21, 22, 24, 25, 27, 1, 2, 3, 4, 6, 7, 8, 9, 10, 14, 17, 18, 19, 20, 21, 23, 24, 26, 28, 3, 23, 14, 3, 5, 7, 12, 15, 23, 7, 15, 1, 2, 3, 5, 8, 9, 11, 12, 13, 15, 17, 20, 22, 23, 25, 26, 27, 28, 29, 5, 7, 11, 20, 11, 30, 5, 1, 5, 9, 12, 27, 28, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 28, 2, 5, 10, 12, 13, 16, 18, 21, 22, 29, 5, 8, 13, 17, 21, 24, 29, 30, 5, 13, 20, 29, 4, 14, 17, 1, 6, 22, 28, 20, 6, 13, 17, 30, 2, 20, 22, 25, 10, 11, 12, 16, 21, 22, 23, 26, 7, 12, 18, 21, 22, 23, 2, 6, 12, 14, 15, 16, 18, 19, 20, 22, 25, 27, 2, 8, 9, 12, 14, 15, 25, 29, 30, 2, 8, 12, 16, 19, 25, 26, 6, 23, 16, 20, 5, 15, 16, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 23, 1, 2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 22, 23, 24, 26, 28, 29, 30, 1, 8, 11, 22, 27, 28, 25, 2, 20, 10, 15, 16, 6, 9, 14, 18, 2, 6, 9, 20, 23, 26, 7, 19, 6, 11, 1, 13, 15, 17, 5, 7, 11, 13, 20, 26, 30, 2, 25, 27, 2, 18, 25, 7, 15, 26, 27, 7, 27, 29, 3, 14, 16, 2, 12, 15, 19, 3, 4, 12, 16, 22, 23, 3, 9, 8, 25, 6, 9, 10, 15, 30, 10, 12, 16, 29, 3, 4, 7, 19, 23, 2, 6, 7, 8, 9, 10, 11, 12, 14, 15, 19, 22, 24, 25, 26, 27, 28, 29, 30, 11, 15, 17, 22, 24, 26, 27, 6, 9, 17, 22, 24, 26, 27, 25, 1, 2, 3, 6, 7, 8, 10, 14, 15, 18, 19, 21, 22, 28, 29, 30, 1, 2, 3, 6, 7, 8, 9, 10, 12, 14, 15, 17, 19, 20, 22, 23, 24, 25, 28, 29, 30, 1, 2, 3, 7, 8, 10, 12, 13, 14, 15, 17, 19, 22, 23, 24, 28, 29, 30, 3, 5, 8, 11, 13, 16, 17, 18, 20, 25, 27, 28, 29, 30, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 1, 2, 3, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 22, 24, 26, 28, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 23, 24, 26, 28, 30, 1, 2, 4, 6, 7, 8, 9, 10, 11, 14, 15, 17, 19, 20, 21, 23, 24, 26, 28, 29, 30, 25, 4, 7, 16, 17, 18, 26, 28, 14, 8, 11, 12, 13, 16, 23, 30, 5, 10, 12, 25, 3, 9, 19, 26, 30, 2, 3, 4, 7, 9, 12, 14, 16, 18, 19, 20, 21, 23, 29, 30, 2, 6, 15, 18, 19, 21, 22, 28, 30, 2, 3, 6, 8, 16, 18, 28, 2, 7, 8, 9, 21, 2, 7, 9, 11, 16, 17, 20, 21, 22, 23, 28, 8, 18, 19, 21, 24, 25, 29, 3, 4, 8, 9, 10, 21, 24, 26, 2, 7, 8, 9, 11, 12, 14, 15, 18, 19, 20, 23, 24, 26, 27, 30, 14, 2, 4, 8, 12, 16, 18, 19, 21, 22, 23, 24, 27, 28, 30, 3, 4, 9, 10, 11, 17, 18, 27, 30, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 22, 24, 25, 26, 27, 28, 30, 7, 20, 28, 7, 9, 10, 14, 26, 27, 30, 6, 7, 8, 11, 12, 14, 16, 19, 20, 21, 22, 23, 25, 30, 1, 7, 10, 12, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 27, 28, 16, 22, 11, 19, 24, 27, 29, 3, 6, 11, 19, 21, 28, 30, 1, 3, 4, 6, 8, 11, 19, 20, 21, 23, 25, 26, 28, 30, 22, 25, 27, 1, 9, 12, 16, 27, 3, 5, 6, 8, 9, 14, 16, 17, 18, 20, 22, 24, 25, 26, 27, 16, 24, 27, 13, 16, 23, 25, 6, 13, 14, 2, 5, 6, 7, 8, 9, 14, 16, 18, 21, 22, 27, 28, 29, 30, 1, 8, 11, 16, 20, 21, 2, 5, 6, 7, 9, 10, 11, 13, 15, 16, 22, 27, 28, 29, 30, 1, 4, 6, 7, 9, 13, 14, 15, 17, 22, 23, 24, 25, 27, 28, 29, 30, 3, 8, 16, 21, 25, 1, 8, 23, 16, 22, 28, 29, 28, 19, 3, 7, 13, 18, 5, 8, 10, 11, 27, 5, 6, 11, 1, 4, 7, 18, 23, 24, 27, 2, 3, 4, 6, 7, 10, 11, 14, 16, 17, 20, 21, 24, 25, 26, 27, 30, 2, 11, 12, 14, 19, 27, 3, 26, 7, 11, 17, 1, 3, 6, 8, 9, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 4, 16, 22, 23, 1, 5, 7, 11, 12, 13, 18, 8, 25, 6, 13, 28, 12, 15, 2, 7, 9, 15, 19, 20, 21, 22, 26, 28, 29, 30, 5, 7, 11, 13, 26, 27, 30, 4, 28, 30, 2, 5, 9, 11, 12, 13, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 26, 3, 10, 16, 19, 20, 21, 23, 6, 8, 14, 22, 23, 6, 8, 11, 13, 23, 6, 10, 16, 19, 20, 23, 25, 27, 28, 1, 12, 17, 20, 21, 26, 2, 5, 9, 12, 13, 14, 15, 16, 20, 23, 25, 27, 28, 29, 6, 16, 21, 27, 29, 30, 6, 27, 30, 3, 9, 2, 3, 4, 7, 8, 12, 15, 16, 18, 20, 21, 25, 28, 30, 1, 2, 3, 8, 9, 12, 14, 16, 18, 22, 28, 3, 4, 7, 9, 11, 12, 14, 15, 22, 24, 26, 28, 26, 7, 11, 22, 23, 26, 27, 28, 30, 7, 10, 11, 13, 15, 16, 22, 23, 24, 26, 28, 29, 4, 19, 22, 24, 26, 26, 4, 28, 5, 9, 13, 17, 21, 23, 24, 26, 27, 28, 29, 30, 13, 1, 3, 8, 9, 12, 17, 20, 21, 24, 27, 30, 5, 23, 24, 2, 7, 15, 19, 20, 28, 2, 24, 29, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15, 16, 18, 21, 22, 23, 24, 26, 27, 28, 29, 30, 1, 3, 6, 7, 10, 11, 12, 14, 17, 18, 21, 22, 24, 25, 26, 28, 29, 30, 5, 9, 12, 16, 18, 25, 26, 28, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 19, 20, 24, 25, 26, 2, 14, 23, 26, 30, 1, 21, 24, 26, 15, 25, 26, 28, 1, 2, 3, 4, 5, 6, 9, 10, 13, 14, 16, 17, 19, 21, 22, 23, 24, 28, 29, 30, 1, 3, 9, 13, 24, 25, 30, 16, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 16, 17, 20, 21, 22, 24, 25, 27, 28, 29, 30, 3, 3, 6, 13, 14, 16, 17, 22, 23, 24, 27, 28, 1, 4, 5, 7, 9, 10, 11, 13, 17, 18, 20, 22, 23, 25, 29, 7, 7, 13, 18, 24, 25, 26, 27, 24, 24, 24, 24, 26, 4, 12, 22, 24, 26, 30, 8, 20, 8, 9, 20, 7, 8, 2, 15, 20, 23, 4, 6, 9, 10, 11, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 4, 5, 6, 12, 13, 15, 16, 19, 13, 18, 22, 25, 30, 3, 7, 9, 11, 12, 14, 16, 17, 21, 22, 23, 24, 25, 27, 28, 30, 4, 8, 9, 10, 13, 14, 17, 19, 20, 22, 23, 24, 27, 29, 30, 3, 5, 6, 7, 13, 15, 16, 18, 26, 30, 1, 3, 6, 7, 9, 10, 11, 12, 14, 15, 17, 19, 20, 21, 22, 24, 25, 28, 29, 30, 7, 18, 30, 6, 7, 8, 15, 1, 3, 5, 8, 15, 16, 20, 21, 29, 3, 7, 11, 12, 13, 16, 21, 24, 30, 6, 7, 16, 21, 1, 5, 6, 8, 11, 12, 16, 21, 22, 29, 3, 7, 11, 15, 16, 18, 19, 20, 24, 28, 29, 30, 1, 4, 7, 9, 11, 12, 16, 17, 19, 26, 28, 29, 30, 4, 7, 8, 11, 2, 13, 20, 25, 2, 4, 7, 8, 10, 12, 14, 16, 17, 18, 21, 22, 24, 25, 26, 27, 28, 3, 4, 5, 7, 10, 12, 13, 16, 17, 18, 20, 22, 25, 27, 28, 29, 1, 19, 11, 20, 29, 3, 6, 19, 20, 21, 22, 25, 30, 3, 6, 12, 15, 16, 19, 21, 25, 30, 11, 16, 18, 21, 22, 24, 1, 2, 3, 4, 6, 7, 11, 12, 13, 17, 20, 24, 25, 27, 28, 29, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17, 19, 20, 22, 23, 24, 28, 29, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 23, 28, 29, 30, 3, 5, 6, 13, 25, 30, 11, 14, 19, 28, 28, 3, 5, 6, 8, 9, 14, 16, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 6, 7, 9, 11, 12, 16, 17, 18, 20, 21, 23, 25, 28, 3, 7, 8, 9, 10, 14, 15, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 5, 6, 10, 18, 21, 22, 1, 7, 16, 28, 1, 7, 9, 13, 17, 18, 21, 23, 24, 27, 29, 30, 6, 18, 5, 15, 18, 20, 23, 27, 9, 11, 11, 6, 15, 23, 28, 30, 1, 2, 3, 6, 12, 15, 16, 18, 20, 23, 2, 2, 3, 14, 15, 18, 19, 25, 28, 29, 30, 2, 9, 23, 9, 9, 9, 1, 2, 7, 9, 10, 11, 15, 18, 20, 27, 2, 20, 2, 3, 4, 5, 14, 28, 30, 14, 19, 20, 21, 25, 28, 1, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 17, 21, 22, 25, 26, 27, 28, 29, 14, 15, 21, 7, 22, 28, 6, 28, 6, 7, 8, 21, 30, 3, 8, 9, 12, 13, 19, 21, 30, 30, 21, 6, 7, 8, 9, 11, 17, 18, 19, 23, 28, 30, 3, 12, 15, 18, 19, 25, 28, 3, 8, 15, 16, 20, 23, 29, 2, 3, 7, 19, 27, 29, 30, 6, 5, 6, 7, 22, 29, 30, 3, 22, 7, 11, 7, 8, 21, 25, 19, 21, 19, 17, 19, 3, 5, 11, 16, 17, 23, 29, 16, 18, 23, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 1, 2, 3, 5, 12, 14, 16, 18, 19, 22, 27, 1, 3, 5, 6, 8, 11, 12, 13, 14, 18, 19, 22, 23, 24, 25, 26, 29, 30, 1, 2, 3, 4, 6, 8, 12, 13, 14, 18, 20, 22, 24, 25, 29, 30, 30, 1, 3, 15, 27, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 4, 14, 17, 20, 25, 26, 27, 1, 2, 3, 7, 8, 17, 25, 10, 17, 22, 25, 26, 27, 7, 16, 24, 26, 24, 15, 24, 24, 24, 1, 14, 1, 14, 23, 3, 5, 6, 11, 12, 13, 14, 16, 18, 21, 22, 23, 25, 27, 29, 30, 6, 20, 26, 1, 14, 20, 4, 5, 6, 11, 13, 16, 18, 20, 21, 22, 23, 25, 26, 27, 29, 16, 24, 30, 5, 10, 1, 3, 16, 20, 26, 28, 1, 2, 4, 5, 15, 16, 26, 3, 16, 19, 23, 20, 1, 10, 12, 24, 27, 2, 5, 6, 9, 14, 15, 18, 19, 20, 23, 24, 26, 27, 28, 30, 9, 11, 30, 19, 20, 12, 16, 22, 25, 14, 14, 14, 14, 2, 3, 7, 16, 20, 22, 23, 24, 26, 16, 3, 8, 9, 13, 16, 21, 22, 25, 29, 30, 3, 16, 20, 23, 5, 6, 9, 13, 15, 16, 17, 18, 19, 20, 22, 25, 26, 28, 30, 20, 5, 7, 19, 20, 28, 3, 5, 8, 10, 13, 15, 17, 5, 28, 12, 28, 3, 26, 24, 24, 24, 1, 16, 17, 20, 22, 29, 2, 5, 6, 10, 21, 24, 26, 29, 9, 11, 5, 8, 11, 12, 18, 22, 29, 3, 6, 8, 11, 16, 19, 21, 23, 30, 8, 10, 11, 14, 16, 19, 21, 30, 11, 16, 17, 19, 20, 3, 21, 3, 1, 3, 4, 5, 7, 12, 13, 14, 26, 27, 25, 9, 9, 19, 22, 1, 2, 3, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23, 25, 26, 27, 28, 29, 23, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 16, 17, 20, 23, 27, 29, 2, 2, 2, 11, 3, 7, 17, 27, 26, 2, 7, 15, 24, 26, 28, 10, 11, 21, 24, 26, 3, 19, 3, 14, 16, 19, 20, 3, 18, 19, 30, 3, 10, 11, 12, 13, 23, 30, 9, 11, 19, 22, 29, 30, 11, 6, 13, 16, 21, 29, 3, 7, 10, 16, 17, 20, 25, 28, 25, 1, 4, 5, 10, 19, 20, 23, 25, 27, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 2, 5, 7, 10, 12, 15, 16, 21, 24, 25, 26, 28, 1, 2, 3, 5, 7, 8, 10, 15, 16, 17, 22, 24, 26, 27, 28, 29, 2, 15, 24, 26, 28, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 22, 23, 26, 28, 30, 1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 21, 22, 26, 27, 29, 30, 3, 4, 5, 10, 11, 15, 17, 18, 21, 25, 27, 1, 2, 3, 4, 5, 7, 11, 12, 14, 16, 17, 18, 19, 21, 23, 25, 26, 27, 28, 30, 2, 3, 4, 5, 9, 11, 13, 15, 16, 18, 19, 21, 23, 24, 25, 26, 27, 28, 29, 3, 15, 23, 26, 3, 4, 13, 19, 4, 5, 7, 12, 15, 20, 23, 25, 26, 27, 2, 5, 7, 8, 11, 13, 16, 18, 19, 25, 26, 27, 30, 1, 3, 4, 5, 8, 9, 10, 14, 15, 17, 18, 19, 21, 22, 24, 27, 28, 29, 30, 3, 5, 16, 19, 21, 23, 28, 30, 5, 9, 11, 12, 16, 17, 18, 21, 22, 25, 29, 2, 10, 13, 16, 19, 21, 8, 16, 25, 5, 8, 17, 22, 24, 30, 4, 6, 4, 9, 11, 15, 30, 9, 30, 28, 2, 11, 2, 23, 2, 3, 12, 21, 22, 26, 1, 2, 3, 4, 7, 8, 10, 11, 16, 17, 18, 19, 20, 22, 24, 26, 27, 28, 1, 12, 15, 23, 2, 6, 12, 13, 15, 17, 28, 20, 1, 2, 3, 5, 11, 15, 18, 19, 20, 25, 28, 30, 30, 26, 5, 7, 8, 13, 23, 26, 10, 11, 12, 13, 19, 25, 7, 26, 29, 1, 3, 5, 6, 8, 12, 14, 15, 16, 17, 18, 19, 21, 22, 30, 3, 23, 16, 18, 20, 21, 28, 2, 25, 2, 25, 2, 12, 17, 19, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 20, 23, 24, 26, 27, 30, 2, 3, 16, 20, 3, 16, 23, 24, 9, 28, 4, 16, 19, 1, 2, 3, 9, 11, 12, 14, 17, 19, 20, 24, 25, 27, 29, 6, 8, 9, 14, 18, 19, 22, 30, 1, 5, 8, 12, 13, 15, 18, 21, 23, 24, 25, 30, 12, 28, 4, 5, 10, 15, 16, 1, 2, 3, 5, 6, 7, 8, 10, 12, 14, 15, 17, 20, 21, 23, 24, 26, 28, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 28, 30, 24, 24, 2, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 7, 8, 10, 29, 14, 14, 3, 4, 5, 10, 11, 12, 15, 16, 22, 23, 25, 27, 30, 4, 20, 25, 2, 24, 25, 30, 2, 13, 17, 25, 3, 9, 11, 12, 16, 18, 19, 21, 22, 23, 25, 26, 9, 11, 14, 25, 26, 11, 25, 30, 2, 25, 2, 25, 11, 6, 8, 9, 11, 12, 15, 16, 19, 21, 23, 24, 25, 26, 25, 27, 30, 1, 2, 6, 7, 9, 10, 11, 13, 14, 15, 16, 18, 19, 22, 23, 25, 26, 27, 28, 29, 4, 6, 8, 9, 10, 11, 19, 22, 23, 25, 30, 6, 9, 19, 21, 30, 6, 16, 21, 30, 1, 11, 12, 14, 16, 18, 19, 20, 21, 23, 24, 25, 27, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 10, 12, 19, 23, 27, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 23, 24, 25, 26, 27, 28, 29, 1, 3, 4, 14, 21, 20, 3, 28, 15, 16, 23, 26, 29, 1, 3, 6, 9, 11, 13, 14, 16, 18, 22, 24, 25, 26, 1, 3, 4, 5, 7, 11, 13, 14, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 29, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17, 18, 22, 23, 24, 25, 26, 27, 28, 29, 30, 2, 3, 5, 7, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 6, 7, 15, 16, 6, 8, 15, 20, 30, 1, 5, 6, 8, 20, 22, 24, 29, 3, 8, 9, 18, 19, 20, 22, 24, 25, 26, 9, 30, 3, 4, 5, 8, 13, 22, 23, 2, 25, 25, 2, 6, 7, 8, 11, 14, 20, 23, 24, 26, 30, 4, 6, 7, 14, 19, 22, 24, 29, 30, 4, 10, 13, 17, 19, 24, 2, 5, 9, 10, 12, 13, 15, 16, 17, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 10, 12, 13, 14, 15, 16, 17, 18, 21, 23, 25, 27, 28, 29, 30, 1, 5, 8, 11, 15, 17, 18, 19, 21, 22, 24, 27, 29, 30, 30, 5, 13, 17, 19, 5, 13, 1, 4, 5, 6, 16, 25, 27, 1, 8, 9, 10, 14, 21, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 20, 26, 27, 28, 29, 30, 3, 5, 6, 7, 9, 11, 14, 15, 20, 26, 28, 30, 1, 2, 5, 6, 14, 22, 23, 29, 30, 4, 7, 10, 10, 11, 16, 20, 28, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 14, 15, 17, 19, 20, 21, 22, 24, 25, 28, 29, 30, 2, 4, 5, 6, 10, 13, 17, 18, 19, 22, 25, 28, 29, 24, 3, 4, 12, 13, 14, 16, 17, 20, 25, 6, 13, 17, 21, 27, 2, 4, 7, 9, 14, 19, 20, 22, 23, 25, 26, 27, 30, 2, 3, 5, 8, 9, 12, 14, 16, 18, 19, 21, 22, 25, 26, 27, 30, 2, 3, 6, 9, 11, 12, 14, 15, 16, 19, 21, 24, 30, 3, 6, 8, 14, 15, 16, 18, 19, 21, 23, 24, 25, 28, 30, 3, 6, 8, 11, 14, 15, 18, 19, 20, 24, 25, 30, 6, 10, 21, 27, 3, 6, 10, 12, 14, 16, 18, 19, 21, 23, 24, 25, 28, 30, 2, 11, 12, 13, 16, 19, 21, 24, 2, 6, 7, 8, 10, 13, 14, 15, 16, 17, 18, 19, 20, 22, 30, 1, 2, 4, 5, 6, 7, 11, 13, 14, 15, 18, 19, 20, 22, 24, 25, 27, 28, 29, 20, 23, 28, 1, 2, 3, 6, 11, 14, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 1, 3, 8, 9, 13, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 2, 5, 6, 7, 9, 10, 11, 12, 16, 17, 18, 19, 21, 26, 27, 30, 2, 3, 4, 5, 7, 8, 9, 11, 12, 17, 19, 20, 21, 23, 25, 26, 30, 1, 6, 17, 19, 21, 25, 26, 29, 30, 6, 20, 2, 14, 15, 18, 25, 26, 27, 29, 30, 9, 30, 4, 7, 11, 14, 20, 23, 25, 26, 7, 9, 11, 14, 15, 16, 20, 21, 22, 26, 14, 26, 4, 9, 11, 13, 14, 19, 20, 25, 27, 3, 16, 23, 27, 27, 7, 10, 11, 12, 16, 18, 23, 26, 27, 29, 2, 4, 6, 7, 10, 11, 12, 16, 17, 18, 20, 23, 25, 26, 29, 1, 2, 3, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 18, 19, 27, 1, 2, 4, 5, 6, 7, 9, 12, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 9, 12, 16, 9, 5, 12, 20, 22, 23, 28, 30, 9, 30, 18, 21, 29, 16, 30, 10, 12, 1, 2, 5, 6, 11, 12, 14, 15, 18, 19, 20, 21, 23, 24, 26, 28, 29, 30, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 21, 23, 24, 28, 29, 30, 2, 6, 18, 20, 21, 26, 1, 3, 5, 6, 8, 9, 17, 20, 21, 22, 23, 25, 27, 29, 30, 1, 6, 15, 23, 1, 5, 8, 5, 3, 18, 20, 27, 28, 20, 2, 16, 7, 8, 19, 30, 7, 20, 7, 16, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 22, 23, 25, 26, 28, 29, 7, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 14, 15, 17, 19, 23, 24, 25, 26, 29, 1, 2, 5, 6, 7, 8, 9, 11, 12, 14, 19, 20, 22, 23, 24, 26, 28, 29, 30, 7, 9, 14, 20, 21, 22, 26, 4, 7, 8, 9, 14, 19, 22, 24, 26, 28, 30, 3, 6, 10, 22, 26, 30, 4, 6, 8, 30, 1, 3, 6, 19, 21, 24, 28, 30, 3, 8, 19, 25, 27, 2, 3, 4, 5, 9, 4, 7, 10, 12, 16, 20, 22, 23, 24, 26, 28, 1, 6, 8, 10, 18, 20, 21, 22, 23, 10, 26, 26, 1, 3, 4, 8, 10, 19, 20, 21, 24, 29, 30, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 25, 26, 27, 28, 10, 13, 17, 18, 19, 26, 29, 1, 8, 3, 7, 8, 9, 10, 17, 19, 21, 26, 29, 3, 4, 7, 9, 19, 26, 29, 1, 3, 6, 7, 8, 9, 11, 13, 14, 19, 21, 22, 24, 25, 26, 29, 30, 26, 1, 3, 4, 7, 9, 11, 16, 18, 19, 21, 22, 23, 24, 25, 27, 29, 30, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 17, 19, 21, 22, 23, 24, 25, 26, 27, 28, 30, 1, 4, 8, 9, 10, 12, 13, 18, 21, 22, 23, 26, 29, 30, 1, 3, 4, 6, 7, 9, 11, 14, 17, 19, 21, 22, 23, 24, 25, 27, 29, 30, 3, 4, 6, 7, 9, 12, 14, 17, 19, 21, 22, 23, 24, 29, 30, 1, 4, 9, 10, 14, 24, 26, 30, 6, 30, 14, 19, 29, 9, 4, 10, 19, 22, 26, 2, 3, 7, 8, 9, 11, 19, 23, 26, 27, 28, 29, 2, 9, 16, 20, 25, 26, 4, 7, 9, 11, 14, 20, 23, 24, 25, 27, 29, 9, 4, 8, 9, 12, 18, 14, 14, 10, 26, 4, 7, 18, 22, 30, 1, 2, 3, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 1, 8, 10, 12, 18, 20, 22, 25, 27, 29, 30, 4, 10, 12, 16, 17, 21, 29, 1, 2, 3, 6, 7, 8, 11, 12, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 21, 22, 24, 25, 27, 29, 30, 3, 12, 15, 21, 30, 3, 4, 9, 13, 15, 18, 23, 25, 3, 7, 15, 24, 26, 28, 19, 21, 26, 4, 12, 26, 7, 11, 20, 26, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 28, 29, 30, 16, 23, 26, 11, 12, 14, 18, 20, 22, 24, 27, 29, 3, 9, 11, 12, 13, 14, 16, 22, 24, 26, 27, 24, 23, 30, 30, 2, 7, 9, 24, 27, 7, 7, 13, 14, 24, 27, 28, 30, 15, 15, 12, 15, 6, 13, 16, 19, 22, 25, 27, 30, 2, 8, 12, 13, 16, 21, 22, 25, 30, 2, 6, 8, 12, 16, 20, 22, 25, 30, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 6, 9, 12, 14, 19, 20, 23, 24, 26, 28, 6, 12, 20, 26, 28, 7, 2, 3, 4, 7, 10, 12, 16, 17, 20, 22, 23, 25, 29, 2, 3, 4, 7, 10, 12, 15, 17, 20, 21, 22, 23, 25, 29, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 4, 11, 13, 15, 18, 19, 26, 28, 30, 7, 2, 3, 23, 16, 27, 29, 2, 5, 11, 21, 11, 15, 11, 5, 11, 13, 22, 27, 4, 5, 9, 11, 12, 13, 14, 16, 18, 24, 25, 26, 27, 7, 21, 29, 23, 11, 1, 2, 3, 6, 9, 16, 18, 19, 20, 21, 25, 27, 30, 2, 3, 4, 5, 7, 10, 11, 13, 15, 17, 18, 21, 23, 28, 29, 2, 4, 7, 19, 20, 8, 11, 16, 21, 29, 23, 7, 9, 10, 18, 27, 18, 20, 27, 30, 3, 6, 20, 21, 25, 27, 15, 27, 6, 15, 1, 3, 6, 8, 10, 15, 16, 17, 19, 21, 22, 25, 28, 30, 3, 12, 16, 20, 4, 11, 16, 26, 15, 18, 22, 11, 16, 1, 5, 8, 11, 15, 19, 20, 23, 23, 6, 4, 5, 6, 7, 9, 12, 18, 19, 21, 22, 24, 27, 3, 16, 23, 2, 6, 11, 15, 20, 25, 28, 2, 5, 10, 15, 20, 23, 4, 29, 29, 30, 3, 4, 8, 12, 18, 20, 23, 27, 1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 4, 10, 14, 17, 21, 23, 26, 3, 7, 8, 10, 12, 16, 18, 19, 22, 26, 29, 30, 2, 8, 10, 12, 14, 28, 29, 1, 2, 3, 4, 5, 10, 11, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 7, 11, 13, 14, 16, 19, 22, 24, 26, 27, 30, 2, 3, 6, 8, 9, 11, 14, 17, 19, 20, 22, 23, 30, 11, 13, 26, 28, 6, 10, 30, 2, 4, 14, 15, 21, 23, 25, 3, 12, 4, 23, 2, 4, 7, 8, 9, 11, 15, 26, 27, 29, 1, 4, 20, 27, 28, 30, 4, 17, 26, 5, 6, 8, 10, 13, 14, 16, 18, 25, 26, 29, 3, 4, 7, 10, 11, 12, 14, 15, 17, 20, 24, 25, 27, 28, 30, 2, 3, 8, 11, 12, 16, 23, 28, 29, 2, 3, 8, 11, 12, 16, 21, 23, 29, 3, 3, 16, 3, 16, 29, 1, 2, 7, 9, 10, 12, 14, 15, 16, 19, 21, 22, 23, 24, 26, 9, 2, 7, 8, 9, 12, 14, 16, 17, 19, 20, 23, 24, 30, 4, 5, 10, 12, 16, 18, 24, 27, 28, 24, 9, 13, 14, 18, 20, 22, 23, 25, 27, 30, 3, 6, 11, 12, 13, 22, 24, 26, 27, 30, 7, 17, 22, 23, 24, 29, 30, 1, 2, 3, 4, 6, 8, 10, 12, 13, 15, 16, 17, 20, 24, 27, 28, 29, 7, 3, 6, 19, 21, 28, 30, 28, 26, 28, 6, 7, 15, 21, 24, 25, 26, 29, 30, 2, 5, 7, 23, 30, 3, 4, 5, 9, 10, 17, 1, 3, 4, 5, 7, 9, 11, 12, 13, 16, 20, 23, 24, 25, 27, 29, 12, 13, 14, 24, 26, 3, 5, 7, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 3, 27, 3, 6, 7, 10, 12, 18, 19, 20, 23, 27, 28, 2, 5, 13, 26, 13, 1, 9, 10, 11, 13, 24, 29, 7, 14, 16, 20, 22, 1, 3, 4, 5, 8, 10, 15, 19, 20, 21, 23, 24, 26, 28, 29, 30, 25, 1, 5, 14, 24, 6, 6, 2, 12, 16, 20, 8, 12, 3, 20, 27, 29, 1, 2, 3, 4, 8, 12, 15, 16, 19, 23, 27, 30, 3, 12, 14, 16, 19, 22, 23, 28, 15, 16, 24, 5, 13, 14, 16, 21, 26, 30, 5, 21, 6, 14, 15, 5, 8, 9, 15, 21, 26, 6, 10, 17, 30, 1, 2, 3, 5, 7, 9, 12, 16, 18, 19, 20, 23, 24, 25, 26, 27, 28, 4, 8, 10, 16, 20, 25, 29, 9, 1, 5, 8, 12, 22, 23, 29, 1, 3, 19, 11, 16, 21, 26, 3, 8, 17, 22, 30, 11, 22, 30, 30, 3, 7, 8, 11, 12, 3, 6, 8, 11, 12, 14, 16, 17, 19, 20, 21, 22, 23, 25, 28, 29, 30, 6, 8, 17, 19, 20, 21, 26, 28, 28, 2, 6, 7, 8, 9, 11, 15, 19, 20, 28, 29, 30, 6, 23, 26, 23, 26, 28, 6, 16, 18, 26, 28, 4, 26, 28, 3, 2, 4, 7, 8, 9, 11, 12, 13, 14, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 30, 1, 10, 13, 29, 7, 14, 20, 21, 25, 28, 1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 16, 17, 18, 19, 20, 25, 26, 27, 28, 29, 30, 21, 27, 1, 2, 5, 6, 7, 9, 10, 12, 14, 16, 17, 19, 20, 23, 24, 26, 27, 29, 2, 6, 7, 9, 14, 15, 23, 26, 28, 3, 9, 11, 16, 19, 20, 26, 3, 4, 9, 11, 20, 22, 2, 3, 4, 5, 7, 9, 14, 19, 21, 22, 24, 25, 26, 27, 28, 30, 1, 10, 11, 14, 17, 26, 30, 2, 9, 15, 30, 25, 7, 11, 12, 16, 17, 19, 23, 25, 29, 13, 14, 15, 16, 22, 26, 27, 3, 9, 11, 16, 26, 16, 2, 15, 17, 23, 26, 28, 26, 15, 23, 28, 4, 9, 12, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 8, 11, 13, 18, 28, 30, 2, 3, 5, 6, 9, 10, 12, 14, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 6, 12, 17, 18, 19, 20, 21, 22, 26, 29, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 19, 20, 23, 24, 26, 28, 30, 24, 2, 26, 2, 2, 28, 2, 4, 5, 11, 14, 16, 18, 19, 23, 25, 30, 6, 15, 20, 28, 16, 20, 5, 9, 14, 18, 23, 25, 26, 29, 2, 5, 6, 12, 15, 19, 20, 21, 23, 26, 26, 26, 26, 20, 23, 23, 11, 23, 20, 23, 6, 16, 17, 20, 11, 12, 26, 28, 2, 6, 7, 8, 10, 11, 12, 13, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 4, 12, 13, 14, 17, 22, 26, 27, 26, 1, 4, 5, 8, 13, 18, 27, 8, 14, 26, 2, 25, 28, 4, 9, 16, 17, 18, 22, 24, 26, 27, 1, 2, 3, 6, 7, 9, 11, 15, 16, 18, 19, 20, 21, 23, 25, 27, 2, 7, 15, 2, 3, 6, 9, 12, 16, 18, 19, 21, 23, 28, 2, 4, 5, 10, 18, 21, 28, 3, 8, 22, 1, 8, 14, 18, 20, 26, 27, 1, 12, 15, 18, 20, 21, 26, 27, 29, 3, 4, 5, 7, 9, 13, 18, 25, 29, 5, 12, 13, 19, 21, 26, 3, 5, 13, 17, 18, 20, 27, 3, 5, 6, 8, 13, 16, 23, 1, 2, 4, 8, 12, 13, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 28, 7, 8, 10, 12, 15, 18, 19, 20, 21, 22, 25, 26, 29, 5, 9, 10, 14, 1, 2, 3, 5, 8, 12, 16, 18, 19, 21, 23, 25, 11, 21, 23, 26, 3, 12, 20, 22, 23, 24, 1, 4, 5, 9, 11, 12, 20, 1, 5, 7, 12, 2, 3, 4, 12, 16, 17, 18, 21, 6, 7, 12, 15, 20, 24, 27, 28, 20, 26, 23, 26, 2, 26, 2, 4, 8, 11, 12, 15, 26, 27, 1, 3, 4, 5, 8, 9, 11, 12, 13, 14, 15, 17, 18, 22, 25, 26, 27, 29, 3, 5, 6, 9, 11, 14, 15, 18, 19, 21, 23, 25, 27, 28, 20, 25, 25, 25, 2, 25, 9, 11, 13, 19, 21, 24, 30, 5, 12, 13, 4, 5, 10, 13, 18, 26, 28, 29, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 5, 8, 13, 17, 20, 24, 25, 27, 29, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 3, 7, 19, 20, 23, 28, 5, 7, 9, 30, 1, 19, 1, 10, 2, 3, 4, 5, 7, 10, 13, 18, 20, 21, 22, 23, 26, 29, 3, 17, 19, 19, 27, 4, 19, 27, 12, 20, 23, 5, 20, 30, 7, 9, 16, 30, 2, 6, 7, 9, 16, 18, 19, 21, 22, 2, 4, 11, 12, 16, 18, 21, 4, 6, 10, 14, 18, 25, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 1, 3, 4, 8, 10, 11, 12, 14, 15, 16, 17, 18, 22, 23, 24, 25, 27, 29, 30, 3, 4, 5, 10, 15, 17, 18, 20, 22, 24, 27, 3, 5, 6, 17, 20, 21, 28, 29, 3, 4, 7, 11, 26, 29, 4, 5, 11, 18, 20, 22, 30, 7, 30, 1, 3, 5, 6, 8, 13, 14, 16, 21, 24, 26, 27, 28, 30, 4, 6, 9, 23, 24, 26, 27, 28, 7, 15, 17, 20, 23, 26, 28, 2, 7, 15, 19, 4, 10, 20, 30, 2, 3, 4, 7, 9, 11, 12, 13, 16, 17, 18, 23, 24, 26, 27, 28, 3, 4, 7, 9, 16, 19, 23, 25, 2, 3, 4, 6, 7, 8, 12, 20, 21, 23, 28, 29, 2, 4, 9, 12, 14, 19, 22, 25, 26, 4, 14, 1, 2, 3, 4, 6, 10, 12, 14, 15, 18, 20, 23, 24, 27, 28, 29, 4, 6, 16, 20, 23, 25, 27, 3, 8, 19, 21, 23, 25, 27, 20, 2, 4, 11, 21, 29, 30, 10, 15, 18, 26, 29, 30, 7, 19, 1, 2, 4, 11, 13, 20, 26, 2, 3, 8, 15, 29, 3, 10, 13, 20, 23, 28, 5, 10, 12, 17, 19, 27, 2, 6, 10, 11, 12, 17, 23, 24, 25, 26, 27, 28, 9, 9, 15, 17, 21, 28, 19, 25, 29, 12, 17, 19, 3, 4, 8, 12, 14, 16, 17, 18, 20, 22, 24, 26, 27, 29, 30, 30, 12, 13, 16, 18, 20, 28, 13, 14, 24, 26, 5, 6, 7, 8, 14, 16, 17, 18, 20, 21, 23, 25, 26, 27, 28, 1, 2, 3, 6, 7, 8, 9, 11, 12, 14, 15, 19, 20, 21, 23, 26, 28, 29, 14, 16, 22, 11, 9, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 28, 28, 16, 25, 6, 9, 12, 16, 21, 23, 25, 26, 30, 5, 9, 12, 15, 18, 22, 26, 28, 9, 15, 16, 17, 25, 26, 2, 26, 22, 26, 4, 26, 19, 22, 26, 25, 7, 14, 18, 21, 28, 3, 4, 17, 21, 22, 30, 14, 6, 17, 25, 1, 5, 11, 13, 18, 19, 22, 25, 29, 6, 5, 15, 19, 23, 24, 28, 2, 5, 6, 7, 8, 9, 19, 20, 26, 28, 28, 16, 9, 16, 23, 2, 8, 11, 18, 23, 28, 29, 3, 6, 9, 12, 13, 15, 16, 19, 20, 25, 28, 30, 1, 4, 5, 6, 7, 8, 10, 11, 14, 15, 17, 20, 22, 28, 29, 30, 5, 11, 19, 25, 18, 27, 2, 21, 25, 20, 10, 13, 30, 16, 20, 23, 20, 29, 30, 1, 5, 20, 4, 5, 10, 12, 14, 16, 21, 23, 19, 22, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 19, 20, 21, 24, 25, 29, 30, 2, 3, 6, 8, 9, 11, 15, 16, 18, 21, 22, 23, 24, 29, 30, 1, 5, 7, 12, 20, 27, 16, 3, 9, 3, 21, 2, 4, 5, 7, 13, 16, 22, 24, 26, 28, 4, 15, 19, 30, 19, 21, 28, 7, 20, 4, 7, 8, 19, 22, 28, 29, 30, 3, 6, 7, 8, 10, 19, 22, 29, 30, 24, 16, 19, 28, 6, 7, 9, 11, 12, 14, 15, 26, 28, 30, 6, 7, 9, 12, 13, 16, 18, 20, 23, 26, 28, 5, 6, 13, 14, 23, 26, 29, 11, 18, 5, 15, 20, 26, 28, 11, 6, 9, 23, 24, 28, 5, 7, 16, 17, 20, 28, 30, 6, 7, 29, 1, 3, 8, 12, 16, 19, 22, 23, 24, 3, 13, 16, 23, 3, 23, 1, 2, 4, 5, 6, 16, 18, 20, 23, 6, 18, 20, 25, 27, 28, 5, 5, 18, 5, 9, 20, 5, 17, 18, 21, 25, 26, 30, 3, 11, 22, 25, 27, 4, 22, 23, 3, 6, 8, 11, 12, 16, 19, 20, 25, 27, 1, 4, 5, 12, 14, 26, 30, 14, 16, 30, 5, 23, 5, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 18, 19, 20, 24, 25, 26, 28, 29, 3, 8, 14, 25 ], | |
"Freq": [ 0.065731, 0.025444, 0.0021203, 0.23324, 0.006361, 0.48768, 0.023324, 0.15267, 0.0021203, 0.0079945, 0.031978, 0.052297, 0.02898, 0.016655, 0.012325, 0.00066621, 0.033976, 0.01399, 0.093269, 0.056294, 0.41605, 0.011659, 0.018987, 0.046301, 0.0083276, 0.041971, 0.012658, 0.036641, 0.010992, 0.017988, 0.027981, 0.00066621, 0.012699, 0.96512, 0.012699, 0.073496, 0.022368, 0.046867, 0.020771, 0.0010652, 0.006391, 0.078822, 0.27055, 0.075094, 0.27481, 0.015977, 0.042606, 0.01864, 0.052193, 0.0070412, 0.0035206, 0.091535, 0.89423, 0.91174, 0.0073528, 0.029411, 0.0073528, 0.0073528, 0.036764, 0.018767, 0.018767, 0.91959, 0.018767, 0.018767, 0.34057, 0.27865, 0.37153, 0.013786, 0.88233, 0.055146, 0.013786, 0.027573, 0.011518, 0.014078, 0.0012798, 0.081269, 0.019837, 0.071031, 0.00063991, 0.056952, 0.26812, 0.014078, 0.013438, 0.12094, 0.010879, 0.057592, 0.24445, 0.014078, 0.00063991, 0.93641, 0.013377, 0.013377, 0.013377, 0.013377, 0.013377, 0.044914, 0.032106, 0.056356, 0.21706, 0.033472, 0.076508, 0.013833, 0.037571, 0.037229, 0.13765, 0.0090512, 0.012979, 0.060114, 0.071897, 0.023909, 0.017932, 0.054478, 0.052599, 0.010076, 0.065489, 0.24621, 0.087319, 0.056923, 0.091188, 0.036751, 0.053607, 0.039515, 0.15889, 0.043936, 0.11965, 0.00055265, 0.024308, 0.0095951, 0.028785, 0.00063967, 0.067166, 0.066526, 0.044777, 0.64159, 0.05885, 0.057571, 0.0013576, 0.00027151, 0.051044, 0.059461, 0.027151, 0.15829, 0.06652, 0.049415, 0.053488, 0.051316, 0.016562, 0.07548, 0.047515, 0.13033, 0.17377, 0.038283, 0.088747, 0.0059803, 0.042101, 0.052148, 0.015788, 0.023203, 0.0019137, 0.020333, 0.023682, 0.0098077, 0.047603, 0.022964, 0.025356, 0.016745, 0.039709, 0.1684, 0.029901, 0.034686, 0.044493, 0.00071763, 0.027748, 0.020811, 0.00909, 0.12917, 0.027748, 0.064587, 0.0064587, 0.96348, 0.012024, 0.043285, 0.009619, 0.014428, 0.0024047, 0.9138, 0.065594, 0.76527, 0.021865, 0.021865, 0.021865, 0.087459, 0.055509, 0.026898, 0.032567, 0.032831, 0.03138, 0.029271, 0.036127, 0.046939, 0.044302, 0.011075, 0.035863, 0.021755, 0.041401, 0.040346, 0.026898, 0.039423, 0.07977, 0.016086, 0.033095, 0.061047, 0.041797, 0.16139, 0.034545, 0.019646, 0.017111, 0.94108, 0.017111, 0.081507, 0.097689, 0.12166, 0.032962, 0.046147, 0.0077911, 0.36678, 0.095891, 0.062928, 0.085702, 0.00059932, 0.16382, 0.52968, 0.035494, 0.2703, 0.020054, 0.12032, 0.70189, 0.020054, 0.060162, 0.060162, 0.020054, 0.011612, 0.049766, 0.034836, 0.064695, 0.011612, 0.034836, 0.33841, 0.0016589, 0.064695, 0.029859, 0.08626, 0.10783, 0.12939, 0.033177, 0.90145, 0.08195, 0.0051219, 0.0051219, 0.98474, 0.012511, 0.97584, 0.033511, 0.033511, 0.87128, 0.016755, 0.016755, 0.016755, 0.016755, 0.016755, 0.95478, 0.99315, 0.1259, 0.0004861, 0.0004861, 0.0019444, 0.065624, 0.009236, 0.64068, 0.0019444, 0.0014583, 0.15215, 0.024976, 0.97094, 0.013559, 0.97623, 0.0054963, 0.98933, 0.004087, 0.008174, 0.71931, 0.024522, 0.036783, 0.012261, 0.012261, 0.012261, 0.15939, 0.004087, 0.004087, 0.91009, 0.074597, 0.077494, 0.0098844, 0.040724, 0.089751, 0.060888, 0.041119, 0.06102, 0.058121, 0.085402, 0.042964, 0.039933, 0.11163, 0.036111, 0.017792, 0.034266, 0.053244, 0.036111, 0.05364, 0.049686, 0.0034952, 0.0034952, 0.024466, 0.017476, 0.0069904, 0.031457, 0.010486, 0.0034952, 0.090875, 0.038447, 0.76545, 0.00047626, 0.076202, 0.00047626, 0.04715, 0.061914, 0.053817, 0.0042863, 0.010001, 0.036196, 0.010001, 0.059533, 0.045721, 0.029052, 0.12859, 0.00047626, 0.40101, 0.035243, 0.097572, 0.35467, 0.017036, 0.006195, 0.37015, 0.085182, 0.0092926, 0.029426, 0.023231, 0.0015488, 0.0046463, 0.021558, 0.010779, 0.010779, 0.010779, 0.043117, 0.010779, 0.90545, 0.56315, 0.0032552, 0.43131, 0.77706, 0.011774, 0.011774, 0.15894, 0.0058868, 0.023547, 0.0058868, 0.68057, 0.053473, 0.024306, 0.0048612, 0.18959, 0.03889, 0.019839, 0.099196, 0.83325, 0.019839, 0.019839, 0.10912, 0.83657, 0.96527, 0.015824, 0.0088741, 0.98503, 0.069759, 0.68643, 0.23718, 0.0027904, 0.0027904, 0.91071, 0.037946, 0.038609, 0.0019698, 0.11464, 0.13513, 0.035851, 0.027184, 0.0086672, 0.089036, 0.03979, 0.053185, 0.06264, 0.0043336, 0.038215, 0.0086672, 0.054761, 0.24623, 0.032305, 0.0078793, 0.1162, 0.10894, 0.02905, 0.012104, 0.0024208, 0.055679, 0.34618, 0.0072625, 0.14041, 0.014525, 0.021787, 0.012104, 0.094412, 0.0024208, 0.036312, 0.11374, 0.035668, 0.046059, 0.026962, 0.063331, 0.080042, 0.03314, 0.083131, 0.10574, 0.034404, 0.027664, 0.026259, 0.039038, 0.057995, 0.00042127, 0.011936, 0.10209, 0.016149, 0.024715, 0.071476, 0.00028085, 0.95152, 0.026251, 0.94504, 0.87759, 0.0029059, 0.01453, 0.061024, 0.037777, 0.022626, 0.81453, 0.067878, 0.045252, 0.022626, 0.98196, 0.010336, 0.036553, 0.020561, 0.078817, 0.026729, 0.022617, 0.041351, 0.037924, 0.010281, 0.090697, 0.032441, 0.025359, 0.016449, 0.14004, 0.034497, 0.015992, 0.066709, 0.01485, 0.1983, 0.015078, 0.074705, 0.021216, 0.021216, 0.16973, 0.021216, 0.70013, 0.063648, 0.023603, 0.92053, 0.011802, 0.011802, 0.035405, 0.0046024, 0.86986, 0.027615, 0.0046024, 0.082844, 0.0046024, 0.88774, 0.019594, 0.0015072, 0.0030144, 0.0015072, 0.0015072, 0.0015072, 0.033159, 0.0060288, 0.0030144, 0.021101, 0.0060288, 0.013565, 0.73939, 0.036969, 0.18485, 0.21948, 0.07981, 0.61853, 0.019953, 0.019953, 0.019953, 0.024023, 0.072069, 0.024023, 0.76873, 0.072069, 0.024023, 0.024023, 0.99434, 0.99042, 0.019454, 0.95324, 0.019454, 0.99121, 0.0048, 0.8592, 0.092057, 0.12191, 0.04008, 0.14278, 0.0066799, 0.002505, 0.45089, 0.00083499, 0.10103, 0.00083499, 0.03674, 0.095189, 0.31195, 0.069556, 0.37887, 0.029508, 0.14385, 0.022131, 0.010012, 0.033197, 0.95577, 0.019134, 0.00091114, 0.054668, 0.0018223, 0.025512, 0.049201, 0.50295, 0.079269, 0.051024, 0.11663, 0.034623, 0.064691, 0.0011924, 0.036965, 0.010732, 0.0011924, 0.023848, 0.095393, 0.011924, 0.0071545, 0.57236, 0.0083469, 0.22537, 0.0047697, 0.0087539, 0.035016, 0.91916, 0.0087539, 0.017508, 0.95746, 0.22941, 0.0030587, 0.104, 0.0030587, 0.66069, 0.0233, 0.038016, 0.052977, 0.23128, 0.019621, 0.031149, 0.10963, 0.039978, 0.021338, 0.058128, 0.14863, 0.034092, 0.064259, 0.00049053, 0.026489, 0.029432, 0.025262, 0.020357, 0.025262, 0.15427, 0.77946, 0.048716, 0.99138, 0.017278, 0.017278, 0.017278, 0.017278, 0.017278, 0.086388, 0.72566, 0.051833, 0.017278, 0.017278, 0.017278, 0.0034447, 0.92318, 0.068894, 0.31908, 0.52176, 0.045583, 0.068375, 0.00081398, 0.043955, 0.10697, 0.68426, 0.02951, 0.1789, 0.97404, 0.011196, 0.97938, 0.96917, 0.068056, 0.10915, 0.054787, 0.074476, 0.03039, 0.043231, 0.00042803, 0.0012841, 0.13697, 0.27779, 0.18148, 0.020973, 0.016755, 0.016755, 0.82099, 0.13404, 0.025232, 0.7065, 0.10093, 0.050464, 0.050464, 0.025232, 0.032242, 0.032242, 0.032242, 0.80604, 0.064483, 0.99314, 0.95781, 0.0024833, 0.035443, 0.10949, 0.048536, 0.065693, 0.035443, 0.00022575, 0.0074498, 0.0056438, 0.128, 0.27203, 0.0022575, 0.16389, 0.08872, 0.00022575, 0.034314, 0.019072, 0.057217, 0.038145, 0.019072, 0.80104, 0.019072, 0.057217, 0.0048178, 0.0048178, 0.98765, 0.98388, 0.018054, 0.95686, 0.018054, 0.015403, 0.0051343, 0.11552, 0.077014, 0.077014, 0.67516, 0.033373, 0.97775, 0.90357, 0.056473, 0.92584, 0.020574, 0.020574, 0.020574, 0.039294, 0.94305, 0.042935, 0.010734, 0.042935, 0.053668, 0.021467, 0.010734, 0.79429, 0.069878, 0.66165, 0.0087347, 0.11573, 0.061143, 0.058959, 0.019653, 0.0021837, 0.0087516, 0.013127, 0.0043758, 0.0087516, 0.017503, 0.10064, 0.22754, 0.59073, 0.026255, 0.0043758, 0.14349, 0.0010708, 0.0064248, 0.56538, 0.085664, 0.19703, 0.074156, 0.037078, 0.037078, 0.81572, 0.042586, 0.047953, 0.0083095, 0.015407, 0.0057128, 0.039297, 0.0036354, 0.052281, 0.041374, 0.083787, 0.030295, 0.034623, 0.06561, 0.043105, 0.0019043, 0.00017311, 0.03947, 0.16394, 0.12793, 0.08171, 0.070804, 0.90062, 0.06433, 0.068957, 0.21262, 0.70681, 0.014292, 0.97186, 0.048409, 0.91978, 0.018787, 0.92057, 0.018787, 0.018787, 0.018787, 0.9869, 0.0017134, 0.0085669, 0.13671, 0.11841, 0.085887, 0.41622, 0.24191, 0.92646, 0.037058, 0.32105, 0.66619, 0.022188, 0.022188, 0.93189, 0.072224, 0.028429, 0.16539, 0.022666, 0.014022, 0.038993, 0.053208, 0.12005, 0.00019209, 0.055513, 0.084134, 0.040338, 0.040146, 0.018056, 0.051287, 0.031118, 0.054168, 0.031886, 0.071456, 0.0069151, 0.9638, 0.017524, 0.014774, 0.97509, 0.97859, 0.18888, 0.046148, 0.00095151, 0.094676, 0.00047576, 0.55949, 0.10657, 0.0023788, 0.80722, 0.028323, 0.014162, 0.056647, 0.042485, 0.014162, 0.014162, 0.064046, 0.0069239, 0.012117, 0.0086549, 0.90357, 0.001731, 0.070132, 0.023377, 0.023377, 0.023377, 0.86496, 0.0021255, 0.0021255, 0.0021255, 0.036134, 0.099901, 0.027632, 0.60791, 0.12328, 0.099901, 0.96413, 0.037378, 0.29902, 0.59805, 0.037378, 0.97614, 0.01661, 0.96335, 0.041826, 0.94912, 0.0032174, 0.9974, 0.034897, 0.050453, 0.070201, 0.03882, 0.01285, 0.012309, 0.03855, 0.034086, 0.012579, 0.057757, 0.014608, 0.039091, 0.022453, 0.12606, 0.049641, 0.066684, 0.011632, 0.041796, 0.027323, 0.055051, 0.068037, 0.040849, 0.034492, 0.018396, 0.021642, 0.97147, 0.7901, 0.0010465, 0.18523, 0.0062789, 0.016744, 0.99435, 0.057954, 0.042322, 0.023182, 0.085921, 0.09145, 0.086878, 0.031689, 0.030519, 0.12399, 0.018184, 0.026691, 0.017546, 0.032646, 0.043917, 0.009464, 0.064121, 0.034028, 0.064972, 0.11421, 0.10018, 0.081182, 0.042933, 0.0015612, 0.11553, 0.0005204, 0.11761, 0.0002602, 0.0002602, 0.24823, 0.072596, 0.21857, 0.0002602, 0.97763, 0.95115, 0.03397, 0.85324, 0.071103, 0.023701, 0.023701, 0.94441, 0.039681, 0.0079362, 0.98722, 0.97759, 0.010626, 0.9507, 0.038692, 0.038692, 0.73515, 0.15477, 0.026846, 0.0067115, 0.053692, 0.83893, 0.040269, 0.0067115, 0.020134, 0.077742, 0.015548, 0.031097, 0.69968, 0.12439, 0.031097, 0.0021907, 0.024646, 0.26325, 0.018073, 0.010406, 0.0020082, 0.022272, 0.10096, 0.02994, 0.020812, 0.16303, 0.031583, 0.091463, 0.07412, 0.11939, 0.025924, 0.64316, 0.20228, 0.14523, 0.0051868, 0.0019636, 0.66108, 0.036654, 0.011782, 0.15251, 0.032072, 0.0019636, 0.0216, 0.052363, 0.00065454, 0.0032727, 0.024218, 0.0075968, 0.91162, 0.068371, 0.0033956, 0.048557, 0.042275, 0.00016978, 0.13599, 0.035484, 0.022411, 0.00016978, 0.084551, 0.11392, 0.25569, 0.22411, 0.005433, 0.027844, 0.00060527, 0.76113, 0.012711, 0.029356, 0.00060527, 0.15828, 0.0012105, 0.00090791, 0.00030264, 0.034803, 0.024821, 0.96802, 0.0035459, 0.073462, 0.039452, 0.090694, 0.02222, 0.081171, 0.00045347, 0.060311, 0.20633, 0.00090694, 0.36504, 0.059858, 0.99133, 0.003994, 0.45532, 0.015976, 0.10385, 0.037943, 0.15377, 0.001997, 0.015976, 0.001997, 0.19771, 0.0099851, 0.065736, 0.8217, 0.032868, 0.032868, 0.0056841, 0.14779, 0.057472, 0.047999, 0.016421, 0.041683, 0.00063156, 0.025894, 0.078314, 0.31768, 0.00063156, 0.04042, 0.16105, 0.037894, 0.020842, 0.51896, 0.20187, 0.23566, 0.042453, 0.00086639, 0.03467, 0.03467, 0.10401, 0.72807, 0.03467, 0.97393, 0.77057, 0.023351, 0.070052, 0.023351, 0.023351, 0.046701, 0.023351, 0.70305, 0.10816, 0.1352, 0.05408, 0.020352, 0.22387, 0.040704, 0.061057, 0.040704, 0.61057, 0.98906, 0.94784, 0.023118, 0.026047, 0.93768, 0.026047, 0.0037821, 0.01891, 0.056731, 0.045385, 0.87366, 0.43019, 0.025211, 0.080836, 0.080836, 0.026012, 0.00040018, 0.0048021, 0.35136, 0.64765, 0.050347, 0.004577, 0.034328, 0.0022885, 0.059502, 0.032039, 0.16706, 0.63079, 0.014352, 0.0020502, 0.052623, 0.29865, 0.64604, 0.0024752, 0.13119, 0.0024752, 0.071782, 0.14604, 0.048236, 0.93578, 0.016287, 0.016287, 0.94465, 0.016287, 0.016287, 0.033751, 0.033751, 0.033751, 0.033751, 0.033751, 0.23625, 0.60751, 0.033751, 0.025, 0.075, 0.025, 0.575, 0.3, 0.032777, 0.010926, 0.021852, 0.010926, 0.065555, 0.12018, 0.032777, 0.010926, 0.6774, 0.010926, 0.050515, 0.94668, 0.026724, 0.0035632, 0.0017816, 0.033851, 0.016035, 0.021379, 0.0017816, 0.79282, 0.0089081, 0.071264, 0.0089081, 0.0071264, 0.0035632, 0.97151, 0.97915, 0.92526, 0.028038, 0.028038, 0.064883, 0.00046345, 0.017148, 0.15062, 0.0078786, 0.056077, 0.024099, 0.061639, 0.40691, 0.054224, 0.018538, 0.044955, 0.017611, 0.055614, 0.019465, 0.91029, 0.017175, 0.017175, 0.017175, 0.017175, 0.017175, 0.95992, 0.059253, 0.13553, 0.033829, 0.020381, 0.03572, 0.00084047, 0.14876, 0.12628, 0.01891, 0.24058, 0.013658, 0.055261, 0.043284, 0.067237, 0.08644, 0.63389, 0.25932, 0.21696, 0.72978, 0.019724, 0.0080648, 0.0013441, 0.0013441, 0.0013441, 0.0013441, 0.34007, 0.64653, 0.014489, 0.95626, 0.014489, 0.0046364, 0.35237, 0.58419, 0.0046364, 0.051001, 0.79341, 0.069496, 0.0057913, 0.034748, 0.081078, 0.98928, 0.0075518, 0.011717, 0.091933, 0.17125, 0.018927, 0.2767, 0.10275, 0.080216, 0.0009013, 0.0009013, 0.026138, 0.019829, 0.039657, 0.0018026, 0.12798, 0.02794, 0.012823, 0.98478, 0.022039, 0.95871, 0.01102, 0.032725, 0.1105, 0.034, 0.19465, 0.15385, 0.0425, 0.016575, 0.030175, 0.0714, 0.000425, 0.076925, 0.008075, 0.0442, 0.014025, 0.16872, 0.11402, 0.059636, 0.030525, 0.036388, 0.065296, 0.042655, 0.12109, 0.11078, 0.021226, 0.038005, 0.078032, 0.0099056, 0.14676, 0.10896, 0.00020215, 0.016779, 0.046372, 0.021547, 0.034193, 0.2506, 0.028104, 0.018736, 0.0004684, 0.027636, 0.0051524, 0.015457, 0.040751, 0.034193, 0.074476, 0.049182, 0.01171, 0.0028104, 0.13818, 0.044967, 0.070729, 0.017799, 0.066982, 0.65552, 0.070348, 0.015988, 0.0031976, 0.1407, 0.0031976, 0.10872, 0.0031976, 0.053262, 0.92321, 0.0026577, 0.0026577, 0.43055, 0.0026577, 0.53686, 0.0026577, 0.021262, 0.98896, 0.47784, 0.001086, 0.053214, 0.21829, 0.074934, 0.001086, 0.006516, 0.07602, 0.002172, 0.089052, 0.021686, 0.93252, 0.021686, 0.089007, 0.0026179, 0.075918, 0.08639, 0.10471, 0.63876, 0.0062164, 0.17199, 0.0020721, 0.076669, 0.0082885, 0.72317, 0.0020721, 0.0020721, 0.0020721, 0.022779, 0.045558, 0.022779, 0.88839, 0.032051, 0.92949, 0.085105, 0.0012334, 0.22633, 0.062904, 0.20968, 0.0012334, 0.0012334, 0.047486, 0.06352, 0.0012334, 0.0055503, 0.0006167, 0.017884, 0.20413, 0.070304, 0.046867, 0.065838, 0.19683, 0.017683, 0.01073, 0.0060086, 0.05528, 0.070902, 0.056653, 0.076567, 0.026352, 0.15502, 0.035279, 0.049013, 0.1109, 0.0086696, 0.011245, 0.050938, 0.044548, 0.00035497, 0.21777, 0.0010649, 0.025558, 0.084482, 0.00035497, 0.035852, 0.061054, 0.039401, 0.020588, 0.012956, 0.060522, 0.08324, 0.027687, 0.17713, 0.056262, 0.00035497, 0.087391, 0.087391, 0.02913, 0.058261, 0.69913, 0.099565, 0.049783, 0.79652, 0.024891, 0.97166, 0.016194, 0.96917, 0.97885, 0.86433, 0.021608, 0.086433, 0.94335, 0.0038382, 0.0038382, 0.99025, 0.20362, 0.059021, 0.002951, 0.73481, 0.97988, 0.97004, 0.97019, 0.00077447, 0.00077447, 0.15722, 0.017813, 0.00077447, 0.075898, 0.018587, 0.00077447, 0.071251, 0.00077447, 0.1518, 0.0023234, 0.068928, 0.00077447, 0.39498, 0.037174, 0.012111, 0.0098038, 0.0040369, 0.059976, 0.3662, 0.0028835, 0.0005767, 0.17993, 0.0086505, 0.043252, 0.065743, 0.023068, 0.22318, 0.030115, 0.1232, 0.0027377, 0.0027377, 0.093083, 0.030115, 0.0027377, 0.0027377, 0.0082132, 0.093083, 0.59956, 0.0082132, 0.026912, 0.95538, 0.013456, 0.040153, 0.16797, 0.0060229, 0.0093689, 0.0013384, 0.0020076, 0.11176, 0.093689, 0.14656, 0.0013384, 0.0020076, 0.033461, 0.38413, 0.38395, 0.0066967, 0.073664, 0.0011161, 0.0011161, 0.036832, 0.0692, 0.14733, 0.21988, 0.060271, 0.099337, 0.066225, 0.033112, 0.13245, 0.62914, 0.10306, 0.016454, 0.033442, 0.031043, 0.035773, 0.035174, 0.10972, 0.059422, 0.024315, 0.082138, 0.010459, 0.020918, 0.14942, 0.014123, 0.010725, 0.0053959, 0.083137, 0.020318, 0.0085935, 0.050962, 0.038105, 0.057224, 0.032001, 0.81602, 0.128, 0.98172, 0.00073993, 0.032557, 0.079173, 0.046616, 0.2094, 0.00073993, 0.16427, 0.0081393, 0.0051795, 0.0059195, 0.089532, 0.35813, 0.00073993, 0.12627, 0.17489, 0.010885, 0.0029027, 0.36792, 0.0036284, 0.14659, 0.00072568, 0.015965, 0.0079825, 0.0029027, 0.1386, 0.010624, 0.94555, 0.021248, 0.010624, 0.043435, 0.31753, 0.011982, 0.0044933, 0.17524, 0.023964, 0.10484, 0.16326, 0.04044, 0.11233, 0.034875, 0.063043, 0.023474, 0.002012, 0.020791, 0.097583, 0.031857, 0.00033534, 0.053319, 0.33903, 0.054995, 0.031522, 0.21327, 0.013749, 0.019785, 0.99739, 0.00079608, 0.063686, 0.072443, 0.025076, 0.00039804, 0.0071647, 0.00039804, 0.067269, 0.056522, 0.56402, 0.049755, 0.011145, 0.080404, 0.00039804, 0.0018147, 0.98721, 0.0018147, 0.0054442, 0.0036294, 0.022023, 0.011011, 0.74878, 0.044046, 0.12113, 0.022023, 0.022023, 0.96006, 0.029587, 0.029587, 0.91719, 0.0087899, 0.039555, 0.04395, 0.90536, 0.0078085, 0.98387, 0.017905, 0.96685, 0.35021, 0.56034, 0.035021, 0.037715, 0.11315, 0.79202, 0.38893, 0.3845, 0.05166, 0.04797, 0.1262, 0.91492, 0.02892, 0.0026291, 0.0052582, 0.0026291, 0.047323, 0.92079, 0.061702, 0.0047463, 0.0094926, 0.94947, 0.15637, 0.078185, 0.039092, 0.11728, 0.58639, 0.92884, 0.022655, 0.56373, 0.16329, 0.069981, 0.0038878, 0.038878, 0.069981, 0.054429, 0.031103, 0.0026506, 0.0079517, 0.0026506, 0.98601, 0.96504, 0.96695, 0.021488, 0.014291, 0.97177, 0.014311, 0.84437, 0.085868, 0.014311, 0.028623, 0.90342, 0.036137, 0.78698, 0.0050773, 0.20309, 0.13928, 0.0024872, 0.0074617, 0.60937, 0.0024872, 0.0024872, 0.0074617, 0.069642, 0.0074617, 0.14923, 0.12444, 0.042573, 0.71719, 0.0010916, 0.0098245, 0.029473, 0.075321, 0.95153, 0.020245, 0.96619, 0.018945, 0.9701, 0.019701, 0.019701, 0.006567, 0.013134, 0.006567, 0.006567, 0.61073, 0.052536, 0.019701, 0.039402, 0.17731, 0.006567, 0.013134, 0.006567, 0.79163, 0.012179, 0.10961, 0.085253, 0.85686, 0.11978, 0.0092135, 0.85247, 0.11217, 0.91561, 0.0327, 0.89158, 0.028922, 0.078979, 0.095645, 0.90322, 0.9941, 0.0073046, 0.98612, 0.96963, 0.036021, 0.93655, 0.83764, 0.0065441, 0.0065441, 0.14397, 0.0065441, 0.014402, 0.95056, 0.014402, 0.014402, 0.014402, 0.0024403, 0.49537, 0.10249, 0.39532, 0.94658, 0.0093521, 0.0093521, 0.97262, 0.98649, 0.015832, 0.9499, 0.0089424, 0.79587, 0.17885, 0.0089424, 0.0089424, 0.9526, 0.035026, 0.73555, 0.035026, 0.1401, 0.98857, 0.022897, 0.96169, 0.0076293, 0.0025431, 0.0025431, 0.07375, 0.0076293, 0.16022, 0.025431, 0.0025431, 0.71715, 0.98872, 0.0068858, 0.0068858, 0.96402, 0.0068858, 0.0068858, 0.0068858, 0.10897, 0.036323, 0.036323, 0.72646, 0.036323, 0.036323, 0.99497, 0.12972, 0.86168, 0.0046327, 0.96248, 0.0087058, 0.046431, 0.41099, 0.02648, 0.019225, 0.009794, 0.013784, 0.024666, 0.13022, 0.0061666, 0.019951, 0.08996, 0.0065294, 0.029382, 0.019951, 0.00072548, 0.13712, 0.05305, 0.054063, 0.0047306, 0.12975, 0.021963, 0.30647, 0.011151, 0.036155, 0.21592, 0.11455, 0.003379, 0.048995, 0.91125, 0.055791, 0.94972, 0.041479, 0.0016591, 0.49277, 0.0033183, 0.12941, 0.068025, 0.0033183, 0.01991, 0.053093, 0.18251, 0.0016591, 0.037885, 0.034189, 0.0036961, 0.0046202, 0.018481, 0.0027721, 0.015709, 0.014785, 0.067454, 0.51838, 0.0055442, 0.12382, 0.024949, 0.024025, 0.10349, 0.3048, 0.0044174, 0.025621, 0.00088349, 0.053009, 0.0026505, 0.056543, 0.0088349, 0.0963, 0.037106, 0.32866, 0.010602, 0.068912, 0.10389, 0.0067756, 0.0022585, 0.0022585, 0.013551, 0.0022585, 0.86727, 0.0022585, 0.084798, 0.002692, 0.001346, 0.001346, 0.01346, 0.22613, 0.001346, 0.028266, 0.63935, 0.068589, 0.92881, 0.037011, 0.046763, 0.14704, 0.00025007, 0.1728, 0.048764, 0.059517, 0.11828, 0.0072521, 0.10928, 0.016255, 0.040512, 0.017755, 0.1763, 0.0020006, 0.060555, 0.30277, 0.060555, 0.020185, 0.52481, 0.020185, 0.055752, 0.00052105, 0.062005, 0.031784, 0.063568, 0.0015631, 0.056794, 0.0010421, 0.028658, 0.11255, 0.2475, 0.00052105, 0.020842, 0.012505, 0.05471, 0.031784, 0.02501, 0.010421, 0.073989, 0.10629, 0.0010421, 0.0024056, 0.99591, 0.052669, 0.026364, 0.021823, 0.014214, 0.033029, 0.077382, 0.011501, 0.055795, 0.033442, 0.013565, 0.32073, 0.0070776, 0.016927, 0.060927, 0.081924, 0.0076674, 0.034739, 0.024064, 0.01964, 0.036155, 0.05031, 0.0038262, 0.019131, 0.0076525, 0.0038262, 0.011479, 0.0076525, 0.038262, 0.12627, 0.73847, 0.0038262, 0.03061, 0.0038262, 0.0038262, 0.016627, 0.016627, 0.93112, 0.016627, 0.97344, 0.027703, 0.026304, 0.15083, 0.0036378, 0.0061562, 0.038896, 0.076673, 0.043653, 0.0013991, 0.018469, 0.011473, 0.01623, 0.037497, 0.00055965, 0.057924, 0.14187, 0.030781, 0.088705, 0.078911, 0.11585, 0.026024, 0.96549, 0.028397, 0.31307, 0.032071, 0.6521, 0.0091478, 0.036591, 0.0045739, 0.013722, 0.88734, 0.02287, 0.013722, 0.028703, 0.045165, 0.056984, 0.023216, 0.071335, 0.0050652, 0.043054, 0.071335, 0.0004221, 0.035034, 0.0029547, 0.026592, 0.071335, 0.032924, 0.33852, 0.14731, 0.034809, 0.41771, 0.27847, 0.034809, 0.10443, 0.034809, 0.034809, 0.95094, 0.0054968, 0.0054968, 0.0054968, 0.0054968, 0.01649, 0.0054968, 0.94211, 0.0023731, 0.0071192, 0.0071192, 0.0094923, 0.0023731, 0.026104, 0.0023731, 0.34908, 0.069816, 0.034908, 0.24435, 0.17454, 0.069816, 0.069816, 0.013292, 0.1595, 0.03323, 0.0066459, 0.019938, 0.69782, 0.039875, 0.013292, 0.0066459, 0.03539, 0.026077, 0.21374, 0.016298, 0.12713, 0.012107, 0.00046566, 0.001397, 0.034459, 0.017695, 0.094995, 0.027008, 0.095926, 0.05262, 0.00093132, 0.19139, 0.043307, 0.0093132, 0.99071, 0.010884, 0.95781, 0.021768, 0.93617, 0.029255, 0.94931, 0.029666, 0.082626, 0.030985, 0.010328, 0.77462, 0.010328, 0.06197, 0.020657, 0.019445, 0.0014958, 0.0014958, 0.89147, 0.014958, 0.034402, 0.0014958, 0.014958, 0.01047, 0.01047, 0.0096619, 0.93721, 0.038648, 0.78016, 0.03334, 0.18671, 0.12366, 0.2861, 0.00038403, 0.030338, 0.013825, 0.12443, 0.00038403, 0.054916, 0.17435, 0.14209, 0.048772, 0.028489, 0.0025899, 0.33669, 0.0051799, 0.001295, 0.068633, 0.10101, 0.16058, 0.13079, 0.014245, 0.15022, 0.06147, 0.89132, 0.0011319, 0.021506, 0.0045276, 0.49916, 0.1064, 0.29656, 0.0011319, 0.069045, 0.05851, 0.029759, 0.03222, 0.029535, 0.0179, 0.10774, 0.0004475, 0.044526, 0.0082787, 0.055602, 0.037925, 0.0069362, 0.02808, 0.06567, 0.10796, 0.024836, 0.026067, 0.019019, 0.082451, 0.030989, 0.068691, 0.0072718, 0.014767, 0.043295, 0.000895, 0.050455, 0.00031967, 0.07864, 0.058181, 0.094943, 0.06809, 0.19628, 0.1154, 0.036443, 0.0044754, 0.011189, 0.33502, 0.083335, 0.031658, 0.042366, 0.19973, 0.041435, 0.26397, 0.011173, 0.00046556, 0.12105, 0.041435, 0.0013967, 0.16202, 0.65947, 0.023344, 0.005836, 0.011672, 0.064196, 0.005836, 0.05836, 0.075868, 0.08754, 0.025473, 0.025473, 0.025473, 0.076418, 0.81513, 0.68859, 0.078696, 0.019674, 0.039348, 0.15739, 0.95428, 0.032908, 0.032908, 0.065816, 0.85561, 0.012486, 0.062431, 0.012486, 0.049945, 0.062431, 0.43702, 0.012486, 0.26221, 0.024972, 0.012486, 0.024972, 0.012486, 0.036525, 0.18262, 0.036525, 0.47482, 0.18262, 0.036525, 0.020097, 0.90435, 0.020097, 0.040193, 0.72277, 0.27172, 0.98403, 0.066697, 0.016674, 0.016674, 0.88374, 0.010565, 0.04226, 0.04851, 0.027997, 0.041907, 0.015231, 0.03997, 0.04719, 0.029053, 0.025004, 0.02606, 0.051856, 0.016111, 0.021394, 0.041115, 0.050711, 0.17749, 0.029229, 0.02069, 0.0081878, 0.064094, 0.057491, 0.10767, 0.012403, 0.0055419, 0.030525, 0.044336, 0.037122, 0.057531, 0.024719, 0.040817, 0.031052, 0.076883, 0.044599, 0.029821, 0.031932, 0.040817, 0.21675, 0.011436, 0.029821, 0.068351, 0.025598, 0.13996, 0.010436, 0.010436, 0.010436, 0.010436, 0.010436, 0.062619, 0.010436, 0.031309, 0.020873, 0.020873, 0.79317, 0.05501, 0.5785, 0.0035491, 0.0088726, 0.12599, 0.0017745, 0.0017745, 0.085177, 0.13486, 0.00039039, 0.68747, 0.18387, 0.016396, 0.0015615, 0.017958, 0.0042942, 0.00039039, 0.087056, 0.0074385, 0.028824, 0.015807, 0.22563, 0.0080584, 0.034713, 0.028824, 0.030994, 0.027584, 0.17512, 0.0021696, 0.035643, 0.042771, 0.014257, 0.035953, 0.047421, 0.021076, 0.047421, 0.066327, 0.10414, 0.0064301, 0.0096452, 0.0032151, 0.97416, 0.72351, 0.0071635, 0.0071635, 0.2149, 0.028654, 0.0071635, 0.66412, 0.0045802, 0.13282, 0.01374, 0.17863, 0.0080822, 0.048493, 0.0080822, 0.0080822, 0.85671, 0.024247, 0.024247, 0.0080822, 0.95658, 0.98503, 0.9615, 0.0010634, 0.0085068, 0.0021267, 0.037217, 0.0010634, 0.0010634, 0.085068, 0.0042534, 0.56039, 0.0010634, 0.047851, 0.078688, 0.018077, 0.035091, 0.052104, 0.029774, 0.037217, 0.0077463, 0.0019366, 0.081336, 0.7359, 0.030985, 0.011619, 0.061971, 0.0038732, 0.019366, 0.042605, 0.019931, 0.15715, 0.030663, 0.083558, 0.00038329, 0.0049828, 0.06401, 0.014948, 0.02683, 0.03028, 0.34841, 0.09429, 0.06631, 0.047145, 0.010732, 0.0071933, 0.48195, 0.009591, 0.088717, 0.079126, 0.28533, 0.02158, 0.023978, 0.046488, 0.0027346, 0.062895, 0.0027346, 0.86413, 0.021877, 0.019818, 0.95128, 0.0066061, 0.0066061, 0.0066061, 0.0066061, 0.94874, 0.04066, 0.047942, 0.86296, 0.071913, 0.0033932, 0.99082, 0.0033932, 0.97748, 0.003227, 0.058085, 0.003227, 0.025816, 0.003227, 0.012908, 0.6583, 0.096809, 0.077447, 0.048405, 0.0096809, 0.011638, 0.96594, 0.011638, 0.011638, 0.95318, 0.011768, 0.0058838, 0.017651, 0.0058838, 0.0058838, 0.0058838, 0.024712, 0.84712, 0.00098848, 0.00098848, 0.048435, 0.07809, 0.027323, 0.027323, 0.90166, 0.027323, 0.015492, 0.03598, 0.054595, 0.007371, 0.00049973, 0.02661, 0.025611, 0.025236, 0.043476, 0.031358, 0.034356, 0.14155, 0.057469, 0.016491, 0.011993, 0.068213, 0.036855, 0.024487, 0.020114, 0.01899, 0.1343, 0.031733, 0.12006, 0.016866, 0.00024479, 0.026927, 0.051161, 0.045041, 0.02301, 0.011505, 0.036474, 0.098405, 0.032557, 0.0019583, 0.050427, 0.00097916, 0.02913, 0.024479, 0.013463, 0.021541, 0.051161, 0.036229, 0.0056302, 0.079067, 0.076374, 0.2044, 0.033536, 0.021541, 0.024479, 0.07467, 0.00015333, 0.0067464, 0.054278, 0.11714, 0.0032199, 0.14152, 0.00015333, 0.16115, 0.014413, 0.12005, 0.06547, 0.12358, 0.007053, 0.11055, 0.13535, 0.016141, 0.047357, 0.082014, 0.00016386, 0.22695, 0.16583, 0.1265, 0.12912, 0.011307, 0.033182, 0.025809, 0.026112, 0.91394, 0.026112, 0.026112, 0.90602, 0.020591, 0.020591, 0.020591, 0.015819, 0.96496, 0.015819, 0.033812, 0.054619, 0.0026009, 0.0078027, 0.054619, 0.0026009, 0.10143, 0.0026009, 0.0026009, 0.73865, 0.014522, 0.029045, 0.014522, 0.90038, 0.043567, 0.91079, 0.0090177, 0.0090177, 0.063124, 0.0055262, 0.018324, 0.022105, 0.10005, 0.013379, 0.020069, 0.087547, 0.046537, 0.012798, 0.20272, 0.14106, 0.016579, 0.29493, 0.018033, 0.00029085, 0.98784, 0.008097, 0.051234, 0.01722, 0.015519, 0.11544, 0.00021259, 0.054423, 0.014456, 0.35608, 0.026361, 0.031463, 0.027636, 0.013606, 0.03125, 0.13053, 0.0080783, 0.0029762, 0.01722, 0.071004, 0.015306, 0.062915, 0.14455, 0.11681, 0.044198, 0.068778, 0.043973, 0.021423, 0.016687, 0.078023, 0.019393, 0.12831, 0.068327, 0.098544, 0.087945, 0.81029, 0.12466, 0.0032805, 0.059049, 0.13353, 0.003514, 0.031626, 0.64306, 0.003514, 0.10893, 0.038654, 0.03514, 0.015668, 0.9714, 0.0019923, 0.006973, 0.19624, 0.3865, 0.040842, 0.00099614, 0.18628, 0.0049807, 0.023907, 0.15141, 0.70357, 0.020102, 0.010051, 0.010051, 0.080408, 0.16082, 0.072667, 0.72667, 0.036333, 0.036333, 0.036333, 0.072667, 0.018002, 0.036003, 0.70206, 0.090008, 0.072006, 0.018002, 0.036003, 0.030837, 0.00047442, 0.38345, 0.025974, 0.016605, 0.024551, 0.043528, 0.034988, 0.067249, 0.0001186, 0.0001186, 0.068672, 0.010556, 0.13058, 0.072111, 0.013165, 0.076856, 0.064333, 0.108, 0.060716, 0.024545, 0.043405, 0.00025837, 0.034621, 0.030487, 0.0074926, 0.19248, 0.022995, 0.035654, 0.05684, 0.01421, 0.016535, 0.16742, 0.11523, 0.0049089, 0.037529, 0.037529, 0.075058, 0.037529, 0.037529, 0.78811, 0.037529, 0.11791, 0.070745, 0.56596, 0.023582, 0.023582, 0.18865, 0.014747, 0.020252, 0.024774, 0.032639, 0.053678, 0.003146, 0.046206, 0.0080615, 0.01573, 0.010028, 0.023791, 0.25089, 0.057217, 0.00058987, 0.020055, 0.35431, 0.063902, 0.036958, 0.020045, 0.049799, 0.035078, 0.04604, 0.09396, 0.015034, 0.0003132, 0.22488, 0.099284, 0.041969, 0.25682, 0.079553, 0.048592, 0.022676, 0.10906, 0.012958, 0.0043193, 0.032395, 0.050751, 0.22784, 0.0010798, 0.032395, 0.0010798, 0.39737, 0.05831, 0.028688, 0.00027064, 0.00027064, 0.03789, 0.0029771, 0.042491, 0.0089312, 0.073344, 0.00027064, 0.027064, 0.0048716, 0.27416, 0.023816, 0.07578, 0.08444, 0.031936, 0.046821, 0.0059541, 0.040055, 0.10339, 0.063872, 0.022463, 0.014396, 0.0013392, 0.046201, 0.030801, 0.034818, 0.0093741, 0.066623, 0.0020087, 0.054906, 0.027453, 0.30265, 0.00033479, 0.012052, 0.074993, 0.1068, 0.033814, 0.0010044, 0.055575, 0.03281, 0.059593, 0.03281, 0.97741, 0.9923, 0.98474, 0.027307, 0.027307, 0.10923, 0.73728, 0.08192, 0.027307, 0.0015879, 0.082569, 0.0031757, 0.0031757, 0.04446, 0.0015879, 0.84157, 0.019054, 0.059236, 0.003761, 0.03573, 0.34037, 0.034789, 0.24823, 0.057356, 0.032909, 0.03667, 0.15044, 0.029147, 0.11659, 0.029147, 0.67038, 0.029147, 0.14573, 0.029147, 0.036496, 0.018248, 0.009124, 0.027372, 0.009124, 0.054744, 0.063868, 0.7573, 0.009124, 0.022064, 0.94877, 0.01471, 0.0073548, 0.019995, 0.0099974, 0.92976, 0.03999, 0.035879, 0.0086979, 0.061972, 0.00054362, 0.074476, 0.024463, 0.060342, 0.0010872, 0.15602, 0.45338, 0.014134, 0.023919, 0.0010872, 0.083717, 0.060386, 0.72818, 0.035521, 0.16695, 0.0035521, 0.95811, 0.01409, 0.01409, 0.01409, 0.0151, 0.13905, 0.00062919, 0.052013, 0.063967, 0.016359, 0.020344, 0.042155, 0.0776, 0.012793, 0.020763, 0.0062919, 0.056627, 0.041946, 0.021812, 0.0388, 0.00020973, 0.15897, 0.21476, 0.97839, 0.13621, 0.034054, 0.034054, 0.57891, 0.034054, 0.034054, 0.068107, 0.015321, 0.015321, 0.95755, 0.005997, 0.065967, 0.005997, 0.91753, 0.0037151, 0.026005, 0.0018575, 0.0018575, 0.01486, 0.0018575, 0.013003, 0.93805, 0.027349, 0.027349, 0.9025, 0.0016926, 0.0033852, 0.0016926, 0.018619, 0.0033852, 0.0033852, 0.96478, 0.0016926, 0.034624, 0.50871, 0.0013317, 0.0013317, 0.037287, 0.0066585, 0.00066585, 0.11186, 0.05127, 0.048607, 0.0273, 0.075241, 0.09455, 0.98599, 0.99771, 0.0034022, 0.027217, 0.82333, 0.0034022, 0.027217, 0.034022, 0.010207, 0.068043, 0.0034022, 0.034573, 0.018818, 0.017943, 0.044638, 0.045076, 0.019693, 0.048577, 0.0096279, 0.0074397, 0.028008, 0.23107, 0.01838, 0.00043763, 0.035886, 0.12647, 0.023194, 0.0013129, 0.077898, 0.0052516, 0.017505, 0.025383, 0.10197, 0.0065644, 0.054266, 0.0052075, 0.0052075, 0.0052075, 0.072905, 0.0052075, 0.078113, 0.11977, 0.11457, 0.0052075, 0.015623, 0.53117, 0.04166, 0.094342, 0.069743, 0.045579, 0.025611, 0.035161, 0.065981, 0.024598, 0.097091, 0.023007, 0.067284, 0.2823, 0.15396, 0.015048, 0.6412, 0.0075258, 0.21524, 0.0015052, 0.0015052, 0.028598, 0.10386, 0.97471, 0.15023, 0.037557, 0.037557, 0.71359, 0.037557, 0.0070651, 0.98205, 0.058812, 0.019604, 0.74495, 0.019604, 0.019604, 0.11762, 0.825, 0.0014007, 0.14847, 0.0028014, 0.0098047, 0.011205, 0.96782, 0.014664, 0.11141, 0.014779, 0.052674, 0.017811, 0.026526, 0.0060632, 0.0079579, 0.053811, 0.012126, 0.037137, 0.026147, 0.0056842, 0.079958, 0.20994, 0.023495, 0.0022737, 0.034105, 0.0083369, 0.0216, 0.040548, 0.026147, 0.13415, 0.027663, 0.019705, 0.029475, 0.0058949, 0.0058949, 0.67202, 0.070739, 0.10021, 0.0058949, 0.10611, 0.018452, 0.097473, 0.035299, 0.03931, 0.037706, 0.044525, 0.013237, 0.10189, 0.020457, 0.025672, 0.030887, 0.07501, 0.055355, 0.038909, 0.32972, 0.0357, 0.95329, 0.018333, 0.016986, 0.016986, 0.016986, 0.95121, 0.12337, 0.055021, 0.043144, 0.020118, 0.028601, 0.041447, 0.015997, 0.067625, 0.024965, 0.04581, 0.38224, 0.031267, 0.014301, 0.083622, 0.022299, 0.099604, 0.79683, 0.066403, 0.017199, 0.96315, 0.017199, 0.95662, 0.035269, 0.040307, 0.023512, 0.0016795, 0.0016795, 0.018474, 0.016795, 0.089011, 0.18306, 0.016795, 0.56598, 0.0016795, 0.0083973, 0.0095205, 0.038082, 0.93301, 0.006801, 0.98614, 0.010818, 0.97362, 0.010818, 0.077935, 0.051957, 0.74038, 0.025978, 0.012989, 0.064946, 0.027731, 0.019575, 0.037519, 0.12234, 0.006525, 0.54484, 0.006525, 0.042413, 0.18923, 0.095867, 0.0038347, 0.0038347, 0.0019173, 0.89156, 0.98639, 0.020462, 0.96853, 0.0075372, 0.015074, 0.0075372, 0.075372, 0.76126, 0.12813, 0.017481, 0.017481, 0.13984, 0.78662, 0.017481, 0.97211, 0.012679, 0.017155, 0.15849, 0.00037293, 0.13052, 0.04587, 0.025732, 0.17975, 0.00037293, 0.1171, 0.14992, 0.055939, 0.0179, 0.088384, 0.015583, 0.11428, 0.0051945, 0.85709, 0.0051945, 0.032258, 0.032258, 0.032258, 0.90323, 0.051134, 0.012784, 0.038351, 0.86928, 0.02862, 0.94448, 0.8335, 0.14187, 0.0025334, 0.0025334, 0.0076003, 0.0025334, 0.0076003, 0.01806, 0.022704, 0.082045, 0.12075, 0.029929, 0.002064, 0.28845, 0.01806, 0.045925, 0.045409, 0.10578, 0.00051601, 0.01032, 0.059857, 0.00051601, 0.019608, 0.00051601, 0.032509, 0.0036121, 0.0077401, 0.044377, 0.041797, 0.12217, 0.20077, 0.14274, 0.0048968, 0.00097935, 0.027667, 0.053375, 0.019587, 0.1185, 0.055823, 0.11361, 0.021791, 0.11801, 0.98458, 0.012309, 0.87039, 0.077094, 0.0051828, 0.00064785, 0.033688, 0.0052383, 0.0052383, 0.0052383, 0.0052383, 0.96908, 0.98888, 0.00098411, 0.19485, 0.41136, 0.0019682, 0.020666, 0.061015, 0.090538, 0.079713, 0.03346, 0.1053, 0.092099, 0.01842, 0.87494, 0.25747, 0.003102, 0.003102, 0.055836, 0.16441, 0.003102, 0.49322, 0.018612, 0.043443, 0.086886, 0.0018101, 0.0036203, 0.018101, 0.076025, 0.0018101, 0.76387, 0.98346, 0.035843, 0.91401, 0.017922, 0.017922, 0.98163, 0.011283, 0.95018, 0.015413, 0.0030826, 0.018496, 0.9217, 0.015413, 0.0030826, 0.0030826, 0.015413, 0.99432, 0.99834, 0.0085918, 0.085013, 0.030297, 0.0049742, 0.031654, 0.088631, 0.51053, 0.017636, 0.080491, 0.0013566, 0.0009044, 0.080944, 0.058786, 0.12757, 0.0014497, 0.86982, 0.99223, 0.21314, 0.78447, 0.054596, 0.9425, 0.98862, 0.96832, 0.015618, 0.2454, 0.74688, 0.97723, 0.91486, 0.027723, 0.041584, 0.7505, 0.071476, 0.035738, 0.017869, 0.071476, 0.035738, 0.98851, 0.96866, 0.98369, 0.95925, 0.0058938, 0.98427, 0.10304, 0.48134, 0.12419, 0.11331, 0.17767, 0.00030216, 0.077922, 0.019181, 0.0011988, 0.0005994, 0.0005994, 0.024575, 0.014985, 0.17982, 0.0035964, 0.037163, 0.0005994, 0.074925, 0.060539, 0.058741, 0.38721, 0.058142, 0.070751, 0.035375, 0.1415, 0.60138, 0.10613, 0.025702, 0.025702, 0.025702, 0.025702, 0.025702, 0.61684, 0.23132, 0.012249, 0.079832, 0.117, 0.019008, 0.024921, 0.013516, 0.023231, 0.002112, 0.0016896, 0.019008, 0.018585, 0.098839, 0.03717, 0.026188, 0.40549, 0.10095, 0.013667, 0.013667, 0.013667, 0.027335, 0.16401, 0.013667, 0.69703, 0.054669, 0.033196, 0.033196, 0.066393, 0.033196, 0.033196, 0.76352, 0.033196, 0.010165, 0.94533, 0.010165, 0.010165, 0.02033, 0.017425, 0.92353, 0.03485, 0.0096359, 0.0096359, 0.0096359, 0.96359, 0.0096359, 0.014542, 0.72466, 0.21086, 0.0024236, 0.043625, 0.0053442, 0.98868, 0.98825, 0.020078, 0.00061779, 0.016371, 0.017607, 0.00061779, 0.0074134, 0.0040156, 0.025638, 0.016062, 0.037067, 0.36666, 0.0052512, 0.094521, 0.17638, 0.0015445, 0.046643, 0.11769, 0.019151, 0.026874, 0.011222, 0.95017, 0.031797, 0.0018704, 0.0018704, 0.0018704, 0.96663, 0.92821, 0.041254, 0.020627, 0.96039, 0.95124, 0.0053142, 0.037199, 0.036071, 0.7575, 0.18036, 0.022139, 0.022139, 0.022139, 0.088557, 0.81915, 0.060933, 0.026114, 0.89658, 0.93615, 0.030198, 0.016005, 0.080024, 0.89626, 0.04948, 0.02474, 0.19792, 0.2474, 0.02474, 0.02474, 0.04948, 0.09896, 0.09896, 0.02474, 0.17318, 0.091615, 0.0053891, 0.0053891, 0.0080837, 0.024251, 0.048502, 0.12664, 0.032335, 0.0053891, 0.0026946, 0.072753, 0.010778, 0.56855, 0.025735, 0.046504, 0.060952, 0.031604, 0.0013545, 0.079914, 0.01219, 0.033862, 0.036119, 0.23658, 0.01219, 0.029347, 0.037474, 0.044246, 0.044246, 0.032056, 0.022575, 0.016705, 0.0045149, 0.13048, 0.050116, 0.010384, 0.028559, 0.057117, 0.0071397, 0.0023799, 0.069017, 0.44504, 0.0023799, 0.15469, 0.080916, 0.15469, 0.010638, 0.039006, 0.15248, 0.010638, 0.021276, 0.003546, 0.14538, 0.41488, 0.003546, 0.003546, 0.031914, 0.049644, 0.003546, 0.10283, 0.003546, 0.053707, 0.056533, 0.0056533, 0.039573, 0.053707, 0.55403, 0.02544, 0.070667, 0.13568, 0.017879, 0.017879, 0.017879, 0.017879, 0.71517, 0.053638, 0.017879, 0.035758, 0.12515, 0.0004702, 0.02257, 0.0009404, 0.70624, 0.074762, 0.0032914, 0.015046, 0.17633, 0.20368, 0.78696, 0.0092583, 0.010464, 0.010464, 0.0020927, 0.048133, 0.0020927, 0.033484, 0.0041854, 0.17788, 0.033484, 0.63828, 0.02302, 0.0041854, 0.0020927, 0.010464, 0.0039489, 0.067132, 0.15796, 0.0039489, 0.067132, 0.0039489, 0.67922, 0.015796, 0.0039489, 0.0039489, 0.010929, 0.85244, 0.010929, 0.098359, 0.010929, 0.021857, 0.04725, 0.0018651, 0.011813, 0.84802, 0.046629, 0.04352, 0.00062172, 0.00062172, 0.039389, 0.086281, 0.0018757, 0.0018757, 0.0075027, 0.050643, 0.0018757, 0.80278, 0.0075027, 0.0018757, 0.00024576, 0.031704, 0.026788, 0.035636, 0.044238, 0.008356, 0.061933, 0.14205, 0.00073729, 0.013271, 0.11846, 0.11526, 0.015237, 0.074467, 0.31187, 0.04636, 0.075199, 0.038694, 0.064977, 0.0025553, 0.17047, 0.033949, 0.16244, 0.21537, 0.00036504, 0.041615, 0.0065708, 0.077389, 0.0010951, 0.033949, 0.011316, 0.017887, 0.014406, 0.1304, 0.0036939, 0.060211, 0.013298, 0.01847, 0.11488, 0.4695, 0.048391, 0.0044327, 0.12227, 0.035985, 0.93562, 0.095169, 0.028518, 0.019564, 0.0013264, 0.10843, 0.017906, 0.082237, 0.1396, 0.0069636, 0.014922, 0.044103, 0.0006632, 0.36078, 0.079252, 0.0093778, 0.028133, 0.056267, 0.046889, 0.056267, 0.0093778, 0.065644, 0.60018, 0.12191, 0.02901, 0.23208, 0.69624, 0.98208, 0.97964, 0.87803, 0.0015849, 0.0015849, 0.0015849, 0.0015849, 0.0015849, 0.0015849, 0.11094, 0.075442, 0.70248, 0.015669, 0.09024, 0.00058032, 0.040332, 0.0049327, 0.040623, 0.00029016, 0.029016, 0.64709, 0.039728, 0.062622, 0.11649, 0.058581, 0.00067335, 0.044441, 0.028954, 0.96515, 0.011223, 0.011223, 0.031815, 0.15907, 0.031815, 0.69993, 0.06363, 0.058635, 0.13682, 0.078181, 0.097726, 0.44954, 0.019545, 0.019545, 0.058635, 0.078181, 0.069383, 0.054642, 0.028211, 0.022365, 0.14893, 0.013216, 0.027194, 0.065317, 0.057946, 0.00025415, 0.10979, 0.020332, 0.041935, 0.30676, 0.024907, 0.0043206, 0.0035581, 0.00076245, 0.99173, 0.037984, 0.019647, 0.0013098, 0.0026196, 0.010478, 0.0013098, 0.037984, 0.056321, 0.011788, 0.11657, 0.59988, 0.0026196, 0.049772, 0.0013098, 0.0013098, 0.018337, 0.034055, 0.0021736, 0.028256, 0.010868, 0.10868, 0.11955, 0.61512, 0.0021736, 0.0043472, 0.0043472, 0.086943, 0.0021736, 0.010868, 0.0043472, 0.030185, 0.95084, 0.032327, 0.036148, 0.079187, 0.058764, 0.016978, 0.036085, 0.024621, 0.069414, 0.02625, 0.032452, 0.043478, 0.029006, 0.021238, 0.039406, 0.012216, 0.038278, 0.026062, 0.09297, 0.033329, 0.02105, 0.05394, 0.035271, 0.030823, 0.0847, 0.025999, 0.037493, 0.026858, 0.066396, 0.032857, 0.051535, 0.053308, 0.0038174, 0.050581, 0.031767, 0.03313, 0.038311, 0.028494, 0.0010907, 0.035584, 0.04431, 0.12488, 0.029449, 0.020996, 0.031357, 0.029721, 0.024132, 0.15324, 0.050854, 0.94367, 0.034951, 0.089238, 0.015394, 0.027778, 0.095836, 0.028126, 0.027431, 0.02801, 0.033913, 0.031251, 0.02095, 0.047223, 0.021991, 0.00069446, 0.12014, 0.019445, 0.021065, 0.00023149, 0.16991, 0.058798, 0.018172, 0.051737, 0.064701, 0.0078706, 0.054794, 0.070026, 0.022551, 0.021364, 0.035013, 0.078927, 0.011671, 0.01899, 0.085356, 0.15538, 0.044607, 0.015429, 0.12294, 0.048365, 0.059047, 0.044211, 0.036398, 0.074773, 0.0022069, 0.99531, 0.0042515, 0.11054, 0.059521, 0.0042515, 0.0042515, 0.063773, 0.0042515, 0.74827, 0.084142, 0.11219, 0.028047, 0.75728, 0.99293, 0.004172, 0.00037273, 0.093182, 0.19568, 0.0656, 0.0328, 0.041, 0.19904, 0.067464, 0.034291, 0.020873, 0.13269, 0.11666, 0.026761, 0.043649, 0.33334, 0.012731, 0.035594, 0.020785, 0.0028579, 0.036634, 0.015849, 0.20162, 0.024942, 0.0064953, 0.10782, 0.017407, 0.01429, 0.099249, 0.94812, 0.011851, 0.011851, 0.011851, 0.011851, 0.0024459, 0.08316, 0.012229, 0.0073376, 0.075822, 0.0048918, 0.0048918, 0.036688, 0.0024459, 0.76067, 0.0048918, 0.90432, 0.011744, 0.011744, 0.023489, 0.011744, 0.023489, 0.0015188, 0.99636, 0.98336, 0.98382, 0.072207, 0.0011646, 0.03028, 0.016305, 0.022128, 0.12345, 0.0011646, 0.052408, 0.04542, 0.51476, 0.0069878, 0.085018, 0.025622, 0.49582, 0.0025932, 0.0072609, 0.044603, 0.0025932, 0.15559, 0.023857, 0.10373, 0.0036304, 0.0031118, 0.0051863, 0.070016, 0.081426, 0.033677, 0.0007654, 0.060466, 0.075009, 0.0007654, 0.082663, 0.04822, 0.039035, 0.042097, 0.01837, 0.45541, 0.075774, 0.067355, 0.0044298, 0.0022149, 0.59359, 0.0022149, 0.0022149, 0.39204, 0.0044298, 0.0022149, 0.98591, 0.99899, 0.9678, 0.012569, 0.012569, 0.068089, 0.0021502, 0.055188, 0.36338, 0.00071673, 0.026519, 0.077406, 0.00071673, 0.15625, 0.04372, 0.14836, 0.056621, 0.00071673, 0.072296, 0.0045185, 0.025174, 0.1078, 0.027111, 0.026465, 0.016137, 0.011619, 0.047767, 0.07746, 0.001291, 0.015492, 0.0006455, 0.0058095, 0.09037, 0.44733, 0.0006455, 0.021947, 0.65711, 0.25106, 0.086788, 0.024556, 0.95769, 0.04468, 0.0055849, 0.46355, 0.04468, 0.0055849, 0.19547, 0.23457, 0.055663, 0.014032, 0.066517, 7.7525e-05, 0.024498, 0.0079076, 0.060392, 0.053725, 0.053182, 0.0078301, 0.056516, 0.097682, 0.13931, 0.014652, 0.10102, 0.026669, 0.024576, 0.041476, 0.0138, 0.14055, 0.28543, 0.028389, 0.061382, 0.10128, 0.049106, 0.0023018, 0.062917, 0.029156, 0.037596, 0.13197, 0.20947, 0.00076727, 0.97241, 0.95649, 0.97058, 0.04442, 0.11773, 0.066358, 0.08586, 0.06672, 0.54152, 0.077283, 0.90658, 0.06325, 0.11056, 0.011024, 0.11623, 0.0056697, 0.012914, 0.078116, 0.0015749, 0.00031498, 0.040003, 0.077171, 0.029608, 0.050397, 0.028034, 0.0040948, 0.052917, 0.3027, 0.078116, 0.97237, 0.97738, 0.42202, 0.1544, 0.36197, 0.056612, 0.003431, 0.97506, 0.029857, 0.03981, 0.016587, 0.063032, 0.082937, 0.033175, 0.71989, 0.0033175, 0.0099524, 0.0001765, 0.046419, 0.027357, 0.001765, 0.002824, 0.039183, 0.040418, 0.001059, 0.44707, 0.033888, 0.14879, 0.029828, 0.014649, 0.024886, 0.030181, 0.046596, 0.064599, 0.011205, 0.010843, 0.048434, 0.016265, 0.027108, 0.024217, 0.045542, 0.0061446, 0.071566, 0.48145, 0.023494, 0.12578, 0.025301, 0.039759, 0.009759, 0.032892, 0.32444, 0.058446, 0.55107, 0.0023856, 0.0011928, 0.026241, 0.0047711, 0.032205, 0.98736, 0.0049368, 0.71104, 0.27563, 0.0079892, 0.85984, 0.13028, 0.9969, 0.044338, 0.0040307, 0.032246, 0.85854, 0.052399, 0.0040307, 0.09182, 0.033502, 0.006204, 0.0018612, 0.044049, 0.06204, 0.0068244, 0.044049, 0.16565, 0.034743, 0.013028, 0.049632, 0.0024816, 0.036604, 0.003102, 0.011788, 0.35921, 0.032881, 0.92747, 0.018186, 0.018186, 0.018186, 0.0041015, 0.77519, 0.0041015, 0.020508, 0.0041015, 0.086132, 0.0041015, 0.098437, 0.50618, 0.28925, 0.024104, 0.024104, 0.12052, 0.78327, 0.0079763, 0.0015953, 0.09412, 0.006381, 0.0015953, 0.10369, 0.95217, 0.030715, 0.95364, 0.007947, 0.023841, 0.026121, 0.051079, 0.071806, 0.035692, 0.018189, 0.030087, 0.055414, 0.0022208, 0.026967, 0.027601, 0.16408, 0.014911, 0.027126, 0.24307, 0.041455, 0.020675, 0.051079, 0.042513, 0.049757, 0.96735, 0.02491, 0.97749, 0.0030651, 0.0061302, 0.042912, 0.0061302, 0.80612, 0.039846, 0.088888, 0.0030651, 0.0030651, 0.021764, 0.025909, 0.036273, 0.06011, 0.013473, 0.044564, 0.53477, 0.024873, 0.15131, 0.086019, 0.029993, 0.92978, 0.013369, 0.98264, 0.027636, 0.027636, 0.93962, 0.1172, 0.22137, 0.04167, 0.08334, 0.14584, 0.38545, 0.17617, 0.13662, 0.075502, 0.56447, 0.039549, 0.0035953, 0.03736, 0.40431, 0.055273, 0.050155, 0.00051178, 0.13306, 0.10133, 0.05169, 0.16531, 0.013621, 0.5755, 0.20773, 0.19751, 0.0030896, 0.0030896, 0.44181, 0.40473, 0.0061791, 0.14212, 0.97787, 0.0080643, 0.016129, 0.85481, 0.0080643, 0.048386, 0.016129, 0.0080643, 0.0080643, 0.0080643, 0.032257, 0.046425, 0.77375, 0.015475, 0.015475, 0.046425, 0.046425, 0.054163, 0.0077375, 0.020014, 0.48033, 0.41829, 0.011008, 0.037025, 0.0010007, 0.010007, 0.016011, 0.0060041, 0.0010007, 0.97641, 0.011907, 0.011907, 0.96415, 0.058415, 0.044203, 0.065401, 0.030954, 0.13032, 0.01903, 0.026257, 0.027702, 0.030111, 0.026016, 0.054922, 0.099727, 0.045768, 0.1632, 0.035049, 0.020355, 0.039987, 0.02457, 0.040951, 0.017103, 0.19814, 0.028306, 0.028306, 0.028306, 0.73596, 0.10808, 0.11854, 0.68333, 0.083674, 0.0034864, 0.016886, 0.0009933, 0.0009933, 0.018873, 0.0019866, 0.035759, 0.0009933, 0.48871, 0.20661, 0.21952, 0.0079464, 0.99384, 0.044522, 0.015258, 0.028264, 0.038519, 0.035768, 0.015258, 0.022761, 0.040645, 0.02026, 0.027514, 0.04027, 0.015133, 0.013757, 0.060655, 0.091546, 0.19322, 0.0076288, 0.05953, 0.025263, 0.01951, 0.13019, 0.0075038, 0.047149, 0.1082, 0.13098, 0.00028474, 0.00028474, 0.073177, 0.18309, 0.023918, 0.00028474, 0.33599, 0.0091116, 0.07033, 0.027619, 0.014522, 0.02164, 0.36671, 0.0053534, 0.62367, 0.11503, 0.84871, 0.031088, 0.0031088, 0.021599, 0.32399, 0.21599, 0.021599, 0.38879, 0.021599, 0.021599, 0.80231, 0.17962, 0.48416, 0.51501, 0.045755, 0.022878, 0.022878, 0.52618, 0.045755, 0.022878, 0.29741, 0.20657, 0.052843, 0.30265, 0.1171, 0.019216, 0.08587, 0.096078, 0.0042034, 0.060049, 0.0054044, 0.04924, 0.033982, 0.048691, 0.14151, 0.021302, 0.020288, 0.023838, 0.051227, 0.023331, 0.0091295, 0.045648, 0.26324, 0.0010144, 0.018259, 0.050213, 0.0086223, 0.0010144, 0.031446, 0.14506, 0.023331, 0.002536, 0.035504, 0.066312, 0.030142, 0.012057, 0.060284, 0.018085, 0.066312, 0.012057, 0.012057, 0.042198, 0.03617, 0.63298, 0.74386, 0.064394, 0.051071, 0.0044409, 0.097701, 0.035528, 0.0022205, 0.01016, 0.0050802, 0.0050802, 0.0050802, 0.015241, 0.0050802, 0.020321, 0.93984, 0.97406, 0.91254, 0.032591, 0.032591, 0.032591, 0.096785, 0.015282, 0.005094, 0.010188, 0.010188, 0.081503, 0.77428, 0.0047143, 0.38107, 0.24436, 0.022, 0.086036, 0.029465, 0.037715, 0.034965, 0.074251, 0.044786, 0.040465, 0.010444, 0.026111, 0.0052222, 0.93478, 0.010444, 0.0052222, 0.23008, 0.69024, 0.032869, 0.10145, 0.031116, 0.091217, 0.019181, 0.016197, 0.0072462, 0.021312, 0.072462, 0.4011, 0.0038362, 0.11764, 0.010656, 0.082266, 0.023017, 0.094586, 0.034178, 0.064382, 0.030204, 0.0015897, 0.0055639, 0.011923, 0.021461, 0.50949, 0.0015897, 0.13353, 0.082663, 0.0071535, 0.025709, 0.01079, 0.66336, 0.034904, 0.17996, 0.0091951, 0.040346, 0.00065679, 0.012854, 0.022049, 0.029443, 0.68139, 0.13039, 0.012618, 0.0042061, 0.0084122, 0.067298, 0.058886, 0.044411, 0.050756, 0.73596, 0.15227, 0.0063445, 0.0063445, 0.0063445, 0.03451, 0.013804, 0.013558, 0.43372, 0.033278, 0.00012325, 0.051272, 0.0088741, 0.02502, 0.016639, 0.16713, 0.033894, 0.00012325, 0.022432, 0.020336, 0.017255, 0.00086276, 0.0002465, 0.016885, 0.0033278, 0.062365, 0.02428, 0.17538, 0.041304, 0.036945, 0.057493, 0.023039, 0.043379, 0.036945, 0.030303, 0.016189, 0.016397, 0.019303, 0.053342, 0.031341, 0.065795, 0.059361, 0.021171, 0.02802, 0.039643, 0.028228, 0.019303, 0.034662, 0.0357, 0.044002, 0.042964, 0.048112, 0.064149, 0.0017819, 0.0017819, 0.10335, 0.044548, 0.014255, 0.16215, 0.53101, 0.023165, 0.0035638, 0.01724, 0.01724, 0.65511, 0.31031, 0.023616, 0.1417, 0.11808, 0.70849, 0.019653, 0.96299, 0.10599, 0.073828, 0.021929, 0.021198, 0.14619, 0.18932, 0.30555, 0.00073097, 0.1345, 0.11247, 0.18745, 0.037489, 0.48736, 0.037489, 0.074978, 0.010255, 0.02051, 0.030766, 0.010255, 0.071787, 0.02051, 0.030766, 0.15383, 0.071787, 0.57429, 0.010255, 0.76336, 0.01468, 0.0734, 0.04404, 0.05872, 0.02936, 0.027126, 0.081377, 0.46113, 0.027126, 0.29838, 0.027126, 0.054251, 0.12351, 0.41169, 0.041169, 0.020585, 0.24701, 0.061754, 0.061754, 0.39282, 0.03048, 0.025193, 0.088952, 0.022082, 0.022082, 0.3048, 0.075889, 0.037011, 0.03971, 0.7545, 0.03971, 0.11913, 0.056301, 0.068687, 0.098245, 0.14329, 0.023083, 0.2283, 0.0014075, 0.00056301, 0.053486, 0.00056301, 0.048419, 0.061087, 0.030684, 0.059679, 0.022239, 0.086985, 0.011542, 0.0050671, 0.02876, 0.92032, 0.02876, 0.68327, 0.20972, 0.094711, 0.95293, 0.97104, 0.23206, 0.024705, 0.11048, 0.032477, 0.034698, 0.058292, 0.038029, 0.083552, 0.00027758, 0.15239, 0.01721, 0.0027758, 0.21207, 0.018431, 0.24833, 0.10282, 0.026676, 0.045592, 0.15715, 0.084879, 0.00048502, 0.00048502, 0.2202, 0.0014551, 0.094094, 0.71468, 0.11911, 0.023823, 0.047645, 0.047645, 0.021843, 0.041501, 0.036405, 0.060432, 0.10557, 0.094652, 0.043686, 0.27231, 0.1347, 0.18858, 0.064748, 0.11396, 0.16834, 0.064748, 0.0025899, 0.4118, 0.090647, 0.01295, 0.067338, 0.045363, 0.050379, 0.040783, 0.067826, 0.074587, 0.035549, 0.004798, 0.12104, 0.087454, 0.034894, 0.10076, 0.074151, 0.070879, 0.11362, 0.014612, 0.0085055, 0.054959, 0.046141, 0.062478, 0.041129, 0.010521, 0.088762, 0.011516, 0.17534, 0.013888, 0.050885, 0.03187, 0.013353, 0.22688, 0.044534, 0.041052, 0.0001913, 0.034472, 0.084018, 0.022879, 0.0001913, 0.25846, 0.73484, 0.96368, 0.0012715, 0.9981, 0.27568, 0.0055136, 0.71126, 0.0055136, 0.25852, 0.73862, 0.1033, 0.037485, 0.073095, 0.051266, 0.003969, 0.033626, 0.028775, 0.085112, 0.11973, 0.0002205, 0.055896, 0.03087, 0.045202, 0.034618, 0.058211, 0.034728, 0.033185, 0.040461, 0.12998, 0.013023, 0.0018604, 0.98042, 0.0037208, 0.98233, 0.011625, 0.9971, 0.025383, 0.88839, 0.025383, 0.025383, 0.025383, 0.025383, 0.076285, 0.028379, 0.038634, 0.016297, 0.082748, 0.033296, 0.065608, 0.0089913, 0.037651, 0.027395, 0.089491, 0.013065, 0.021214, 0.0037932, 0.01714, 0.070104, 0.006884, 0.015875, 0.0011239, 0.038072, 0.025148, 0.046783, 0.027676, 0.047907, 0.089772, 0.070244, 0.94915, 0.0017381, 0.7856, 0.012166, 0.0034761, 0.072999, 0.0017381, 0.076475, 0.027809, 0.0069522, 0.013904, 0.8543, 0.0026046, 0.12762, 0.0052092, 0.0052092, 0.0026046, 0.0026046, 0.0026046, 0.92165, 0.055958, 0.0065832, 0.013166, 0.88937, 0.037057, 0.037057, 0.96801, 0.032111, 0.67433, 0.25689, 0.97328, 0.07832, 0.7832, 0.07832, 0.03916, 0.97617, 0.93889, 0.02608, 0.01304, 0.069722, 0.0021788, 0.49023, 0.19827, 0.067543, 0.14162, 0.023967, 0.0043576, 0.020231, 0.12139, 0.020231, 0.16185, 0.6474, 0.020231, 0.51639, 0.12318, 0.069168, 0.040743, 0.029373, 0.0009475, 0.00758, 0.00379, 0.0009475, 0.027478, 0.1317, 0.047375, 0.69555, 0.062381, 0.0062381, 0.11696, 0.0015595, 0.0015595, 0.034309, 0.0046786, 0.076417, 0.72594, 0.057513, 0.13292, 0.0012781, 0.04601, 0.034508, 0.0012781, 0.95799, 0.015967, 0.9344, 0.031147, 0.94167, 0.016815, 0.016815, 0.023784, 0.13689, 0.078977, 0.018519, 0.052107, 0.025781, 0.047568, 0.03849, 0.014525, 0.022695, 0.022876, 0.058098, 0.0030865, 0.14724, 0.0094409, 0.0039942, 0.024147, 0.048839, 0.025418, 0.040305, 0.11384, 0.043392, 0.98782, 0.036344, 0.016821, 0.03094, 0.044101, 0.034078, 0.061968, 0.066761, 0.033381, 0.038, 0.00095871, 0.034601, 0.033642, 0.063798, 0.00052293, 0.047587, 0.026757, 0.062404, 0.012899, 0.05116, 0.022922, 0.041748, 0.091339, 0.14712, 0.010074, 0.95705, 0.010074, 0.010074, 0.010074, 0.010074, 0.99202, 0.96996, 0.013108, 0.017353, 0.9544, 0.017353, 0.046467, 0.015489, 0.91386, 0.015489, 0.022892, 0.0017609, 0.0017609, 0.1215, 0.066916, 0.78362, 0.013794, 0.97936, 0.9604, 0.0196, 0.40131, 0.036483, 0.036483, 0.51076, 0.88559, 0.025303, 0.0084342, 0.016868, 0.025303, 0.0084342, 0.025303, 0.90594, 0.091146, 0.001381, 0.97299, 0.0017788, 0.021345, 0.93242, 0.0046159, 0.053083, 0.0069239, 0.98985, 0.0068266, 0.0022755, 0.14397, 0.0047989, 0.84461, 0.19857, 0.72478, 0.029786, 0.029786, 0.0814, 0.0025438, 0.29253, 0.61559, 0.0025438, 0.0025438, 0.93602, 0.050595, 0.83911, 0.13426, 0.080848, 0.42445, 0.26276, 0.10106, 0.10106, 0.021361, 0.021361, 0.91852, 0.021361, 0.98896, 0.014187, 0.8938, 0.070936, 0.9837, 0.036525, 0.043706, 0.02922, 0.14969, 0.064878, 0.0026001, 0.01981, 0.02241, 0.031077, 0.050639, 0.059306, 0.15972, 0.055344, 0.0069335, 0.012257, 0.028848, 0.02922, 0.15699, 0.040734, 0.037828, 0.0018013, 0.095469, 0.50437, 0.16572, 0.012609, 0.18013, 0.01349, 0.01349, 0.0067452, 0.68127, 0.020236, 0.074197, 0.18887, 0.98419, 0.059518, 0.025372, 0.0085364, 0.0035568, 0.017784, 0.00023712, 0.024424, 0.011145, 0.023238, 0.23143, 0.036517, 0.073745, 0.23831, 0.035331, 0.14773, 0.062837, 0.048166, 0.034068, 0.049173, 0.061088, 0.030041, 0.052026, 0.017454, 0.056053, 0.035411, 0.048669, 0.026181, 0.036082, 0.030041, 0.018461, 0.19048, 0.0021817, 0.0077199, 0.0036921, 0.079884, 0.061088, 0.11177, 0.068298, 0.026552, 0.0039757, 0.042739, 0.075113, 0.049981, 0.031948, 0.047567, 0.036208, 0.020305, 0.032232, 0.028114, 0.20007, 0.015761, 0.00014199, 0.055093, 0.18317, 0.082781, 0.16529, 0.14159, 0.068197, 0.025366, 0.076514, 0.082959, 0.01996, 0.060088, 0.021623, 0.050108, 0.11477, 0.0079009, 0.14118, 0.024534, 0.043997, 0.001089, 0.031365, 0.052274, 0.018078, 0.012633, 0.04073, 0.019167, 0.02788, 0.05271, 0.037245, 0.023741, 0.031365, 0.10389, 0.025266, 0.033978, 0.0047918, 0.22369, 0.022652, 0.010455, 0.033107, 0.11283, 0.0098014, 0.027008, 0.023253, 0.027582, 0.058998, 0.047495, 0.031416, 0.028571, 0.0055658, 0.016945, 0.074582, 0.033766, 0.017563, 0.084848, 0.047124, 0.0282, 0.042919, 0.10958, 0.025726, 0.023005, 0.071614, 0.039208, 0.091774, 0.05974, 0.01039, 0.072862, 0.0026462, 0.023446, 0.053539, 0.023077, 0.00024616, 0.049416, 0.033354, 0.042646, 0.025169, 0.044862, 0.094893, 0.016431, 0.19514, 0.019692, 0.037723, 0.058154, 0.11742, 0.023692, 0.012739, 0.052923, 0.067549, 0.038484, 0.035999, 0.046458, 0.00011557, 0.048423, 0.028776, 0.093783, 0.026581, 0.0657, 0.019647, 0.032417, 0.030221, 0.021553, 0.15324, 0.027505, 0.039813, 0.019589, 0.055473, 0.024731, 0.057148, 0.06674, 0.0014475, 0.062, 0.025813, 0.039081, 0.051144, 0.066824, 0.054762, 0.018576, 0.023159, 0.12014, 0.047766, 0.01737, 0.020988, 0.053074, 0.016646, 0.012786, 0.034257, 0.043424, 0.072856, 0.078887, 0.13871, 0.9855, 0.72121, 0.12482, 0.013869, 0.069347, 0.013869, 0.055477, 0.013869, 0.96369, 0.25082, 0.092693, 0.54798, 0.0054525, 0.0027263, 0.079062, 0.013631, 0.16698, 0.79098, 0.0015146, 0.040136, 0.11929, 0.074485, 0.44633, 0.11755, 0.2415, 0.027502, 0.086416, 0.057936, 0.045092, 0.0013961, 0.071757, 0.032947, 0.056261, 0.24529, 0.035041, 0.02485, 0.054027, 0.044534, 0.11936, 0.097444, 0.038918, 0.055549, 0.023284, 0.34893, 0.027608, 0.053886, 0.28972, 0.14203, 0.019958, 0.001915, 0.080432, 0.48259, 0.065111, 0.12256, 0.24512, 0.001915, 0.97701, 0.0040977, 0.0081954, 0.069661, 0.91379, 0.02482, 0.03723, 0.054603, 0.059567, 0.15885, 0.002482, 0.002482, 0.48895, 0.002482, 0.12658, 0.039712, 0.023537, 0.0047073, 0.061195, 0.71081, 0.018829, 0.14122, 0.032951, 0.092569, 0.0034285, 0.27428, 0.017142, 0.034285, 0.49713, 0.047999, 0.030856, 0.065427, 0.057729, 0.0028865, 0.035119, 0.0028865, 0.046665, 0.48926, 0.030308, 0.00048108, 0.059654, 0.020205, 0.00048108, 0.10584, 0.050032, 0.0014432, 0.031751, 0.95838, 0.059604, 0.076161, 0.07892, 0.33169, 0.16336, 0.016005, 0.076161, 0.068986, 0.088302, 0.038632, 0.00055189, 0.00055189, 0.00055189, 0.00055189, 0.042618, 0.012177, 0.097413, 0.030442, 0.018265, 0.012177, 0.68798, 0.091325, 0.0060883, 0.037245, 0.010823, 0.15832, 0.019206, 0.02536, 0.020055, 0.029605, 0.0059422, 0.055178, 0.00053055, 0.00053055, 0.015917, 0.014007, 0.065046, 0.01581, 0.06738, 0.29361, 0.018357, 0.070033, 0.047113, 0.0077461, 0.022177, 0.97339, 0.0096375, 0.0096375, 0.033963, 0.033963, 0.033963, 0.067926, 0.033963, 0.81511, 0.033963, 0.04701, 0.043557, 0.41087, 0.075163, 0.094285, 0.029746, 0.064539, 0.034793, 0.042495, 0.075959, 0.045682, 0.016201, 0.018326, 0.0010624, 0.0068589, 0.025149, 0.0007621, 0.0099073, 0.0030484, 0.0099073, 0.19815, 0.048774, 0.079259, 0.0015242, 0.13718, 0.30255, 0.0060968, 0.0045726, 0.073162, 0.091452, 0.93968, 0.027638, 0.03454, 0.03454, 0.03454, 0.27632, 0.58718, 0.13192, 0.08727, 0.0067651, 0.04465, 0.13801, 0.31323, 0.27737, 0.006774, 0.20385, 0.012701, 0.040009, 0.035775, 0.019475, 0.046994, 0.0057155, 0.18332, 0.00021169, 0.015665, 0.018417, 0.34018, 0.071127, 0.0057147, 0.051433, 0.9315, 0.016915, 0.016915, 0.016915, 0.016915, 0.94724, 0.023991, 0.024388, 0.024388, 0.035293, 0.029543, 0.17924, 0.056112, 0.022009, 0.16298, 0.022603, 0.095965, 0.16774, 0.017647, 0.10172, 0.036284, 0.0077749, 0.91743, 0.062199, 0.0036266, 0.62015, 0.36266, 0.01088, 0.32763, 0.55697, 0.065525, 0.039872, 0.1824, 0.00045829, 0.00045829, 0.017873, 0.071952, 0.02429, 0.00045829, 0.10082, 0.0018332, 0.12924, 0.26856, 0.0013749, 0.10403, 0.05637, 0.0053621, 0.82576, 0.042897, 0.075069, 0.042897, 0.0053621, 0.012597, 0.12791, 0.031009, 0.044575, 0.057173, 0.0019381, 0.015504, 0.30815, 0.092058, 0.0019381, 0.057173, 0.14439, 0.045544, 0.028102, 0.03004, 0.041414, 0.048943, 0.047688, 0.013177, 0.027609, 0.23719, 0.027609, 0.056473, 0.0069023, 0.20832, 0.00031374, 0.005961, 0.00031374, 0.1211, 0.083141, 0.044237, 0.030119, 0.19689, 0.6167, 0.10902, 0.024408, 0.05207, 0.072953, 0.87543, 0.036476, 0.93976, 0.035463, 0.97859, 0.013224, 0.9929, 0.94336, 0.029227, 0.058454, 0.11691, 0.7599, 0.14941, 0.0071148, 0.0071148, 0.035574, 0.79685, 0.017122, 0.95882, 0.017122, 0.75317, 0.037659, 0.037659, 0.037659, 0.075317, 0.037659, 0.037659, 0.0011934, 0.087353, 0.11719, 0.012411, 0.059429, 0.047973, 0.026254, 0.010263, 0.032936, 0.16802, 0.029118, 0.053462, 0.080432, 0.023867, 0.02506, 0.1895, 0.035323, 0.022155, 0.022155, 0.022155, 0.04431, 0.022155, 0.84188, 0.019099, 0.95493, 0.026299, 0.23669, 0.71007, 0.018887, 0.020324, 0.048038, 0.048654, 0.00020529, 0.0012317, 0.033052, 0.057276, 0.075958, 0.00041058, 0.38615, 0.0071852, 0.0045164, 0.037979, 0.086017, 0.02833, 0.034899, 0.013549, 0.03531, 0.04619, 0.016013, 0.020525, 0.92362, 0.020525, 0.020525, 0.0011759, 0.94717, 0.00058794, 0.009407, 0.00058794, 0.035276, 0.0052914, 0.92121, 0.070187, 0.944, 0.020522, 0.020522, 0.011475, 0.97539, 0.14915, 0.097176, 0.020339, 0.32543, 0.0090397, 0.00113, 0.040678, 0.058758, 0.01017, 0.088137, 0.10961, 0.089267, 0.033485, 0.0024804, 0.19099, 0.0012402, 0.6759, 0.0012402, 0.094254, 0.9525, 0.015615, 0.015615, 0.026918, 0.14601, 0.020393, 0.024471, 0.149, 0.033988, 0.049758, 0.089183, 0.0002719, 0.073685, 0.032628, 0.12589, 0.0013595, 0.033988, 0.02719, 0.0095165, 0.038338, 0.0021752, 0.10577, 0.0089727, 0.95323, 0.38822, 0.0045673, 0.0045673, 0.022836, 0.0045673, 0.55264, 0.018269, 0.079929, 0.84902, 0.0017762, 0.010657, 0.055062, 0.10477, 0.83816, 0.011641, 0.011641, 0.023282, 0.14531, 0.0005525, 0.09061, 0.12266, 0.09724, 0.10608, 0.36134, 0.0071825, 0.06851, 0.085933, 0.042966, 0.75191, 0.042966, 0.042966, 0.021483, 0.036451, 0.056702, 0.064802, 0.0040501, 0.01215, 0.01215, 0.0040501, 0.081002, 0.01215, 0.0081002, 0.028351, 0.62372, 0.01215, 0.044551, 0.032651, 0.032651, 0.0065302, 0.84892, 0.0065302, 0.065302, 0.081221, 0.79867, 0.10829, 0.98631, 0.007587, 0.0028436, 0.1109, 0.0056871, 0.019905, 0.034123, 0.059715, 0.0028436, 0.051184, 0.6398, 0.0028436, 0.0056871, 0.054028, 0.0028436, 0.0056871, 0.0010019, 0.027051, 0.084159, 0.043081, 0.0070132, 0.076144, 0.0010019, 0.1613, 0.54403, 0.0531, 0.0020038, 0.00069231, 0.013154, 0.074077, 0.010385, 0.067154, 0.00069231, 0.00069231, 0.0076154, 0.059538, 0.083769, 0.67223, 0.010385, 0.96667, 0.033606, 0.0084015, 0.016803, 0.0063011, 0.90946, 0.0042007, 0.016803, 0.0021004, 0.030218, 0.0026277, 0.03416, 0.056495, 0.0052554, 0.013138, 0.039415, 0.0039415, 0.059123, 0.74101, 0.011825, 0.0013138, 0.021042, 0.0013152, 0.0013152, 0.039455, 0.93639, 0.98809, 0.012432, 0.98211, 0.34138, 0.0048422, 0.45759, 0.019369, 0.033895, 0.024211, 0.012106, 0.016948, 0.0096844, 0.029053, 0.04358, 0.0072633, 0.96631, 0.059151, 0.018003, 0.055293, 0.0064295, 0.041149, 0.11959, 0.033433, 0.0051436, 0.0025718, 0.63266, 0.025718, 0.86954, 0.039524, 0.039524, 0.0095626, 0.91801, 0.0095626, 0.019125, 0.0095626, 0.0095626, 0.0024513, 0.99276, 0.0024513, 0.030152, 0.0011167, 0.045308, 0.054242, 0.062537, 0.028238, 0.014358, 0.022813, 0.0087744, 0.046903, 0.040681, 0.024568, 0.0098911, 0.080884, 0.067323, 0.078172, 0.029673, 0.069876, 0.015634, 0.024728, 0.016592, 0.1983, 0.029035, 0.056944, 0.035956, 0.014795, 0.012903, 0.043353, 0.015827, 0.0044729, 0.028214, 0.016687, 0.061933, 0.043869, 0.10924, 0.052471, 0.019096, 0.017376, 0.054707, 0.30536, 0.10666, 0.00085941, 0.015469, 0.51736, 0.33259, 0.00085941, 0.092816, 0.00085941, 0.036954, 0.050306, 0.031772, 0.06531, 0.00088257, 0.0017651, 0.00088257, 0.011473, 0.067075, 0.53836, 0.0017651, 0.012356, 0.094434, 0.028242, 0.026477, 0.019416, 0.049424, 0.00088257, 0.014398, 0.93589, 0.0071991, 0.0071991, 0.035996, 0.040407, 0.86201, 0.013469, 0.080814, 0.0083371, 0.016674, 0.041685, 0.91708, 0.2441, 0.00031335, 0.022248, 0.0090871, 0.056403, 0.044182, 0.0040735, 0.021308, 0.048256, 0.13787, 0.011594, 0.037288, 0.021621, 0.10058, 0.066116, 0.08429, 0.029141, 0.022248, 0.00031335, 0.038542, 0.012281, 0.0040935, 0.024561, 0.036842, 0.8842, 0.020468, 0.012281, 0.98693, 0.0024243, 0.032, 0.047031, 0.056728, 0.025212, 0.020849, 0.0043637, 0.0096971, 0.030061, 0.061092, 0.018424, 0.055758, 0.23806, 0.054304, 0.03394, 0.032, 0.023758, 0.030061, 0.112, 0.038788, 0.020364, 0.051394, 0.96861, 0.0041674, 0.036118, 0.0069457, 0.076403, 0.013891, 0.03334, 0.037507, 0.022226, 0.01667, 0.74736, 0.0027783, 0.079953, 0.0044867, 0.24372, 0.016062, 0.0019742, 0.00044867, 0.03374, 0.30752, 0.042893, 0.096105, 0.020011, 0.065865, 0.0017947, 0.015973, 0.069275, 0.98323, 0.0034722, 0.0005787, 0.0005787, 0.91435, 0.0034722, 0.03993, 0.035879, 0.96819, 0.986, 0.9681, 0.99095, 0.0040949, 0.0011002, 0.00055011, 0.00055011, 0.9935, 0.0038508, 0.00055011, 0.98436, 0.01106, 0.96155, 0.0028198, 0.033838, 0.98304, 0.0082609, 0.13029, 0.84686, 0.013029, 0.9935, 0.07343, 0.028882, 0.034757, 0.011994, 0.013707, 0.033288, 0.016155, 0.013952, 0.3554, 0.034023, 0.045282, 0.07392, 0.0034267, 0.017868, 0.016889, 0.035981, 0.0842, 0.10672, 0.0029345, 0.83928, 0.0029345, 0.0029345, 0.12032, 0.026411, 0.0029345, 0.0029345, 0.033455, 0.76948, 0.066911, 0.033455, 0.066911, 0.08655, 0.014961, 0.010386, 0.010139, 0.052424, 0.12982, 0.052919, 0.1025, 0.031282, 0.21452, 0.030045, 0.02003, 0.063429, 0.13786, 0.0063058, 0.036845, 0.02784, 0.031747, 0.03077, 0.00048841, 0.055679, 0.28914, 0.048353, 0.00048841, 0.018071, 0.18267, 0.0068378, 0.1221, 0.12894, 0.034189, 0.021979, 0.00060107, 0.82016, 0.00030053, 0.00030053, 0.16018, 0.00030053, 0.00060107, 0.01683, 0.00060107, 0.00030053, 0.0057941, 0.026548, 0.05457, 0.025916, 0.042455, 0.011272, 0.028339, 0.026126, 0.028865, 0.035818, 0.058152, 0.059627, 0.016434, 0.033817, 0.23166, 0.050883, 0.0002107, 0.030656, 0.13611, 0.096709, 0.96052, 0.00643, 0.99021, 0.05788, 0.019293, 0.019293, 0.90679, 0.55986, 0.03999, 0.023994, 0.055986, 0.095975, 0.15996, 0.0079979, 0.023994, 0.023994, 0.006576, 0.01644, 0.006576, 0.003288, 0.01644, 0.069048, 0.62143, 0.009864, 0.24989, 0.020358, 0.17983, 0.10858, 0.68879, 0.024027, 0.13215, 0.012014, 0.036041, 0.030034, 0.036041, 0.012014, 0.16819, 0.0060069, 0.54662, 0.0063499, 0.0254, 0.0031749, 0.022225, 0.16827, 0.0031749, 0.028574, 0.63181, 0.015875, 0.088898, 0.0031749, 0.0031749, 0.00224, 0.050027, 0.1247, 0.1919, 0.055254, 0.33302, 0.078401, 0.0044801, 0.0014934, 0.053014, 0.00074668, 0.00224, 0.1008, 0.6723, 0.13446, 0.033615, 0.13446, 0.93532, 0.0077944, 0.0077944, 0.046766, 0.050516, 0.022916, 0.00012661, 0.024435, 0.031652, 0.12142, 0.016206, 0.080142, 0.040514, 0.22726, 0.019118, 0.10901, 0.1218, 0.00025321, 0.031525, 0.08546, 0.017725, 0.001088, 0.056576, 0.029376, 0.009792, 0.001088, 0.046784, 0.052224, 0.001088, 0.01088, 0.53856, 0.001088, 0.095744, 0.00544, 0.13926, 0.004352, 0.00544, 0.93571, 0.034656, 0.035404, 0.10621, 0.81429, 0.37052, 0.06149, 0.093023, 0.034687, 0.40678, 0.0078833, 0.0015767, 0.022073, 0.17661, 0.038309, 0.00064931, 0.00032466, 0.022726, 0.13441, 0.30355, 0.15648, 0.16655, 0.017676, 0.017676, 0.77775, 0.088381, 0.035352, 0.035352, 0.10609, 0.021658, 0.079502, 0.047427, 0.028237, 0.054281, 0.024125, 0.023851, 0.011514, 0.14256, 0.04962, 0.034542, 0.010418, 0.13844, 0.00027415, 0.22727, 0.030099, 0.073518, 0.00017298, 0.054663, 0.022661, 0.01159, 0.10656, 0.034251, 0.022315, 0.00086492, 0.036326, 0.049992, 0.025774, 0.14358, 0.01159, 0.079053, 0.023007, 0.14963, 0.06089, 0.063658, 0.045694, 0.035177, 0.014869, 0.10462, 0.038078, 0.02194, 0.10535, 0.034814, 0.040798, 0.0074343, 0.055123, 0.031913, 0.065096, 0.034996, 0.13527, 0.016501, 0.016863, 0.062194, 0.089212, 0.044062, 0.039647, 0.019823, 0.23788, 0.55505, 0.039647, 0.079293, 0.23815, 0.16007, 0.59733, 0.98174, 0.98821, 0.092949, 0.081636, 0.014683, 0.071524, 0.024842, 0.043727, 0.083714, 0.16974, 0.034954, 0.017685, 0.050469, 0.0097428, 0.034862, 0.027566, 0.06312, 0.12716, 0.051623, 0.10984, 0.028493, 0.031973, 0.01566, 0.090699, 0.075691, 0.056986, 0.24273, 0.053071, 0.040456, 0.066991, 0.085261, 0.10201, 0.07447, 0.028551, 0.081608, 0.012015, 0.00011896, 0.015108, 0.042351, 0.13716, 0.061504, 0.052224, 0.045087, 0.043183, 0.14228, 0.00047585, 0.0041637, 0.18808, 0.071615, 0.16564, 0.041409, 0.74536, 0.020704, 0.020704, 0.020704, 0.011767, 0.96489, 0.011767, 0.011767, 0.084032, 0.031055, 0.029229, 0.043843, 0.069418, 0.11509, 0.029229, 0.020095, 0.0054804, 0.51333, 0.05663, 0.0018268, 0.97866, 0.93765, 0.19298, 0.70437, 0.0096489, 0.019298, 0.038595, 0.028947, 0.049212, 0.94117, 0.98947, 0.23821, 0.73696, 0.0074441, 0.0074441, 0.0074441, 0.045327, 0.0044438, 0.00088876, 0.055103, 0.0088876, 0.049771, 0.1822, 0.0071101, 0.56525, 0.081766, 0.99156, 0.55058, 0.05493, 0.023633, 0.0012774, 0.0025549, 0.14754, 0.18651, 0.00063872, 0.00063872, 0.03002, 0.99578, 0.9768, 0.012059, 0.97025, 0.97986, 0.9889, 0.014944, 0.45455, 0.038605, 0.028643, 0.0012453, 0.0012453, 0.03736, 0.18929, 0.047323, 0.18555, 0.96422, 0.031528, 0.032129, 0.86035, 0.024989, 0.049979, 0.0035699, 0.021419, 0.0035699, 0.0024136, 0.0024136, 0.041031, 0.0072408, 0.031377, 0.91234, 0.039389, 0.00079977, 0.062782, 0.24293, 0.0071979, 0.013796, 0.030791, 0.036589, 0.18255, 0.00019994, 0.016395, 0.03479, 0.03519, 0.052385, 0.014196, 0.018994, 0.059783, 0.037189, 0.11417, 0.031587, 0.94311, 0.022562, 0.046424, 0.0010316, 0.95118, 0.1035, 0.89425, 0.0038295, 0.0038295, 0.042125, 0.084249, 0.86164, 0.0086511, 0.0086511, 0.0086511, 0.034604, 0.0086511, 0.0086511, 0.0086511, 0.92567, 0.97631, 0.98324, 0.082014, 0.026362, 0.24214, 0.00097636, 0.56238, 0.00097636, 0.00097636, 0.033196, 0.00097636, 0.02148, 0.029291, 0.79585, 0.007335, 0.0036675, 0.055013, 0.0036675, 0.099023, 0.040343, 0.98943, 0.0030995, 0.0030995, 0.94535, 0.006199, 0.040294, 0.0030995, 0.02511, 0.059878, 0.057946, 0.72819, 0.0019315, 0.12169, 0.0019315, 0.9803, 0.0082794, 0.0041397, 0.0082794, 0.0041397, 0.0041397, 0.97283, 0.9869, 0.0057713, 0.95708, 0.028149, 0.013196, 0.95012, 0.013196, 0.013196, 0.95897, 0.027399, 0.98036, 0.033084, 0.92637, 0.98636, 0.043184, 0.064776, 0.043184, 0.45344, 0.30229, 0.064776, 0.90615, 0.013133, 0.05253, 0.0088839, 0.053303, 0.017213, 0.014992, 0.022765, 0.019989, 0.023875, 0.017213, 0.0099944, 0.041643, 0.044975, 0.024986, 0.012771, 0.01055, 0.2493, 0.00055524, 0.029983, 0.072181, 0.052193, 0.018878, 0.035535, 0.094391, 0.03498, 0.03387, 0.056079, 0.051019, 0.0725, 0.056773, 0.10089, 0.1005, 0.0003836, 0.19142, 0.41774, 0.007672, 0.0011508, 0.0003836, 0.023805, 0.022163, 0.0073876, 0.0057459, 0.088651, 0.0024625, 0.0024625, 0.010671, 0.043505, 0.11164, 0.013954, 0.11984, 0.021342, 0.051713, 0.00082085, 0.0090293, 0.43012, 0.033655, 0.033736, 0.0022491, 0.053977, 0.013494, 0.058476, 0.085464, 0.017992, 0.0089962, 0.015743, 0.0044981, 0.042732, 0.083215, 0.04723, 0.0044981, 0.45656, 0.069721, 0.97736, 0.0078892, 0.0078892, 0.96248, 0.015778, 0.026782, 0.086485, 0.10883, 0.058789, 0.023124, 0.00065321, 0.024038, 0.075903, 0.01829, 0.04886, 0.019466, 0.01829, 0.15037, 0.022993, 0.022732, 0.059965, 0.012411, 0.028872, 0.04272, 0.039454, 0.064537, 0.015938, 0.030309, 0.0034373, 0.0034373, 0.46747, 0.0034373, 0.10999, 0.034373, 0.3781, 0.024993, 0.17495, 0.049986, 0.012497, 0.03749, 0.56234, 0.12497, 0.058313, 0.61995, 0.018414, 0.064451, 0.039898, 0.19335, 0.0020806, 0.0010403, 0.85823, 0.13836, 0.9783, 0.0072606, 0.98744, 0.98207, 0.97972, 0.96195, 0.024665, 0.95688, 0.019935, 0.019935, 0.032509, 0.23987, 0.0044187, 0.016097, 0.00031562, 0.22788, 0.00031562, 0.00094687, 0.19916, 0.045134, 0.031878, 0.019884, 0.03535, 0.0091531, 0.11962, 0.016728, 0.04843, 0.92985, 0.0096859, 0.010773, 0.010773, 0.96961, 0.0059845, 0.20383, 0.0059845, 0.015137, 0.21861, 0.067942, 0.13025, 0.026754, 0.023938, 0.082023, 0.010209, 0.042948, 0.011617, 0.062309, 0.09188, 0.94188, 0.96819, 0.96924, 0.97358, 0.013156, 0.0087265, 0.0043633, 0.02618, 0.8552, 0.0043633, 0.10036, 0.96611, 0.0015433, 0.0015433, 0.026236, 0.0015433, 0.95426, 0.027264, 0.99238, 0.0217, 0.93311, 0.0217, 0.98789, 0.0052341, 0.010468, 0.17272, 0.088979, 0.71706, 0.093392, 0.045086, 0.022006, 0.0263, 0.013955, 0.031131, 0.091782, 0.02308, 0.22704, 0.041865, 0.1052, 0.071386, 0.18142, 0.011808, 0.014492, 0.43563, 0.40332, 0.15798, 0.013194, 0.97638, 0.016265, 0.30903, 0.65059, 0.98364, 0.96156, 0.97591, 0.9744, 0.95802, 0.033982, 0.016405, 0.025389, 0.31248, 0.12811, 0.0085931, 0.46285, 0.011327, 0.00039059, 0.94517, 0.70082, 0.016887, 0.0028145, 0.0056291, 0.24768, 0.0028145, 0.0084436, 0.0028145, 0.0028145, 0.0084436, 0.029945, 0.37496, 0.14972, 0.44266, 0.091235, 0.020156, 0.028643, 0.14852, 0.039252, 0.080626, 0.0010609, 0.0074261, 0.0010609, 0.47739, 0.0021217, 0.045617, 0.042435, 0.0010609, 0.014852, 0.96212, 0.0091151, 0.0091151, 0.0091151, 0.93885, 0.03646, 0.0015784, 0.78131, 0.044195, 0.0015784, 0.16889, 0.0015784, 0.0015784, 0.95059, 0.035207, 0.02755, 0.95508, 0.97714, 0.99456, 0.96622, 0.97933, 0.97164, 0.018767, 0.018767, 0.075066, 0.037533, 0.82573, 0.018767, 0.11023, 0.37076, 0.090185, 0.23047, 0.020041, 0.020041, 0.090185, 0.060123, 0.98074, 0.012574, 0.13915, 0.02783, 0.02783, 0.02783, 0.13915, 0.02783, 0.58443, 0.074386, 0.04326, 0.55605, 0.014244, 0.091795, 0.084409, 0.054866, 0.0010551, 0.079661, 0.49499, 0.0068342, 0.057602, 0.00097631, 0.054673, 0.16207, 0.057602, 0.16304, 0.99172, 0.03195, 0.57509, 0.3195, 0.03195, 0.98197, 0.010559, 0.96652, 0.0028726, 0.021544, 0.58745, 0.051707, 0.040216, 0.010054, 0.091923, 0.0014363, 0.01149, 0.17954, 0.98555, 0.97039, 0.98201, 0.0054255, 0.0054255, 0.12914, 0.036371, 0.012093, 0.2149, 0.024647, 0.023355, 0.021693, 0.021047, 0.045971, 0.10773, 0.012554, 0.015047, 0.054648, 0.047356, 0.032032, 0.032493, 0.024278, 0.021139, 0.014493, 0.020031, 0.015139, 0.073756, 0.96124, 0.015842, 0.00028803, 0.026787, 0.41188, 0.0043204, 0.023042, 0.028515, 0.0089289, 0.00057606, 0.2454, 0.013825, 0.021602, 0.042916, 0.0051845, 0.076904, 0.073736, 0.98259, 0.98424, 0.99252, 0.97885, 0.073887, 0.036943, 0.036943, 0.81275, 0.99184, 0.0014174, 0.030474, 0.0014174, 0.031891, 0.84193, 0.09213, 0.0065952, 0.0065952, 0.01319, 0.065952, 0.90355, 0.96861, 0.98927, 0.50437, 0.0027486, 0.22676, 0.26249, 0.0027486, 0.74233, 0.013559, 0.23727, 0.96601, 0.035893, 0.0018891, 0.48172, 0.47038, 0.0018891, 0.0018891, 0.0056673, 0.033185, 0.83332, 0.061761, 0.016593, 0.00092181, 0.053465, 0.98334, 0.036906, 0.036906, 0.036906, 0.81194, 0.036906, 0.29426, 0.088277, 0.29426, 0.1177, 0.088277, 0.029426, 0.029426, 0.029426, 0.9937, 0.0055103, 0.16531, 0.0055103, 0.78246, 0.011021, 0.0055103, 0.0055103, 0.016531, 0.0055103, 0.98679, 0.089939, 0.017394, 0.040515, 0.050484, 0.030545, 0.00021212, 0.024394, 0.0033939, 0.028424, 0.008909, 0.043484, 0.030757, 0.019727, 0.06109, 0.053454, 0.11179, 0.0082726, 0.013364, 0.014, 0.003606, 0.032242, 0.045181, 0.046454, 0.08612, 0.119, 0.016757, 0.05709, 0.0095151, 0.061415, 0.006055, 0.00173, 0.28632, 0.00086501, 0.00173, 0.05882, 0.00519, 0.056225, 0.45413, 0.040021, 0.062386, 0.0070626, 0.058855, 0.055323, 0.032959, 0.0011771, 0.22953, 0.02825, 0.0023542, 0.0011771, 0.058855, 0.10594, 0.0023542, 0.30722, 0.0070626, 0.13398, 0.66607, 0.003828, 0.034452, 0.15312, 0.069426, 0.034591, 0.017467, 0.074955, 0.018543, 0.031851, 0.10686, 0.020794, 0.035129, 0.010666, 0.048731, 0.02461, 0.018934, 0.015999, 0.11943, 0.044327, 0.049269, 0.17041, 0.013895, 0.011693, 0.01414, 0.048388, 0.035902, 0.021622, 0.073312, 0.021521, 0.049881, 0.040226, 0.042539, 0.038114, 0.055814, 0.00010057, 0.045456, 0.040226, 0.10891, 0.034896, 0.037712, 0.16794, 0.012872, 0.10942, 0.00060339, 0.063155, 0.0036632, 0.062275, 0.10257, 0.61542, 0.0036632, 0.01099, 0.043959, 0.0073265, 0.029306, 0.018316, 0.095244, 0.00043784, 0.0243, 0.023643, 0.034589, 0.057794, 0.017294, 0.031305, 0.058889, 0.021235, 0.0567, 0.028678, 0.37172, 0.04247, 0.063705, 0.017294, 0.0096324, 0.056043, 0.065019, 0.017513, 0.0010946, 0.029962, 0.033669, 0.0064866, 0.16865, 0.00061777, 0.0049422, 0.00030889, 0.014518, 0.0695, 0.34317, 0.033051, 0.028109, 0.036449, 0.015753, 0.053746, 0.028418, 0.087724, 0.044789, 0.00030889, 0.91398, 0.0055731, 0.075236, 0.0027865, 0.94295, 0.0071436, 0.0071436, 0.042861, 0.066053, 0.1446, 0.017852, 0.014282, 0.0017852, 0.03749, 0.057127, 0.094617, 0.089261, 0.47665, 0.022722, 0.15371, 0.052126, 0.062819, 0.012029, 0.058809, 0.0013366, 0.14034, 0.0026732, 0.0013366, 0.048117, 0.44107, 0.0013366, 0.046057, 0.05766, 0.0010547, 0.099849, 0.043596, 0.060824, 0.00035158, 0.012305, 0.0045706, 0.0066801, 0.054144, 0.09563, 0.25525, 0.044299, 0.0056253, 0.10653, 0.023556, 0.079809, 0.0014063, 0.25576, 0.00079305, 0.00039652, 0.22681, 0.48297, 0.00039652, 0.00079305, 0.031325, 0.04655, 0.0020537, 0.00068455, 0.13417, 0.044496, 0.0095837, 0.53669, 0.047919, 0.14033, 0.036966, 0.00068455, 0.19865, 0.03973, 0.63567, 0.03973, 0.03973, 0.03973, 0.88391, 0.035356, 0.035356, 0.0067334, 0.0067334, 0.0067334, 0.0067334, 0.96288, 0.97822, 0.74503, 0.24395, 0.98703, 0.78184, 0.0065154, 0.013031, 0.18895, 0.79582, 0.19699, 0.96568, 0.948, 0.021067, 0.98535, 0.0063163, 0.0016822, 0.026915, 0.80744, 0.085791, 0.075698, 0.0016822, 0.10802, 0.028756, 0.046821, 0.18212, 0.013272, 0.0553, 0.031337, 0.012166, 0.022857, 0.14194, 0.15005, 0.015115, 0.013272, 0.023595, 0.021014, 0.017696, 0.11318, 0.003318, 0.86315, 0.031969, 0.031969, 0.031969, 0.034688, 0.069375, 0.10406, 0.034688, 0.034688, 0.62438, 0.034688, 0.9739, 0.0015489, 0.0015489, 0.0015489, 0.10997, 0.0015489, 0.023233, 0.021684, 0.0015489, 0.034075, 0.02633, 0.0077443, 0.76823, 0.97217, 0.96295, 0.030578, 0.58099, 0.0027798, 0.052817, 0.0027798, 0.32802, 0.3317, 0.29853, 0.06634, 0.14927, 0.09951, 0.03317, 0.90402, 0.075968, 0.0075968, 0.027695, 0.028803, 0.16506, 0.0022156, 0.032126, 0.0022156, 0.013294, 0.04542, 0.0044312, 0.0011078, 0.10413, 0.37111, 0.16174, 0.0011078, 0.040989, 0.0151, 0.96641, 0.024696, 0.76558, 0.098784, 0.049392, 0.024696, 0.5004, 0.49742, 0.09548, 0.90393, 0.028212, 0.84636, 0.028212, 0.084636, 0.064729, 0.00054394, 0.25021, 0.1436, 0.033725, 0.025565, 0.013599, 0.0016318, 0.081048, 0.063642, 0.027197, 0.01795, 0.00054394, 0.025021, 0.055482, 0.051675, 0.023934, 0.04406, 0.057114, 0.018494, 0.9824, 0.57059, 0.25292, 0.17401, 0.19632, 0.039264, 0.75911, 0.003272, 0.95561, 0.025148, 0.90718, 0.023873, 0.023873, 0.049834, 0.035299, 0.047757, 0.091362, 0.0062292, 0.049834, 0.049834, 0.016611, 0.0062292, 0.060216, 0.012458, 0.05814, 0.50872, 0.0020764, 0.049105, 0.039284, 0.087162, 0.0018415, 0.00061382, 0.2799, 0.36583, 0.17617, 0.00030106, 0.61145, 0.00030106, 0.04847, 0.048771, 0.0063222, 0.22218, 0.044858, 0.0096338, 0.00060211, 0.0072254, 0.00030106, 0.9884, 0.0072676, 0.14754, 0.038397, 0.78311, 0.03085, 3.478e-05, 0.10868, 0.035573, 0.086811, 0.050912, 0.024477, 0.0071799, 0.057439, 0.12858, 0.07702, 0.0075062, 0.058418, 0.12108, 0.013054, 0.06984, 0.010117, 0.030025, 0.025782, 0.087137, 0.051079, 0.017517, 0.039783, 0.010478, 0.027258, 0.027995, 0.078501, 0.021692, 0.039291, 0.059674, 0.0036017, 0.04011, 0.038882, 0.23084, 0.055254, 0.021037, 0.0059756, 0.1006, 0.053453, 8.1857e-05, 0.018172, 0.040765, 0.018009, 0.98486, 0.98478, 0.022086, 0.055669, 0.010701, 0.030965, 0.019126, 0.03791, 0.06694, 0.010701, 0.032901, 0.023452, 0.031876, 0.26878, 0.0015938, 0.013092, 0.01776, 0.04235, 0.024704, 0.04531, 0.041667, 0.0148, 0.10451, 0.050774, 0.032445, 0.021496, 0.23646, 0.021496, 0.70938, 0.98774, 0.97711, 0.048246, 0.10353, 0.13785, 0.28014, 0.047671, 0.0068923, 0.0096205, 0.062461, 0.021395, 0.00028718, 0.10898, 0.16082, 0.011918, 0.0046251, 0.013875, 0.97127, 0.24007, 0.0014911, 0.73362, 0.023858, 0.98612, 0.0046625, 0.0023313, 0.0046625, 0.0032102, 0.020866, 0.046548, 0.007223, 0.013643, 0.1878, 0.056981, 0.016051, 0.047351, 0.035312, 0.49598, 0.06902, 0.020874, 0.015655, 0.0052185, 0.92889, 0.020874, 0.0054194, 0.9809, 0.0054194, 0.84333, 0.1528, 0.67174, 0.32555, 0.98207, 0.011278, 0.00049036, 0.19124, 0.13877, 0.18977, 0.034325, 0.023537, 0.00098071, 0.0029421, 0.00049036, 0.055901, 0.24812, 0.10248, 0.98745, 0.95221, 0.03174, 0.035578, 0.01596, 0.032918, 0.016459, 0.047049, 0.011139, 0.035578, 0.04921, 0.012469, 0.04522, 0.015628, 0.19418, 0.019784, 0.16692, 0.035079, 0.03192, 0.018121, 0.10357, 0.10923, 0.00399, 0.00066798, 0.042083, 0.0086837, 0.31261, 0.00066798, 0.040079, 0.12692, 0.014028, 0.022043, 0.016031, 0.41548, 0.032852, 0.44741, 0.076654, 0.0031287, 0.43959, 0.008691, 0.008691, 0.008691, 0.9647, 0.00048853, 0.061555, 0.037128, 0.01661, 0.39034, 0.20176, 0.052273, 0.018076, 0.059601, 0.065463, 0.017587, 0.079142, 0.00048853, 0.095514, 0.028504, 0.015669, 0.045507, 0.021003, 0.027504, 0.04934, 0.009168, 0.049007, 0.043173, 0.053508, 0.02217, 0.017836, 0.056508, 0.059509, 0.11635, 0.00016669, 0.02617, 0.030004, 0.021836, 0.025837, 0.044006, 0.014335, 0.049507, 0.077511, 0.31006, 0.14094, 0.056375, 0.028187, 0.42281, 0.038789, 0.028774, 0.028915, 0.047675, 0.24345, 0.037237, 0.022145, 0.026659, 0.0086041, 0.00014105, 0.02948, 0.15812, 0.01481, 0.020452, 0.018196, 0.027223, 0.031313, 0.023556, 0.02144, 0.016926, 0.042456, 0.037379, 0.076168, 0.94458, 0.020991, 0.020991, 0.98009, 0.96633, 0.96883, 0.021624, 0.95145, 0.97284, 0.91207, 0.074106, 0.0057004, 0.0057004, 0.0020158, 0.02307, 0.040092, 0.020158, 0.0020158, 0.063833, 0.13819, 0.0033596, 0.052635, 0.011647, 0.31894, 0.021054, 0.30282, 0.03641, 0.077451, 0.014101, 0.048617, 0.01831, 0.019573, 0.058088, 0.0181, 0.056825, 0.28034, 0.010734, 0.029044, 0.071768, 0.022099, 0.00021046, 0.025887, 0.097655, 0.019784, 0.09513, 0.05843, 0.0057316, 0.059545, 0.027543, 0.0049355, 0.034549, 0.015443, 0.039803, 0.031205, 0.082312, 0.022767, 0.041076, 0.00063684, 0.09075, 0.086451, 0.038688, 0.018787, 0.017195, 0.016876, 0.041395, 0.059386, 0.18612, 0.020538, 0.00096602, 0.037353, 0.052165, 0.001288, 0.00161, 0.056995, 0.038963, 0.00064402, 0.010626, 0.033489, 0.24505, 0.016744, 0.016744, 0.023507, 0.030269, 0.0057961, 0.18, 0.031235, 0.15489, 0.062148, 0.16221, 0.018023, 0.79303, 0.018023, 0.12189, 0.08126, 0.013543, 0.0045144, 0.77197, 0.89582, 0.083404, 0.003089, 0.003089, 0.003089, 0.003089, 0.003089, 0.003089, 0.29181, 0.0060478, 0.48496, 0.068415, 0.1323, 0.0045358, 0.00037799, 0.00037799, 0.00037799, 0.010962, 0.94238, 0.044347, 0.036635, 0.036635, 0.036635, 0.036635, 0.80597, 0.036635, 0.036635, 0.96435, 0.98569, 0.99185, 0.0007779, 0.16725, 0.011668, 0.038117, 0.017114, 0.55853, 0.031116, 0.061454, 0.054453, 0.047452, 0.010891, 0.027681, 0.0027681, 0.0027681, 0.85256, 0.0027681, 0.0027681, 0.074738, 0.030449, 0.0027681, 0.014908, 0.0074541, 0.022362, 0.029817, 0.0074541, 0.90941, 0.0019383, 0.02326, 0.011242, 0.016282, 0.001163, 0.41519, 0.012405, 0.04652, 0.15739, 0.030625, 0.0069779, 0.027136, 0.041868, 0.050008, 0.0027136, 0.089162, 0.025198, 0.039929, 0.00038766, 0.15281, 0.0075848, 0.01227, 0.1227, 0.06581, 0.013162, 0.047963, 0.016731, 0.094588, 0.0087003, 0.010708, 0.021639, 0.097041, 0.00022308, 0.039263, 0.0011154, 0.029001, 0.14099, 0.0035693, 0.11243, 0.0017847, 0.0020565, 0.15012, 0.040102, 0.029819, 0.031876, 0.0020565, 0.053469, 0.004113, 0.047299, 0.078147, 0.075062, 0.004113, 0.39382, 0.087401, 0.96535, 0.86611, 0.13071, 0.00053136, 0.0026568, 0.90336, 0.041062, 0.89285, 0.0015006, 0.012005, 0.0015006, 0.0015006, 0.063024, 0.02701, 0.8406, 0.025473, 0.025473, 0.025473, 0.025473, 0.025473, 0.0063995, 0.020113, 0.088131, 0.076063, 0.083925, 0.00091422, 0.027061, 0.038763, 0.0087765, 0.078623, 0.031815, 0.033643, 0.015359, 0.019199, 0.032729, 0.040774, 0.048636, 0.057596, 0.076611, 0.21484, 0.0068872, 0.017218, 0.055098, 0.012914, 0.15711, 0.14506, 0.029271, 0.050363, 0.017218, 0.03788, 0.027118, 0.44293, 0.015669, 0.04234, 0.1877, 0.11902, 0.10335, 0.09068, 0.017003, 0.22603, 0.19803, 0.73545, 0.22629, 0.028287, 0.0025914, 0.0025914, 0.27987, 0.52346, 0.18917, 0.036111, 0.078222, 0.039493, 0.06164, 0.004473, 0.032402, 0.091423, 0.011564, 0.059785, 0.053894, 0.039166, 0.017128, 0.18928, 0.0049094, 0.018219, 0.036875, 0.080295, 0.014837, 0.00065458, 0.026401, 0.074295, 0.028474, 0.0096885, 0.0048443, 0.012111, 0.0072664, 0.0048443, 0.077508, 0.0024221, 0.62007, 0.053287, 0.15744, 0.029066, 0.016955, 0.0024221, 0.9733, 0.17932, 0.16289, 0.19483, 0.0041066, 0.00045628, 0.36913, 0.04426, 0.043803, 0.00045628, 0.025664, 0.025664, 0.025664, 0.69292, 0.17965, 0.0016992, 0.30076, 0.036533, 0.054375, 0.029736, 0.0016992, 0.00084961, 0.12404, 0.033135, 0.022939, 0.19371, 0.16652, 0.033984, 0.023348, 0.023839, 0.071272, 0.0007373, 0.037848, 0.026543, 0.004178, 0.017204, 0.20251, 0.033178, 0.16786, 0.12509, 0.070043, 0.0046695, 0.18973, 0.0014746, 0.029905, 0.094871, 0.0010312, 0.090746, 0.11653, 0.34133, 0.0072185, 0.027843, 0.035061, 0.045373, 0.050529, 0.091778, 0.06806, 0.12747, 0.094858, 0.053085, 0.0074249, 0.0011797, 0.18875, 0.050031, 0.019221, 0.19409, 0.024356, 0.010409, 0.13656, 0.049476, 0.042953, 0.12235, 0.0061465, 0.00038416, 0.48961, 0.0088356, 0.0009604, 0.00019208, 0.13714, 0.0036495, 0.036111, 0.010949, 0.18363, 0.030861, 0.58635, 0.030861, 0.30861, 0.20735, 0.15314, 7.3061e-05, 0.0040184, 0.01958, 0.17082, 0.01695, 0.037188, 0.15978, 0.020896, 0.017827, 0.092715, 0.0081098, 0.0914, 0.0082124, 0.0041062, 0.75143, 0.0041062, 0.20531, 0.0041062, 0.0041062, 0.016425, 0.011814, 0.075861, 0.050367, 0.25712, 0.019276, 0.036687, 0.025183, 0.028603, 0.0003109, 0.0021763, 0.078037, 0.18157, 0.029225, 0.13618, 0.067466, 0.037532, 0.048494, 0.018209, 0.015236, 0.013006, 0.02081, 0.096803, 0.060386, 0.0001858, 0.025269, 0.17298, 0.11334, 0.010591, 0.076179, 0.0042734, 0.14808, 0.067074, 0.071162, 0.0001858, 0.87702, 0.11439, 0.0054473, 0.0092044, 0.17734, 0.021477, 0.043261, 0.024852, 0.019636, 0.008284, 0.011352, 0.12855, 0.1847, 0.018102, 0.015034, 0.078851, 0.20556, 0.00030681, 0.0033749, 0.050011, 0.0058812, 0.022308, 0.01379, 0.010546, 0.090043, 0.075644, 0.002028, 0.30116, 0.0095316, 0.028392, 0.21253, 0.01014, 0.12736, 0.0026364, 0.088015, 0.014647, 0.062826, 0.015032, 0.016188, 0.14107, 0.0050107, 0.21507, 0.1376, 0.00038544, 0.0019272, 0.0015417, 0.04895, 0.057045, 0.12257, 0.1376, 0.02197, 0.034536, 0.0020805, 0.013315, 0.052012, 0.013315, 0.0037449, 0.12108, 0.20222, 0.16769, 0.0016644, 0.081555, 0.010402, 0.083219, 0.0012483, 0.040361, 0.13273, 0.039113, 0.01408, 0.01408, 0.01408, 0.098563, 0.15489, 0.084483, 0.01408, 0.60546, 0.01408, 0.93997, 0.030322, 0.038966, 0.019483, 0.058449, 0.058449, 0.038966, 0.019483, 0.038966, 0.58449, 0.1169, 0.91851, 0.066801, 0.0005483, 0.089373, 0.13982, 0.0016449, 0.052089, 0.023029, 0.0049347, 0.68812, 0.18122, 0.013318, 0.05898, 0.22165, 0.0042808, 0.00095128, 0.0090372, 0.00047564, 0.0061834, 0.50371, 0.97202, 0.95841, 0.0034468, 0.16889, 0.017234, 0.0034468, 0.0034468, 0.0068936, 0.020681, 0.041361, 0.73761, 0.029062, 0.058124, 0.029062, 0.87186, 0.95388, 0.0065584, 0.0032792, 0.66568, 0.072143, 0.0032792, 0.078701, 0.0065584, 0.059026, 0.075422, 0.029513, 0.0022572, 0.0022572, 0.018058, 0.022572, 0.038373, 0.038373, 0.022572, 0.058688, 0.036116, 0.623, 0.033859, 0.038373, 0.047402, 0.0067717, 0.011286, 0.053259, 0.019533, 0.046392, 0.0293, 0.021365, 0.0062568, 0.064094, 0.00030521, 0.014345, 0.077065, 0.04395, 0.19716, 0.033115, 0.013582, 0.028842, 0.063941, 0.027164, 0.011445, 0.063331, 0.023654, 0.14162, 0.020449, 0.015998, 0.015998, 0.94386, 0.00081764, 0.042517, 0.054782, 0.045788, 0.00081764, 0.0032706, 0.11938, 0.032706, 0.013082, 0.014718, 0.055599, 0.0417, 0.10548, 0.01717, 0.0024529, 0.012265, 0.0081764, 0.0024529, 0.060505, 0.36712, 0.017676, 0.81309, 0.15908, 0.95632, 0.0056293, 0.0056293, 0.95698, 0.008444, 0.014073, 0.0028147, 0.0028147, 0.94068, 0.99244, 0.016144, 0.96866, 0.016144, 0.9587, 0.97738, 0.02819, 0.95845, 0.056654, 0.080369, 0.014932, 0.00043918, 0.00043918, 0.00087835, 0.04787, 0.035134, 0.47782, 0.021959, 0.028986, 0.05841, 0.054458, 0.023276, 0.048309, 0.011858, 0.0026351, 0.036891, 0.050997, 0.020763, 0.07941, 0.088881, 0.0012749, 0.019306, 0.028413, 0.0025499, 0.039887, 0.05719, 0.10655, 0.037884, 0.032238, 0.046626, 0.066114, 0.049904, 0.038612, 0.0581, 0.014024, 0.16155, 0.00018213, 0.0084894, 0.0084894, 0.91685, 0.016979, 0.050936, 0.0084894, 0.21245, 0.017704, 0.48931, 0.0054944, 0.00015262, 0.0067154, 0.053265, 0.016788, 0.0074785, 0.052655, 0.0091573, 0.010073, 0.045481, 0.06517, 0.008089, 0.99056, 0.0029926, 0.0029926, 0.0029926, 0.9262, 0.064619, 0.0043079, 0.96699, 0.11993, 0.001845, 0.84318, 0.001845, 0.033211, 0.95398, 0.95763, 0.97642, 0.78853, 0.011185, 0.04474, 0.1454, 0.97898, 0.011, 0.98019, 0.01273, 0.10225, 0.048351, 0.076202, 0.05944, 0.018438, 0.033266, 0.027335, 0.01947, 0.016504, 0.037779, 0.074268, 0.0043839, 0.036231, 0.055959, 0.073752, 0.040744, 0.0052864, 0.01457, 0.017793, 0.039584, 0.029913, 0.16852, 0.97891, 0.041624, 0.044637, 0.0026782, 0.086039, 0.051556, 0.019529, 0.057805, 0.094743, 0.053453, 0.046758, 0.092399, 0.017074, 0.0037942, 0.0053565, 0.020087, 0.13023, 0.015177, 0.10579, 0.11137, 0.015298, 0.041125, 0.039138, 0.018079, 0.035562, 0.076885, 0.075892, 0.049866, 0.024238, 0.098937, 0.0067548, 0.021059, 0.00099335, 0.0093375, 0.18238, 0.088209, 0.02245, 0.15357, 0.039933, 0.0041294, 0.070201, 0.22093, 0.69788, 0.0020647, 0.0020647, 0.0020647, 0.13166, 0.033171, 0.062259, 0.034192, 0.37356, 0.01531, 0.068894, 0.17402, 0.061239, 0.026026, 0.019392, 0.021377, 0.017101, 0.0042754, 0.0042754, 0.0042754, 0.94485, 0.012503, 0.056264, 0.0062515, 0.91272, 0.0042773, 0.051327, 0.081268, 0.0042773, 0.04705, 0.0042773, 0.0042773, 0.80412, 0.1729, 0.17605, 0.040868, 0.0031437, 0.60044, 0.034536, 0.034536, 0.034536, 0.89794, 0.96227, 0.0018813, 0.022575, 0.00094063, 0.038566, 0.0084657, 0.065844, 0.0075251, 0.021635, 0.18813, 0.55121, 0.093123, 0.0048063, 0.10574, 0.0048063, 0.0048063, 0.13458, 0.076901, 0.081707, 0.58637, 0.0048063, 0.012619, 0.97163, 0.95428, 0.044937, 0.02074, 0.0034567, 0.10024, 0.038024, 0.017284, 0.048394, 0.051851, 0.0034567, 0.58764, 0.082961, 0.059611, 0.022311, 0.048805, 0.050548, 0.0027888, 0.014641, 0.024054, 0.0083665, 0.031026, 0.0055777, 0.019173, 0.041833, 0.065538, 0.0083665, 0.037998, 0.021265, 0.12306, 0.089243, 0.01743, 0.26668, 0.041135, 0.0055703, 0.25066, 0.027851, 0.0055703, 0.072414, 0.094695, 0.53475, 0.02062, 0.96913, 0.18189, 0.015158, 0.18189, 0.030316, 0.015158, 0.45473, 0.060631, 0.015158, 0.015158, 0.015158, 0.070018, 0.046679, 0.093357, 0.023339, 0.070018, 0.023339, 0.63016, 0.0049336, 0.069776, 0.0007048, 0.034535, 0.059908, 0.11841, 0.0042288, 0.033126, 0.0007048, 0.026783, 0.079643, 0.048632, 0.023963, 0.0007048, 0.072595, 0.36297, 0.057794, 0.99016, 0.0037415, 0.02432, 0.11748, 0.013844, 0.04864, 0.007483, 0.0007483, 0.10776, 0.022823, 0.062483, 0.32963, 0.022823, 0.020204, 0.012347, 0.051259, 0.099898, 0.055, 0.033613, 0.033882, 0.06884, 0.02716, 0.030924, 0.00026891, 0.059428, 0.014252, 0.032269, 0.020975, 0.015328, 0.052168, 0.02447, 0.048672, 0.28155, 0.032, 0.032807, 0.0075294, 0.032538, 0.0040336, 0.014252, 0.13284, 0.0063295, 0.11472, 0.0094943, 0.00079119, 0.0023736, 0.00079119, 0.037186, 0.18909, 0.047471, 0.40667, 0.045098, 0.0039559, 0.10206, 0.032439, 0.046803, 0.025019, 0.057371, 0.011431, 0.022862, 0.021352, 0.00021568, 0.0092743, 0.035372, 0.036666, 0.060391, 0.3865, 0.029333, 0.026529, 0.012078, 0.053273, 0.09188, 0.073763, 0.067823, 0.01744, 0.0064594, 0.023254, 0.010335, 0.0239, 0.030359, 0.015502, 0.03811, 0.076866, 0.46637, 0.0239, 0.012919, 0.13565, 0.051675, 0.0055308, 0.62314, 0.057152, 0.0018436, 0.0036872, 0.21201, 0.055308, 0.038716, 0.89908, 0.070516, 0.016277, 0.96032, 0.016277, 0.96001, 0.019658, 0.019658, 0.92391, 0.019658, 0.019658, 0.041368, 0.05602, 0.040507, 0.43954, 0.043092, 0.10601, 0.0017237, 0.067224, 0.13617, 0.0034474, 0.013789, 0.05171, 0.011215, 0.91589, 0.011215, 0.0037383, 0.048598, 0.0074766, 0.0034863, 0.013945, 0.30331, 0.0011621, 0.034863, 0.01627, 0.041836, 0.11737, 0.33585, 0.12435, 0.0046484, 0.96663, 0.051967, 0.025984, 0.051967, 0.025984, 0.80549, 0.99717, 0.96156, 0.027761, 0.94389, 0.015768, 0.015768, 0.80417, 0.14191, 0.015768, 0.063956, 0.030194, 0.045017, 0.0046663, 0.041723, 0.035135, 0.018665, 0.041997, 0.033762, 0.020861, 0.010705, 0.1098, 0.012901, 0.035409, 0.044193, 0.023606, 0.060937, 0.010705, 0.041997, 0.032115, 0.22728, 0.054624, 0.033544, 0.083859, 0.058702, 0.10902, 0.083859, 0.050316, 0.0083859, 0.0083859, 0.0083859, 0.55347, 0.0083859, 0.12771, 0.031927, 0.031927, 0.031927, 0.031927, 0.12771, 0.60661, 0.057635, 0.029512, 0.047566, 0.014235, 0.015971, 0.057635, 0.019096, 0.059371, 0.029165, 0.0024304, 0.021873, 0.057288, 0.034373, 0.024304, 0.029859, 0.040622, 0.014582, 0.049302, 0.015971, 0.046177, 0.023262, 0.27081, 0.03958, 0.25304, 0.0014296, 0.0092924, 0.0021444, 0.0007148, 0.049321, 0.021444, 0.025733, 0.003574, 0.03431, 0.018585, 0.0042888, 0.1015, 0.05218, 0.13796, 0.0014296, 0.0078628, 0.12438, 0.13581, 0.014296, 0.014588, 0.93362, 0.014588, 0.014588, 0.014588, 0.11678, 0.038926, 0.077853, 0.5839, 0.038926, 0.038926, 0.038926, 0.038926, 0.0028493, 0.031342, 0.019945, 0.0014247, 0.85479, 0.089753, 0.0056636, 0.43327, 0.55928, 0.0064257, 0.0064257, 0.98314, 0.061399, 0.0022741, 0.0022741, 0.93464, 0.087116, 0.035805, 0.027014, 0.019022, 0.032449, 0.013907, 0.11429, 0.035805, 0.035965, 0.0073529, 0.0046355, 0.058024, 0.031809, 0.017423, 0.025735, 0.077205, 0.0211, 0.0046355, 0.11429, 0.022219, 0.049232, 0.13139, 0.014226, 0.00015985, 0.019022, 0.85719, 0.13128, 0.0077224, 0.1746, 0.00095932, 0.38181, 0.002878, 0.00095932, 0.11224, 0.21201, 0.074827, 0.039332, 0.025748, 0.0016092, 0.30173, 0.0016092, 0.033794, 0.40874, 0.0024138, 0.077243, 0.071611, 0.0040231, 0.069197, 0.96964, 0.010597, 0.98552, 0.96735, 0.013512, 0.90528, 0.060802, 0.0067558, 0.0067558, 0.98916, 0.031051, 0.01242, 0.0062101, 0.080732, 0.857, 0.0062101, 0.0062101, 0.99677, 0.94482, 0.0015422, 0.99778, 0.02423, 0.058622, 0.064875, 0.066047, 0.6976, 0.00078162, 0.047288, 0.040644, 0.0028106, 0.0028106, 0.064644, 0.0028106, 0.050591, 0.15177, 0.65769, 0.019674, 0.04497, 0.0017739, 0.056765, 0.010643, 0.021287, 0.19158, 0.0035478, 0.65102, 0.012417, 0.049669, 0.042915, 0.021348, 0.041054, 0.066672, 0.0066781, 0.032624, 0.045324, 0.039521, 0.009634, 0.061088, 0.042806, 0.023976, 0.00010948, 0.088239, 0.011714, 0.028464, 0.042368, 0.1201, 0.013685, 0.027588, 0.020363, 0.023976, 0.088129, 0.046966, 0.0038317, 0.050797, 0.19338, 0.077163, 0.010822, 0.00070576, 0.00023525, 0.062342, 0.01882, 0.085161, 0.033641, 0.51732, 0.30897, 0.0029426, 0.042667, 0.076507, 0.56497, 0.97022, 0.041495, 0.11317, 0.030553, 0.033962, 0.040822, 0.28479, 0.13572, 0.059802, 0.091913, 0.003493, 0.062832, 0.014435, 0.086989, 0.027564, 0.11577, 0.05267, 0.054662, 0.038855, 0.213, 0.015077, 0.17893, 0.083355, 0.047223, 0.00033209, 0.058182, 0.029623, 0.084816, 0.07163, 0.019127, 0.024983, 0.015614, 0.025178, 0.018932, 0.035522, 0.024202, 0.017176, 0.048209, 0.00078071, 0.030643, 0.013858, 0.023421, 0.081975, 0.00019518, 0.026544, 0.092124, 0.029862, 0.023617, 0.10266, 0.0058554, 0.16493, 0.024007, 0.051722, 0.026544, 0.79467, 0.032703, 0.0032703, 0.0032703, 0.0032703, 0.013081, 0.065405, 0.049054, 0.032703, 0.99601, 0.010271, 0.97571, 0.0051353, 0.90049, 0.073013, 0.012169, 0.032096, 0.89869, 0.99508, 0.0029353, 0.98382, 0.01144, 0.99581, 0.10135, 0.033784, 0.033784, 0.6419, 0.13514, 0.0014779, 0.024138, 0.081775, 0.043843, 0.043843, 0.054188, 0.2468, 0.00049262, 0.12316, 0.23104, 0.073893, 0.03005, 0.045814, 0.93745, 0.03024, 0.03024, 0.99142, 0.97323, 0.0016883, 0.0016883, 0.0016883, 0.0016883, 0.028701, 0.10467, 0.60947, 0.0033765, 0.0016883, 0.054025, 0.09792, 0.094543, 0.96323, 0.041332, 0.037574, 0.060119, 0.14654, 0.40956, 0.011272, 0.018787, 0.03006, 0.013151, 0.0018787, 0.18224, 0.01503, 0.022545, 0.0093936, 0.0018787, 0.070492, 0.0078325, 0.90074, 0.0078325, 0.0078325, 0.016928, 0.016928, 0.30471, 0.050784, 0.59248, 0.98703, 0.027223, 0.16334, 0.013611, 0.0068057, 0.78946, 0.87648, 0.015377, 0.015377, 0.076884, 0.030831, 0.092492, 0.030831, 0.73994, 0.030831, 0.061661, 0.018457, 0.95974, 0.17832, 0.7727, 0.079202, 0.016124, 0.090016, 0.14537, 0.040226, 0.065218, 0.024186, 0.076088, 0.074726, 0.099857, 0.047232, 0.021211, 0.15932, 0.061187, 0.94103, 0.007589, 0.007589, 0.037945, 0.042914, 0.076291, 0.77722, 0.10013, 0.93352, 0.029172, 0.029172, 0.035165, 0.91428, 0.010014, 0.0025035, 0.0025035, 0.017524, 0.040055, 0.27788, 0.050069, 0.59582, 0.95152, 0.94673, 0.10608, 0.089704, 0.11623, 0.024961, 0.034322, 0.0054602, 0.036662, 0.031201, 0.013261, 0.4961, 0.043682, 0.00078003, 0.022725, 0.011363, 0.95446, 0.58322, 0.033327, 0.0023805, 0.004761, 0.0071414, 0.014283, 0.35231, 0.91689, 0.0057306, 0.0057306, 0.0057306, 0.017192, 0.045845, 0.88426, 0.10316, 0.0093132, 0.9872, 0.97714, 0.0020743, 0.0020743, 0.22195, 0.072601, 0.020743, 0.53932, 0.13898, 0.093187, 0.031062, 0.044066, 0.027551, 0.025776, 0.048966, 0.040902, 0.040863, 0.060812, 0.044683, 0.018251, 0.04831, 0.0074858, 0.030445, 0.055603, 0.041018, 0.062047, 0.031525, 0.037468, 0.078331, 0.044143, 0.087476, 0.046509, 0.046509, 0.23255, 0.55811, 0.023255, 0.023255, 0.023255, 0.079137, 0.00071943, 0.00071943, 0.021583, 0.10648, 0.082015, 0.092806, 0.16619, 0.030216, 0.057554, 0.33669, 0.02518, 0.057995, 0.028998, 0.028998, 0.086993, 0.028998, 0.028998, 0.72494, 0.05859, 0.012335, 0.022467, 0.072247, 0.04185, 0.00044053, 0.0022026, 0.080617, 0.00044053, 0.033921, 0.12203, 0.00044053, 0.0022026, 0.0088106, 0.014978, 0.2837, 0.030837, 0.014978, 0.19119, 0.0057269, 0.054751, 0.00071105, 0.0014221, 0.042663, 0.49489, 0.18132, 0.029153, 0.11377, 0.0092436, 0.070394, 0.00071105, 0.035443, 0.029214, 0.12813, 0.057835, 0.059615, 0.012753, 0.1259, 0.0087495, 0.18255, 0.030549, 0.12887, 0.013495, 0.187, 0.94414, 0.0096341, 0.038536, 0.95576, 0.038617, 0.011033, 0.94335, 0.030167, 0.724, 0.030167, 0.030167, 0.030167, 0.15083, 0.030167, 0.99598, 0.0015183, 0.96569, 0.01822, 0.0054263, 0.83022, 0.0054263, 0.027131, 0.016279, 0.0054263, 0.016279, 0.059689, 0.032558, 0.0054263, 0.013423, 0.75171, 0.013423, 0.1745, 0.026847, 0.013423, 0.96405, 0.014832, 0.014832, 0.75271, 0.0065339, 0.0013068, 0.0013068, 0.041817, 0.010454, 0.0013068, 0.11892, 0.0013068, 0.0065339, 0.058805, 0.074802, 0.099327, 0.078235, 0.14887, 0.020601, 0.00024525, 0.0044145, 0.035562, 0.16873, 0.045126, 0.05837, 0.023544, 0.22073, 0.013244, 0.0080933, 0.017782, 0.21771, 0.042774, 0.0081703, 0.14706, 0.10429, 0.076897, 0.0004806, 0.38448, 0.010824, 0.36189, 0.081903, 0.0043296, 0.13855, 0.12809, 0.0003608, 0.065666, 0.20818, 0.98228, 0.09291, 0.90376, 0.10969, 0.88512, 0.0037826, 0.00045479, 0.069734, 0.082771, 0.077769, 0.021375, 0.14023, 0.0087926, 0.034564, 0.10612, 0.070037, 0.075192, 0.052452, 0.19571, 0.053968, 0.010915, 0.96227, 0.094638, 0.0014539, 0.00013218, 0.03159, 0.47319, 0.021016, 0.096224, 0.00013218, 0.03582, 0.00013218, 0.19205, 0.051549, 0.0018505, 0.042894, 0.069291, 0.0032996, 0.052793, 0.023097, 0.049493, 0.7556, 0.0032996, 0.0032996, 0.97164, 0.13976, 0.0010128, 0.021268, 0.0010128, 0.0010128, 0.16609, 0.055702, 0.0010128, 0.56005, 0.053676, 0.017502, 0.0038893, 0.062229, 0.14585, 0.0038893, 0.71175, 0.0019447, 0.0019447, 0.0077787, 0.038893, 0.042734, 0.10684, 0.72648, 0.042734, 0.021367, 0.021367, 0.042734, 0.12272, 0.023493, 0.046368, 0.12643, 0.074498, 0.051932, 0.0083462, 0.058114, 0.040495, 0.010819, 0.0040185, 0.093663, 0.017311, 0.068933, 0.23277, 0.017929, 0.0015456, 0.97199, 0.32226, 0.15343, 0.026799, 0.1829, 0.022779, 0.29144, 0.97142, 0.98238, 0.98118, 0.041302, 0.041302, 0.041302, 0.041302, 0.041302, 0.020651, 0.020651, 0.57823, 0.14456, 0.019062, 0.89593, 0.038125, 0.019062, 0.019062, 0.025147, 0.025147, 0.20117, 0.025147, 0.70411, 0.025147, 0.00029958, 0.0089875, 0.00089875, 0.49341, 0.0017975, 0.00089875, 0.017675, 0.0014979, 0.24116, 0.011384, 0.0065908, 0.0044938, 0.066508, 0.020072, 0.00059917, 0.12313, 0.83964, 0.06997, 0.034985, 0.017492, 0.017492, 0.042018, 0.072724, 0.0048483, 0.071108, 0.011313, 0.014545, 0.0016161, 0.0048483, 0.035554, 0.046866, 0.059795, 0.040402, 0.0016161, 0.0080804, 0.058179, 0.0016161, 0.45897, 0.067876, 0.99361, 0.0043579, 0.041712, 0.06952, 0.06952, 0.31979, 0.12514, 0.25027, 0.027808, 0.013904, 0.013904, 0.027808, 0.013904, 0.98201, 0.026031, 0.57269, 0.36444, 0.99945, 0.002182, 0.0087281, 0.002182, 0.004364, 0.97318, 0.002182, 0.002182, 0.8826, 0.0072942, 0.0072942, 0.08753, 0.0072942, 0.0046921, 0.01173, 0.010557, 0.16657, 0.076247, 0.010557, 0.001173, 0.016423, 0.001173, 0.052787, 0.021115, 0.10909, 0.022288, 0.034018, 0.3871, 0.071555, 0.98496, 0.021484, 0.90234, 0.021484, 0.021484, 0.97495, 0.96953, 0.00039394, 0.26709, 0.72564, 0.0063031, 0.030758, 0.92273, 0.016652, 0.033304, 0.91586, 0.016652, 0.00070997, 0.0042598, 0.10792, 0.00070997, 0.0014199, 0.15122, 0.00070997, 0.68796, 0.01207, 0.01065, 0.018459, 0.0042598, 0.12758, 0.2215, 0.0092143, 0.60389, 0.027997, 0.0021264, 0.0070879, 0.00035439, 0.97337, 0.0090127, 0.0090127, 0.96954, 0.0095187, 0.0013598, 0.0067991, 0.0095187, 0.0013598, 0.0013598, 0.98153, 0.0090049, 0.96412, 0.0090955, 0.018191, 0.0092104, 0.0030701, 0.13816, 0.073683, 0.0061403, 0.76753, 0.95533, 0.018732, 0.018732, 0.95194, 0.00066802, 0.00066802, 0.092855, 0.016032, 0.00066802, 0.001336, 0.07415, 0.17168, 0.024049, 0.14162, 0.001336, 0.00066802, 0.00066802, 0.0046761, 0.42419, 0.0033401, 0.041417, 0.0061885, 0.79832, 0.0061885, 0.055697, 0.092828, 0.030943, 0.0061885, 0.94373, 0.81657, 0.059118, 0.048033, 0.029559, 0.033254, 0.0036949, 0.0036949, 0.99483, 0.0023686, 0.0023686, 0.078322, 0.019581, 0.76364, 0.13706, 0.10649, 0.10649, 0.073724, 0.69218, 0.016383, 0.14323, 0.76486, 0.088804, 0.96248, 0.021553, 0.010776, 0.010776, 0.010776, 0.93754, 0.099175, 0.13541, 0.052448, 0.018119, 0.13223, 0.00031787, 0.04927, 0.0050859, 0.011443, 0.04927, 0.050859, 0.096314, 0.018754, 0.055945, 0.020344, 0.18564, 0.019072, 0.0062076, 0.015519, 0.077596, 0.0031038, 0.67043, 0.0062076, 0.0031038, 0.21416, 0.99042, 0.015479, 0.016886, 0.029551, 0.011257, 0.071767, 0.0042216, 0.029551, 0.066138, 0.071767, 0.5291, 0.060509, 0.092874, 0.0033527, 0.98904, 0.0033527, 0.96783, 0.88691, 0.11111, 0.0015892, 0.0015892, 0.0015892, 0.68175, 0.31306, 0.00441, 0.1764, 0.81585, 0.98346, 0.029036, 0.022631, 0.068746, 0.000427, 0.053801, 0.034587, 0.070027, 0.000427, 0.068746, 0.22503, 0.023058, 0.024766, 0.011529, 0.02989, 0.05679, 0.047824, 0.033733, 0.15372, 0.017507, 0.027755, 0.77787, 0.03382, 0.03382, 0.13528, 0.048316, 0.024158, 0.036237, 0.66435, 0.060395, 0.14495, 0.036128, 0.030613, 0.032819, 0.25704, 0.038886, 0.0041368, 0.034198, 0.017099, 0.038059, 0.16078, 0.013789, 0.014893, 0.012411, 0.040265, 0.033922, 0.030613, 0.0060674, 0.028682, 0.026476, 0.096802, 0.046333, 0.96394, 0.017851, 0.075663, 0.25042, 0.088843, 0.012692, 0.056625, 0.098606, 0.0034171, 0.054673, 0.034659, 0.039052, 0.00048815, 0.014156, 0.0009763, 0.014645, 0.015133, 0.02099, 0.20746, 0.011716, 0.39617, 0.034174, 0.032909, 0.12404, 0.19872, 0.02658, 0.065817, 0.075943, 0.045566, 0.072079, 0.056634, 0.015446, 0.0017162, 0.020594, 0.8272, 0.0051485, 0.05334, 0.012123, 0.041218, 0.0072737, 0.88254, 0.0024246, 0.0063035, 0.015759, 0.022062, 0.048852, 0.029942, 0.029942, 0.0015759, 0.023638, 0.047276, 0.094553, 0.020486, 0.14025, 0.0015759, 0.49483, 0.012607, 0.011031, 0.0067219, 0.0067219, 0.060498, 0.7663, 0.10083, 0.0067219, 0.053776, 0.001766, 0.001766, 0.0052981, 0.99074, 0.99143, 0.023812, 0.023812, 0.11906, 0.26194, 0.42862, 0.023812, 0.023812, 0.023812, 0.023812, 0.0060731, 0.0060731, 0.030365, 0.091096, 0.030365, 0.024292, 0.80165, 0.34199, 0.19942, 0.026307, 0.40733, 0.023761, 0.95419, 0.049975, 0.11292, 0.00024026, 0.00024026, 0.09106, 0.7453, 0.98355, 0.03332, 0.0028311, 0.96344, 0.010656, 0.016804, 0.079101, 0.094266, 0.51068, 0.016804, 0.013525, 0.13935, 0.0008197, 0.0057379, 0.030329, 0.015165, 0.063937, 0.0024591, 0.022216, 0.022216, 0.022216, 0.91088, 0.022216, 0.022216, 0.0093123, 0.013525, 0.021507, 0.022837, 0.016407, 0.0053213, 0.03991, 0.016629, 0.086028, 0.00022172, 0.5053, 0.013303, 0.038136, 0.073168, 0.0062082, 0.016629, 0.034367, 0.043901, 0.037249, 0.033612, 0.016806, 0.0084031, 0.20167, 0.025209, 0.016806, 0.0084031, 0.65544, 0.0084031, 0.016806, 0.062552, 0.033777, 0.038996, 7.2482e-05, 0.075237, 0.018555, 0.14141, 0.0091328, 0.025804, 0.013192, 0.041532, 0.034502, 7.2482e-05, 0.17997, 0.075817, 0.049505, 0.032037, 0.065234, 0.022904, 0.048128, 0.03153, 0.9799, 0.98668, 0.0058384, 0.95941, 0.99081, 0.0044631, 0.031087, 0.001943, 0.0097148, 0.0097148, 0.023316, 0.0077718, 0.0077718, 0.001943, 0.001943, 0.90153, 0.001943, 0.0078649, 0.039324, 0.93592, 0.0078649, 0.016337, 0.9639, 0.014826, 0.0027799, 0.0064865, 0.079691, 0.0092664, 0.87846, 0.0027799, 0.0046332, 0.0057658, 0.8937, 0.011532, 0.0057658, 0.063424, 0.0057658, 0.0057658, 0.0057658, 0.0057658, 0.0057658, 0.95915, 0.95323, 0.96667, 0.066828, 0.92987, 0.95293, 0.0092783, 0.9835, 0.082042, 0.91678, 0.0095656, 0.67916, 0.0019131, 0.30801, 0.98295, 0.011896, 0.96358, 0.011896, 0.0092066, 0.037484, 0.034196, 0.023674, 0.012166, 0.072995, 0.035511, 0.00065762, 0.096998, 0.013481, 0.42942, 0.036498, 0.036827, 0.00065762, 0.042745, 0.025647, 0.053596, 0.00032881, 0.037155, 0.043784, 0.8027, 0.029189, 0.014595, 0.087567, 0.014595, 0.014595, 0.95809, 0.97005, 0.0055066, 0.015733, 0.75284, 0.02124, 0.118, 0.047987, 0.03776, 0.015025, 0.96163, 0.015025, 0.94032, 0.033583, 0.9782, 0.0095015, 0.038006, 0.86463, 0.028504, 0.028504, 0.0095015, 0.0095015, 0.0095015, 0.0095015, 0.0002495, 0.074601, 0.042415, 0.0097305, 0.039421, 0.099301, 0.001996, 0.0499, 0.15569, 0.12151, 0.079591, 0.000499, 0.26297, 0.000998, 0.052395, 0.0082335, 0.009704, 0.04852, 0.93159, 0.072943, 0.088312, 0.009634, 0.044959, 0.065373, 0.17181, 0.00045876, 0.26333, 0.22525, 0.047941, 0.0094046, 0.019933, 0.019933, 0.099667, 0.019933, 0.75747, 0.0598, 0.019933, 0.76322, 0.22979, 0.0041033, 0.0080027, 0.048016, 0.0040014, 0.86829, 0.064022, 0.0040014, 0.0040014, 0.014882, 0.059528, 0.0074411, 0.7069, 0.037205, 0.0074411, 0.0074411, 0.14138, 0.014882, 0.0062721, 0.0025088, 0.60306, 0.018816, 0.0072129, 0.26249, 0.089691, 0.0047041, 0.0047041, 0.75814, 0.0095449, 0.22703, 0.00068178, 0.0013636, 0.0020453, 0.0021118, 0.78032, 0.15522, 0.0010559, 0.058075, 0.0010559, 0.0010559, 0.028705, 0.0057411, 0.022964, 0.034447, 0.011482, 0.88413, 0.97605, 0.014248, 0.00041906, 0.007124, 0.00041906, 0.027658, 0.070402, 0.015086, 0.047772, 0.0012572, 0.6311, 0.014248, 0.011734, 0.058668, 0.02682, 0.01341, 0.049868, 0.0096383, 0.037023, 0.018511, 0.0037023, 0.18511, 0.0018511, 0.62939, 0.0018511, 0.024065, 0.0037023, 0.040725, 0.01666, 0.03147, 0.0018511, 0.058444, 0.0088552, 0.92803, 0.001771, 0.0021111, 0.014602, 0.20812, 0.00017593, 0.0010556, 0.092186, 0.26231, 0.12561, 0.06738, 0.14936, 0.010732, 0.066148, 0.021625, 0.82174, 0.10812, 0.021625, 0.35353, 0.04403, 0.027195, 0.003885, 0.5413, 0.0259, 0.9472, 0.0062728, 0.018818, 0.0062728, 0.0062728, 0.012546, 0.0062728, 0.97601, 0.019717, 0.0016431, 0.0016431, 0.021701, 0.043403, 0.17361, 0.021701, 0.065104, 0.60764, 0.021701, 0.021701, 0.018808, 0.0017098, 0.0017098, 0.011969, 0.85662, 0.0017098, 0.0034196, 0.10601, 0.95014, 0.99739, 0.0028444, 0.99554, 0.93303, 0.048469, 0.0056604, 0.9, 0.0056604, 0.016981, 0.0056604, 0.022642, 0.0056604, 0.033962, 0.033307, 0.0089255, 0.029171, 0.5044, 0.052682, 0.00065308, 0.00021769, 0.020463, 0.11712, 0.025035, 0.0017416, 0.011973, 0.012191, 0.015892, 0.0097963, 0.018286, 0.078152, 0.059866, 0.17173, 0.00077705, 0.020203, 0.031082, 0.10179, 0.00077705, 0.077705, 0.0069935, 0.019426, 0.29373, 0.0062164, 0.17872, 0.03963, 0.051286, 0.96728, 0.99399, 0.9916, 0.98745, 0.080203, 0.91732, 0.093697, 0.093697, 0.031232, 0.052054, 0.70794, 0.010411, 0.010411, 0.92506, 0.0008827, 0.073264, 0.0088405, 0.78451, 0.0075308, 0.1254, 0.059264, 0.00032743, 0.0085131, 0.0049114, 0.026562, 0.060948, 0.024829, 0.020941, 0.028061, 0.11529, 0.035557, 0.028155, 0.027359, 0.01738, 0.13155, 0.026562, 0.050969, 0.076173, 0.027593, 0.058746, 0.014897, 0.033636, 0.084418, 0.046987, 0.063384, 0.78842, 0.0014283, 0.13855, 0.0042849, 0.0042849, 0.0014283, 0.0071415, 0.021425, 0.034279, 0.98109, 0.0035377, 0.026061, 0.037146, 0.06356, 0.075824, 0.03408, 0.01474, 0.024174, 0.037263, 0.031721, 0.03408, 0.099644, 0.012028, 0.022169, 0.047169, 0.13879, 0.021816, 0.027476, 0.029245, 0.0025943, 0.014504, 0.045518, 0.049527, 0.050235, 0.025589, 0.031721, 0.011101, 0.67159, 0.016651, 0.17761, 0.0055503, 0.11656, 0.0092297, 0.027689, 0.0092297, 0.95066, 0.96559, 0.020544, 0.9957, 0.0025662, 0.021634, 0.024724, 0.22208, 0.11921, 0.017219, 0.003532, 0.074614, 0.21104, 0.069316, 0.0052981, 0.00044151, 0.038411, 0.093158, 0.098897, 0.0071825, 0.0071825, 0.984, 0.90973, 0.064981, 0.019648, 0.96274, 0.019648, 0.0036421, 0.99431, 0.98909, 0.011517, 0.052977, 0.93285, 0.004784, 0.016744, 0.002392, 0.97355, 0.017443, 0.0021804, 0.0021804, 0.0043609, 0.15481, 0.25293, 0.054511, 0.50804, 0.0021804, 0.011405, 0.0012672, 0.0088707, 0.13433, 0.15587, 0.30287, 0.38651, 0.063426, 0.076111, 0.60254, 0.050741, 0.10782, 0.095139, 0.019344, 0.010908, 0.041596, 0.097736, 0.013671, 0.023489, 0.050686, 0.052649, 0.026834, 0.086391, 0.034615, 0.032579, 0.059776, 0.066611, 0.039341, 0.026761, 0.052577, 0.037669, 0.077229, 0.01978, 0.047922, 0.056867, 0.0017453, 0.023489, 0.085801, 0.066622, 0.03432, 0.0025236, 0.12416, 0.046938, 0.068641, 0.040882, 0.0045424, 0.00050471, 0.24075, 0.0015141, 0.13123, 0.02574, 0.064098, 0.010094, 0.046434, 0.0015141, 0.003533, 0.03484, 0.01742, 0.13936, 0.01742, 0.01742, 0.45292, 0.15678, 0.0871, 0.01742, 0.01742, 0.05226, 0.061582, 0.15395, 0.030791, 0.43107, 0.030791, 0.15395, 0.030791, 0.092373, 0.13257, 0.64706, 0.063127, 0.047346, 0.10416, 0.0031564, 0.93114, 0.010346, 0.010346, 0.010346, 0.020692, 0.010346, 0.010346, 0.019588, 0.95983, 0.054681, 0.010043, 0.0044637, 0.36603, 0.029014, 0.036826, 0.0078115, 0.053565, 0.10936, 0.10825, 0.034594, 0.11383, 0.023435, 0.046869, 0.013913, 0.0011594, 0.34434, 0.0011594, 0.47651, 0.0092752, 0.13449, 0.01855, 0.2491, 0.10769, 0.0010878, 0.025019, 0.19362, 0.12509, 0.29805, 0.017031, 0.93673, 0.017031, 0.017031, 0.40153, 0.47454, 0.036503, 0.036503, 0.0028858, 0.001649, 0.11255, 0.0037103, 0.0078329, 0.011955, 0.11914, 0.095644, 0.03834, 0.013192, 0.0020613, 0.0086574, 0.087811, 0.10265, 0.33104, 0.061014, 0.12293, 0.0027939, 0.019557, 0.61746, 0.0027939, 0.11176, 0.11455, 0.0027939, 0.061025, 0.0016493, 0.0016493, 0.032986, 0.56077, 0.092362, 0.07422, 0.018143, 0.0016493, 0.085765, 0.037934, 0.032986, 0.064516, 0.034839, 0.050322, 0.0025806, 0.0012903, 0.0012903, 0.021935, 0.82193, 0.0012903, 0.023998, 0.95993, 0.028709, 0.079619, 0.026029, 0.00038278, 0.088806, 0.014546, 0.021819, 0.088806, 0.058566, 0.07426, 0.022584, 0.017608, 0.063542, 0.00038278, 0.088806, 0.32575, 0.0011683, 0.010515, 0.019862, 0.0011683, 0.10398, 0.80499, 0.058417, 0.0046645, 0.0023322, 0.0046645, 0.037316, 0.1376, 0.80229, 0.009329, 0.97304, 0.95424, 0.020625, 0.061876, 0.10313, 0.59814, 0.20625, 0.57573, 0.060604, 0.21211, 0.030302, 0.030302, 0.060604, 0.18976, 0.80571, 0.067881, 0.067881, 0.67881, 0.03394, 0.03394, 0.067881, 0.03394, 0.96942, 0.0096903, 0.18412, 0.74615, 0.048452, 0.060442, 0.0018888, 0.0037776, 0.85375, 0.047221, 0.03211, 0.027508, 0.52264, 0.027508, 0.24757, 0.027508, 0.13754, 0.02912, 0.019414, 0.48534, 0.0097068, 0.038827, 0.1456, 0.0097068, 0.0097068, 0.0097068, 0.048534, 0.15531, 0.0097068, 0.97549, 0.024058, 0.86609, 0.024058, 0.072174, 0.024058, 0.011868, 0.011868, 0.97319, 0.80113, 0.038149, 0.11445, 0.0045808, 0.0061078, 0.01985, 0.0397, 0.0015269, 0.01985, 0.015269, 0.029012, 0.03512, 0.044281, 0.015269, 0.0015269, 0.15575, 0.56191, 0.048862, 0.95428, 0.025938, 0.025938, 0.025938, 0.72627, 0.077814, 0.10375, 0.0017036, 0.89608, 0.086883, 0.013629, 0.024708, 0.028661, 0.0029649, 0.00098831, 0.00098831, 0.14429, 0.00098831, 0.52183, 0.025696, 0.077089, 0.030638, 0.063252, 0.018778, 0.020755, 0.038544, 0.068401, 0.00034372, 0.062558, 0.022342, 0.053277, 0.089368, 0.10209, 0.033341, 0.0010312, 0.0041247, 0.10449, 0.093493, 0.035747, 0.1753, 0.02028, 0.091774, 0.019592, 0.021998, 0.96942, 0.95393, 0.018345, 0.97576, 0.9622, 0.033483, 0.018054, 0.045957, 0.00065652, 0.00755, 0.0055805, 0.010504, 0.021665, 0.056461, 0.076813, 0.021994, 0.035452, 0.022978, 0.043331, 0.056461, 0.026589, 0.031841, 0.060072, 0.010176, 0.10865, 0.022322, 0.23405, 0.049896, 0.97844, 0.92408, 0.031865, 0.01762, 0.0027108, 0.0013554, 0.5164, 0.12199, 0.28192, 0.0013554, 0.051505, 0.0054216, 0.0057933, 0.83713, 0.043449, 0.052139, 0.0028966, 0.0028966, 0.055036, 0.0028966, 0.93991, 0.019609, 0.0026145, 0.0065362, 0.013072, 0.015687, 0.015198, 0.95746, 0.006827, 0.98991, 0.022149, 0.95241, 0.01318, 0.01318, 0.9753, 0.99561, 0.021496, 0.021496, 0.021496, 0.92435, 0.021496, 0.096271, 0.077017, 0.0096271, 0.038508, 0.77017, 0.0096271, 0.95802, 0.92602, 0.029872, 0.9886, 0.034177, 0.38674, 0.01924, 0.30093, 0.17316, 0.0018671, 0.017859, 0.0090109, 0.056907, 0.97431, 0.0047628, 0.015876, 0.94145, 0.0031752, 0.0095257, 0.022227, 0.0027861, 0.0083582, 0.0027861, 0.019502, 0.01393, 0.0055721, 0.87761, 0.0055721, 0.0027861, 0.058507, 0.94915, 0.96838, 0.026007, 0.019505, 0.94275, 0.024131, 0.096525, 0.048263, 0.072394, 0.024131, 0.096525, 0.62741, 0.02835, 0.0405, 0.002025, 0.10733, 0.054676, 0.002025, 0.60346, 0.00405, 0.038475, 0.11138, 0.00405, 0.002025, 0.087789, 0.086994, 0.065776, 0.065776, 0.029573, 0.11232, 0.040845, 0.0014587, 0.0062328, 0.04111, 0.057288, 0.019494, 0.11935, 0.11378, 0.10941, 0.042569, 0.094831, 0.85875, 0.010537, 0.026342, 0.77634, 0.1882, 0.037421, 0.78584, 0.14968, 0.97413, 0.18604, 0.65113, 0.093019, 0.40413, 0.36479, 0.23008, 0.96881, 0.020183, 0.97738, 0.0098814, 0.97826, 0.99176, 0.0099862, 0.023967, 0.017975, 0.0039945, 0.0039945, 0.20172, 0.0099862, 0.725, 0.93428, 0.035934, 0.067995, 0.068653, 0.014476, 0.21802, 0.031585, 0.062731, 0.026321, 0.01996, 0.001974, 0.00021934, 0.018644, 0.031365, 0.0043868, 0.016231, 0.10506, 0.00065801, 0.065582, 0.2461, 0.035147, 0.021629, 0.11587, 0.011973, 0.077246, 0.19002, 0.042099, 0.00038623, 0.00038623, 0.0096557, 0.033216, 0.00038623, 0.09733, 0.0015449, 0.36228, 0.045272, 0.054326, 0.054326, 0.018109, 0.0090544, 0.8149, 0.96688, 0.99098, 0.0047416, 0.97677, 0.013566, 0.0076134, 0.14466, 0.26647, 0.025378, 0.41366, 0.020302, 0.08121, 0.0025378, 0.032991, 0.0050756, 0.61108, 0.051641, 0.094675, 0.23669, 0.92159, 0.034133, 0.93768, 0.022617, 0.94989, 0.00086605, 0.027714, 0.13164, 0.081409, 0.081409, 0.0095266, 0.43043, 0.23643, 0.040236, 0.049624, 0.018777, 0.16765, 0.0093883, 0.084495, 0.08986, 0.42516, 0.114, 0.98315, 0.020625, 0.94873, 0.020625, 0.0241, 0.073192, 0.50431, 0.018744, 0.00089259, 0.020529, 0.13121, 0.019637, 0.11782, 0.089259, 0.0053356, 0.028012, 0.0013339, 0.090706, 0.15073, 0.50689, 0.073365, 0.042685, 0.098709, 0.0013339, 0.0013339, 0.1599, 0.07995, 0.039975, 0.039975, 0.039975, 0.039975, 0.59962, 0.99686, 0.0010341, 0.097216, 0.80689, 0.048608, 0.019443, 0.0097216, 0.98745, 0.074118, 0.37909, 0.057107, 0.068043, 0.41919, 0.019507, 0.0097534, 0.88756, 0.02926, 0.0048767, 0.02926, 0.019507, 0.95597, 0.021976, 0.010988, 0.0015556, 0.10889, 0.037334, 0.45735, 0.29556, 0.07778, 0.0015556, 0.017112, 0.0015556, 0.41966, 0.00072858, 0.014572, 0.56392, 0.94058, 0.044437, 0.95954, 0.0016953, 0.0016953, 0.030515, 0.0016953, 0.0016953, 0.0016953, 0.0016953, 0.0016953, 0.019762, 0.0021958, 0.037328, 0.22836, 0.0021958, 0.70923, 0.97945, 0.93152, 0.027398, 0.98422, 0.0037281, 0.0074562, 0.050944, 0.0042454, 0.021227, 0.059435, 0.016981, 0.025472, 0.81935, 0.16248, 0.032497, 0.71493, 0.032497, 0.064993, 0.028085, 0.92681, 0.028085, 0.12367, 0.0073534, 0.48198, 0.040109, 0.043452, 0.1825, 0.0060164, 0.027408, 0.085567, 0.001337, 0.0052663, 0.0052663, 0.96373, 0.0052663, 0.0052663, 0.0052663, 0.010533, 0.95449, 0.96799, 0.016982, 0.015739, 0.97585, 0.99441, 0.023972, 0.062378, 0.17032, 0.029871, 0.0094132, 0.01343, 0.036523, 0.011045, 0.051584, 0.050957, 0.013932, 0.2711, 0.033134, 0.00062755, 0.027487, 0.021211, 0.031252, 0.040037, 0.10166, 0.049036, 0.88265, 0.049036, 0.0098072 ] | |
}, | |
"R": 30, | |
"lambda.step": 0.1, | |
"plot.opts": { | |
"xlab": "PC1", | |
"ylab": "PC2" | |
}, | |
"topic.order": [ 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 ] | |
} |
This file contains 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 distribution"); | |
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