Skip to content

Instantly share code, notes, and snippets.

@loveice622
Created November 4, 2017 21:50
Show Gist options
  • Save loveice622/8bf8234eec9b50e5daef679803f27615 to your computer and use it in GitHub Desktop.
Save loveice622/8bf8234eec9b50e5daef679803f27615 to your computer and use it in GitHub Desktop.
fresh block
license: mit
(function(exports){
crossfilter.version = "1.1.1";
function crossfilter_identity(d) {
return d;
}
crossfilter.permute = permute;
function permute(array, index) {
for (var i = 0, n = index.length, copy = new Array(n); i < n; ++i) {
copy[i] = array[index[i]];
}
return copy;
}
var bisect = crossfilter.bisect = bisect_by(crossfilter_identity);
bisect.by = bisect_by;
function bisect_by(f) {
// Locate the insertion point for x in a to maintain sorted order. The
// arguments lo and hi may be used to specify a subset of the array which
// should be considered; by default the entire array is used. If x is already
// present in a, the insertion point will be before (to the left of) any
// existing entries. The return value is suitable for use as the first
// argument to `array.splice` assuming that a is already sorted.
// Incomparable values such as NaN and undefined are assumed to be at the end
// of the array.
//
// The returned insertion point i partitions the array a into two halves so
// that all v < x for v in a[lo:i] for the left side and all v >= x for v in
// a[i:hi] for the right side.
function bisectLeft(a, x, lo, hi) {
while (lo < hi) {
var mid = lo + hi >>> 1,
y = f(a[mid]);
if (x <= y || !(y <= y)) hi = mid;
else lo = mid + 1;
}
return lo;
}
// Similar to bisectLeft, but returns an insertion point which comes after (to
// the right of) any existing entries of x in a.
//
// The returned insertion point i partitions the array into two halves so that
// all v <= x for v in a[lo:i] for the left side and all v > x for v in
// a[i:hi] for the right side.
function bisectRight(a, x, lo, hi) {
while (lo < hi) {
var mid = lo + hi >>> 1,
y = f(a[mid]);
if (x < y || !(y <= y)) hi = mid;
else lo = mid + 1;
}
return lo;
}
bisectRight.right = bisectRight;
bisectRight.left = bisectLeft;
return bisectRight;
}
var heap = crossfilter.heap = heap_by(crossfilter_identity);
heap.by = heap_by;
function heap_by(f) {
// Builds a binary heap within the specified array a[lo:hi]. The heap has the
// property such that the parent a[lo+i] is always less than or equal to its
// two children: a[lo+2*i+1] and a[lo+2*i+2].
function heap(a, lo, hi) {
var n = hi - lo,
i = (n >>> 1) + 1;
while (--i > 0) sift(a, i, n, lo);
return a;
}
// Sorts the specified array a[lo:hi] in descending order, assuming it is
// already a heap.
function sort(a, lo, hi) {
var n = hi - lo,
t;
while (--n > 0) t = a[lo], a[lo] = a[lo + n], a[lo + n] = t, sift(a, 1, n, lo);
return a;
}
// Sifts the element a[lo+i-1] down the heap, where the heap is the contiguous
// slice of array a[lo:lo+n]. This method can also be used to update the heap
// incrementally, without incurring the full cost of reconstructing the heap.
function sift(a, i, n, lo) {
var d = a[--lo + i],
x = f(d),
child;
while ((child = i << 1) <= n) {
if (child < n && f(a[lo + child]) > f(a[lo + child + 1])) child++;
if (x <= f(a[lo + child])) break;
a[lo + i] = a[lo + child];
i = child;
}
a[lo + i] = d;
}
heap.sort = sort;
return heap;
}
var heapselect = crossfilter.heapselect = heapselect_by(crossfilter_identity);
heapselect.by = heapselect_by;
function heapselect_by(f) {
var heap = heap_by(f);
// Returns a new array containing the top k elements in the array a[lo:hi].
// The returned array is not sorted, but maintains the heap property. If k is
// greater than hi - lo, then fewer than k elements will be returned. The
// order of elements in a is unchanged by this operation.
function heapselect(a, lo, hi, k) {
var queue = new Array(k = Math.min(hi - lo, k)),
min,
i,
x,
d;
for (i = 0; i < k; ++i) queue[i] = a[lo++];
heap(queue, 0, k);
if (lo < hi) {
min = f(queue[0]);
do {
if (x = f(d = a[lo]) > min) {
queue[0] = d;
min = f(heap(queue, 0, k)[0]);
}
} while (++lo < hi);
}
return queue;
}
return heapselect;
}
var insertionsort = crossfilter.insertionsort = insertionsort_by(crossfilter_identity);
insertionsort.by = insertionsort_by;
function insertionsort_by(f) {
function insertionsort(a, lo, hi) {
for (var i = lo + 1; i < hi; ++i) {
for (var j = i, t = a[i], x = f(t), y; j > lo && ((y = f(a[j - 1])) > x || !(y <= y)); --j) {
a[j] = a[j - 1];
}
a[j] = t;
}
return a;
}
return insertionsort;
}
// Algorithm designed by Vladimir Yaroslavskiy.
// Implementation based on the Dart project; see lib/dart/LICENSE for details.
var quicksort = crossfilter.quicksort = quicksort_by(crossfilter_identity);
quicksort.by = quicksort_by;
function quicksort_by(f) {
var insertionsort = insertionsort_by(f);
function sort(a, lo, hi) {
return (hi - lo < quicksort_sizeThreshold
? insertionsort
: quicksort)(a, lo, hi);
}
function quicksort(a, lo, hi) {
// First move NaN and undefined to the end.
var x, y;
while (lo < hi && !((x = f(a[hi - 1])) <= x)) hi--;
for (var i = hi; --i >= lo; ) {
x = f(y = a[i]);
if (!(x <= x)) {
a[i] = a[--hi];
a[hi] = y;
}
}
// Compute the two pivots by looking at 5 elements.
var sixth = (hi - lo) / 6 | 0,
i1 = lo + sixth,
i5 = hi - 1 - sixth,
i3 = lo + hi - 1 >> 1, // The midpoint.
i2 = i3 - sixth,
i4 = i3 + sixth;
var e1 = a[i1], x1 = f(e1),
e2 = a[i2], x2 = f(e2),
e3 = a[i3], x3 = f(e3),
e4 = a[i4], x4 = f(e4),
e5 = a[i5], x5 = f(e5);
var t;
// Sort the selected 5 elements using a sorting network.
if (x1 > x2) t = e1, e1 = e2, e2 = t, t = x1, x1 = x2, x2 = t;
if (x4 > x5) t = e4, e4 = e5, e5 = t, t = x4, x4 = x5, x5 = t;
if (x1 > x3) t = e1, e1 = e3, e3 = t, t = x1, x1 = x3, x3 = t;
if (x2 > x3) t = e2, e2 = e3, e3 = t, t = x2, x2 = x3, x3 = t;
if (x1 > x4) t = e1, e1 = e4, e4 = t, t = x1, x1 = x4, x4 = t;
if (x3 > x4) t = e3, e3 = e4, e4 = t, t = x3, x3 = x4, x4 = t;
if (x2 > x5) t = e2, e2 = e5, e5 = t, t = x2, x2 = x5, x5 = t;
if (x2 > x3) t = e2, e2 = e3, e3 = t, t = x2, x2 = x3, x3 = t;
if (x4 > x5) t = e4, e4 = e5, e5 = t, t = x4, x4 = x5, x5 = t;
var pivot1 = e2, pivotValue1 = x2,
pivot2 = e4, pivotValue2 = x4;
// e2 and e4 have been saved in the pivot variables. They will be written
// back, once the partitioning is finished.
a[i1] = e1;
a[i2] = a[lo];
a[i3] = e3;
a[i4] = a[hi - 1];
a[i5] = e5;
var less = lo + 1, // First element in the middle partition.
great = hi - 2; // Last element in the middle partition.
// Note that for value comparison, <, <=, >= and > coerce to a primitive via
// Object.prototype.valueOf; == and === do not, so in order to be consistent
// with natural order (such as for Date objects), we must do two compares.
var pivotsEqual = pivotValue1 <= pivotValue2 && pivotValue1 >= pivotValue2;
if (pivotsEqual) {
// Degenerated case where the partitioning becomes a dutch national flag
// problem.
//
// [ | < pivot | == pivot | unpartitioned | > pivot | ]
// ^ ^ ^ ^ ^
// left less k great right
//
// a[left] and a[right] are undefined and are filled after the
// partitioning.
//
// Invariants:
// 1) for x in ]left, less[ : x < pivot.
// 2) for x in [less, k[ : x == pivot.
// 3) for x in ]great, right[ : x > pivot.
for (var k = less; k <= great; ++k) {
var ek = a[k], xk = f(ek);
if (xk < pivotValue1) {
if (k !== less) {
a[k] = a[less];
a[less] = ek;
}
++less;
} else if (xk > pivotValue1) {
// Find the first element <= pivot in the range [k - 1, great] and
// put [:ek:] there. We know that such an element must exist:
// When k == less, then el3 (which is equal to pivot) lies in the
// interval. Otherwise a[k - 1] == pivot and the search stops at k-1.
// Note that in the latter case invariant 2 will be violated for a
// short amount of time. The invariant will be restored when the
// pivots are put into their final positions.
while (true) {
var greatValue = f(a[great]);
if (greatValue > pivotValue1) {
great--;
// This is the only location in the while-loop where a new
// iteration is started.
continue;
} else if (greatValue < pivotValue1) {
// Triple exchange.
a[k] = a[less];
a[less++] = a[great];
a[great--] = ek;
break;
} else {
a[k] = a[great];
a[great--] = ek;
// Note: if great < k then we will exit the outer loop and fix
// invariant 2 (which we just violated).
break;
}
}
}
}
} else {
// We partition the list into three parts:
// 1. < pivot1
// 2. >= pivot1 && <= pivot2
// 3. > pivot2
//
// During the loop we have:
// [ | < pivot1 | >= pivot1 && <= pivot2 | unpartitioned | > pivot2 | ]
// ^ ^ ^ ^ ^
// left less k great right
//
// a[left] and a[right] are undefined and are filled after the
// partitioning.
//
// Invariants:
// 1. for x in ]left, less[ : x < pivot1
// 2. for x in [less, k[ : pivot1 <= x && x <= pivot2
// 3. for x in ]great, right[ : x > pivot2
for (var k = less; k <= great; k++) {
var ek = a[k], xk = f(ek);
if (xk < pivotValue1) {
if (k !== less) {
a[k] = a[less];
a[less] = ek;
}
++less;
} else {
if (xk > pivotValue2) {
while (true) {
var greatValue = f(a[great]);
if (greatValue > pivotValue2) {
great--;
if (great < k) break;
// This is the only location inside the loop where a new
// iteration is started.
continue;
} else {
// a[great] <= pivot2.
if (greatValue < pivotValue1) {
// Triple exchange.
a[k] = a[less];
a[less++] = a[great];
a[great--] = ek;
} else {
// a[great] >= pivot1.
a[k] = a[great];
a[great--] = ek;
}
break;
}
}
}
}
}
}
// Move pivots into their final positions.
// We shrunk the list from both sides (a[left] and a[right] have
// meaningless values in them) and now we move elements from the first
// and third partition into these locations so that we can store the
// pivots.
a[lo] = a[less - 1];
a[less - 1] = pivot1;
a[hi - 1] = a[great + 1];
a[great + 1] = pivot2;
// The list is now partitioned into three partitions:
// [ < pivot1 | >= pivot1 && <= pivot2 | > pivot2 ]
// ^ ^ ^ ^
// left less great right
// Recursive descent. (Don't include the pivot values.)
sort(a, lo, less - 1);
sort(a, great + 2, hi);
if (pivotsEqual) {
// All elements in the second partition are equal to the pivot. No
// need to sort them.
return a;
}
// In theory it should be enough to call _doSort recursively on the second
// partition.
// The Android source however removes the pivot elements from the recursive
// call if the second partition is too large (more than 2/3 of the list).
if (less < i1 && great > i5) {
var lessValue, greatValue;
while ((lessValue = f(a[less])) <= pivotValue1 && lessValue >= pivotValue1) ++less;
while ((greatValue = f(a[great])) <= pivotValue2 && greatValue >= pivotValue2) --great;
// Copy paste of the previous 3-way partitioning with adaptions.
//
// We partition the list into three parts:
// 1. == pivot1
// 2. > pivot1 && < pivot2
// 3. == pivot2
//
// During the loop we have:
// [ == pivot1 | > pivot1 && < pivot2 | unpartitioned | == pivot2 ]
// ^ ^ ^
// less k great
//
// Invariants:
// 1. for x in [ *, less[ : x == pivot1
// 2. for x in [less, k[ : pivot1 < x && x < pivot2
// 3. for x in ]great, * ] : x == pivot2
for (var k = less; k <= great; k++) {
var ek = a[k], xk = f(ek);
if (xk <= pivotValue1 && xk >= pivotValue1) {
if (k !== less) {
a[k] = a[less];
a[less] = ek;
}
less++;
} else {
if (xk <= pivotValue2 && xk >= pivotValue2) {
while (true) {
var greatValue = f(a[great]);
if (greatValue <= pivotValue2 && greatValue >= pivotValue2) {
great--;
if (great < k) break;
// This is the only location inside the loop where a new
// iteration is started.
continue;
} else {
// a[great] < pivot2.
if (greatValue < pivotValue1) {
// Triple exchange.
a[k] = a[less];
a[less++] = a[great];
a[great--] = ek;
} else {
// a[great] == pivot1.
a[k] = a[great];
a[great--] = ek;
}
break;
}
}
}
}
}
}
// The second partition has now been cleared of pivot elements and looks
// as follows:
// [ * | > pivot1 && < pivot2 | * ]
// ^ ^
// less great
// Sort the second partition using recursive descent.
// The second partition looks as follows:
// [ * | >= pivot1 && <= pivot2 | * ]
// ^ ^
// less great
// Simply sort it by recursive descent.
return sort(a, less, great + 1);
}
return sort;
}
var quicksort_sizeThreshold = 32;
var crossfilter_array8 = crossfilter_arrayUntyped,
crossfilter_array16 = crossfilter_arrayUntyped,
crossfilter_array32 = crossfilter_arrayUntyped,
crossfilter_arrayLengthen = crossfilter_identity,
crossfilter_arrayWiden = crossfilter_identity;
if (typeof Uint8Array !== "undefined") {
crossfilter_array8 = function(n) { return new Uint8Array(n); };
crossfilter_array16 = function(n) { return new Uint16Array(n); };
crossfilter_array32 = function(n) { return new Uint32Array(n); };
crossfilter_arrayLengthen = function(array, length) {
var copy = new array.constructor(length);
copy.set(array);
return copy;
};
crossfilter_arrayWiden = function(array, width) {
var copy;
switch (width) {
case 16: copy = crossfilter_array16(array.length); break;
case 32: copy = crossfilter_array32(array.length); break;
default: throw new Error("invalid array width!");
}
copy.set(array);
return copy;
};
}
function crossfilter_arrayUntyped(n) {
return new Array(n);
}
function crossfilter_filterExact(bisect, value) {
return function(values) {
var n = values.length;
return [bisect.left(values, value, 0, n), bisect.right(values, value, 0, n)];
};
}
function crossfilter_filterRange(bisect, range) {
var min = range[0],
max = range[1];
return function(values) {
var n = values.length;
return [bisect.left(values, min, 0, n), bisect.left(values, max, 0, n)];
};
}
function crossfilter_filterAll(values) {
return [0, values.length];
}
function crossfilter_null() {
return null;
}
function crossfilter_zero() {
return 0;
}
function crossfilter_reduceIncrement(p) {
return p + 1;
}
function crossfilter_reduceDecrement(p) {
return p - 1;
}
function crossfilter_reduceAdd(f) {
return function(p, v) {
return p + +f(v);
};
}
function crossfilter_reduceSubtract(f) {
return function(p, v) {
return p - f(v);
};
}
exports.crossfilter = crossfilter;
function crossfilter() {
var crossfilter = {
add: add,
dimension: dimension,
groupAll: groupAll,
size: size
};
var data = [], // the records
n = 0, // the number of records; data.length
m = 0, // a bit mask representing which dimensions are in use
M = 8, // number of dimensions that can fit in `filters`
filters = crossfilter_array8(0), // M bits per record; 1 is filtered out
filterListeners = [], // when the filters change
dataListeners = []; // when data is added
// Adds the specified new records to this crossfilter.
function add(newData) {
var n0 = n,
n1 = newData.length;
// If there's actually new data to add…
// Merge the new data into the existing data.
// Lengthen the filter bitset to handle the new records.
// Notify listeners (dimensions and groups) that new data is available.
if (n1) {
data = data.concat(newData);
filters = crossfilter_arrayLengthen(filters, n += n1);
dataListeners.forEach(function(l) { l(newData, n0, n1); });
}
return crossfilter;
}
// Adds a new dimension with the specified value accessor function.
function dimension(value) {
var dimension = {
filter: filter,
filterExact: filterExact,
filterRange: filterRange,
filterFunction: filterFunction,
filterAll: filterAll,
top: top,
bottom: bottom,
group: group,
groupAll: groupAll,
remove: remove
};
var one = ~m & -~m, // lowest unset bit as mask, e.g., 00001000
zero = ~one, // inverted one, e.g., 11110111
values, // sorted, cached array
index, // value rank ↦ object id
newValues, // temporary array storing newly-added values
newIndex, // temporary array storing newly-added index
sort = quicksort_by(function(i) { return newValues[i]; }),
refilter = crossfilter_filterAll, // for recomputing filter
refilterFunction, // the custom filter function in use
indexListeners = [], // when data is added
dimensionGroups = [],
lo0 = 0,
hi0 = 0;
// Updating a dimension is a two-stage process. First, we must update the
// associated filters for the newly-added records. Once all dimensions have
// updated their filters, the groups are notified to update.
dataListeners.unshift(preAdd);
dataListeners.push(postAdd);
// Incorporate any existing data into this dimension, and make sure that the
// filter bitset is wide enough to handle the new dimension.
m |= one;
if (M >= 32 ? !one : m & (1 << M) - 1) {
filters = crossfilter_arrayWiden(filters, M <<= 1);
}
preAdd(data, 0, n);
postAdd(data, 0, n);
// Incorporates the specified new records into this dimension.
// This function is responsible for updating filters, values, and index.
function preAdd(newData, n0, n1) {
// Permute new values into natural order using a sorted index.
newValues = newData.map(value);
newIndex = sort(crossfilter_range(n1), 0, n1);
newValues = permute(newValues, newIndex);
// Bisect newValues to determine which new records are selected.
var bounds = refilter(newValues), lo1 = bounds[0], hi1 = bounds[1], i, k;
if (refilterFunction) {
for (i = 0; i < n1; ++i) {
if (!refilterFunction(newValues[i], k = newIndex[i] + n0)) filters[k] |= one;
}
} else {
for (i = 0; i < lo1; ++i) filters[newIndex[i] + n0] |= one;
for (i = hi1; i < n1; ++i) filters[newIndex[i] + n0] |= one;
}
// If this dimension previously had no data, then we don't need to do the
// more expensive merge operation; use the new values and index as-is.
if (!n0) {
values = newValues;
index = newIndex;
lo0 = lo1;
hi0 = hi1;
return;
}
var oldValues = values,
oldIndex = index,
i0 = 0,
i1 = 0;
// Otherwise, create new arrays into which to merge new and old.
values = new Array(n);
index = crossfilter_index(n, n);
// Merge the old and new sorted values, and old and new index.
for (i = 0; i0 < n0 && i1 < n1; ++i) {
if (oldValues[i0] < newValues[i1]) {
values[i] = oldValues[i0];
index[i] = oldIndex[i0++];
} else {
values[i] = newValues[i1];
index[i] = newIndex[i1++] + n0;
}
}
// Add any remaining old values.
for (; i0 < n0; ++i0, ++i) {
values[i] = oldValues[i0];
index[i] = oldIndex[i0];
}
// Add any remaining new values.
for (; i1 < n1; ++i1, ++i) {
values[i] = newValues[i1];
index[i] = newIndex[i1] + n0;
}
// Bisect again to recompute lo0 and hi0.
bounds = refilter(values), lo0 = bounds[0], hi0 = bounds[1];
}
// When all filters have updated, notify index listeners of the new values.
function postAdd(newData, n0, n1) {
indexListeners.forEach(function(l) { l(newValues, newIndex, n0, n1); });
newValues = newIndex = null;
}
// Updates the selected values based on the specified bounds [lo, hi].
// This implementation is used by all the public filter methods.
function filterIndexBounds(bounds) {
var lo1 = bounds[0],
hi1 = bounds[1];
if (refilterFunction) {
refilterFunction = null;
filterIndexFunction(function(d, i) { return lo1 <= i && i < hi1; });
lo0 = lo1;
hi0 = hi1;
return dimension;
}
var i,
j,
k,
added = [],
removed = [];
// Fast incremental update based on previous lo index.
if (lo1 < lo0) {
for (i = lo1, j = Math.min(lo0, hi1); i < j; ++i) {
filters[k = index[i]] ^= one;
added.push(k);
}
} else if (lo1 > lo0) {
for (i = lo0, j = Math.min(lo1, hi0); i < j; ++i) {
filters[k = index[i]] ^= one;
removed.push(k);
}
}
// Fast incremental update based on previous hi index.
if (hi1 > hi0) {
for (i = Math.max(lo1, hi0), j = hi1; i < j; ++i) {
filters[k = index[i]] ^= one;
added.push(k);
}
} else if (hi1 < hi0) {
for (i = Math.max(lo0, hi1), j = hi0; i < j; ++i) {
filters[k = index[i]] ^= one;
removed.push(k);
}
}
lo0 = lo1;
hi0 = hi1;
filterListeners.forEach(function(l) { l(one, added, removed); });
return dimension;
}
// Filters this dimension using the specified range, value, or null.
// If the range is null, this is equivalent to filterAll.
// If the range is an array, this is equivalent to filterRange.
// Otherwise, this is equivalent to filterExact.
function filter(range) {
return range == null
? filterAll() : Array.isArray(range)
? filterRange(range) : typeof range === "function"
? filterFunction(range)
: filterExact(range);
}
// Filters this dimension to select the exact value.
function filterExact(value) {
return filterIndexBounds((refilter = crossfilter_filterExact(bisect, value))(values));
}
// Filters this dimension to select the specified range [lo, hi].
// The lower bound is inclusive, and the upper bound is exclusive.
function filterRange(range) {
return filterIndexBounds((refilter = crossfilter_filterRange(bisect, range))(values));
}
// Clears any filters on this dimension.
function filterAll() {
return filterIndexBounds((refilter = crossfilter_filterAll)(values));
}
// Filters this dimension using an arbitrary boolean function.
function filterFunction(f) {
refilter = crossfilter_filterAll;
filterIndexFunction(refilterFunction = f);
lo0 = 0;
hi0 = n;
return dimension;
}
function filterIndexFunction(f) {
var i,
k,
x,
added = [],
removed = [];
for (i = 0; i < n; ++i) {
if (!(filters[k = index[i]] & one) ^ (x = f(values[i], k))) {
if (x) filters[k] &= zero, added.push(k);
else filters[k] |= one, removed.push(k);
}
}
filterListeners.forEach(function(l) { l(one, added, removed); });
}
// Returns the top K selected records based on this dimension's order.
// Note: observes this dimension's filter, unlike group and groupAll.
function top(k) {
var array = [],
i = hi0,
j;
while (--i >= lo0 && k > 0) {
if (!filters[j = index[i]]) {
array.push(data[j]);
--k;
}
}
return array;
}
// Returns the bottom K selected records based on this dimension's order.
// Note: observes this dimension's filter, unlike group and groupAll.
function bottom(k) {
var array = [],
i = lo0,
j;
while (i < hi0 && k > 0) {
if (!filters[j = index[i]]) {
array.push(data[j]);
--k;
}
i++;
}
return array;
}
// Adds a new group to this dimension, using the specified key function.
function group(key) {
var group = {
top: top,
all: all,
reduce: reduce,
reduceCount: reduceCount,
reduceSum: reduceSum,
order: order,
orderNatural: orderNatural,
size: size,
remove: remove
};
// Ensure that this group will be removed when the dimension is removed.
dimensionGroups.push(group);
var groups, // array of {key, value}
groupIndex, // object id ↦ group id
groupWidth = 8,
groupCapacity = crossfilter_capacity(groupWidth),
k = 0, // cardinality
select,
heap,
reduceAdd,
reduceRemove,
reduceInitial,
update = crossfilter_null,
reset = crossfilter_null,
resetNeeded = true;
if (arguments.length < 1) key = crossfilter_identity;
// The group listens to the crossfilter for when any dimension changes, so
// that it can update the associated reduce values. It must also listen to
// the parent dimension for when data is added, and compute new keys.
filterListeners.push(update);
indexListeners.push(add);
// Incorporate any existing data into the grouping.
add(values, index, 0, n);
// Incorporates the specified new values into this group.
// This function is responsible for updating groups and groupIndex.
function add(newValues, newIndex, n0, n1) {
var oldGroups = groups,
reIndex = crossfilter_index(k, groupCapacity),
add = reduceAdd,
initial = reduceInitial,
k0 = k, // old cardinality
i0 = 0, // index of old group
i1 = 0, // index of new record
j, // object id
g0, // old group
x0, // old key
x1, // new key
g, // group to add
x; // key of group to add
// If a reset is needed, we don't need to update the reduce values.
if (resetNeeded) add = initial = crossfilter_null;
// Reset the new groups (k is a lower bound).
// Also, make sure that groupIndex exists and is long enough.
groups = new Array(k), k = 0;
groupIndex = k0 > 1 ? crossfilter_arrayLengthen(groupIndex, n) : crossfilter_index(n, groupCapacity);
// Get the first old key (x0 of g0), if it exists.
if (k0) x0 = (g0 = oldGroups[0]).key;
// Find the first new key (x1).
x1 = key(newValues[i1]);
// While new keys remain…
while (i1 < n1) {
// Determine the lesser of the two current keys; new and old.
// If there are no old keys remaining, then always add the new key.
if (g0 && x0 <= x1) {
g = g0, x = x0;
// Record the new index of the old group.
reIndex[i0] = k;
// Retrieve the next old key.
if (g0 = oldGroups[++i0]) x0 = g0.key;
} else {
g = {key: x1, value: initial()}, x = x1;
}
// Add the lesser group.
groups[k] = g;
// Add any selected records belonging to the added group, while
// advancing the new key and populating the associated group index.
while (x1 <= x || !(x1 <= x1) && !(x <= x)) {
groupIndex[j = newIndex[i1] + n0] = k;
if (!(filters[j] & zero)) g.value = add(g.value, data[j]);
if (++i1 >= n1) break;
x1 = key(newValues[i1]);
}
groupIncrement();
}
// Add any remaining old groups that were greater than all new keys.
// No incremental reduce is needed; these groups have no new records.
// Also record the new index of the old group.
while (i0 < k0) {
groups[reIndex[i0] = k] = oldGroups[i0++];
groupIncrement();
}
// If we added any new groups before any old groups,
// update the group index of all the old records.
if (k > i0) for (i0 = 0; i0 < n0; ++i0) {
groupIndex[i0] = reIndex[groupIndex[i0]];
}
// Modify the update and reset behavior based on the cardinality.
// If the cardinality is less than or equal to one, then the groupIndex
// is not needed. If the cardinality is zero, then there are no records
// and therefore no groups to update or reset. Note that we also must
// change the registered listener to point to the new method.
j = filterListeners.indexOf(update);
if (k > 1) {
update = updateMany;
reset = resetMany;
} else {
if (k === 1) {
update = updateOne;
reset = resetOne;
} else {
update = crossfilter_null;
reset = crossfilter_null;
}
groupIndex = null;
}
filterListeners[j] = update;
// Count the number of added groups,
// and widen the group index as needed.
function groupIncrement() {
if (++k === groupCapacity) {
reIndex = crossfilter_arrayWiden(reIndex, groupWidth <<= 1);
groupIndex = crossfilter_arrayWiden(groupIndex, groupWidth);
groupCapacity = crossfilter_capacity(groupWidth);
}
}
}
// Reduces the specified selected or deselected records.
// This function is only used when the cardinality is greater than 1.
function updateMany(filterOne, added, removed) {
if (filterOne === one || resetNeeded) return;
if (!reduceRemove && removed.length) {
resetNeeded = true;
return;
}
var i,
k,
n,
g;
// Add the added values.
for (i = 0, n = added.length; i < n; ++i) {
if (!(filters[k = added[i]] & zero)) {
g = groups[groupIndex[k]];
g.value = reduceAdd(g.value, data[k]);
}
}
// Remove the removed values.
for (i = 0, n = removed.length; i < n; ++i) {
if ((filters[k = removed[i]] & zero) === filterOne) {
g = groups[groupIndex[k]];
g.value = reduceRemove(g.value, data[k]);
}
}
}
// Reduces the specified selected or deselected records.
// This function is only used when the cardinality is 1.
function updateOne(filterOne, added, removed) {
if (filterOne === one || resetNeeded) return;
if (!reduceRemove && removed.length) {
resetNeeded = true;
return;
}
var i,
k,
n,
g = groups[0];
// Add the added values.
for (i = 0, n = added.length; i < n; ++i) {
if (!(filters[k = added[i]] & zero)) {
g.value = reduceAdd(g.value, data[k]);
}
}
// Remove the removed values.
for (i = 0, n = removed.length; i < n; ++i) {
if ((filters[k = removed[i]] & zero) === filterOne) {
g.value = reduceRemove(g.value, data[k]);
}
}
}
// Recomputes the group reduce values from scratch.
// This function is only used when the cardinality is greater than 1.
function resetMany() {
var i,
g;
// Reset all group values.
for (i = 0; i < k; ++i) {
groups[i].value = reduceInitial();
}
// Add any selected records.
for (i = 0; i < n; ++i) {
if (!(filters[i] & zero)) {
g = groups[groupIndex[i]];
g.value = reduceAdd(g.value, data[i]);
}
}
}
// Recomputes the group reduce values from scratch.
// This function is only used when the cardinality is 1.
function resetOne() {
var i,
g = groups[0];
// Reset the singleton group values.
g.value = reduceInitial();
// Add any selected records.
for (i = 0; i < n; ++i) {
if (!(filters[i] & zero)) {
g.value = reduceAdd(g.value, data[i]);
}
}
}
// Returns the array of group values, in the dimension's natural order.
function all() {
if (resetNeeded) reset(), resetNeeded = false;
return groups;
}
// Returns a new array containing the top K group values, in reduce order.
function top(k) {
var top = select(all(), 0, groups.length, k);
return heap.sort(top, 0, top.length);
}
// Sets the reduce behavior for this group to use the specified functions.
// This method lazily recomputes the reduce values, waiting until needed.
function reduce(add, remove, initial) {
reduceAdd = add;
reduceRemove = remove;
reduceInitial = initial;
resetNeeded = true;
return group;
}
// A convenience method for reducing by count.
function reduceCount() {
return reduce(crossfilter_reduceIncrement, crossfilter_reduceDecrement, crossfilter_zero);
}
// A convenience method for reducing by sum(value).
function reduceSum(value) {
return reduce(crossfilter_reduceAdd(value), crossfilter_reduceSubtract(value), crossfilter_zero);
}
// Sets the reduce order, using the specified accessor.
function order(value) {
select = heapselect_by(valueOf);
heap = heap_by(valueOf);
function valueOf(d) { return value(d.value); }
return group;
}
// A convenience method for natural ordering by reduce value.
function orderNatural() {
return order(crossfilter_identity);
}
// Returns the cardinality of this group, irrespective of any filters.
function size() {
return k;
}
// Removes this group and associated event listeners.
function remove() {
var i = filterListeners.indexOf(update);
if (i >= 0) filterListeners.splice(i, 1);
i = indexListeners.indexOf(add);
if (i >= 0) indexListeners.splice(i, 1);
return group;
}
return reduceCount().orderNatural();
}
// A convenience function for generating a singleton group.
function groupAll() {
var g = group(crossfilter_null), all = g.all;
delete g.all;
delete g.top;
delete g.order;
delete g.orderNatural;
delete g.size;
g.value = function() { return all()[0].value; };
return g;
}
function remove() {
dimensionGroups.forEach(function(group) { group.remove(); });
var i = dataListeners.indexOf(preAdd);
if (i >= 0) dataListeners.splice(i, 1);
i = dataListeners.indexOf(postAdd);
if (i >= 0) dataListeners.splice(i, 1);
for (i = 0; i < n; ++i) filters[i] &= zero;
m &= zero;
return dimension;
}
return dimension;
}
// A convenience method for groupAll on a dummy dimension.
// This implementation can be optimized since it is always cardinality 1.
function groupAll() {
var group = {
reduce: reduce,
reduceCount: reduceCount,
reduceSum: reduceSum,
value: value,
remove: remove
};
var reduceValue,
reduceAdd,
reduceRemove,
reduceInitial,
resetNeeded = true;
// The group listens to the crossfilter for when any dimension changes, so
// that it can update the reduce value. It must also listen to the parent
// dimension for when data is added.
filterListeners.push(update);
dataListeners.push(add);
// For consistency; actually a no-op since resetNeeded is true.
add(data, 0, n);
// Incorporates the specified new values into this group.
function add(newData, n0) {
var i;
if (resetNeeded) return;
// Add the added values.
for (i = n0; i < n; ++i) {
if (!filters[i]) {
reduceValue = reduceAdd(reduceValue, data[i]);
}
}
}
// Reduces the specified selected or deselected records.
function update(filterOne, added, removed) {
var i,
k,
n;
if (resetNeeded) return;
if (!reduceRemove && removed.length) {
resetNeeded = true;
return;
}
// Add the added values.
for (i = 0, n = added.length; i < n; ++i) {
if (!filters[k = added[i]]) {
reduceValue = reduceAdd(reduceValue, data[k]);
}
}
// Remove the removed values.
for (i = 0, n = removed.length; i < n; ++i) {
if (filters[k = removed[i]] === filterOne) {
reduceValue = reduceRemove(reduceValue, data[k]);
}
}
}
// Recomputes the group reduce value from scratch.
function reset() {
var i;
reduceValue = reduceInitial();
for (i = 0; i < n; ++i) {
if (!filters[i]) {
reduceValue = reduceAdd(reduceValue, data[i]);
}
}
}
// Sets the reduce behavior for this group to use the specified functions.
// This method lazily recomputes the reduce value, waiting until needed.
function reduce(add, remove, initial) {
reduceAdd = add;
reduceRemove = remove;
reduceInitial = initial;
resetNeeded = true;
return group;
}
// A convenience method for reducing by count.
function reduceCount() {
return reduce(crossfilter_reduceIncrement, crossfilter_reduceDecrement, crossfilter_zero);
}
// A convenience method for reducing by sum(value).
function reduceSum(value) {
return reduce(crossfilter_reduceAdd(value), crossfilter_reduceSubtract(value), crossfilter_zero);
}
// Returns the computed reduce value.
function value() {
if (resetNeeded) reset(), resetNeeded = false;
return reduceValue;
}
// Removes this group and associated event listeners.
function remove() {
var i = filterListeners.indexOf(update);
if (i >= 0) filterListeners.splice(i);
i = dataListeners.indexOf(add);
if (i >= 0) dataListeners.splice(i);
return group;
}
return reduceCount();
}
// Returns the number of records in this crossfilter, irrespective of any filters.
function size() {
return n;
}
return arguments.length
? add(arguments[0])
: crossfilter;
}
// Returns an array of size n, big enough to store ids up to m.
function crossfilter_index(n, m) {
return (m < 0x101
? crossfilter_array8 : m < 0x10001
? crossfilter_array16
: crossfilter_array32)(n);
}
// Constructs a new array of size n, with sequential values from 0 to n - 1.
function crossfilter_range(n) {
var range = crossfilter_index(n, n);
for (var i = -1; ++i < n;) range[i] = i;
return range;
}
function crossfilter_capacity(w) {
return w === 8
? 0x100 : w === 16
? 0x10000
: 0x100000000;
}
})(this);
@font-face {
font-family: Armata;
src: local("Armata Regular"), local("Armata-Regular"), url(http://fonts.gstatic.com/s/armata/v8/FG9R9aX-RIX_AvJI8USOWg.woff) format("woff");
font-weight: 400;
font-style: normal;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Macrometeorites: the largest meteorites throughout history</title>
<link href='http://fonts.googleapis.com/css?family=Armata' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Sanchez:400italic' rel='stylesheet' type='text/css'>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="jquery-1.9.1.min.js"></script>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div id="header">
<span class="title">Macrometeorites</span><span class="subtitle"> the largest meteorites throughout history</span>
</div>
<div id="chartsBackground">
<div id="charts">
<div class="help">Click and drag to select a period, click to deselect</div>
</div>
</div>
<div id="map_background"></div>
<div id="menu"></div>
<div id="content">
<div class="about">
<div class="about1">
<h4>Macrometeorites</h4>
<p>Meteorites are meteoroids originating in outer space which survive impact with the Earth. From a total of more than 45700 recorded meteorite landings, only around 3800 have a mass larger than 1kg. This visualization is about these meteorites, which have been called "Macrometeorites".</p>
<p>Meteorites which have been observed while they transited the atmosphere or impacting the earth are called "falls" while all the other are called "finds". On the map it's easy to see that the most falls and finds happen in populated areas, so there are probably many other landings which have not been recorded.</p>
<p>Meteorites can be divided into three big groups: stony meteorites which are rocks, iron meteorites and stony-iron meteorites which contain both metallic and rocky material. Very special cases are a few meteorites which happen to come from the Moon and Mars.</p>
</div>
<div class="about2">
<h4>Data and sources</h4>
<p>Data: The Meteoritical Society, the data used for this visualization can be found at <a target="_blank" href="http://visualizing.org/datasets/meteorite-landings">http://visualizing.org/datasets/meteorite-landings</a></p>
<p>General description: <a target="_blank" href="http://en.wikipedia.org/wiki/Meteorite">http://en.wikipedia.org/wiki/Meteorite</a></p>
<p>Description of the largest meteorites: Wikipedia</p>
<h4>Created by</h4>
<p>Roxana Torre<br />
<a target="_blank" href="http://www.torre.nl">www.torre.nl</a><br />
contact: roxana(at)torre.nl</p>
</div>
<div style="clear:both"></div>
</div>
</div>
<script type="text/javascript" src="meteorites1.5.js"></script>
<script type="text/javascript" src="crossfilter1.1.js"></script>
</body>
</html>
/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
//@ sourceMappingURL=jquery.min.map
*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
// browser check for zoom
var isOpera = !!(window.opera && window.opera.version); // Opera 8.0+
var isFirefox = testCSS('MozBoxSizing'); // FF 0.8+
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// At least Safari 3+: "[object HTMLElementConstructor]"
var isChrome = !isSafari && testCSS('WebkitTransform'); // Chrome 1+
var isIE = /*@cc_on!@*/false || testCSS('msTransform'); // At least IE6
//console.log("isChrome= ",isChrome,", isFirefox= ",isFirefox, ", isSafari= ",isSafari, ", isIE= ", isIE,", isOpera= ", isOpera);
var selectedData=[];
var circles;
var margin = {top: 5, right: 20, bottom: 20, left: 20},
width = 1280 - margin.left - margin.right,
height = 517 - margin.top - margin.bottom;
var projection = d3.geo.equirectangular()
.scale(170)
.translate([width / 2, height / 2])
.precision(.1);
/*var projection = d3.geo.azimuthalEquidistant()
.scale(150)
.translate([width / 2, height / 2])
.clipAngle(180 - 1e-3)
.precision(.1);*/
var path = d3.geo.path()
.projection(projection);
var zoom = d3.behavior.zoom()
.translate(projection.translate())
.scale(projection.scale())
//.scaleExtent([height, 8 * height])
.on("zoom", move);
var color = d3.scale.ordinal()
// .range(["#999353","#17AACC"]);
.range(["#E88D0C","#FFEC09"]);
var tooltipdiv = d3.select("body")
.append("div")
.attr("class", "tooltip");
var svg = d3.select("#map_background").append("svg")
.attr("width", width+ margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.style("display","block")
.style("margin","auto")
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.call(zoom);
var mapSvg = svg.append("g")
.attr("id", "map");
mapSvg.append("rect")
.attr("class", "background")
//.attr("width", width + margin.left + margin.right)
//.attr("height", height + margin.top + margin.bottom);
var circlesSvg = svg.append("g")
.attr("id","circles");
var margin1 = {top: 1, right: 30, bottom: 20, left: 30},
width1 = 1260 - margin1.left - margin1.right,
height1 = 150 - margin1.top - margin1.bottom;
var charts = d3.select("#charts").append("svg")
.attr("width", width1 + margin1.left + margin1.right)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
d3.json("world-countries.json", function(json) {
mapSvg.selectAll("path")
.data(json.features)
.enter().append("path")
.attr("d", path)
d3.csv("meteorites_new1.csv", function(error, data) {
var data1400=[];
console.log("--data.length=",data.length);
data.forEach(function(d){ if (+d.year >= 1400) data1400.push(d); });
visualize(data1400);
});
});
//zoom in buttons
var zoomin = d3.select("body")
.append("div")
.attr("class","zoom")
.style("top", "300px")
.style("left","30px")
.style("padding-top","2px")
.text("+")
.on("click", function(){
d3.select("#map_background svg").attr("width","100%");
fireZoomEvent( -0.2);
});
var zoomout = d3.select("body")
.append("div")
.attr("class","zoom")
.style("top", "335px")
.style("left","30px")
.style("padding-top","1px")
.text("-")
.on("click", function(){
fireZoomEvent(0.2);
});
//help text
/*d3.select("#charts").append("div")
.attr("class","help")
.text('Click and drag to select a period, click to deselect')
.style("top","10px")
.style("right","10px")
.style("color","#FFF")
.style("position","relative")*/
function visualize(data){
function rScale(value){
if (value < 100) return 3;
else if (value < 500) return 5;
else if (value < 1000) return 8;
else if (value < 5000) return 12;
else if (value < 10000) return 16;
else return 20;
}
drawAllCircles(data);
svg.append("text")
.style("fill","white")
.text("start")
.attr("x", "20px")
.attr("y", "20px")
.attr("id","button")
.on("click", reset);
svg.append("text")
.style("fill","white")
.text("stop")
.attr("x", "70px")
.attr("y", "20px")
.attr("id","button")
.on("click", stop);
var meteorites = crossfilter(data);
meteorites.fell = meteorites.dimension(function(d){return d.fell});
meteorites.year = meteorites.dimension(function(d){return +d.year;});
var yearCount = meteorites.year.group().top(Infinity);
meteorites.type = meteorites.dimension(function(d){return d.recclass;});
var typeCount = meteorites.type.group().top(10);
typeCount.sort(function(a, b){
return a.key-b.key
})
// menu area ------
d3.select("#menu").append('div')
.attr("class","help")
.text("Move your mouse over the circles for more information, click on them to go to the database record (external page)");
d3.select("#menu").append("h4")
.text("Select")
var found_fellMenu = d3.select("#menu").append('div')
.attr("class","found_fellMenu");
found_fellMenu.append("div") //menu
.attr("class","help")
.text("Finds and Falls:");
var found_fellList = [{name:'Finds',id:'found'},{name:'Falls',id:'fell'},{name:'All',id:'all'}];
found_fellMenu.selectAll('#menuItem')
.data(found_fellList)
.enter()
.append("div")
.attr("id","menuItem")
.attr("class",function(d){ if (d.id ==='all')return 'active last'; })
.html(function(d){return d.name;})
.on('click', function(d){
d3.selectAll('.found_fellMenu #menuItem').classed('active',false);
switch (d.id){
case 'found':
d3.select(this).classed('active',true);
selectedData = meteorites.fell.filter('Found').top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'fell':
d3.select(this).classed('active',true);
selectedData = meteorites.fell.filter('Fell').top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'all':
d3.select(this).classed('active',true);
selectedData = meteorites.fell.filterAll().top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
}
});
var typeMenu = d3.select("#menu").append('div')
.attr("class","typeMenu");
typeMenu.append("div") //menu
.attr("class","help")
.text("According to type:");
var type_List = [{name:'Stony',id:'stony'},{name:'Iron',id:'iron'},{name:'Stony-iron',id:'stony-iron'},{name:'All',id:'all'}];
typeMenu.selectAll('#menuItem')
.data(type_List)
.enter()
.append("div")
.attr("id","menuItem")
.attr("class",function(d){ if (d.id ==='all')return 'active last'; })
.html(function(d){return d.name;})
.on('click', function(d){
d3.selectAll('.typeMenu #menuItem').classed('active',false);
switch (d.id){
case 'stony':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filter(function(d1){return d1.indexOf("Mesosiderite") < 0 && d1.indexOf("Pallasite") < 0 && d1.charAt(0) !="I";}).top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'iron':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filter(function(d1){return d1.charAt(0) =="I";}).top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'stony-iron':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filter(function(d1){return d1.indexOf("Mesosiderite") >=0 || d1.indexOf("Pallasite") >=0;}).top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'all':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filterAll().top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
}
});
// found - fell
var lunarMenu = d3.select("#menu").append('div')
.attr("class","lunarMenu");
lunarMenu.append("div") //menu
.attr("class","help")
.text("Meteorites coming from the Moon and Mars:")
var lunarList = [{name:'Lunar',id:'lunar'},{name:'Martian',id:'martian'},{name:'All',id:'all'}];
lunarMenu.selectAll('#menuItem')
.data(lunarList)
.enter()
.append("div")
.attr("id","menuItem")
.attr("class",function(d){ if (d.id ==='all')return 'active last'; })
.html(function(d){return d.name;})
.on('click', function(d){
d3.selectAll('.lunarMenu #menuItem').classed('active',false);
switch (d.id){
case 'lunar':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filter(function(d1){return d1.indexOf("Lunar") >= 0;}).top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'martian':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filter(function(d1){return d1.indexOf("Martian") >= 0;}).top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
case 'all':
d3.select(this).classed('active',true);
selectedData = meteorites.type.filterAll().top(Infinity);
circles.remove();
drawAllCircles(selectedData);
break;
}
});
// end menu area ------
//console.log("data.length=",data.length);
var xMin = d3.min(yearCount, function(d){return d.key;});
var xMax = d3.max(yearCount, function(d){return d.key;});
var yMax = d3.max(yearCount, function(d){return d.value;});
//var x = d3.scale.linear()
var x= d3.scale.pow()
.exponent(6)
.domain([xMin,xMax])
.range([0, width1]);
var y = d3.scale.linear()
.domain([0, yMax])
.range([height1, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.tickSize(3)
.tickFormat(d3.format(""))
.tickValues([1400,1500,1600,1700,1800,1850,1900,1950,2000,2013])
.orient("bottom");
var chartBrush = d3.svg.brush()
.x(x)
//.on("brushstart", brushstart)
.on("brush", brushmove)
.on("brushend", brushend);
charts.append("g")
.attr("class", "brush")
.call(chartBrush)
.selectAll("rect")
.attr("height", height1+2)
.attr("transform", "translate( 0,-1)");
var bar = charts.selectAll("#bar")
.data(yearCount)
.enter().append("g")
.each(function(d){
d._fellCount = $.grep(data, function(e){ return e.fell == "Fell" && e.year == d.key; }).length;
d._foundCount = d.value - d._fellCount;
})
.attr("id", "bar")
.attr("transform", function(d) { return "translate(" + x(d.key) + ",0)"; })
.attr("class","year")
.on("mouseover", function(d){
var textTooltip = "<strong>"+d.key+'</strong><br />Falls: '+d._fellCount+'<br />Finds: ' +d._foundCount;
tooltipdiv.html(textTooltip)
.style("top", d3.event.pageY - 20 + "px")
.style("left", d3.event.pageX + 20 + "px")
.style("visibility", "visible");
})
.on("mouseout", function(){tooltipdiv.style("visibility", "hidden"); });
bar.append("rect") //found
.attr("width", 3)
.attr("y", function(d) { return y(d._foundCount); })
.attr("height", function(d) { return y(0) - y(d._foundCount); })
.style("fill", "#E88D0C")
bar.append("rect") //fell
.attr("width", 3)
.attr("y", function(d) {return y(d.fell); })
.attr("height", function(d) { return y(0)-y(d._fellCount); })
.style("fill", "#FFEC09")
charts.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis)
.selectAll("text")
.style("text-anchor", "middle")
charts.append("line")
.attr("x1", 0)
.attr("y1", -0.5)
.attr("x2", width1)
.attr("y2", -0.5)
.attr("id","chartAxis")
charts.append("line")
.attr("x1", 0)
.attr("y1", height1+1)
.attr("x2", width1)
.attr("y2", height1+1)
.attr("id","chartAxis")
//charts.call(chartBrush);
charts.append("line")
.attr("x1", -2)
.attr("y1", -2)
.attr("x2", -2)
.attr("y2", 132)
.attr("id","movingLine")
.style("stroke", "#FFF")
.style("stroke-width","2px")
.style("position","absolute");
charts.append("text")
.text("Number of Falls")
.attr("x", "0px")
.attr("y", "20px")
.attr("class","label")
.style("fill","#FFF")
charts.append("text")
.text("Number of Finds")
.attr("x", "0px")
.attr("y", "120px")
.attr("class","label")
.style("fill","#FFF")
var yearPanel = svg.append("text")
.attr("class","yearText")
.text('2013')
.attr('y',50)
.attr('x',500);
var year = 1400,
yearEnd = 2013,
animate;
start();
function start() {
if (year === 1400) circles.style("visibility","hidden");
var xValue = x(year)
yearPanel.text(year);
charts.select("#movingLine")
.attr("x1", xValue)
.attr("x2", xValue);
//console.log(year);
if (year < yearEnd) animate = setTimeout(start, 100);
else {
d3.select(".background").style("opacity",1);
d3.select("#map")
.transition()
.duration(2000)
.style("opacity",1);
//circles.style("stroke-width","0.5").style("stroke","#FFFFFF");
d3.select('#menu').transition().duration(2000).style("opacity",0.9);
}
var yearCircles = circles.filter(function(d){ if (year < 1800) return +d.year > year-5 && +d.year <= year ;
else return +d.year === year });
yearCircles.filter(function(d){ return d.fell === "Fell" })
.attr("cx",function(d) { return projection([d.longitude,d.latitude])[0] - (Math.floor(Math.random() * 801) - 400);})
.attr("cy",function(d) { return projection([d.longitude,d.latitude])[1] - (Math.floor(Math.random() * 801) - 400);})
.attr("r", 1)
.style("opacity",0)
.style("visibility","visible")
.transition()
.duration(1000)
.attr("cx",function(d) { return projection([d.longitude,d.latitude])[0];})
.attr("cy",function(d) { return projection([d.longitude,d.latitude])[1];})
.attr("r", function(d) { return rScale(d.mass);})
.style("opacity",0.8)
yearCircles.filter(function(d){ return d.fell === "Found" })
.attr("r", 1)
.style("visibility","visible")
.transition()
.duration(2000)
.attr("r", function(d) { return rScale(d.mass);})
if (year < 1800) year += 5;
else year += 1;
}
function stop(){
clearTimeout(animate)
circles.style("visibility","visible");
year = yearEnd;
var xValue = x(year)
charts.select("#movingLine")
.attr("x1", xValue)
.attr("x2", xValue);
yearPanel.text('2013');
d3.select(".background").style("opacity",1);
d3.select("#map")
.transition()
.duration(2000)
.style("opacity",1);
d3.select('#menu').transition().duration(2000).style("opacity",0.9);
}
function reset(){
year = 1400;
start();
}
function brushstart() {
//charts.classed("selecting", true);
}
function brushmove() {
}
function brushend() {
if (chartBrush.empty()){
selectedData = meteorites.year.filterAll().top(Infinity);
yearPanel.text('2013');
}
else {
var extent = d3.event.target.extent();
//console.log("in brushend = ", extent);
bar.classed("selected", function(d) {return extent[0] <= +d.key && +d.key <= extent[1]; });
//update crossfilter
selectedData = meteorites.year.filterRange([extent[0],extent[1]]).top(Infinity);
yearPanel.text(Math.floor(extent[0]) +' - '+ Math.floor(extent[1]));
}
circles.remove();
drawAllCircles(selectedData);
}
function drawAllCircles(data){
circles = circlesSvg.selectAll("circle")
.data(data)
.enter().append("svg:a")
.attr("xlink:href", function(d){return "http://www.lpi.usra.edu/meteor/metbull.php?code="+d.id;})
.attr("target","_blank")
.append("svg:circle")
.attr("cx",function(d) { return projection([d.longitude,d.latitude])[0];})
.attr("cy",function(d) { return projection([d.longitude,d.latitude])[1];})
.attr("opacity",0.8)
.attr("r", function(d) { return rScale(d.mass);})
.style("fill", function(d) { return color(d.fell); })
.style("stroke-width",function(d){if (d.history) return 1;})
.on("mouseover", function(d){
var textTooltip = '<strong>'+d.name+'</strong><br />type: '+d.recclass+'<br />mass: '+(d.mass)+' kg<br />'+d.fell+'<br />year: '+d.year;
if (d.history) textTooltip = textTooltip + '<div class="history"><strong>History</strong><br />'+ d.history +'</div>';
tooltipdiv.html(textTooltip)
.style("top", d3.event.pageY - 20 + "px")
.style("left", d3.event.pageX + 20 + "px")
.style("visibility", "visible");
})
.on("mouseout", function(){tooltipdiv.style("visibility", "hidden"); })
/*.on("click", function(){
tooltipdiv.append("div")
.append("div")
.attr('class',"closeButton")
.append('img')
.attr('src',"images/close.png")
.on("click",function(){tooltipdiv.style("visibility", "hidden"); })
})*/
}
}
function move() {
projection.translate(d3.event.translate).scale(d3.event.scale);
mapSvg.selectAll("path").attr("d", path);
circles
.attr("cx",function(d) {return projection([d.longitude,d.latitude])[0];})
.attr("cy",function(d) {return projection([d.longitude,d.latitude])[1];})
}
function fireZoomEvent(zoomVal) {
//console.log('in fireZoomEvent');
if (isOpera){
var evt = document.createEvent('MouseEvent');
evt.initMouseEvent('mousewheel', true, true, window, (zoomVal) * 40,
width/2, height/2, width/2, height/2, 0, 0, 0, 0, 0, document.body);
}
else if (isChrome || isSafari) {
var evt = document.createEvent("WheelEvent");
evt.initWebKitWheelEvent(0, (-zoomVal) * 20, window,
width/2, height/2, width/2, height/2,false, false, false, false);
}
else if (isIE) {
var evt = document.createEvent ("MouseWheelEvent");
evt.initMouseWheelEvent('mousewheel', true, true, window, 0,
width/2, height/2, width/2, height/2, 0, document.body, '',
(zoomVal) * -900);
}
else if (isFirefox){
var evt = document.createEvent ("MouseEvents");
evt.initMouseEvent('DOMMouseScroll', true, true, window, (zoomVal) * 250,
width/2, height/2, width/2, height/2, 0, 0, 0, 0, 0, document.body);
}
document.getElementById('map').dispatchEvent(evt);
}
function testCSS(prop) {
return prop in document.documentElement.style;
}
We can make this file beautiful and searchable if this error is corrected: It looks like row 4 should actually have 14 columns, instead of 11. in line 3.
"name","recclass","mass","fell","year","id","latitude","longitude","history","url","Url-images",,,
"Hoba","Iron, IVB",60000,"Found",1920,11890,-19.58,17.92,"The Hoba meteorite is thought to have fallen more recently than 80,000 years ago. It is inferred that the Earth's atmosphere slowed the object to the point that it fell to the surface at terminal velocity, thereby remaining intact and causing little excavation. Assuming a drag coefficient of about 1.3, the meteor would have been slowed to a mere 320 metres per second (1,000 ft/s) (contrast this with typical orbital speeds of several km/s). The meteorite is unusual in that it is flat on both major surfaces, possibly causing it to have skipped across the top of the atmosphere in the way a flat stone skips on water.<br />The Hoba meteorite left no preserved crater, and its discovery was a chance event. The owner of the land, Jacobus Hermanus Brits, encountered the object while ploughing one of his fields with an ox. During this task, he heard a loud metallic scratching sound and the plough came to an abrupt halt. The obstruction was excavated, identified as a meteorite and described by Mr. Brits, whose report was published in 1920 and can be viewed at the Grootfontein Museum in Namibia.","http://en.wikipedia.org/wiki/Hoba_meteorit","http://commons.wikimedia.org/wiki/Category:Hoba_meteorite",,,
"Cape York","Iron, IIIAB",58200,"Found",1818,5262,76.13,-64.93,"The meteorite collided with Earth nearly 10,000 years ago. The iron masses were known to Inuit as Ahnighito (the Tent), weighing 31 metric tons (31 long tons; 34 short tons); the Woman, weighing 3 metric tons (3.0 long tons; 3.3 short tons); and the Dog, weighing 400 kilograms (880 lb). For centuries, Inuit living near the meteorites used them as a source of metal for tools and harpoons. The Inuit would work the metal using cold forging--that is by stamping and hammering it.<br />The first stories of its existence reached scientific circles in 1818. Five expeditions between 1818 and 1883 failed to find the source of the iron. It was located in 1894 by Robert E. Peary, the famous American Navy Arctic explorer, who had enlisted the help of a local Inuit guide - the one who brought him to Saviksoah Island, just off northern Greenland's Cape York in 1894. It took Peary three years to arrange and carry out the loading of the heavy iron meteorites onto ships. It required the building of Greenland's only (small and short) railroad. After taking the meteorites from the Inuit and giving them nothing in return, Peary sold the pieces for $40,000 to the American Museum of Natural History in New York City where they are still on display.","http://en.wikipedia.org/wiki/Cape_York_meteorite","http://commons.wikimedia.org/wiki/Category:Cape_York_%28meteorite%29",,,
"Campo del Cielo","Iron, IAB-MG",50000,"Found",1576,5247,-27.47,-60.58,"In 1576, the governor of a province in Northern Argentina commissioned the military to search for a huge mass of iron, which he had heard that Natives used for their weapons. The Natives claimed that the mass had fallen from the sky in a place they called Piguem Nonralta which the Spanish translated as Campo del Cielo ('Field of the Sky'). The expedition found a large mass of metal protruding out of the soil. They assumed it was an iron mine and brought back a few samples, which were described as being of unusual purity. The governor documented the expedition and deposited the report in the Archivo General de Indias in Seville, but it was quickly forgotten and later reports on that area merely repeated the Native legends. Following the legends, in 1774 don Bartolome Francisco de Maguna rediscovered the iron mass which he called el Meson de Fierro (the Table of Iron). Maguna thought the mass was the tip of an iron vein. The next expedition led by Rubin de Celis in 1783 used explosives to clear the ground around the mass and found that it was probably a single stone. Celis estimated its mass as 15 tonnes and abandoned it as worthless. He himself did not believe that the stone had fallen from the sky and assumed that it had formed by a volcanic eruption. However he sent the samples to the Royal Society of London and published his report in the Philosophical Transactions of the Royal Society. Those samples were later analyzed and found to contain 90% iron and 10% nickel and assigned to a meteoritic origin. ","http://en.wikipedia.org/wiki/Campo_del_Cielo","http://commons.wikimedia.org/wiki/Category:Campo_del_Cielo"
"Canyon Diablo","Iron, IAB-MG",30000,"Found",1891,5257,35.05,-111.03,"The Canyon Diablo meteorite comprises many fragments of the asteroid that impacted at Barringer Crater (Meteor Crater), Arizona, USA. Meteorites have been found around the crater rim, and are named for nearby Canyon Diablo, which lies about three to four miles west of the crater.<br />The asteroid fell about 50,000 years ago. The meteorites have been known and collected since the mid-19th century and were known and used by pre-historic Native Americans. The Barringer Crater, from the late 19th to the mid-20th century, was the center of a long dispute over the origin of craters that showed little evidence of volcanism. That debate was settled in the 1950s thanks to Eugene Shoemaker's study of the crater.<br />In 1953, Clair Cameron Patterson measured ratios of the lead isotopes in samples of the meteorite. The result permitted a refinement of the estimate of the age of the Earth to 4.550 billion years (± 70 million years).","http://en.wikipedia.org/wiki/Canyon_Diablo_%28meteorite%29","http://commons.wikimedia.org/wiki/Category:Canyon_Diablo_%28meteorite%29",,,
"Armanty","Iron, IIIE",28000,"Found",1898,2335,47,88,,,,,,
"Gibeon","Iron, IVA",26000,"Found",1836,10912,-25.5,18,"Gibeon is a meteorite that fell in prehistoric times in Namibia. It was named after the nearest town: Gibeon, Namibia.<br />The meteorite was discovered by the Nama people and used by them to make tools and weapons.<br />In 1836 the English captain J. E. Alexander collected samples of the meteorite in the vicinity of the Great Fish River and sent them to London. There John Herschel analyzed them and confirmed for the first time the extraterrestrial nature of the material.","http://en.wikipedia.org/wiki/Gibeon_%28meteorite%29","http://commons.wikimedia.org/wiki/Category:Gibeon_meteorite",,,
"Chupaderos","Iron, IIIAB",24300,"Found",1852,5363,27,-105.1,,"http://books.google.nl/books?id=mkdHJR35Q_8C&pg=PA145&lpg=PA145&dq=chupaderos+meteorite&source=bl&ots=y-LDjyYIRy&sig=kALrjeR1Xzz3YNACPWM4OyPp4rA&hl=en&sa=X&ei=YWirUYzdGMeLOaP-gIgE&ved=0CGoQ6AEwDA#v=onepage&q=chupaderos%20meteorite&f=false","http://commons.wikimedia.org/wiki/Category:Chupaderos_meteorite",,,
"Mundrabilla","Iron, IAB-ung",24000,"Found",1911,16852,-30.78,127.55,"Mundrabilla is an iron meteorite found in 1911 in Australia.[1] This is one of the largest meteorites ever found: the Meteoritical Bulletin Database reports a total known weight of 24t[1] and the main mass (the single largest fragment) accounts for 9980 kg<br />In 1911 an iron meteorite individual of 112 grams was found by Mr. H. Kent at 31°1′S 127°23′E in a location of the Nullarbor Plain called Premier Downs. This small meteorite was then called Premier Downs I. Later in 1911 Mr. H. Kent found another small iron meteorite (116 g) about 13 km west from the found location of Premier Downs I: it was called Premier Downs II. Both meteorites were medium ochtaedrites and Simpson and Bowley (1914) believed that both meteorites were part of the same fall.<br />In 1918 a third similar small iron meteorite of 99 grams was found in the area and it was named Premier Downs III.<br />Perhaps in 1962 (date is not certain) another small iron of 108 g with similar characteristics was found near Loongana Station by Mr. Harrison. McCall and DeLaeter (1965) suggested a possible pairing with the previous Premier Downs samples.<br />In 1965 three small iron individuals (94.1 g, 45 g, 38.8 g) were found by W. A. Crowle 16 km north of Mundrabilla Siding at 30°45′S 127°30′E.<br />In April 1966 two very large iron masses of 9980 kg and 5440 kg were found in the Nullarbor Plain at 30°47′S 127°33′E by geologists R. B. Wilson and A. M. Cooney during a geological survey. The two masses were lying 180 metres apart, in clayey soil within very slight depressions. The masses were surrounded by a large number of small iron fragments. These meteorites were called Mundrabilla, while the largest fragment, the eleventh largest ever found in the world as of 2012, is distinguished as Mundrabilla I.<br />In 1967 a small iron (66.5 g) was found at 30°57′S 126°58′E by W. H. Butler, it was named Loongana Station West.<br />McCall and Cleverly (1970) suggested that the Mundrabilla meteorites were actually closely related to the Loongana Station and Premier Downs meteorites, and had been shed from the same mass during the atmospheric ablation.<br />The main mass of 9980 kg is now conserved at the Western Australia Museum.","http://en.wikipedia.org/wiki/Mundrabilla_%28meteorite%29","http://commons.wikimedia.org/wiki/Category:Mundrabilla_meteorite",,,
"Sikhote-Alin","Iron, IIAB",23000,"Fell",1947,23593,46.16,134.65,"Sikhote-Alin is an iron meteorite that fell in 1947 on the Sikhote-Alin Mountains in eastern Siberia. Though large iron meteorite falls had been witnessed previously and fragments recovered, never before in recorded history had a fall of this magnitude been observed. An estimated 70 tonnes of material survived the fiery passage through the atmosphere and reached the Earth.<br />At around 10:30 on 12 February 1947, eyewitnesses in the Sikhote-Alin Mountains, Primorye, Soviet Union, observed a large bolide brighter than the Sun that came out of the north and descended at an angle of about 41 degrees. The bright flash and the deafening sound of the fall were observed for 300 kilometres (190 mi) around the point of impact not far from Luchegorsk and approximately 440 km (270 mi) northeast of Vladivostok. A smoke trail, estimated at 32 km (20 mi) long, remained in the sky for several hours.<br />As the meteor, traveling at a speed of about 14 km/s (8.7 mi/s), entered the atmosphere, it began to break apart, and the fragments fell together. At an altitude of about 5.6 km (3.5 mi), the largest mass apparently broke up in a violent explosion called air burst.","http://en.wikipedia.org/wiki/Sikhote-Alin_meteorite","http://commons.wikimedia.org/wiki/Category:Sikhote-Alin_meteorite",,,
"Bacubirito","Iron, ungrouped",22000,"Found",1863,4919,26.2,-107.83,,,"http://commons.wikimedia.org/wiki/Category:Bacubirito_meteorite",,,
"Mbosi","Iron, ungrouped",16000,"Found",1930,15456,-9.12,33.07,"Mbozi is a ungrouped iron meteorite found in Tanzania. It is one of the world's largest meteorites, variously estimated as the fourth largest to the eighth largest, it is located near the city of Mbeya in Tanzania's southern highlands. The meteorite is 3 metres (9.8 ft) long, 1 metre (3 ft 3 in) high, and weighs an estimated 16 metric tons.<br />Mbozi has been long known to locals, who call it kimondo, yet became known to outsiders only in the 1930s. It is named after Mbozi District, in Mbeya (Tanzania). When it was discovered by scientists in 1930 it didn't have a crater.","http://en.wikipedia.org/wiki/Mbozi_meteorite","http://commons.wikimedia.org/wiki/Category:Mbozi_meteorite",,,
"Willamette","Iron, IIIAB",15500,"Found",1902,24269,45.37,-122.58,"The Willamette Meteorite, officially named Willamette, is an iron-nickel meteorite discovered in the U.S. state of Oregon. It is the largest meteorite found in North America and the sixth largest in the world. There was no impact crater at the discovery site; researchers believe the meteorite landed in what is now Canada or Montana, and was transported as a glacial erratic to the Willamette Valley during the Missoula Floods at the end of the last Ice Age (~13,000 years ago). The meteorite is currently on display at the American Museum of Natural History, which acquired the meteorite in 1906. Having been seen by an estimated 40 million people over the years, and given its striking appearance, it is among the most famous meteorites known.","http://en.wikipedia.org/wiki/Willamette_Meteorite","http://commons.wikimedia.org/wiki/Category:Willamette_meteorite",,,
"Morito","Iron, IIIAB",10100,"Found",1600,16745,27.05,-105.43,,"http://books.google.nl/books?id=vW3yqq6cLaIC&pg=PA122&lpg=PA122&dq=morito+meteorite&source=bl&ots=9fYxDEaplz&sig=vtlLEbSzIj-OPMgatbNqQ0-QCro&hl=en&sa=X&ei=ZW-rUbWJAYbnOfO8gKAP&ved=0CGwQ6AEwCw#v=onepage&q=morito%20meteorite&f=false",,,,
"Nantan","Iron, IAB-MG",9500,"Found",1958,16906,25.1,107.7,,,,,,
"Cranbourne","Iron, IAB-MG",8600,"Found",1854,5463,-38.1,145.3,,,,,,
"Santa Catharina","Iron, IAB-ung",7000,"Found",1875,23162,-26.22,-48.6,,,,,,
"Bendegó","Iron, IC",5360,"Found",1784,5015,-10.12,-39.2,,,,,,
"Brenham","Pallasite, PMG-an",4300,"Found",1882,5136,37.58,-99.16,,,,,,
"Jilin","H5",4000,"Fell",1976,12171,44.05,126.17,,,,,,
"Vaca Muerta","Mesosiderite-A1",3828,"Found",1861,24142,-25.75,-70.5,,,,,,
"Youndegin","Iron, IAB-MG",3800,"Found",1884,30374,-32.1,117.72,,,,,,
"Al Haggounia 001","Aubrite",3000,"Found",2006,44857,27.5,-12.5,,,,,,
"Toluca","Iron, IAB-sLL",3000,"Found",1776,24018,19.57,-99.57,,,,,,
"Xifu","Iron, IAB complex",3000,"Found",2004,54608,36.3,120.48,,,,,,
"Yingde","Iron, IVA",3000,"Found",1964,30363,24.2,113.4,,,,,,
"Old Woman","Iron, IIAB",2753,"Found",1976,18007,34.47,-115.23,,,,,,
"Wabar","Iron, IIIAB",2550,"Found",1863,24194,21.5,50.47,,,,,,
"Huckitta","Pallasite, PMG-an",2300,"Found",1924,11922,-22.37,135.77,,,,,,
"Navajo","Iron, IIAB",2184,"Found",1921,16926,35.33,-109.5,,,,,,
"Coahuila","Iron, IIAB",2100,"Found",1837,5387,28.7,-102.73,,,,,,
"Allende","CV3",2000,"Fell",1969,2278,26.97,-105.32,,,,,,
"Campinorte","Iron, ungrouped",2000,"Found",1992,52093,-14.26,-49.16,,,,,,
"Henbury","Iron, IIIAB",2000,"Found",1931,11872,-24.57,133.17,,,,,,
"Zhaoping","Iron, IAB complex",2000,"Found",1983,54609,24.23,111.18,,,,,,
"Santa Luzia","Iron, IIAB",1918,"Found",1921,23166,-16.27,-47.95,,,,,,
"Ghubara","L5",1750,"Found",1954,10911,19.23,56.14,,,,,,
"Gebel Kamil","Iron, ungrouped",1600,"Found",2009,52031,22.02,26.09,,,,,,
"Odessa (iron)","Iron, IAB-MG",1600,"Found",1922,17985,31.72,-102.4,,,,,,
"Casas Grandes","Iron, IIIAB",1545,"Found",1867,5285,30.4,-107.8,,,,,,
"Bitburg","Iron, IAB complex",1500,"Found",1805,5062,49.97,6.53,,,,,,
"Quinn Canyon","Iron, IIIAB",1450,"Found",1908,22364,38.08,-115.53,,,,,,
"Charcas","Iron, IIIAB",1400,"Found",1804,5326,23.08,-101.02,,,,,,
"Santa Apolonia","Iron, IIIAB",1316,"Found",1872,23160,19.22,-98.3,,,,,,
"Tsarev","L5",1225.3,"Found",1968,24058,48.7,45.7,,,,,,
"Alkhamasin","Iron, IIAB",1200,"Found",1973,475,20.6,44.88,,,,,,
"Kouga Mountains","Iron, IIIAB",1173,"Found",1903,12352,-33.62,24,,,,,,
"Goose Lake","Iron, IAB-sLL",1169.5,"Found",1938,10947,41.98,-120.54,,,,,,
"Murnpeowie","Iron, IC",1143,"Found",1909,16878,-29.58,139.9,,,,,,
"Kunya-Urgench","H5",1100,"Fell",1998,12379,42.25,59.2,,,,,,
"Norton County","Aubrite",1100,"Fell",1948,17922,39.68,-99.87,,,,,,
"Fukang","Pallasite, PMG",1003,"Found",2000,34491,44.43,87.63,,,,,,
"Bilibino","Iron, IIAB",1000,"Found",1981,5046,67.3,160.8,,,,,,
"Zacatecas (1792)","Iron, ungrouped",1000,"Found",1792,30381,22.82,-102.57,,,,,,
"Los Sauces","Iron",997,"Found",1937,14710,-29.42,-66.85,,,,,,
"Tucson","Iron, ungrouped",975,"Found",1850,24061,31.85,-110.97,,,,,,
"Cosby's Creek","Iron, IAB-MG",960,"Found",1837,5450,35.78,-83.25,,,,,,
"Imilac","Pallasite, PMG",920,"Found",1822,12025,-24.2,-68.81,,,,,,
"Zhigansk","Iron, IIIAB",900,"Found",1966,30405,68,128.3,,,,,,
"Bondoc","Mesosiderite-B4",888.6,"Found",1956,5103,13.52,122.45,,,,,,
"Santa Rosa","Iron, IC",825,"Found",1810,23167,5.92,-73,,,,,,
"Brahin","Pallasite, PMG",823,"Found",1810,5130,52.5,30.33,,,,,,
"Red River","Iron, IIIAB",800,"Found",1808,22548,32,-95,,,,,,
"Sardis","Iron, IAB complex",800,"Found",1940,23177,32.95,-81.87,,,,,,
"Wolf Creek","Iron, IIIAB",760,"Found",1947,24326,-19.3,127.77,,,,,,
"Esquel","Pallasite, PMG",755,"Found",1951,10054,-42.9,-71.33,,,,,,
"Gladstone (iron)","Iron, IAB-MG",736.6,"Found",1915,10920,-23.9,151.3,,,,,,
"Mount Dooling","Iron, IC",734,"Found",1909,16771,-29.45,119.72,,,,,,
"Krasnojarsk","Pallasite, PMG-an",700,"Found",1749,12356,54.9,91.8,,,,,,
"Plainview (1917)","H5",700,"Found",1917,18841,34.12,-101.78,,,,,,
"Davis Mountains","Iron, IIIAB",689,"Found",1903,6615,30.75,-104.25,,,,,,
"Arispe","Iron, IC",683,"Found",1896,2332,30.33,-109.98,,,,,,
"Zerhamra","Iron, IIIAB-an",630,"Found",1967,30403,29.86,-2.65,,,,,,
"Itapuranga","Iron, IAB-MG",628,"Found",,12057,-15.58,-50.15,,,,,,
"La Caille","Iron, ungrouped",626,"Found",1828,12393,43.73,6.78,,,,,,
"Jianshi","Iron, IIIAB",600,"Fell",1890,12087,30.81,109.5,,,,,,
"Adzhi-Bogdo (iron)","Iron, IAB complex",582,"Found",1952,389,44.87,95.42,,,,,,
"Long Island","L6",564,"Found",1891,14694,39.93,-99.6,,,,,,
"Jiddat al Harasis 073","L6",550,"Found",2002,12135,19.7,55.73,,,,,,
"Rateldraai","Iron, IIIAB",549,"Found",1909,22397,-28.83,21.13,,,,,,
"Drum Mountains","Iron, IIIAB",529,"Found",1944,7733,39.5,-112.9,,,,,,
"Grant","Iron, IIIAB",525,"Found",1929,10957,35.17,-107.88,,,,,,
"Tamentit","Iron, IIIAB",510,"Found",1864,23798,27.72,-0.25,,,,,,
"Trenton","Iron, IIIAB",505,"Found",1858,24045,43.37,-88.13,,,,,,
"Haig","Iron, IIIAB",503,"Found",1951,11471,-31.38,125.63,,,,,,
"Knyahinya","L/LL5",500,"Fell",1866,12335,48.9,22.4,,,,,,
"Ochansk","H4",500,"Fell",1887,17979,57.78,55.27,,,,,,
"Boxhole","Iron, IIIAB",500,"Found",1937,5126,-22.62,135.2,,,,,,
"El Timbu","Iron",500,"Found",1942,7820,-33.12,-60.97,,,,,,
"Prambanan","Iron, ungrouped",500,"Found",1797,18884,-7.57,110.83,,,,,,
"Wildara","H5",500,"Found",1968,24265,-28.23,120.85,,,,,,
"Jepara","Pallasite, PMG",499.5,"Found",2008,53840,-6.6,110.73,,,,,,
"Saint-Aubin","Iron, IIIAB",472,"Found",1968,23096,48.48,3.58,,,,,,
"Carbo","Iron, IID",454,"Found",1923,5266,29.67,-111.5,,,,,,
"Etter","L5",450,"Found",1965,10062,35.98,-101.9,,,,,,
"Sayh al Uhaymir 001","L5",450,"Found",2000,23193,20.52,56.67,,,,,,
"Wallapai","Iron, IID",430,"Found",1927,24206,35.8,-113.7,,,,,,
"Yanhuitlan","Iron, IVA",421,"Found",1825,30349,17.53,-97.35,,,,,,
"Paragould","LL5",408,"Fell",1930,18101,36.07,-90.5,,,,,,
"Allan Hills A76009","L6",407,"Found",1976,1316,-76.72,159.67,,,,,,
"Augustinovka","Iron, IIIAB",400,"Found",1890,4898,48.07,35.08,,,,,,
"Pei Xian","Iron",400,"Found",1917,18784,34.7,117,,,,,,
"Mount Joy","Iron, IIAB",384,"Found",1887,16779,39.78,-77.22,,,,,,
"Mont Dieu","Iron, ungrouped",360,"Found",1994,16722,49.55,4.87,,,,,,
"Hugoton","H5",350,"Found",1927,11984,37.2,-101.35,,,,,,
"Longtian","Iron, IIIAB",350,"Found",1991,14696,27.35,108.5,,,,,,
"Kokstad","Iron, IIIE",341,"Found",1884,12341,-30.55,29.42,,,,,,
"Bjurböle","L/LL4",330,"Fell",1899,5064,60.4,25.8,,,,,,
"Millbillillie","Eucrite-mmict",330,"Fell",1960,16643,-26.45,120.37,,,,,,
"Mount Edith","Iron, IIIAB",326,"Found",1913,16773,-22.5,116.17,,,,,,
"Sterlitamak","Iron, IIIAB",325,"Fell",1990,23724,53.67,55.98,,,,,,
"Seymchan","Pallasite, PMG",323.3,"Found",1967,23510,62.9,152.43,,,,,,
"Estherville","Mesosiderite-A3/4",320,"Fell",1879,10059,43.42,-94.83,,,,,,
"Tamarugal","Iron, IIIAB",320,"Found",1903,23794,-20.8,-69.67,,,,,,
"Guffey","Iron, ungrouped",309,"Found",1907,11441,38.77,-105.52,,,,,,
"Nova Petropolis","Iron, IIIAB",305,"Found",1967,17928,-29.43,-50.92,,,,,,
"Bruderheim","L6",303,"Fell",1960,5156,53.9,-112.88,,,,,,
"Gressk","Iron, IIAB",303,"Found",1955,11200,53.23,27.33,,,,,,
"Mocs","L5-6",300,"Fell",1882,16709,46.8,24.03,,,,,,
"Putinga","L6",300,"Fell",1937,18905,-29.03,-53.05,,,,,,
"North Chile","Iron, IIAB",300,"Found",1875,17001,-23,-69,,,,,,
"Tianlin","Iron, IAB complex",300,"Found",1956,23983,24.3,106.1,,,,,,
"Morland","H6",295,"Found",1890,16746,39.33,-100.07,,,,,,
"Bur-Abor","Iron, IIIAB",290,"Found",1997,5166,3.98,41.65,,,,,,
"Estacado","H6",290,"Found",1883,10057,33.9,-101.75,,,,,,
"Morasko","Iron, IAB-MG",290,"Found",1914,16741,52.47,16.9,,,,,,
"Clovis (no. 1)","H3.6",283,"Found",1961,5385,34.3,-103.13,,,,,,
"Rio Limay","L5",280,"Found",1995,22609,-39.85,-69.48,,,,,,
"Sanclerlandia","Iron, IIIAB",279,"Found",1971,23132,-16.22,-50.3,,,,,,
"South Dahna","Iron, IAB complex",275,"Found",1957,23677,22.57,48.3,,,,,,
"Mount Padbury","Mesosiderite-A1",272,"Found",1964,16785,-25.67,118.1,,,,,,
"Saint-Séverin","LL6",271,"Fell",1966,23102,45.3,0.23,,,,,,
"Lake Murray","Iron, IIAB",270,"Found",1933,12446,34.1,-97,,,,,,
"Miles","Iron, IIE",265,"Found",1992,16641,-27.83,150.33,,,,,,
"Potter","L6",261,"Found",1941,18878,41.23,-103.3,,,,,,
"Suizhou","L6",260,"Fell",1986,23738,31.62,113.47,,,,,,
"Tishomingo","Iron, ungrouped",260,"Found",1965,24010,34.25,-96.68,,,,,,
"Dalgety Downs","L4",257,"Found",1941,5507,-25.33,116.18,,,,,,
"Boguslavka","Iron, IIAB",256,"Fell",1916,5098,44.55,131.63,,,,,,
"Dhofar 020","H4/5",256,"Found",2000,6719,19.03,54.52,,,,,,
"Uegit","Iron, IIIAB",252,"Found",1921,24105,3.82,43.33,,,,,,
"Omolon","Pallasite, PMG",250,"Fell",1981,18019,64.02,161.81,,,,,,
"Pultusk","H5",250,"Fell",1868,18901,52.77,21.27,,,,,,
"Netschaëvo","Iron, IIE-an",250,"Found",1846,16949,54.23,35.15,,,,,,
"Shangdu","Iron, IIIAB",247,"Found",1957,23523,42.5,114,,,,,,
"St. Genevieve County","Iron, IIIF",244.5,"Found",1888,23086,37.97,-90.32,,,,,,
"El Hammami","H5",240,"Found",1997,7806,23.28,-10.82,,,,,,
"Sacramento Mountains","Iron, IIIAB",237.2,"Found",1890,22794,32.92,-104.67,,,,,,
"Homestead","L5",230,"Fell",1875,11901,41.8,-91.87,,,,,,
"New Concord","L6",230,"Fell",1860,16953,40,-81.77,,,,,,
"Muonionalusta","Iron, IVA",230,"Found",1906,16873,67.8,23.1,,,,,,
"Alfianello","L6",228,"Fell",1883,466,45.27,10.15,,,,,,
"Bear Creek","Iron, IIIAB",227,"Found",1866,4982,39.6,-105.3,,,,,,
"Holbrook","L/LL6",220,"Fell",1912,11894,34.9,-110.18,,,,,,
"Guixi","Iron, IIIAB",220,"Found",,11446,28.28,117.18,,,,,,
"Youxi","Mesosiderite-C",218,"Found",2006,55793,26.06,118.01,,,,,,
"Acuña","Iron, IIIAB",217.7,"Found",1981,373,29.32,-100.97,,,,,,
"Ssyromolotovo","Iron, IIIAB",217,"Found",1873,23694,58.62,98.93,,,,,,
"Chinga","Iron, ungrouped",209.4,"Found",1913,5353,51.06,94.4,,,,,,
"Kainsaz","CO3.2",200,"Fell",1937,12229,55.43,53.25,,,,,,
"Kunashak","L6",200,"Fell",1949,12377,55.78,61.37,,,,,,
"Saratov","L4",200,"Fell",1918,23176,52.55,46.55,,,,,,
"Barratta","L4",200,"Found",1845,4951,-35.3,144.57,,,,,,
"Dimmitt","H3.7",200,"Found",1942,7645,34.58,-102.17,,,,,,
"Jiddat al Harasis 055","L4-5",200,"Found",2004,12119,19.65,55.69,,,,,,
"Liangcheng","Iron, IIIAB",200,"Found",1959,14645,40.5,112.5,,,,,,
"Moshesh","H",200,"Found",,16756,-30.1,28.72,,,,,,
"Patos de Minas (octahedrite)","Iron, IAB complex",200,"Found",1925,18114,-18.58,-46.53,,,,,,
"Porto Alegre","Iron, IIIE",200,"Found",2005,52091,-30.03,-51.23,,,,,,
"Pallasovka","Pallasite, PMG",198,"Found",1990,34061,49.87,46.61,,,,,,
"Kenton County","Iron, IIIAB",194,"Found",1889,12280,38.82,-84.6,,,,,,
"Owens Valley","Iron, IIIAB",192.8,"Found",1913,18061,37.47,-118,,,,,,
"Guanghua","Iron, IVA",190,"Found",1932,11434,32.4,111.7,,,,,,
"Admire","Pallasite, PMG",180,"Found",1881,380,38.7,-96.1,,,,,,
"Travis County (a)","H5",175.4,"Found",1889,24040,30.3,-97.7,,,,,,
"Zag","H3-6",175,"Fell",1998,30384,27.33,-9.33,,,,,,
"Iron Creek","Iron, IIIAB",175,"Found",1869,12047,53,-112,,,,,,
"Tanokami Mountain","Iron, IIIE",174,"Found",1885,23872,34.92,135.97,,,,,,
"Tamir-Tsetserleg","Stone-uncl",173,"Found",1956,23799,47.45,101.48,,,,,,
"Owasco","L6",168.4,"Found",1984,18060,41.2,-103.68,,,,,,
"Madoc","Iron, IIIAB",168,"Found",1854,15381,44.5,-77.47,,,,,,
"Manlai","Iron, ungrouped",166.8,"Found",1954,15407,44.33,106.5,,,,,,
"Djati-Pengilon","H6",166,"Fell",1884,7652,-7.5,111.5,,,,,,
"São Julião de Moreira","Iron, IIAB",162,"Found",1883,23172,41.77,-8.58,,,,,,
"Zaragoza","Iron, IVA-an",162,"Found","1950s",48916,41.65,-0.87,,,,,,
"Knowles","Iron, IIIAB",161,"Found",1903,12334,36.9,-100.22,,,,,,
"Tenham","L6",160,"Fell",1879,23897,-25.73,142.95,,,,,,
"Garabato","H5",160,"Found",1995,10856,-28.87,-60.2,,,,,,
"Qijiaojing","Iron, ungrouped",160,"Found",2003,54610,43.75,92.92,,,,,,
"Mount Vernon","Pallasite, PMG",159,"Found",1868,16806,36.93,-87.4,,,,,,
"Longchang","Iron, IVA-an",158.5,"Found",1781,14695,29.3,105.3,,,,,,
"Kimble County","H6",153.8,"Found",1918,12311,30.42,-99.4,,,,,,
"Bluff (a)","L5",153.3,"Found",1878,5087,29.88,-96.87,,,,,,
"Forest City","H5",152,"Fell",1890,10119,43.25,-93.67,,,,,,
"Glasatovo","H4",152,"Fell",1918,10926,57.35,37.62,,,,,,
"Yardymly","Iron, IAB complex",150.2,"Fell",1959,30352,38.93,48.25,,,,,,
"Mbale","L5/6",150,"Fell",1992,15455,1.07,34.17,,,,,,
"Olivenza","LL5",150,"Fell",1924,18013,38.72,-7.07,,,,,,
"Weston","H4",150,"Fell",1807,24249,41.27,-73.27,,,,,,
"Wiluna","H5",150,"Fell",1967,24281,-26.59,120.33,,,,,,
"Jalu","L6",150,"Found",2000,12070,27.96,21.68,,,,,,
"Magura","Iron, IAB-MG",150,"Found",1840,15388,49.33,19.48,,,,,,
"McKinney","L4",150,"Found",1870,15463,33.18,-96.72,,,,,,
"Tres Castillos","Iron, ungrouped",150,"Found",1992,24047,29.47,-105.8,,,,,,
"Montferré","H5",149,"Fell",1923,16727,43.39,1.96,,,,,,
"Orange River (iron)","Iron, IIIAB",148.8,"Found",1855,18023,-30,25,,,,,,
"Camp Wood","Iron, IIIAB",148,"Found","1960s",51830,29.77,-99.88,,,,,,
"Glorieta Mountain","Pallasite, PMG-an",148,"Found",1884,10935,35.6,-105.8,,,,,,
"Gilgoin","H5",147,"Found",1889,10915,-30.38,147.2,,,,,,
"Wichita County","Iron, IAB-MG",145,"Found",1836,24257,34.07,-98.92,,,,,,
"Molina","H5",144,"Fell",1858,16715,38.12,-1.17,,,,,,
"El Sampal","Iron, IIIAB",142,"Found",1973,7817,-44.53,-70.37,,,,,,
"Keyes","L6",142,"Found",1939,12287,36.72,-102.5,,,,,,
"Tambo Quemado","Iron, IIIAB",141,"Found",1950,23797,-14.67,-74.5,,,,,,
"Ysleta","Iron, ungrouped",140.7,"Found",1914,30375,31.65,-106.18,,,,,,
"Selma","H4",140.6,"Found",1906,23486,32.4,-87,,,,,,
"Huizopa","Iron, IVA",140,"Found",1907,11985,28.9,-108.57,,,,,,
"Ider","Iron, IIIAB",140,"Found",1957,11999,34.68,-85.65,,,,,,
"Korra Korrabes","H3",140,"Found",1996,12347,-25.2,18.08,,,,,,
"Brainard","Iron, IIIAB",138.3,"Found",1978,5131,41.15,-96.96,,,,,,
"Derrick Peak A78009","Iron, IIAB",138.1,"Found",1978,6685,-80.07,156.38,,,,,,
"Babb's Mill (Blake's Iron)","Iron, ungrouped",136,"Found",1876,4915,36.3,-82.88,,,,,,
"Cape of Good Hope","Iron, IVB",136,"Found",1793,5261,-33.5,26,,,,,,
"Kesen","H4",135,"Fell",1850,12286,38.98,141.62,,,,,,
"Colomera","Iron, IIE",134,"Found",1912,5404,37.43,-3.65,,,,,,
"Carnegie","L6",132.7,"Found",1963,5278,35.17,-98.64,,,,,,
"Araslanovo","L/LL5",132,"Found",1973,2324,55.14,48.2,,,,,,
"Karavannoe","Pallasite, PES",132,"Found","1960s",56567,57.78,47.68,,,,,,
"Yenberrie","Iron, IAB-MG",132,"Found",1918,30361,-14.25,132.02,,,,,,
"Dong Ujimqin Qi","Mesosiderite",128.8,"Fell",1995,7706,45.5,119.03,,,,,,
"Chebankol","Iron, IAB-sHL",127.76,"Found",1938,5335,53.67,88,,,,,,
"Ozona","H6",127.5,"Found",1929,18066,30.73,-101.3,,,,,,
"Ensisheim","LL6",127,"Fell",1492,10039,47.87,7.35,,,,,,
"Carthage","Iron, IIIAB",127,"Found",1840,5282,36.27,-85.98,,,,,,
"Dhofar 005","L6",125.5,"Found",2000,6704,18.17,54.17,,,,,,
"Jiddat al Harasis 091","L5",123.37,"Found",2002,12150,19.69,56.65,,,,,,
"Bur-Gheluai","H5",120,"Fell",1919,5169,5,48,,,,,,
"Santiago Papasquiero","Iron, ungrouped",119.5,"Found",1958,23169,24.5,-106,,,,,,
"Youanmi","Iron, IIIAB",118.4,"Found",1917,30373,-29.5,118.75,,,,,,
"Duketon","Iron, IIIAB",118.3,"Found",1948,7740,-27.5,122.37,,,,,,
"Bencubbin","CBa",118,"Found",1930,5014,-30.75,117.78,,,,,,
"Scurry","H5",118,"Found",1937,23468,32.5,-101,,,,,,
"Para de Minas","Iron, IVA",116.3,"Found",1934,18099,-19.87,-44.62,,,,,,
"Cleveland","Iron, IIIAB",115,"Found",1860,5379,34.88,-84.78,,,,,,
"Tafassasset","CR-an",114,"Found",2000,23779,20.76,10.44,,,,,,
"Caperr","Iron, IIIAB",113.9,"Found",1869,5263,-45.28,-70.48,,,,,,
"Buenaventura","Iron, IIIAB",113.6,"Found",1969,5162,29.8,-107.55,,,,,,
"Gundaring","Iron, IIIAB",112.5,"Found",1937,11452,-33.3,117.67,,,,,,
"Oakley (iron)","Iron, IIIF",111,"Found",1926,17972,42.33,-113.7,,,,,,
"Florey","H6",110.8,"Found",1978,10112,32.52,-102.71,,,,,,
"Etosha","Iron, IC",110.7,"Found",1970,10061,-18.5,16,,,,,,
"Lewis Cliff 85320","H5",110.22,"Found",1985,12790,-84.26,161.42,,,,,,
"Mount Tazerzait","L5",110,"Fell",1991,16804,18.7,4.8,,,,,,
"Sulagiri","LL6",110,"Fell",2008,48951,12.67,78.03,,,,,,
"Lenarto","Iron, IIIAB",108.5,"Found",1814,12763,49,21,,,,,,
"Abee","EH4",107,"Fell",1952,6,54.22,-113,,,,,,
"Elbogen","Iron, IID",107,"Fell",1400,7823,50.18,12.73,,,,,,
"Zhovtnevyi","H6",107,"Fell",1938,30407,47.58,37.25,,,,,,
"Tiberrhamine","L6",107,"Found",1967,23985,28.12,0.53,,,,,,
"Cook 001","H5",105,"Found",1989,5421,-30.33,130.53,,,,,,
"Faith","H5",105,"Found",1952,10071,45.33,-102.08,,,,,,
"Chico","L6",104.8,"Found",1954,5346,36.5,-104.2,,,,,,
"Colby (Wisconsin)","L6",104,"Fell",1917,5395,44.9,-90.28,,,,,,
"Juncal","Iron, IIIAB",104,"Found",1866,12211,-26,-69.25,,,,,,
"Molong","Pallasite, PMG",104,"Found",1912,16716,-33.28,148.88,,,,,,
"Udei Station","Iron, IAB-ung",103,"Fell",1927,24101,7.95,8.08,,,,,,
"Rifle","Iron, IAB-MG",102.7,"Found",1948,22605,38.52,-107.83,,,,,,
"Seeläsgen","Iron, IAB-MG",102,"Found",1847,23474,52.27,15.55,,,,,,
"Sevrukovo","L5",101,"Fell",1874,23509,50.62,36.6,,,,,,
"Chelyabinsk","LL5",100,"Fell",2013,57165,54.82,61.12,,,,,,
"Chergach ","H5",100,"Fell",2007,47347,23.7,-5.01,,,,,,
"Gujba","CBa",100,"Fell",1984,11449,11.49,11.66,,,,,,
"Juancheng","H5",100,"Fell",1997,12203,35.5,115.42,,,,,,
"Kidairat","H6",100,"Fell",1983,12300,14,28,,,,,,
"Murchison","CM2",100,"Fell",1969,16875,-36.62,145.2,,,,,,
"Paranaiba","L6",100,"Fell",1956,18103,-19.13,-51.67,,,,,,
"Tamdakht","H5",100,"Fell",2008,48691,31.16,-7.02,,,,,,
"Agoudal","Iron, IIAB",100,"Found",2000,57354,31.98,-5.52,,,,,,
"Anyujskij","Iron, IIAB",100,"Found",1981,2312,66.9,164.2,,,,,,
"Bou Azarif","H5",100,"Found",2010,53812,31.16,-5.15,,,,,,
"Budulan","Mesosiderite-B4",100,"Found",1962,5161,50.57,114.9,,,,,,
"Cook 007","H4",100,"Found",1989,5427,-30.62,130.42,,,,,,
"Dimitrovgrad","Iron, IIIAB",100,"Found",1949,7644,43.05,22.86,,,,,,
"Faucett","H5",100,"Found",1966,10077,39.62,-94.87,,,,,,
"Franconia","H5",100,"Found",2002,10174,34.72,-114.22,,,,,,
"Lutschaunig's Stone","L6",100,"Found",1861,14762,-27,-70,,,,,,
"Pierceville (iron)","Iron, IIIAB",100,"Found",1917,18819,37.87,-100.67,,,,,,
"Retuerta del Bullaque","Iron, IAB-MG",100,"Found",1980,56577,39.46,-4.38,,,,,,
"Zhongxiang","Iron",100,"Found",1981,30406,31.2,112.5,,,,,,
"Social Circle","Iron, IVA",99.3,"Found",1927,23659,33.7,-83.7,,,,,,
"Steinbach","Iron, IVA-an",98,"Found",1724,23722,50.5,12.5,,,,,,
"Palmas de Monte Alto","Iron, IIIAB",97,"Found",1954,48959,-14.37,-43.02,,,,,,
"Zavid","L6",95,"Fell",1897,30396,44.4,19.12,,,,,,
"Dar al Gani 749","CO3",95,"Found",1999,6296,27.3,15.76,,,,,,
"Loreto","Iron, IIIAB",94.8,"Found",1896,14705,26.02,-111.37,,,,,,
"Weekeroo Station","Iron, IIE-an",94.2,"Found",1924,24230,-32.27,139.87,,,,,,
"Carver","Iron, IIAB",94,"Found",1935,5284,32,-86,,,,,,
"Concho","L6",93.5,"Found",1939,5417,32,-101.5,,,,,,
"Machinga","L6",93.2,"Fell",1981,15371,-15.21,35.24,,,,,,
"Watson 001","Iron, IIE",93,"Found",1972,24221,-30.5,131.55,,,,,,
"Wiltshire","H5",92.75,"Found",,56143,51.15,-1.81,,,,,,
"Jiddat al Harasis 090","L5",92.67,"Found",2002,12149,19.72,56.61,,,,,,
"Karee Kloof","Iron, IAB-sLL",92.1,"Found",1914,12259,-31.6,25.8,,,,,,
"Laguna Manantiales","Iron",92,"Found",1945,12413,-48.58,-67.42,,,,,,
"Juvinas","Eucrite-mmict",91,"Fell",1821,12214,44.72,4.3,,,,,,
"Richardton","H5",90,"Fell",1918,22599,46.88,-102.32,,,,,,
"ad-Dahbubah","H5",90,"Found",1961,376,19.83,51.25,,,,,,
"Farmington","L5",89.4,"Fell",1890,10074,39.75,-97.03,,,,,,
"Mincy","Mesosiderite-B4",89.4,"Found",1857,16694,36.55,-93.1,,,,,,
"Bennett County","Iron, IIAB",89,"Found",1934,5022,43.5,-101.25,,,,,,
"Mills","H6",88,"Found",1970,16687,36.23,-104.12,,,,,,
"San Angelo","Iron, IIIAB",88,"Found",1897,23117,31.42,-100.35,,,,,,
"Wagon Mound","L6",87.5,"Found",1932,24196,35.84,-104.59,,,,,,
"Roebourne","Iron, IIIAB",86.86,"Found",1892,22644,-22.33,118,,,,,,
"Bath Furnace","L6",86,"Fell",1902,4975,38.25,-83.75,,,,,,
"Tulia (a)","H3-4",86,"Found",1917,24066,34.62,-101.95,,,,,,
"Kayakent","Iron, IIIAB",85,"Fell",1961,12268,39.26,31.78,,,,,,
"Apoala","Iron, IIIAB",85,"Found",1889,2317,17.7,-97,,,,,,
"Juanita de Angeles","H5",85,"Found",1992,12204,28.42,-105.08,,,,,,
"Zapaliname","Iron, IAB-MG",85,"Found",1998,30392,25.01,-100.75,,,,,,
"Bruceville","L6",83,"Found",1998,5155,38.3,-121.41,,,,,,
"Gan Gan","Iron, IVA",83,"Found",1984,10852,-42.67,-68.08,,,,,,
"Gretna","L5",82,"Found",1912,11201,39.93,-99.22,,,,,,
"Ness County (1894)","L6",82,"Found",1894,16946,38.5,-99.6,,,,,,
"Renfrow","L6",81.6,"Found",1986,22588,36.99,-97.56,,,,,,
"Carlton","Iron, IAB-sLM",81.2,"Found",1887,5277,31.92,-98.03,,,,,,
"Ainsworth","Iron, IIAB",80.65,"Found",1907,422,42.6,-99.8,,,,,,
"Kernouve","H6",80,"Fell",1869,12284,48.12,-3.08,,,,,,
"Soko-Banja","LL4",80,"Fell",1877,23661,43.67,21.87,,,,,,
"Baygorria","Iron, IAB complex",80,"Found",1994,4980,-33,-56,,,,,,
"Unter-Mässing","Iron, IIC",80,"Found",1920,24124,49.09,11.33,,,,,,
"Vera","L/LL4",80,"Found",1941,24161,-29.92,-60.28,,,,,,
"Mrirt","Iron",79.9,"Found",1937,16819,33.13,-5.57,,,,,,
"Belle Plaine","L6",78.8,"Found",1950,5004,37.32,-97.25,,,,,,
"Finmarken","Pallasite, PMG",78.3,"Found",1902,10103,70,24,,,,,,
"Parnallee","LL3.6",77.6,"Fell",1857,18108,9.23,78.35,,,,,,
"Jiddat al Harasis 230","L5",77,"Found",2005,35549,19.71,56.58,,,,,,
"Moorumbunna","Iron, IIIAB",77,"Found",1943,16739,-28.92,136.25,,,,,,
"Augusta County","Iron, IIIAB",76,"Found",1858,4897,38.17,-79.08,,,,,,
"Northbranch","H5",76,"Found",1972,17010,39.99,-98.34,,,,,,
"Yelland Dry Lake","H4",76,"Found",2007,52641,39.35,-114.41,,,,,,
"Tawallah Valley","Iron, IVB",75.75,"Found",1939,23889,-15.7,135.67,,,,,,
"Xingyang","H6",75.5,"Fell",1977,24346,32.33,114.32,,,,,,
"Acme","H5",75,"Found",1947,371,33.63,-104.27,,,,,,
"Bayard","L5",75,"Found",1982,4978,41.82,-103.37,,,,,,
"Wolsey","Iron, IAB-MG",74.83,"Found",1981,24328,44.4,-98.53,,,,,,
"Tilden","L6",74.8,"Fell",1927,23998,38.2,-89.68,,,,,,
"Walker County","Iron, IIAB",74.8,"Found",1832,24204,34,-87.17,,,,,,
"Hunter","LL5",74.6,"Found",1962,11987,36.56,-97.67,,,,,,
"Ethiudna","L4",74.32,"Found",1977,10060,-32.03,139.78,,,,,,
"Toufassour","Mesosiderite",73.3,"Found",2007,47702,29.65,-7.75,,,,,,
"Nelson County","Iron, IIIF",73.03,"Found",1856,16942,37.75,-85.5,,,,,,
"Uwharrie","Iron, IIIAB",72.7,"Found",1930,24139,35.52,-79.97,,,,,,
"Uruaçu","Iron, IAB-MG",72.5,"Found",1992,24131,-14.53,-48.77,,,,,,
"Isoulane-n-Amahar","L6",72,"Found",1945,12052,27.13,8.67,,,,,,
"Mafuta","Iron, IID",71.5,"Found",1984,15384,-16.9,30.41,,,,,,
"Merua","H5",71.4,"Fell",1920,15492,25.48,81.98,,,,,,
"Portales Valley","H6",71.4,"Fell",1998,18874,34.18,-103.3,,,,,,
"Sierra Colorada","L5",71.3,"Found",1995,23588,-40.8,-67.48,,,,,,
"Tlacotepec","Iron, IVB",71,"Found",1903,24013,18.65,-97.55,,,,,,
"Wooramel","L5",71,"Found",1969,24335,-25.65,114.22,,,,,,
"Mahadevpur","H4/5",70.5,"Fell",2007,47361,27.67,95.78,,,,,,
"Smithville","Iron, IAB-MG",70.5,"Found",1840,23654,35.98,-85.85,,,,,,
"Peña Blanca Spring","Aubrite",70,"Fell",1946,18786,30.13,-103.12,,,,,,
"Lahmada 009","H3-6",70,"Found",1999,12422,27.17,-9.5,,,,,,
"Smithonia","Iron, IIAB",69.9,"Found",1940,23651,34,-83.17,,,,,,
"Landes","Iron, IAB-MG",69.8,"Found",1930,12457,38.9,-79.18,,,,,,
"Xinyi","H5",69,"Found",1975,24347,34.37,118.33,,,,,,
"Wu-chu-mu-ch'in","Iron, IAB-ung",68.86,"Found",1920,24341,45.5,118,,,,,,
"Burlington","Iron, IIIE",68,"Found",1819,5172,42.75,-75.18,,,,,,
"Hamilton (Queensland)","L6",68,"Found",1966,11483,-28.48,148.25,,,,,,
"Marlow","L5",68,"Found",1936,15428,34.6,-97.92,,,,,,
"Soledade","Iron, IAB-MG",68,"Found",1986,23662,-29.05,-51.43,,,,,,
"Springwater","Pallasite, PMG-an",67.6,"Found",1931,23692,52,-108.3,,,,,,
"Rahimyar Khan","L5",67.23,"Fell",1983,31302,28.23,70.2,,,,,,
"Pervomaisky","L6",66,"Fell",1933,18798,56.63,39.43,,,,,,
"Timochin","H5",65.5,"Fell",1807,24004,54.5,35.2,,,,,,
"Sychevka","Iron, IIIAB",65,"Found",1988,23772,51.13,127.5,,,,,,
"Bocaiuva","Iron, ungrouped",64,"Found",1965,5092,-17.17,-43.83,,,,,,
"Signal Mountain","Iron, IVA",63.5,"Found",1919,23592,32.5,-115.5,,,,,,
"Treysa","Iron, IIIAB-an",63,"Fell",1916,24050,50.92,9.18,,,,,,
"Derrick Peak 88017","Iron, IIAB",63,"Found",1988,6668,-80.07,156.38,,,,,,
"Santa Clara","Iron, IVB",63,"Found",1976,23163,24.47,-103.35,,,,,,
"Tanezrouft 072","H6",62.29,"Found",2002,31333,24.44,0.1,,,,,,
"Thunda","Iron, IIIAB",62.1,"Found",1881,23978,-25.7,143.05,,,,,,
"Covert","H5",61,"Found",1896,5456,39.2,-98.78,,,,,,
"Gold Basin","L4",61,"Found",1995,10940,35.88,-114.23,,,,,,
"Hex River Mountains","Iron, IIAB",60,"Found",1882,11880,-33.32,19.62,,,,,,
"Nicolás Levalle","L5",60,"Found",1956,52413,-38.85,-62.88,,,,,,
"Savannah","Iron, IIIAB",60,"Found",1923,23189,35.17,-88.18,,,,,,
"Yongning","Iron, IAB-ung",60,"Found",1971,30365,22.75,108.33,,,,,,
"Derrick Peak A78008","Iron, IIAB",59.4,"Found",1978,6684,-80.07,156.38,,,,,,
"Łowicz","Mesosiderite-A3",59,"Fell",1935,14718,52,19.92,,,,,,
"Bohumilitz","Iron, IAB-MG",59,"Found",1829,5099,49.05,13.77,,,,,,
"Piedade do Bagre","Iron, ungrouped",59,"Found",1922,18817,-18.94,-44.98,,,,,,
"Quijingue","Pallasite, PMG",59,"Found",1984,22362,-10.75,-39.22,,,,,,
"Guadalupe y Calvo","Iron, IIAB",58.63,"Found",1971,11431,26.1,-106.97,,,,,,
"Aliskerovo","Iron, IIIE-an",58.4,"Found",1977,472,67.88,167.5,,,,,,
"Ivanpah","Iron, IIIAB",58,"Found",1880,12062,35.33,-115.32,,,,,,
"Phillips County (stone)","L6",57.9,"Fell",1901,18808,40,-99.25,,,,,,
"Julesburg","L3.6",57.9,"Found",1983,12208,39.98,-102.27,,,,,,
"Miami","H5",57.7,"Found",1930,16630,35.67,-100.6,,,,,,
"Gladstone (stone)","H4",57.3,"Found",1936,10921,36.3,-104,,,,,,
"Warburton Range","Iron, IVB",56.93,"Found",1963,24212,-26.28,126.67,,,,,,
"Farmville","H4",56,"Fell",1934,10075,35.55,-77.53,,,,,,
"Ashmore","H5",55.4,"Found",1969,2349,32.9,-102.28,,,,,,
"Jenkins","Iron, IAB-MG",55.4,"Found",1946,12080,36.82,-93.76,,,,,,
"Kulnine","L6",55.3,"Found",1886,12372,-34.15,141.78,,,,,,
"Wellman (a)","H5",55,"Found",1940,24237,33.03,-102.33,,,,,,
"Rosebud","H5",54.9,"Found",1915,22767,30.82,-97.05,,,,,,
"Elenovka","L5",54.64,"Fell",1951,7824,47.83,37.67,,,,,,
"Aprel'sky","Iron, IIIAB",54.6,"Found",1969,2319,53.3,126.12,,,,,,
"Markovka","H4",54.2,"Found",1967,15427,52.4,79.8,,,,,,
"Veramin","Mesosiderite-B2",54,"Fell",1880,24162,35.33,51.63,,,,,,
"Chihuahua City","Iron, IC",54,"Found",1929,5350,28.67,-106.12,,,,,,
"Dunganville","Iron, IIIAB",54,"Found",1976,7748,-42.55,171.35,,,,,,
"Uwet","Iron, IIAB",54,"Found",1903,24138,5.28,8.25,,,,,,
"Kumerina","Iron, IIC",53.5,"Found",1937,12375,-24.92,119.42,,,,,,
"Ruff's Mountain","Iron, IIIAB",53.07,"Found",1844,22779,34.3,-81.4,,,,,,
"Dalton","Iron, IIIAB",53,"Found",1879,5509,34.8,-84.98,,,,,,
"Nan Yang Pao","L6",52.9,"Fell",1917,16903,35.67,103.5,,,,,,
"Ahumada","Pallasite, PMG",52.6,"Found",1909,419,30.7,-105.5,,,,,,
"Stannern","Eucrite-mmict",52,"Fell",1808,23713,49.28,15.57,,,,,,
"Benjamin","H4/5",51.8,"Found",1969,5020,33.58,-99.8,,,,,,
"Lancé","CO3.5",51.7,"Fell",1872,12455,47.7,1.07,,,,,,
"Grand Rapids","Iron, ungrouped",51.7,"Found",1883,10955,42.97,-85.77,,,,,,
"Ilimaes (iron)","Iron, IIIAB",51.7,"Found",1870,12022,-26,-70,,,,,,
"Leedey","L6",51.5,"Fell",1943,12755,35.88,-99.33,,,,,,
"Mungindi","Iron, IAB-sLM",51.3,"Found",1897,16872,-28.93,148.95,,,,,,
"Willow Creek","Iron, IIIE",51,"Found",1914,24276,43.47,-106.77,,,,,,
"La Grange","Iron, IVA",50.8,"Found",1860,12399,38.4,-85.37,,,,,,
"Davy (a)","L4",50.6,"Found",1940,6616,29.1,-97.6,,,,,,
"Richland","Iron, IIAB",50.6,"Found",1951,22601,31.9,-96.4,,,,,,
"Santa Vitoria do Palmar","L3",50.4,"Found",2003,35478,-33.51,-53.41,,,,,,
"Northwest Africa 1581","L6",50.2,"Found",2001,17340,31.38,-4.25,,,,,,
"Akyumak","Iron, IVA",50,"Fell",1981,433,39.92,42.82,,,,,,
"Aumale","L6",50,"Fell",1865,4899,36.17,3.67,,,,,,
"Ausson","L5",50,"Fell",1858,4903,43.08,0.58,,,,,,
"Krymka","LL3.2",50,"Fell",1946,12364,47.83,30.77,,,,,,
"Limerick","H5",50,"Fell",1813,14652,52.57,-8.78,,,,,,
"Nuevo Mercurio","H5",50,"Fell",1978,17938,24.3,-102.13,,,,,,
"Valera","L5",50,"Fell",1972,24149,9.32,-70.63,,,,,,
"Wuan","H6",50,"Fell",1986,24340,36.75,114.25,,,,,,
"Dhofar 1654","L5",50,"Found",2011,55572,18.68,54.29,,,,,,
"Hammadah al Hamra 153","H3.8-4",50,"Found",1995,11636,28.6,13.58,,,,,,
"Hinojal","L6",50,"Found",1927,11887,-32.37,-60.15,,,,,,
"Ingella Station","H5",50,"Found",1987,12034,-25.55,142.78,,,,,,
"Northwest Africa 6903","Iron, IIIAB",50,"Found",2008,53891,32.37,-6.36,,,,,,
"Waconda","L6",50,"Found",1873,24195,39.33,-98.17,,,,,,
"Winburg","Iron, IC-an",50,"Found",1881,24283,-28.5,27,,,,,,
"Zagora","Iron, IAB-ung",50,"Found",1987,30387,30.37,-5.85,,,,,,
"Jiddat al Harasis 342","L5",49.75,"Found",2006,45866,19.71,56.55,,,,,,
"Hraschina","Iron, IID",49,"Fell",1751,11916,46.1,16.33,,,,,,
"Agua Blanca","Iron, IIIAB",49,"Found",1938,397,-28.92,-66.95,,,,,,
"Mapleton","Iron, IIIAB",49,"Found",1939,15410,42.18,-95.72,,,,,,
"Thule","Iron, IIIAB",48.6,"Found",1955,23977,76.53,-67.55,,,,,,
"Cabin Creek","Iron, IIIAB",48.5,"Fell",1886,5186,35.5,-93.5,,,,,,
"Bear Lodge","Iron, IIIAB",48.5,"Found",1931,4983,44.5,-104.2,,,,,,
"Crab Orchard","Mesosiderite-A1",48.5,"Found",1887,5461,35.83,-84.92,,,,,,
"Bischtübe","Iron, IAB-sLL",48.25,"Found",1888,5057,51.95,62.2,,,,,,
"Woodbine","Iron, IAB-ung",48.2,"Found",1953,24330,42.35,-90.17,,,,,,
"Jackalsfontein","L6",48,"Fell",1903,12065,-32.5,21.9,,,,,,
"Bagnone","Iron, IIIAB",48,"Found",1904,4921,44.32,9.98,,,,,,
"Sukhoj Liman","H4/5",48,"Found",1987,23739,46.4,30.8,,,,,,
"Dresden (Ontario)","H6",47.7,"Fell",1939,7731,42.52,-82.26,,,,,,
"Red Rock","Iron, IIIAB",47.6,"Found",1976,22549,35.42,-117.92,,,,,,
"Roy (1933)","L5",47.2,"Found",1933,22774,35.95,-104.2,,,,,,
"Gomez","L6",47,"Found",1974,10944,33.18,-102.4,,,,,,
"Cuero","H5",46.5,"Found",1936,5493,29.02,-97.28,,,,,,
"Harrisonville","L6",46.5,"Found",1933,11844,38.65,-94.33,,,,,,
"Lakewood","L6",46.5,"Found",1955,12450,32.63,-104.35,,,,,,
"Rancho de la Pila (1882)","Iron, IIIAB",46.5,"Found",1882,22389,24.12,-104.3,,,,,,
"Osseo","Iron, IAB complex",46.3,"Found",1931,18037,47.63,-80.08,,,,,,
"Jiddat al Harasis 203","Mesosiderite-C2",46.2,"Found",2002,45839,19.98,56.41,,,,,,
"Dumas (a)","H5",46.05,"Found",1956,7741,35.9,-101.9,,,,,,
"Asuka 87251","LL6",46,"Found",1987,2608,-72,26,,,,,,
"Linwood","Iron, IAB-MG",46,"Found",1940,14657,41.43,-96.97,,,,,,
"Peace River","L6",45.76,"Fell",1963,18180,56.13,-117.93,,,,,,
"Woodward County","H4",45.5,"Found",1923,24333,36.5,-99.5,,,,,,
"Thuathe","H4/5",45.3,"Fell",2002,23976,-29.33,27.58,,,,,,
"Needles","Iron, IID",45.3,"Found",1962,16936,34.44,-114.83,,,,,,
"Bensour","LL6",45,"Fell",2002,5024,30,-7,,,,,,
"Dhajala","H3.8",45,"Fell",1976,6698,22.38,71.43,,,,,,
"Kuttippuram","L6",45,"Fell",1914,12384,10.83,76.03,,,,,,
"Kyushu","L6",45,"Fell",1886,12390,32.03,130.63,,,,,,
"La Criolla","L6",45,"Fell",1985,12396,-31.23,-58.17,,,,,,
"Marjalahti","Pallasite, PMG",45,"Fell",1902,15426,61.5,30.5,,,,,,
"Hammadah al Hamra 173","L6",45,"Found",1996,11656,28.64,13.2,,,,,,
"Sandia Mountains","Iron, IIAB",45,"Found",1925,23156,35.25,-106.5,,,,,,
"Vyatka","H4",45,"Found",1991,24193,57.53,49,,,,,,
"Wellman (c)","H4",45,"Found",1964,24239,33.03,-102.33,,,,,,
"Dhofar 1433","H5",44.79,"Found",2006,45837,18.43,54.1,,,,,,
"Saginaw","Iron",44.5,"Found",1979,22797,32.87,-97.32,,,,,,
"Beenham","L5",44.4,"Found",1937,4995,36.22,-103.65,,,,,,
"Kelly","LL4",44.3,"Found",1937,12273,40.47,-103.03,,,,,,
"Zemaitkiemis","L6",44.1,"Fell",1933,30399,55.3,25,,,,,,
"Barwell","L5",44,"Fell",1965,4954,52.57,-1.34,,,,,,
"Dar al Gani 610","H4",44,"Found",1998,6157,26.85,16.73,,,,,,
"Dix","L6",44,"Found",1927,7651,41.23,-103.48,,,,,,
"Horh Uul","Iron, IIIAB",44,"Found",2001,11909,43.25,104.17,,,,,,
"Rodeo","Iron, IID",44,"Found",1852,22643,25.33,-104.67,,,,,,
"Ust-Nyukzha","Iron, IAB complex",44,"Found",1992,24133,56.38,120.47,,,,,,
"Seminole","H4",43.9,"Found",1961,23488,32.68,-102.62,,,,,,
"Dhofar 1288","H5",43.6,"Found",2004,34504,18.28,54.29,,,,,,
"Sayh al Uhaymir 270","H4-6",43.51,"Found",2003,23443,20.73,57.19,,,,,,
"Staunton","Iron, IIIE",43.5,"Found",1869,23716,38.22,-79.05,,,,,,
"Aggie Creek","Iron, IIIAB",43,"Found",1942,393,64.88,-163.17,,,,,,
"Chilkoot","Iron, IIIAB",43,"Found",1881,5351,59.33,-136,,,,,,
"Dhofar 1565","H5",43,"Found",2008,51570,18.27,54.21,,,,,,
"Lixian","Iron, IIAB",43,"Found",2005,56075,29.85,111.6,,,,,,
"Tombigbee River","Iron, IIG",43,"Found",1859,24021,32.23,-88.2,,,,,,
"Merceditas","Iron, IIIAB",42.9,"Found",1884,15487,-26.33,-70.28,,,,,,
"Dhofar 1426","H~5",42.85,"Found",2001,35514,19.17,54.7,,,,,,
"Joe Wright Mountain","Iron, IIIAB",42.6,"Found",1884,12174,35.77,-91.5,,,,,,
"Ballinoo","Iron, IIC",42.2,"Found",1892,4931,-27.7,115.77,,,,,,
"Piplia Kalan","Eucrite-mmict",42,"Fell",1996,18831,26.03,73.94,,,,,,
"Zhaodong","L4",42,"Fell",1984,30404,45.82,125.92,,,,,,
"Macy","L6",42,"Found",1984,15378,34.22,-103.92,,,,,,
"Northwest Africa 055","L4",42,"Found",,17065,32.05,-3.03,,,,,,
"Point Berliet","H5",42,"Found",2001,18854,20.54,9.54,,,,,,
"Anton","H4",41.8,"Found",1965,2311,33.78,-102.18,,,,,,
"Bonita Springs","H5",41.8,"Found",1938,5104,26.27,-81.75,,,,,,
"Karoonda","CK4",41.73,"Fell",1930,12264,-35.08,139.92,,,,,,
"Tieraco Creek","Iron, IIIAB",41.7,"Found",1922,23987,-26.33,118.33,,,,,,
"Al Huqf 010","L6",41.54,"Found",2002,443,19.87,57,,,,,,
"Cacaria","Iron, IIIAB",41.4,"Found",1867,5188,24.5,-104.8,,,,,,
"Clovis (no. 2)","L6",41.3,"Found",1963,5386,34.3,-103.13,,,,,,
"Buzzard Coulee","H4",41,"Fell",2008,48654,53,-109.85,,,,,,
"Balsas","Iron, IIIAB",41,"Found",1974,4932,-7.53,-46.04,,,,,,
"Butler","Iron, ungrouped",41,"Found",1874,5182,38.3,-94.37,,,,,,
"Obernkirchen","Iron, IVA",41,"Found",1863,17976,52.27,9.1,,,,,,
"Brownfield (1937)","H3.7",40.96,"Found",1937,5151,33.22,-102.18,,,,,,
"Glenormiston","Iron, ungrouped",40.8,"Found",1925,10933,-22.9,138.72,,,,,,
"Millen","H4",40.8,"Found",1975,16644,32.84,-81.87,,,,,,
"Richfield","LL3.7",40.8,"Found",1983,22600,37.22,-101.68,,,,,,
"Orlovka","H5",40.5,"Found",1928,18029,56,76.75,,,,,,
"Johnstown","Diogenite",40.3,"Fell",1924,12198,40.35,-104.9,,,,,,
"Lohawat","Howardite",40,"Fell",1994,14678,26.97,72.63,,,,,,
"Olmedilla de Alarcón","H5",40,"Fell",1929,18015,39.57,-2.1,,,,,,
"Pavlograd","L6",40,"Fell",1826,18176,48.53,35.98,,,,,,
"Sivas","H6",40,"Fell",1989,23617,39.82,36.14,,,,,,
"Uberaba","H5",40,"Fell",1903,24096,-19.82,-48.78,,,,,,
"Calliham","L6",40,"Found",1958,5201,28.42,-98.25,,,,,,
"Dronino","Iron, ungrouped",40,"Found",2000,7732,54.75,41.42,,,,,,
"El Simbolar","Iron",40,"Found",1938,7818,-30.63,-64.88,,,,,,
"Jerslev","Iron, IIAB",40,"Found",1976,12084,55.61,11.23,,,,,,
"Nullarbor 001","H5",40,"Found",1935,17941,-31,132,,,,,,
"Wynella","H4",40,"Found",1945,24343,-28.95,148.13,,,,,,
"Yilmia","EL6",40,"Found",1969,30362,-31.19,121.53,,,,,,
"Pinnaroo","Mesosiderite-A4",39.4,"Found",1927,18827,-35.38,140.92,,,,,,
"Braunau","Iron, IIAB",39,"Fell",1847,5133,50.6,16.3,,,,,,
"Guareña","H6",39,"Fell",1892,11439,38.73,-6.02,,,,,,
"Bechar 001","L6",39,"Found",1998,4988,30.83,-3.33,,,,,,
"Dhofar 1700","L6",39,"Found",2010,56325,18.87,54.68,,,,,,
"Manitouwabing","Iron, IIIAB",39,"Found",1962,15406,45.44,-79.88,,,,,,
"Shingle Springs","Iron, ungrouped",39,"Found",1869,23535,38.67,-120.93,,,,,,
"Weaver Mountains","Iron, IVB",38.8,"Found",1898,24227,34.25,-112.75,,,,,,
"Bunjil","L6",38.75,"Found",1971,5164,-29.63,116.48,,,,,,
"Lamont","Mesosiderite",38.69,"Found",1940,12453,38.08,-96.03,,,,,,
"Mayfield","H4",38.4,"Found",1972,15450,37.31,-97.55,,,,,,
"Bellsbank","Iron, IIG",38,"Found",1955,5006,-28.08,24.08,,,,,,
"Capot Rey","H5",38,"Found",2004,30449,20.13,10.21,,,,,,
"Avoca (Western Australia)","Iron, IIIAB",37.85,"Found",1966,4909,-30.85,122.32,,,,,,
"Wonyulgunna","Iron, IIIAB",37.8,"Found",1937,24329,-24.92,120.07,,,,,,
"Albin (pallasite)","Pallasite, PMG",37.6,"Found",1915,455,41.5,-104.1,,,,,,
"N'Goureyma","Iron, ungrouped",37.5,"Fell",1900,16968,13.85,-4.38,,,,,,
"Alatage","Iron, IIIAB",37.5,"Found",1959,452,42.33,93,,,,,,
"Patwar","Mesosiderite-A1",37.35,"Fell",1935,18171,23.15,91.18,,,,,,
"Densmore (1879)","L6",37.2,"Found",1879,6656,39.65,-99.68,,,,,,
"Waterville","Iron, IAB-ung",37.13,"Found",1917,24219,47.77,-119.88,,,,,,
"L'Aigle","L6",37,"Fell",1803,12434,48.77,0.63,,,,,,
"Dhofar 1289","L4",37,"Found",2004,34505,18.63,54.42,,,,,,
"Songyuan","L6",36.9,"Fell",1993,23668,45.25,125,,,,,,
"Melrose (a)","L5",36.4,"Found",1933,15475,34.38,-103.62,,,,,,
"Woolgorong","L6",36,"Fell",1960,24334,-27.75,115.83,,,,,,
"Eagle Station","Pallasite, PES",36,"Found",1880,7761,38.62,-84.97,,,,,,
"Haskell","L5",36,"Found",1909,11849,33.21,-99.73,,,,,,
"Kansas City (1903)","H5",36,"Found",1903,12248,39.1,-94.63,,,,,,
"San Emigdio","H4",36,"Found",1887,23122,36,-119,,,,,,
"Coffeyville","H5",35.9,"Found",2006,51051,37.02,-95.67,,,,,,
"El Burro","Iron, IIAB",35.9,"Found",1939,7793,29.33,-101.83,,,,,,
"Costilla Peak","Iron, IIIAB",35.5,"Found",1881,5453,36.83,-105.23,,,,,,
"Lueders","Iron, IAB-MG",35.4,"Found",1973,14750,32.84,-99.6,,,,,,
"Northwest Africa 6203","Iron, IAB-MG",35.4,"Found",2008,51736,30.52,-4.3,,,,,,
"Ladder Creek","L6",35.1,"Found",1937,12410,38.62,-101.63,,,,,,
"Modoc (1905)","L6",35,"Fell",1905,16711,38.5,-101.1,,,,,,
"Rowena","H6",34.7,"Found",1962,22772,-29.8,148.63,,,,,,
"Gursum","H4/5",34.65,"Fell",1981,11465,9.37,42.42,,,,,,
"Guin","Iron, ungrouped",34.5,"Found",1969,11445,33.97,-87.92,,,,,,
"Vermillion","Pallasite, ungrouped",34.36,"Found",1991,24167,39.74,-96.36,,,,,,
"Plains","H5",34.3,"Found",1964,18839,33.28,-102.77,,,,,,
"Buck Mountains 003","L6",34.2,"Found",2005,44705,34.73,-114.22,,,,,,
"Cangas de Onis","H5",34,"Fell",1866,5252,43.38,-5.15,,,,,,
"Jelica","LL6",34,"Fell",1889,12078,43.83,20.44,,,,,,
"Ställdalen","H5",34,"Fell",1876,23712,59.93,14.95,,,,,,
"Broken Hill","L6",34,"Found",1994,5146,-31.83,141.77,,,,,,
"Gnowangerup","Iron, IIIAB",33.6,"Found",1976,10937,-34,118.1,,,,,,
"View Hill","Iron, IIIAB",33.6,"Found",1952,24173,-43.32,172.06,,,,,,
"Valencia","H5",33.5,"Found",,24147,39,-0.03,,,,,,
"Bella Roca","Iron, IIIAB",33,"Found",1888,5003,24.9,-105.4,,,,,,
"Jiddat al Harasis 406","L6",33,"Found",2006,48557,19.53,56.87,,,,,,
"Kyancutta","Iron, IIIAB",32.7,"Found",1932,12386,-33.28,136,,,,,,
"Putnam County","Iron, IVA",32.7,"Found",1839,18906,33.25,-83.25,,,,,,
"Jumapalo","L6",32.49,"Fell",1984,12209,-7.72,111.2,,,,,,
"Mossgiel","L4",32.38,"Found",1967,16758,-33.32,144.78,,,,,,
"Narraburra","Iron, IIIAB",32.2,"Found",1855,16915,-34.25,147.7,,,,,,
"Allegan","H5",32,"Fell",1899,2276,42.53,-85.88,,,,,,
"Dhurmsala","LL6",32,"Fell",1860,7640,32.23,76.47,,,,,,
"Hermitage Plains","L6",32,"Found",1909,11877,-31.73,146.4,,,,,,
"Patos de Minas (hexahedrite)","Iron, IIAB",32,"Found",1925,18113,-18.58,-46.53,,,,,,
"Derrick Peak A78011","Iron, IIAB",31.8,"Found",1978,6687,-80.07,156.38,,,,,,
"Thiel Mountains","Pallasite, PMG",31.7,"Found",1962,23911,-85.45,-90,,,,,,
"Yonozu","H4/5",31.65,"Fell",1837,30366,37.75,139,,,,,,
"Carraweena","L3.9",31.6,"Found",1914,5281,-29.23,139.93,,,,,,
"Chantonnay","L6",31.5,"Fell",1812,5325,46.68,1.05,,,,,,
"Ioka","L3.5",31.5,"Found",1931,12040,40.25,-110.08,,,,,,
"Arriba","L5",31.1,"Found",1936,2339,39.3,-103.25,,,,,,
"Saline","H5",30.8,"Found",1901,23109,39.4,-100.4,,,,,,
"Puente del Zacate","Iron, IIIAB",30.79,"Found",1904,18894,27.87,-101.5,,,,,,
"Los Vientos 002","L6",30.75,"Found",2010,54617,-24.68,-69.77,,,,,,
"Djebel Chaab 002","LL6",30.62,"Found",2003,7654,25.16,0.82,,,,,,
"Bledsoe","H4",30.5,"Found",1970,5074,33.59,-103.03,,,,,,
"Hammadah al Hamra 328","H5",30.44,"Found",1999,11811,28.96,10.59,,,,,,
"El Perdido","H5",30.25,"Found",1905,7813,-38.68,-61.1,,,,,,
"Agen","H5",30,"Fell",1814,392,44.22,0.62,,,,,,
"Château-Renard","L6",30,"Fell",1841,5332,47.93,2.92,,,,,,
"Tuxtuac","LL5",30,"Fell",1975,24086,21.67,-103.37,,,,,,
"Acfer 329","L4/5",30,"Found",2001,336,27.58,4.1,,,,,,
"Daraj 001","H5",30,"Found",1986,6540,29.64,11.73,,,,,,
"Hagersville","Iron, IAB complex",30,"Found",1999,11470,42.97,-80.15,,,,,,
"Harriman (Of)","Iron, IVA",30,"Found",1947,11840,35.95,-84.57,,,,,,
"La Lande","L5",30,"Found",1933,12400,34.45,-104.13,,,,,,
"Leon","H5",30,"Found",1943,12764,37.67,-96.77,,,,,,
"Muenatauray","Iron, IIAB",30,"Found",1960,16842,4.9,-61.2,,,,,,
"Otchinjau","Iron, IVA",30,"Found",1919,18041,-16.5,14,,,,,,
"Tanezrouft 065","L4",30,"Found",2002,23865,25.41,0.14,,,,,,
"Windimurra","H4/5",30,"Found",2004,55552,-28.1,118.46,,,,,,
"Jerome (Kansas)","L4",29.6,"Found",1894,12083,38.77,-100.73,,,,,,
"Bassikounou","H5",29.56,"Fell",2006,44876,15.78,-5.9,,,,,,
"Los Vientos 004","H5",29.3,"Found",2011,54619,-24.68,-69.77,,,,,,
"Butsura","H6",29,"Fell",1861,5183,27.08,84.08,,,,,,
"Hatford","Stone-uncl",29,"Fell",1628,11855,51.65,-1.52,,,,,,
"Graves Nunataks 98186","H6",29,"Found",1998,11176,-86.72,-141.5,,,,,,
"Elga","Iron, IIE",28.8,"Found",1959,10012,64.7,141.2,,,,,,
"Fairview","Iron, IIIAB",28.8,"Found",1986,10070,34.1,-102.65,,,,,,
"Ramlat as Sahmah 418","L6",28.79,"Found",2010,55513,20.39,56.22,,,,,,
"Great Bend","H6",28.77,"Found",1983,11180,38.4,-98.92,,,,,,
"Cumpas","Iron, IIIAB",28.6,"Found",1903,5497,30,-109.67,,,,,,
"Sinawan 001","L6",28.6,"Found",1991,23607,31,11.67,,,,,,
"Ocotillo","Iron, IAB-MG",28.57,"Found",1990,17980,32.83,-116.07,,,,,,
"Tennasilm","L4",28.5,"Fell",1872,23898,58.03,26.95,,,,,,
"Negrillos","Iron, IIAB",28.5,"Found",1936,16939,-19.88,-69.83,,,,,,
"Marion (Iowa)","L6",28.4,"Fell",1847,15424,41.9,-91.6,,,,,,
"Walters","L6",28.1,"Fell",1946,24210,34.33,-98.3,,,,,,
"Larned","Aubrite-an",28.1,"Found",1977,50998,38.2,-99.16,,,,,,
"Tieschitz","H/L3.6",28,"Fell",1878,23989,49.6,17.12,,,,,,
"Bunker Hill","L6",28,"Found",2002,54611,38.85,-98.72,,,,,,
"Deelfontein","Iron, IAB-MG",28,"Found",1932,6636,-30.18,23.27,,,,,,
"Changxing","H5",27.9,"Found",1964,5323,31.33,121.67,,,,,,
"Monahans (1938)","Iron, IIF",27.9,"Found",1938,16718,31.48,-102.88,,,,,,
"Sayh al Uhaymir 278","L5",27.86,"Found",2002,23451,21.26,57.18,,,,,,
"Delegate","Iron, IIIAB-an",27.7,"Found",1904,6641,-37,149.03,,,,,,
"Oakley (stone)","H6",27.7,"Found",1895,17973,38.95,-101.02,,,,,,
"Weldona","H4",27.7,"Found",1934,24234,40.35,-103.95,,,,,,
"Cratheús (1931)","Iron, IVA",27.5,"Found",1914,5466,-5.25,-40.5,,,,,,
"El Capitan","Iron, IIIAB",27.5,"Found",1893,7794,33.5,-105.5,,,,,,
"Dumont","Iron, IVB",27.42,"Found",1994,47341,33.82,-100.52,,,,,,
"La Primitiva","Iron, IIG",27.4,"Found",1888,12402,-19.92,-69.82,,,,,,
"Dadin","Iron",27.3,"Found",1949,5503,-38.92,-69.2,,,,,,
"Hammadah al Hamra 296","H5/6",27.06,"Found",2000,11779,29.1,12.32,,,,,,
"Charsonville","H6",27,"Fell",1810,5329,47.93,1.57,,,,,,
"Indarch","EH4",27,"Fell",1891,12027,39.75,46.67,,,,,,
"Ashfork","Iron, IAB-MG",27,"Found",1901,2348,35.25,-112.5,,,,,,
"Bendock","Pallasite",27,"Found",1898,5016,-37.15,148.92,,,,,,
"Gobabeb","H4",27,"Found",1969,10939,-23.55,15.03,,,,,,
"Hammond Downs","H4",27,"Found",1950,11814,-25.47,142.8,,,,,,
"Naryilco","LL6",27,"Found",1975,16918,-28.6,141.15,,,,,,
"Northwest Africa 059","H3.9/4",27,"Found",,17069,31.83,-2.93,,,,,,
"Tazewell","Iron, IAB-sLH",27,"Found",1853,23891,36.43,-83.75,,,,,,
"Tiffa 001","H5",26.9,"Found",1997,23991,19.95,11.93,,,,,,
"Seagraves (c)","L6/7",26.81,"Found",1989,23471,32.98,-102.57,,,,,,
"Kaffir (d)","L5",26.76,"Found",1981,12226,34.67,-101.82,,,,,,
"Forestburg (b)","L5",26.6,"Found",1957,10122,33.5,-97.59,,,,,,
"Wilder","H5",26.6,"Found",1982,24267,43.72,-116.91,,,,,,
"Hammadah al Hamra 280","CK4",26.5,"Found",2000,11763,28.47,12.97,,,,,,
"Milly Milly","Iron, IIIAB",26.5,"Found",1921,16688,-26.12,116.67,,,,,,
"Dayton","Iron, IAB-sLH",26.3,"Found",1892,6620,39.75,-84.17,,,,,,
"Cavour","H6",26.21,"Found",1938,5300,44.22,-98.06,,,,,,
"Texline","H5",26.2,"Found",1937,23906,36.4,-103.02,,,,,,
"Denver City","Iron, ungrouped",26.1,"Found",1975,6661,33.07,-102.8,,,,,,
"Forestburg (a)","L4",26.1,"Found",1957,10121,33.51,-97.65,,,,,,
"Ilafegh 008","L5",26.1,"Found",1989,12013,21.6,1.67,,,,,,
"Forest Vale","H4",26,"Fell",1942,10120,-33.35,146.86,,,,,,
"Cedar (Texas)","H4",26,"Found",1900,5303,29.83,-96.91,,,,,,
"Derrick Peak A78012","Iron, IIAB",26,"Found",1978,6688,-80.07,156.38,,,,,,
"Forrest 002","L6",26,"Found",1980,10125,-30.98,127.88,,,,,,
"Kumtag","H5",26,"Found",2008,49512,41.67,93.17,,,,,,
"Maslyanino","Iron, IAB complex",26,"Found",1992,15439,54.25,84.33,,,,,,
"Sierra Gorda","Iron, IIAB",26,"Found",1898,23590,-22.9,-69.35,,,,,,
"Seymour","Iron, IAB-MG",25.9,"Found",1940,23511,37.24,-92.79,,,,,,
"Lake Labyrinth","LL6",25.85,"Found",1924,12444,-30.53,134.75,,,,,,
"Beaver","L5",25.63,"Found",1940,4985,36.8,-100.53,,,,,,
"Los Vientos 003","H5",25.45,"Found",2011,54618,-24.68,-69.77,,,,,,
"Desuri","H6",25.4,"Fell",1962,6693,25.73,73.62,,,,,,
"St-Robert","H5",25.4,"Fell",1994,23733,45.97,-72.98,,,,,,
"Yamato 791717","CO3.3",25.32,"Found",1979,27066,-71.5,35.67,,,,,,
"Belmont","H6",25.3,"Found",1958,5008,42.73,-90.35,,,,,,
"Juromenha","Iron, IIIAB",25.25,"Fell",1968,12213,38.74,-7.27,,,,,,
"Graves Nunataks 95200","L5",25.07,"Found",1995,10960,-86.72,-141.5,,,,,,
"Sayh al Uhaymir 266","H5",25.01,"Found",2002,23439,20.71,57.18,,,,,,
"Benguerir","LL6",25,"Fell",2004,30443,32.25,-8.15,,,,,,
"Bilanga","Diogenite",25,"Fell",1999,5045,12.45,-0.08,,,,,,
"Bursa","L6",25,"Fell",1946,5177,40.2,29.23,,,,,,
"Cabezo de Mayo","L/LL6",25,"Fell",1870,5185,37.98,-1.17,,,,,,
"Wold Cottage","L6",25,"Fell",1795,24325,54.14,-0.41,,,,,,
"Apache Junction","Iron, IIIAB",25,"Found","before 2005",54566,33.45,-111.52,,,,,,
"Camel Donga","Eucrite-mmict",25,"Found",1984,5204,-30.32,126.62,,,,,,
"Casimiro de Abreu","Iron, IIIAB",25,"Found",1947,5289,-22.47,-42.22,,,,,,
"Dhofar 1722","H5",25,"Found",2010,56345,19.08,54.71,,,,,,
"Dhofar 379","L6",25,"Found",2000,7161,19.01,54.77,,,,,,
"Four Corners","Iron, IAB-ung",25,"Found",1924,10172,37,-109.05,,,,,,
"Nashville (stone)","L6",25,"Found",1939,16921,37.45,-98.42,,,,,,
"Pampa (c)","L4",25,"Found",1986,18085,-23.2,-70.43,,,,,,
"Taiban","L5",25,"Found",1934,23785,34.45,-104.02,,,,,,
"Burgavli","Iron, IAB-MG",24.9,"Found",1941,5168,66.4,137.47,,,,,,
"Meester-Cornelis","H5",24.75,"Fell",1915,15470,-6.23,106.88,,,,,,
"Rasgrad","Stone-uncl",24.7,"Fell",1740,22396,43.5,26.53,,,,,,
"Billings","Iron, IIIAB",24.5,"Found",1903,5047,37.07,-93.55,,,,,,
"Oroville","Iron, IIIAB",24.5,"Found",1893,18032,39.68,-121.63,,,,,,
"Salaices","H4",24.5,"Found",1971,23105,27,-105.25,,,,,,
"Taoudenni","Diogenite",24.37,"Found",2007,51580,22.79,-3.97,,,,,,
"Veliko-Nikolaevsky Priisk","Iron, IIIAB",24.27,"Found",1902,24157,53.83,97.33,,,,,,
"Aïr","L6",24,"Fell",1925,424,19.08,8.38,,,,,,
"Cleo Springs","H4",24,"Found",1960,5378,36.43,-98.43,,,,,,
"Hammond","Iron, ungrouped",24,"Found",1884,11813,44.92,-92.43,,,,,,
"Winona","Winonaite",24,"Found",1928,24285,35.2,-111.4,,,,,,
"Galatia","L6",23.9,"Found",1971,10847,38.64,-98.88,,,,,,
"Campos Sales","L5",23.68,"Fell",1991,5249,-7.03,-40.17,,,,,,
"Wayside","H6",23.6,"Found",1973,24225,34.8,-101.68,,,,,,
"Cachari","Eucrite-mmict",23.5,"Found",1916,5189,-36.4,-59.5,,,,,,
"Perpeti","L6",23.47,"Fell",1935,18793,23.33,91,,,,,,
"Waltman","L4",23.41,"Found",1948,24211,43,-107.17,,,,,,
"Lake Brown","L6",23.4,"Found",1919,12437,-31,118.5,,,,,,
"Sharon Springs","L6",23.4,"Found",1983,23524,38.77,-101.8,,,,,,
"Pillistfer","EL6",23.25,"Fell",1863,18822,58.67,25.73,,,,,,
"Nakhon Pathom","L6",23.2,"Fell",1923,16899,13.73,100.08,,,,,,
"Fuhe","L5",23,"Fell",1945,52412,31.48,113.57,,,,,,
"Cruz del Aire","Iron, ungrouped",23,"Found",1911,5478,26.5,-100,,,,,,
"Isna","CO3.8",23,"Found",1970,12051,24.83,31.67,,,,,,
"Kaufman","L5",23,"Found",1893,12267,32.58,-96.42,,,,,,
"Norfolk","Iron, IIIAB",23,"Found",1907,16993,36.9,-76.3,,,,,,
"Mount Sir Charles","Iron, IVA",22.9,"Found",1942,16803,-23.83,134.03,,,,,,
"Mezö-Madaras","L3.7",22.7,"Fell",1852,16628,46.5,25.73,,,,,,
"Duchesne","Iron, IVA",22.7,"Found",1906,7737,40.38,-110.87,,,,,,
"Forsyth County","Iron, IIAB",22.7,"Found",1891,10165,36.1,-80.2,,,,,,
"Gun Creek","Iron, ungrouped",22.7,"Found",1909,11451,34,-111,,,,,,
"Shirahagi","Iron, IVA",22.7,"Found",1890,23536,36.7,137.37,,,,,,
"Wooster","Iron, IAB-sLL",22.7,"Found",1858,24336,40.77,-81.95,,,,,,
"Adrian","H4",22.6,"Found",1936,388,35.15,-102.72,,,,,,
"Turtle River","Iron, IIIAB",22.39,"Found",1953,24085,47.6,-94.77,,,,,,
"Mangwendi","LL6",22.3,"Fell",1934,15405,-17.65,31.6,,,,,,
"Maltahöhe","Iron, IAB-sLM",22.27,"Found",1991,15399,-24.92,16.98,,,,,,
"Hammadah al Hamra 087","L6",22.11,"Found",1995,11570,28.6,13.27,,,,,,
"Gualeguaychú","H6",22,"Fell",1932,11432,-33,-58.62,,,,,,
"Karkh","L6",22,"Fell",1905,12262,27.8,67.17,,,,,,
"Baquedano","Iron, IIIAB",22,"Found",1932,4939,-23.3,-69.88,,,,,,
"Elephant Moraine 92193","H6",22,"Found",1992,9594,-76.04,155.94,,,,,,
"Mount Egerton","Aubrite-an",22,"Found",1941,16774,-24.77,117.7,,,,,,
"Picacho","Iron, IIIAB",22,"Found",1952,18814,33.2,-105,,,,,,
"Queen Alexandra Range 99001","Iron",22,"Found",1999,21454,-84,168,,,,,,
"Saint Augustine","Iron, IID",22,"Found",1974,23080,40.72,-90.42,,,,,,
"Tostado","H6",22,"Found",1945,24033,-29.23,-61.77,,,,,,
"Toubil River","Iron, IIIAB",22,"Found",1891,24034,55.88,89.1,,,,,,
"Friona","L5",21.9,"Found",1981,10184,34.54,-102.57,,,,,,
"Hebron","H6",21.82,"Found",1965,11867,40.17,-97.6,,,,,,
"Duel Hill (1854)","Iron, IVA",21.8,"Found",1854,7738,35.85,-82.7,,,,,,
"Kargapole","H4",21.8,"Found",1961,12261,55.88,64.3,,,,,,
"Lahoma","L5",21.8,"Found",1963,12432,36.38,-98.08,,,,,,
"Altonah","Iron, IVA",21.5,"Found",1932,2286,40.57,-110.48,,,,,,
"Schwetz","Iron, IIIAB",21.5,"Found",1850,23461,53.4,18.45,,,,,,
"Jiddat al Harasis 317","H5",21.47,"Found",2001,45843,19.36,55.56,,,,,,
"Twodot","H6",21.4,"Found",1999,24093,46.7,-110.13,,,,,,
"Flandreau","H5",21.36,"Found",1983,10109,44.05,-96.59,,,,,,
"Dhofar 007","Eucrite-cm",21.27,"Found",1999,6706,18.34,54.18,,,,,,
"Abbott","H3-6",21.1,"Found",1951,5,36.3,-104.28,,,,,,
"Bath","H4",21,"Fell",1892,4974,45.42,-98.32,,,,,,
"Tauti","L6",21,"Fell",1937,23888,46.72,23.5,,,,,,
"Efremovka","CV3",21,"Found",1962,7772,52.5,77,,,,,,
"Kendall County","Iron, IAB-ung",21,"Found",1887,12274,29.4,-98.5,,,,,,
"De Hoek","Iron, ungrouped",20.93,"Found",1960,6622,-29.38,23.1,,,,,,
"Artracoona","L6",20.81,"Found",1914,2341,-29.07,139.92,,,,,,
"Twannberg","Iron, IIG",20.69,"Found",1984,24088,47.12,7.18,,,,,,
"Lone Tree","H4",20.68,"Found",1971,14683,41.5,-91.48,,,,,,
"Meteorite Hills A78028","L6",20.66,"Found",1978,16624,-79.68,155.75,,,,,,
"Cerro del Inca","Iron, IIIF",20.6,"Found",1997,5309,-22.22,-68.91,,,,,,
"Jartai","L6",20.5,"Fell",1979,12074,39.7,105.8,,,,,,
"Dar al Gani 741","H4",20.5,"Found",1998,6288,27.08,16.28,,,,,,
"Lucky Hill","Iron, IIIAB",20.5,"Found",1885,14749,17.9,-77.63,,,,,,
"Glasgow","Iron, IIIAB",20.4,"Found",1922,10927,37.02,-85.92,,,,,,
"Conquista","H4",20.35,"Fell",1965,5418,-19.85,-47.55,,,,,,
"Allan Hills A76001","L6",20.15,"Found",1976,1308,-76.75,159.33,,,,,,
"Koltsovo","H4",20.02,"Found",2004,30742,54.75,36.98,,,,,,
"Ergheo","L5",20,"Fell",1889,10044,1.17,44.17,,,,,,
"Hessle","H5",20,"Fell",1869,11878,59.85,17.67,,,,,,
"Ourique","H4",20,"Fell",1998,18052,37.61,-8.28,,,,,,
"Seoni","H6",20,"Fell",1966,23500,21.68,79.5,,,,,,
"Tjabe","H6",20,"Fell",1869,24011,-7.08,111.53,,,,,,
"Uzcudun","L",20,"Fell",1948,24140,-44.12,-66.15,,,,,,
"Vouillé","L6",20,"Fell",1831,24191,46.63,0.17,,,,,,
"Yangchiang","H5",20,"Fell",1954,30348,21.83,111.83,,,,,,
"Alikatnima","Iron, ungrouped",20,"Found",1931,471,-23.33,134.12,,,,,,
"Anthony","H5",20,"Found",1919,2310,37.08,-98.05,,,,,,
"Bristol","Iron, IVA",20,"Found",1937,5143,36.57,-82.18,,,,,,
"Copiapo","Iron, IAB-MG",20,"Found",1863,5442,-27.3,-70.4,,,,,,
"Lime Creek","Iron, IAB-ung",20,"Found",1834,14651,31.55,-87.52,,,,,,
"New Baltimore","Iron, ungrouped",20,"Found",1922,16952,40,-78.85,,,,,,
"New Leipzig","Iron, IAB-MG",20,"Found",1936,16955,46.37,-101.95,,,,,,
"Nocoleche","Iron, IC-an",20,"Found",1895,16987,-29.87,144.22,,,,,,
"Reed City","Iron, ungrouped",20,"Found",1895,22552,43.87,-85.52,,,,,,
"Sayh al Uhaymir 504","L5/6",20,"Found",2010,51866,20.38,56.77,,,,,,
"Taicang","Stone-uncl",20,"Found",1928,23787,31.5,121.08,,,,,,
"Mulga (north)","H6",19.9,"Found",1964,16847,-30.18,126.37,,,,,,
"Tysnes Island","H4",19.86,"Fell",1884,24094,60,5.62,,,,,,
"La Villa","H4",19.8,"Found",1956,12405,26.27,-97.9,,,,,,
"Comanche (iron)","Iron, IAB-sLL",19.7,"Found",1940,5414,32.02,-98.7,,,,,,
"Horace","H5",19.7,"Found",1940,11908,38.35,-101.78,,,,,,
"Twentynine Palms","L",19.7,"Found",1944,24089,34.08,-116.02,,,,,,
"Two Buttes (a)","H5",19.7,"Found",1962,24091,37.63,-102.42,,,,,,
"Colton","Iron, IIIAB",19.67,"Found",1993,5410,46.57,-117.1,,,,,,
"Cocklebiddy","H5",19.5,"Found",1949,5392,-31.93,126.22,,,,,,
"Los Reyes","Iron, IIIAB",19.5,"Found",1897,14709,19.27,-97.28,,,,,,
"Pan de Azucar","Iron, IAB complex",19.5,"Found",1887,18094,-26.5,-69.5,,,,,,
"Hammadah al Hamra 001","H5",19.42,"Found",1990,11486,29,12.23,,,,,,
"Acfer 336","L3.8",19.4,"Found",2002,343,27.62,4.07,,,,,,
"Arcadia","LL6",19.4,"Found",1937,2326,41.42,-99.1,,,,,,
"Farley","H5",19.4,"Found",1936,10073,36.33,-104.05,,,,,,
"Souslovo","L4",19.3,"Found",1997,23673,55.43,55.79,,,,,,
"Coolac","Iron, IAB-MG",19.28,"Found",1874,5432,-34.97,148.13,,,,,,
"New Orleans","H5",19.26,"Fell",2003,16960,29.95,-90.11,,,,,,
"Norquín","Iron, IIIAB",19.25,"Found",1945,16996,-37.72,-70.62,,,,,,
"Arapahoe","L5",19.08,"Found",1940,2323,38.8,-102.2,,,,,,
"Purgatory Peak A77006","Iron, IAB-MG",19.07,"Found",1977,18904,-77.33,162.3,,,,,,
"Asuka 87034","L4",19.06,"Found",1987,2391,-72,26,,,,,,
"Littlerock","H6",19.05,"Found",1979,14667,34.52,-117.98,,,,,,
"Beni M'hira","L6",19,"Fell",2001,5018,32.87,10.8,,,,,,
"Kilabo","LL6",19,"Fell",2002,12307,12.77,9.8,,,,,,
"Mauerkirchen","L6",19,"Fell",1768,15446,48.18,13.13,,,,,,
"Big Rock Donga","H6",19,"Found",1970,5044,-30.55,130.97,,,,,,
"Emsland","Iron, ungrouped",19,"Found",1940,10035,53.1,7.2,,,,,,
"Meteorite Hills 01005","L5",19,"Found",2001,16238,-79.68,159.75,,,,,,
"Vulcan","H6",19,"Found",1962,24192,50.52,-113.13,,,,,,
"Susuman","Iron, IIIAB",18.9,"Found",1957,23762,62.72,148.13,,,,,,
"Dar al Gani 779","Howardite",18.8,"Found",1999,6326,26.99,16.44,,,,,,
"Franceville","Iron, IIIAB",18.8,"Found",1890,10173,38.82,-104.62,,,,,,
"Kifkakhsyagan","Iron, IIIAB",18.8,"Found",1972,12304,64.4,172.7,,,,,,
"Shelburne","L5",18.6,"Fell",1904,23529,44.05,-80.17,,,,,,
"Derrick Peak A78005","Iron, IIAB",18.6,"Found",1978,6681,-80.07,156.38,,,,,,
"Dar al Gani 955","H6",18.5,"Found",1999,6495,27.13,16.21,,,,,,
"Burns","Iron, IIIAB",18.4,"Found",2003,57342,39.87,-106.88,,,,,,
"Coldwater (iron)","Iron",18.4,"Found",1923,5398,37.27,-99.33,,,,,,
"Polujamki","H4",18.35,"Found",1971,18861,52.1,79.7,,,,,,
"Chajari","L5",18.3,"Fell",1933,5316,-30.78,-58.05,,,,,,
"Mud Dry Lake","H3",18.26,"Found",2002,16840,37.86,-117.02,,,,,,
"Ramlat as Sahmah 202","Mesosiderite",18.25,"Found",2002,35636,20.01,56.42,,,,,,
"Morrow County","L6",18.2,"Found",1999,51707,45.5,-119.5,,,,,,
"Rafrüti","Iron, ungrouped",18.2,"Found",1886,22369,47,7.83,,,,,,
"Yamato 793235","L6",18.13,"Found",1979,28584,-71.5,35.67,,,,,,
"Arltunga","Iron, IID-an",18.1,"Found",1908,2334,-23.33,134.67,,,,,,
"Bachmut","L6",18,"Fell",1814,4917,48.6,38,,,,,,
"Béréba","Eucrite-mmict",18,"Fell",1924,5028,11.65,-3.65,,,,,,
"Dahmani","LL6",18,"Fell",1981,5504,35.62,8.83,,,,,,
"Girgenti","L6",18,"Fell",1853,10917,37.32,13.57,,,,,,
"Palinshih","Iron",18,"Fell",1914,18077,43.48,118.62,,,,,,
"Park Forest","L5",18,"Fell",2003,18106,41.48,-87.68,,,,,,
"Zagami","Martian (shergottite)",18,"Fell",1962,30386,11.73,7.08,,,,,,
"Caddo County","Iron, IAB-ung",18,"Found",1987,5192,35,-98.33,,,,,,
"Maria da Fé","Iron, IVA",18,"Found",1987,15416,-22.3,-45.37,,,,,,
"Nashville (iron)","Iron",18,"Found",1934,16920,35.97,-77.97,,,,,,
"Pecora Escarpment 91009","L6",18,"Found",1991,18300,-85.69,-68.34,,,,,,
"Point of Rocks (iron)","Iron, IIIAB",18,"Found",1956,18855,36.5,-104.5,,,,,,
"Verkhne Udinsk","Iron, IIIAB",18,"Found",1854,24166,54.77,113.98,,,,,,
"Dhofar 1511","L~5",17.97,"Found",2009,53800,18.64,54.25,,,,,,
"Andura","H6",17.9,"Fell",1939,2298,20.88,76.87,,,,,,
"Pinto Mountains","L6",17.9,"Found",1954,18829,34,-115.78,,,,,,
"Piñon","Iron, ungrouped",17.85,"Found",1928,18828,32.67,-105.1,,,,,,
"Duncanville","H",17.8,"Found",1961,7744,32.63,-96.87,,,,,,
"Allan Hills A81013","Iron, IIAB",17.73,"Found",1981,1973,-76.75,158.84,,,,,,
"Tulia (d)","H6",17.7,"Found",1981,24069,34.61,-101.77,,,,,,
"Fisher","L6",17.6,"Fell",1894,10107,47.82,-96.85,,,,,,
"Hambleton","Pallasite, PMG",17.6,"Found",2005,36590,54.24,-1.2,,,,,,
"Shişr 010","L5",17.6,"Found",2001,23548,18.55,53.97,,,,,,
"Roundup","Iron, IIIAB",17.59,"Found",1990,22771,46.78,-108.57,,,,,,
"Alvord","Iron, IVA",17.5,"Found",1976,2287,43.32,-96.29,,,,,,
"Perryville","Iron, IIC",17.5,"Found",1906,18795,37.73,-89.85,,,,,,
"Sargiin Gobi","Iron, IAB complex",17.5,"Found",1964,23179,45.98,105.76,,,,,,
"Shaw","L6/7",17.5,"Found",1937,23526,39.53,-103.33,,,,,,
"Quija","H",17.45,"Fell",1990,22361,44.62,126.13,,,,,,
"Reliegos","L5",17.3,"Fell",1947,22584,42.48,-5.33,,,,,,
"Springlake","L6",17.3,"Found",1980,23691,34.34,-102.22,,,,,,
"El Paso de Aguila","H5",17.23,"Fell",1977,45977,25.37,-97.37,,,,,,
"N'Kandhla","Iron, IID",17.2,"Fell",1912,16983,-28.57,30.7,,,,,,
"Romero","H4",17.2,"Found",1938,22651,35.77,-102.95,,,,,,
"Sone","H5",17.1,"Fell",1866,23667,35.17,135.33,,,,,,
"Cumberland Falls","Aubrite",17,"Fell",1919,5496,36.83,-84.35,,,,,,
"Lost City","H5",17,"Fell",1970,14711,36.01,-95.15,,,,,,
"Mount Vaisi","Stone-uncl",17,"Fell",1637,16805,44.08,6.87,,,,,,
"Naoki","H6",17,"Fell",1928,16908,19.25,77,,,,,,
"Oum Dreyga","H3-5",17,"Fell",2003,31282,24.3,-13.1,,,,,,
"St. Michel","L6",17,"Fell",1910,23093,61.65,27.2,,,,,,
"Benthullen","L6",17,"Found",1951,5025,53.05,8.1,,,,,,
"Brewster","L6",17,"Found",1940,5137,39.25,-101.33,,,,,,
"Carichic","H5",17,"Found",1983,5270,27.93,-107.05,,,,,,
"Conception Junction","Pallasite, PMG-an",17,"Found",2006,53877,40.27,-94.68,,,,,,
"Klamath Falls","Iron, IIIF",17,"Found",1952,12330,42.17,-121.85,,,,,,
"Teplá","Iron, IIIAB",17,"Found",1909,23902,49.98,12.87,,,,,,
"Lamesa","Iron, IAB-sLM",16.9,"Found",1981,12452,32.88,-101.88,,,,,,
"Snyder","H3",16.9,"Found",1983,23657,32.72,-100.92,,,,,,
"Jiddat al Harasis 355","L~6",16.88,"Found",2003,51623,19.36,55.55,,,,,,
"Kasauli","H4",16.82,"Fell",2003,30740,29.58,77.58,,,,,,
"Coopertown","Iron, IIIE",16.8,"Found",1860,5438,36.43,-87,,,,,,
"Ban Rong Du","Iron, ungrouped",16.7,"Fell",1993,4934,16.67,101.18,,,,,,
"Miller (Arkansas)","H5",16.7,"Fell",1930,16645,35.4,-92.05,,,,,,
"Emery","Mesosiderite-A3",16.7,"Found",1962,10031,43.56,-97.58,,,,,,
"Mount Magnet","Iron, IAB-sHH",16.6,"Found",1916,16780,-28.17,118.5,,,,,,
"Tell","H6",16.6,"Found",1930,23893,34.38,-100.4,,,,,,
"Oldenburg (1930)","L6",16.57,"Fell",1930,18009,52.95,8.17,,,,,,
"D'Orbigny","Angrite",16.55,"Found",1979,7714,-37.67,-61.65,,,,,,
"Patuxent Range 91500","L5",16.54,"Found",1991,18119,-85.07,-64.47,,,,,,
"Krähenberg","LL5",16.5,"Fell",1869,12353,49.33,7.46,,,,,,
"Tjerebon","L5",16.5,"Fell",1922,24012,-6.67,106.58,,,,,,
"Chesterville","Iron, IIAB",16.5,"Found",1849,5343,34.7,-81.2,,,,,,
"Hainholz","Mesosiderite-A4",16.5,"Found",1856,11473,52.28,8.92,,,,,,
"Demina","L6",16.4,"Fell",1911,6649,51.47,84.77,,,,,,
"Benedict","Iron, IIIAB",16.38,"Found",1970,5017,41,-97.53,,,,,,
"Forsyth","L6",16.3,"Fell",1829,10164,33.02,-83.97,,,,,,
"Cambria","Iron, ungrouped",16.3,"Found",1818,5203,43.2,-78.8,,,,,,
"Cole Creek","H5",16.3,"Found",1991,5400,41.35,-99.12,,,,,,
"Happy Canyon","EL6/7",16.3,"Found",1971,11821,34.8,-101.57,,,,,,
"Morristown","Mesosiderite-A3",16.3,"Found",1887,16750,36.2,-83.38,,,,,,
"Ohaba","H5",16.25,"Fell",1857,17995,46.07,23.58,,,,,,
"Ramlat as Sahmah 428","L6",16.25,"Found",,56516,20.1,56.33,,,,,,
"Chulafinnee","Iron, IIIAB",16.22,"Found",1873,5362,33.5,-85.67,,,,,,
"Sayh al Uhaymir 250","H4-6",16.2,"Found",2003,23423,20.58,57.32,,,,,,
"Dar al Gani 477","L6",16.13,"Found",1998,6025,27.75,16,,,,,,
"Jiddat al Harasis 267","Mesosiderite",16.01,"Found",2005,35584,20,56.41,,,,,,
"Beardsley","H5",16,"Fell",1929,4984,39.8,-101.2,,,,,,
"Achilles","H5",16,"Found",1924,369,39.78,-100.81,,,,,,
"Allan Hills 84006","H4/5",16,"Found",1984,609,-76.76,158.77,,,,,,
"Bluff (b)","L4",16,"Found",1917,5088,29.86,-96.93,,,,,,
"Coldwater (stone)","H5",16,"Found",1924,5399,37.27,-99.33,,,,,,
"Dimboola","H5",16,"Found",1944,7643,-36.5,142.03,,,,,,
"Hassayampa","H4",16,"Found",1963,11851,33.75,-112.67,,,,,,
"Isheyevo","CH/CBb",16,"Found",2003,30726,53.62,56.33,,,,,,
"Jiddat al Harasis 628","H5",16,"Found",2009,52779,19.84,55.77,,,,,,
"Skookum","Iron, IVB",16,"Found",1905,23623,63.92,-139.33,,,,,,
"Zerkaly","H5",16,"Found",1956,31354,52.13,81.97,,,,,,
"Bodaibo","Iron, IVA",15.9,"Found",1907,5094,57.85,114.2,,,,,,
"Fort Pierre","Iron, IIIAB",15.9,"Found",1856,10167,44.35,-100.38,,,,,,
"Kodaikanal","Iron, IIE",15.9,"Found",1898,12338,10.27,77.4,,,,,,
"Sayh al Uhaymir 499","H5",15.9,"Found",2009,52430,20.76,57.27,,,,,,
"Tryon","L6",15.9,"Found",1934,24056,41.55,-100.97,,,,,,
"Hammadah al Hamra 148","L5",15.77,"Found",1995,11631,28.72,12.86,,,,,,
"Ashuwairif 004","L6",15.75,"Found",2008,53630,29.37,14.28,,,,,,
"Ellicott","Iron, IAB-ung",15.7,"Found",1960,10021,38.81,-104.57,,,,,,
"Rancho Gomelia","Iron, IIIAB",15.65,"Found",1975,22391,24.52,-105.25,,,,,,
"Millarville","Iron, IVA",15.64,"Found",1977,16642,50.8,-114.31,,,,,,
"Blanca Estela","Iron, IAB complex",15.6,"Found",2002,45973,-25,-69.5,,,,,,
"Claytonville","L5",15.6,"Found",1964,5375,34.35,-101.49,,,,,,
"Baszkówka","L5",15.5,"Fell",1994,4957,52.03,20.94,,,,,,
"Haxtun","H/L4",15.5,"Found",1975,11863,40.46,-102.58,,,,,,
"Maria Elena (1935)","Iron, IVA",15.5,"Found",1935,15417,-22.33,-69.67,,,,,,
"Albin (stone)","L",15.4,"Found",1949,456,41.42,-104.1,,,,,,
"Campbellsville","Iron, IIIAB",15.4,"Found",1929,5245,37.37,-85.37,,,,,,
"Mayodan","Iron, IIAB",15.4,"Found",1920,15452,36.38,-79.87,,,,,,
"Um-Hadid","Mesosiderite",15.4,"Found",,24114,21.7,50.6,,,,,,
"Allan Hills A77226","H4",15.32,"Found",1977,1537,-76.72,159.67,,,,,,
"Channing","H5",15.3,"Found",1936,5324,35.72,-102.28,,,,,,
"Dhofar 360","LL3-6",15.3,"Found",2000,7143,19.04,54.78,,,,,,
"São João Nepomuceno","Iron, IVA-an",15.3,"Found",1960,23170,-21.55,-43.02,,,,,,
"Tinnie","Iron, IVB",15.3,"Found",1978,24006,33.38,-105.25,,,,,,
"Derrick Peak A78001","Iron, IIAB",15.2,"Found",1978,6677,-80.07,156.38,,,,,,
"Eli Elwah","L6",15.2,"Found",1888,10013,-34.5,144.72,,,,,,
"Nordheim","Iron, ungrouped",15.15,"Found",1932,16992,28.87,-97.62,,,,,,
"Appley Bridge","LL6",15,"Fell",1914,2318,53.58,-2.72,,,,,,
"Bansur","L6",15,"Fell",1892,4936,27.7,76.33,,,,,,
"Castrovillari","Stone-uncl",15,"Fell",1583,5295,39.8,16.2,,,,,,
"Vigarano","CV3",15,"Fell",1910,24174,44.85,11.4,,,,,,
"Dar al Gani 956","L6",15,"Found",1997,6496,27.13,15.99,,,,,,
"Deport","Iron, IAB-sLL",15,"Found",1926,6662,33.52,-95.3,,,,,,
"Indio Rico","H6",15,"Found",1887,12032,-38.33,-60.88,,,,,,
"Ransom","H4",15,"Found",1938,22393,38.62,-99.93,,,,,,
"Tanezrouft 028","H3",15,"Found",1991,23829,25.25,0.14,,,,,,
"Ybbsitz","H4",15,"Found",1977,30360,47.96,14.89,,,,,,
"Dhofar 224","H4",14.97,"Found",2001,7008,19.16,54.57,,,,,,
"Dhofar 1027","H5/6",14.94,"Found",2003,6829,18.66,54.25,,,,,,
"Dar al Gani 595","H5",14.93,"Found",1998,6142,27.64,15.9,,,,,,
"Patricia","H5",14.9,"Found",1983,18115,32.5,-102.03,,,,,,
"Indianópolis","Iron, IIAB",14.85,"Found",1989,12031,-19.17,-47.83,,,,,,
"Mejillones","Iron, IIAB",14.83,"Found",1875,15472,-23.1,-70.5,,,,,,
"Angelica","Iron, IIIAB",14.8,"Found",1916,2300,44.25,-88.25,,,,,,
"Acfer 379","H4",14.76,"Found",2004,35338,27.41,3.7,,,,,,
"Ashuwairif 001","H4",14.57,"Found",2008,51563,29.36,14.26,,,,,,
"La Porte","Iron, IIIAB",14.54,"Found",1900,12401,41.6,-86.72,,,,,,
"Tourinnes-la-Grosse","L6",14.5,"Fell",1863,24038,50.78,4.77,,,,,,
"Huntsman","H4",14.5,"Found",1910,11988,41.18,-103,,,,,,
"Squaw Creek","Iron, IIAB",14.5,"Found",,23693,32,-98,,,,,,
"Edmonson (b)","H4",14.4,"Found",1981,7769,34.28,-101.83,,,,,,
"Ogi","H6",14.36,"Fell",1741,17994,33.28,130.2,,,,,,
"Opava","Iron",14.3,"Found",1925,18021,49.97,17.9,,,,,,
"Gifu","L6",14.29,"Fell",1909,10914,35.53,136.88,,,,,,
"Allan Hills A78084","H3.9",14.28,"Found",1978,1699,-76.72,159.67,,,,,,
"Laochenzhen","H5",14.25,"Fell",1987,12466,33.13,115.17,,,,,,
"Ningbo","Iron, IVA",14.25,"Fell",1975,16980,29.87,121.48,,,,,,
"Zaoyang","H5",14.25,"Fell",1984,30391,32.3,112.75,,,,,,
"Thika","L6",14.2,"Fell",2011,54493,-1,37.15,,,,,,
"Singhur","Pallasite?",14.18,"Found",1847,23612,18.32,73.92,,,,,,
"Indian Valley","Iron, IIAB",14.1,"Found",1887,12029,36.93,-80.5,,,,,,
"Moorabie","L3.8-an",14.04,"Found",1965,16735,-30.02,141.07,,,,,,
"Beaver Creek","H5",14,"Fell",1893,4986,51.17,-117.33,,,,,,
"Hvittis","EL6",14,"Fell",1901,11989,61.18,22.68,,,,,,
"Luponnas","H3-5",14,"Fell",1753,14757,46.22,5,,,,,,
"Orgueil","CI1",14,"Fell",1864,18026,43.88,1.38,,,,,,
"Saint-Sauveur","EH5",14,"Fell",1914,23101,43.73,1.38,,,,,,
"Cruz del Eje","Iron, IAB complex",14,"Found",1971,51739,-30.75,-64.78,,,,,,
"Dhofar 1493","L6",14,"Found",2008,51054,18.67,54.45,,,,,,
"El Bahrain","L6",14,"Found",1983,7790,28.6,26.4,,,,,,
"Plymouth","Iron, IIIAB",14,"Found",1893,18850,41.33,-86.32,,,,,,
"Sarepta","Iron, IAB-MG",14,"Found",1854,23178,48.48,44.82,,,,,,
"Verissimo","Iron, IIIAB",14,"Found",1965,24163,-19.73,-48.32,,,,,,
"Villedieu","H4",14,"Found",1890,24182,47.92,4.35,,,,,,
"Qulumat Nadqan 001","L3.7",13.9,"Found",2008,51400,23.14,49.53,,,,,,
"Neenach","L6",13.8,"Found",1948,16938,34.8,-118.5,,,,,,
"St. Mark's","EH5",13.78,"Fell",1903,23090,-32.02,27.42,,,,,,
"Lanton","Iron, IIIAB",13.78,"Found",1932,12463,36.53,-91.8,,,,,,
"Mount Baldr A76002","H6",13.77,"Found",1976,16765,-77.58,160.37,,,,,,
"Yamato 000593","Martian (nakhlite)",13.71,"Found",2000,24355,-71.5,35.67,,,,,,
"Gaines County Park","H5",13.7,"Found",1977,10844,32.83,-102.73,,,,,,
"Stump Spring 083","LL6",13.7,"Found",2010,52752,35.99,-115.86,,,,,,
"Page City","Iron, IVA",13.63,"Found",1980,18070,39.17,-101.28,,,,,,
"Dhofar 721","H4",13.61,"Found",2001,7477,18.79,54.15,,,,,,
"Khairpur","EL6",13.6,"Fell",1873,12288,29.53,72.3,,,,,,
"Yatoor","H5",13.6,"Fell",1852,30358,14.3,79.77,,,,,,
"Alamogordo","H5",13.6,"Found",1938,449,32.9,-105.93,,,,,,
"Bridgewater","Iron, IID",13.6,"Found",1890,5139,35.72,-81.87,,,,,,
"Kielpa","H5",13.6,"Found",1948,12302,-33.6,136.1,,,,,,
"Kopjes Vlei","Iron, IIAB",13.6,"Found",1914,12345,-29.3,21.15,,,,,,
"Mount Ayliff","Iron, IAB-MG",13.6,"Found",1907,16763,-30.82,29.35,,,,,,
"Pipe Creek","H6",13.6,"Found",1887,18830,29.68,-98.92,,,,,,
"Waldron Ridge","Iron, IAB complex",13.6,"Found",1887,24203,36.63,-83.83,,,,,,
"Annaheim","Iron, IAB-sLL",13.5,"Found",1916,2306,52.33,-104.87,,,,,,
"Felsted","Iron, IIIAB",13.5,"Found",1977,10082,54.99,9.49,,,,,,
"Kalahari 009","Lunar (basalt)",13.5,"Found",1999,30738,-20.98,22.98,,,,,,
"Hammadah al Hamra 019","H6",13.43,"Found",1990,11502,29.07,12.68,,,,,,
"Kabo","H4",13.4,"Fell",1971,12220,11.85,8.22,,,,,,
"Strathmore","L6",13.4,"Fell",1917,23729,56.58,-3.25,,,,,,
"Wellington","H5",13.4,"Found",1955,24236,34.95,-100.25,,,,,,
"Sueilila","LL6",13.27,"Found",2005,45010,24.64,-14.72,,,,,,
"Durala","L6",13.2,"Fell",1815,7750,30.3,76.63,,,,,,
"Moonbi","Iron, IIIF",13.2,"Found",1892,16734,-30.92,151.28,,,,,,
"Russel Gulch","Iron, IIIAB",13.2,"Found",1863,22788,39.8,-105.5,,,,,,
"Tuan Tuc","L6",13.1,"Fell",1921,24060,9.67,105.67,,,,,,
"Gruver","H4",13.1,"Found",1934,11428,36.33,-101.4,,,,,,
"Guanaco","Iron, IIG",13.1,"Found",2000,11433,-25.1,-69.53,,,,,,
"Nazareth (e)","H6",13.1,"Found",1977,16932,34.58,-102.05,,,,,,
"Ryechki","L5",13,"Fell",1914,22791,51.13,34.5,,,,,,
"Bruno","Iron, IIAB",13,"Found",1931,5158,52.27,-105.35,,,,,,
"Dungannon","Iron, IAB-MG",13,"Found",1922,7747,36.85,-82.45,,,,,,
"Floyd","L4",13,"Found",1966,10113,34.19,-103.58,,,,,,
"Hardtner","L6",13,"Found",1972,11827,37.07,-98.66,,,,,,
"Harriman (Om)","Iron, IIIAB",13,"Found",1938,11841,35.95,-84.57,,,,,,
"Jiddat al Harasis 574","H4-6",13,"Found",2009,51916,19.75,56.3,,,,,,
"Lancaster County","Iron",13,"Found",1903,12454,40.67,-96.75,,,,,,
"Park","L6",13,"Found",1969,18104,39.11,-100.36,,,,,,
"Seagraves","H4",13,"Found",1962,23469,32.93,-102.58,,,,,,
"Talpa","H6",13,"Found",1963,23793,31.87,-99.58,,,,,,
"Umbarger","L6",13,"Found",1954,24113,34.95,-102.12,,,,,,
"Uruachic","Iron, IIIAB",13,"Found",1989,24130,27.85,-108.23,,,,,,
"Caldwell","L-imp melt",12.9,"Found",1961,5197,37.03,-97.63,,,,,,
"Hesston","L6",12.9,"Found",1951,11879,38.12,-97.43,,,,,,
"Kingston","Iron, ungrouped",12.9,"Found",1891,12318,32.9,-107.73,,,,,,
"Hasparos","Iron, IAB-MG",12.88,"Found",1935,11850,34,-105.5,,,,,,
"Smara","Eucrite-pmict",12.87,"Found",2000,23648,26.68,-11.73,,,,,,
"Al Huqf 064","H4",12.83,"Found",2002,48536,19.4,57.27,,,,,,
"Lissa","L6",12.8,"Fell",1808,14661,50.2,14.85,,,,,,
"Pampa (d)","L5",12.8,"Found",1986,18086,-23.2,-70.43,,,,,,
"Ramlat as Sahmah 276","L6",12.8,"Found",2008,50964,20.52,56.12,,,,,,
"De Nova","L6",12.7,"Found",1940,6624,39.85,-102.95,,,,,,
"Divnoe","Achondrite-ung",12.7,"Found",1981,7650,45.7,43.7,,,,,,
"O'Donnell","H5",12.7,"Found",1992,17987,32.91,-101.92,,,,,,
"Willard (b)","H3.6",12.7,"Found",1934,24271,34.5,-105.83,,,,,,
"Shişr 168","H5",12.69,"Found",2004,52604,18.61,53.95,,,,,,
"Mayerthorpe","Iron, IAB complex",12.61,"Found",1964,15449,53.78,-115.03,,,,,,
"Murray","CM2",12.6,"Fell",1950,16882,36.6,-88.1,,,,,,
"Dorofeevka","Iron, IIF",12.6,"Found",1910,7717,53.33,70.07,,,,,,
"Peekskill","H6",12.57,"Fell",1992,18782,41.28,-73.92,,,,,,
"Dergaon","H5",12.5,"Fell",2001,6664,26.68,93.87,,,,,,
"Djebel In-Azzene","Iron, IIIAB",12.5,"Found",1990,7655,27.87,0.45,,,,,,
"Floydada","Iron, IIIAB",12.5,"Found",1912,10114,33.98,-101.28,,,,,,
"Iquique","Iron, IVB",12.5,"Found",1871,12045,-20.18,-69.73,,,,,,
"Kress (a)","L6",12.5,"Found",1951,12358,34.36,-101.73,,,,,,
"Nenntmannsdorf","Iron, IIAB",12.5,"Found",1872,16943,50.97,13.95,,,,,,
"Dhofar 446","L5",12.4,"Found",2001,7221,18.94,54.69,,,,,,
"Pampa Providencia","Iron, IIIAB",12.4,"Found",1994,18092,-24.45,-69.57,,,,,,
"San Borjita","L4",12.3,"Found",1983,23118,-27.56,-56.13,,,,,,
"Albion","Iron, IVA",12.28,"Found",1966,457,46.83,-117.25,,,,,,
"Colonia Obrera","Iron, IIIE",12.2,"Found",1973,5405,24.02,-104.67,,,,,,
"Dalgaranga","Mesosiderite-A",12.2,"Found",1923,5506,-27.72,117.25,,,,,,
"Holland's Store","Iron, IIAB",12.2,"Found",1887,11896,34.37,-85.43,,,,,,
"Jiddat al Harasis 664","H5",12.18,"Found",2011,56219,19.83,55.68,,,,,,
"Los Vientos 028","H~5",12.11,"Found",2012,57338,-24.68,-69.77,,,,,,
"Ragland","LL3.4",12.1,"Found",1982,22372,34.77,-103.55,,,,,,
"Charwallas","H6",12,"Fell",1834,5330,29.48,75.5,,,,,,
"Devgaon","H3.8",12,"Fell",2001,6694,19,81,,,,,,
"New Halfa","L4",12,"Fell",1994,16954,15.37,35.68,,,,,,
"Okniny","LL6",12,"Fell",1834,18002,50.83,25.5,,,,,,
"Tatahouine","Diogenite",12,"Fell",1931,23884,32.95,10.42,,,,,,
"Allan Hills 84005","L5",12,"Found",1984,608,-76.89,156.89,,,,,,
"Aswan","Iron, IAB-ung",12,"Found",1955,4882,23.99,32.62,,,,,,
"Barranca Blanca","Iron, IIE-an",12,"Found",1855,4950,-28.08,-69.33,,,,,,
"Bechar 002","H6",12,"Found",1998,4989,30.83,-3.33,,,,,,
"Boolka","H5",12,"Found",1968,5108,-30.07,141.07,,,,,,
"Cope","H5",12,"Found",1934,5440,39.67,-102.83,,,,,,
"Edmonson (a)","L6",12,"Found",1955,7768,34.28,-101.83,,,,,,
"Great Sand Sea 019","LL6",12,"Found",1999,11190,25.54,25.66,,,,,,
"Hammadah al Hamra 051","H6",12,"Found",1994,11534,28.84,13,,,,,,
"Jenny's Creek","Iron, IAB-MG",12,"Found",1883,12081,37.9,-82.38,,,,,,
"Kaldoonera Hill","H6",12,"Found",1956,12233,-32.62,134.85,,,,,,
"Karasburg","Iron, IIIAB?",12,"Found",1964,12257,-27.67,18.97,,,,,,
"Mission","L",12,"Found",1949,16704,43.32,-100.77,,,,,,
"Pooposo","Iron, IAB-MG",12,"Found",1910,18869,-18.33,-66.83,,,,,,
"Shrewsbury","Iron, IAB-sLL",12,"Found",1907,23581,39.77,-76.67,,,,,,
"Starvation Lake","LL3.9",12,"Found",1975,23714,-30.47,141.08,,,,,,
"Ashuwairif 002","L5/6",11.95,"Found",2008,51564,29.38,14.27,,,,,,
"Acfer 353","Eucrite-cm",11.94,"Found",2001,359,27.49,3.89,,,,,,
"Elephant Moraine 87538","L6",11.89,"Found",1987,8088,-76.18,157.17,,,,,,
"Waka","H6",11.88,"Found",1963,24200,36.15,-101.05,,,,,,
"Safsaf","L6",11.87,"Found",1998,22795,30.27,-4.67,,,,,,
"Trenzano","H3/4",11.8,"Fell",1856,24046,45.47,10,,,,,,
"Derrick Peak A78007","Iron, IIAB",11.8,"Found",1978,6683,-80.07,156.38,,,,,,
"McKenzie Draw (a)","H4",11.8,"Found",1989,15461,32.93,-102.63,,,,,,
"Ragland Hill","H5",11.8,"Found",1980,56382,34.78,-103.67,,,,,,
"Somervell County","Pallasite, PMG",11.8,"Found",1919,23665,32.18,-97.8,,,,,,
"Tonganoxie","Iron, IIIAB",11.8,"Found",1886,24025,39.08,-95.12,,,,,,
"Vaalbult","Iron, IAB-MG",11.8,"Found",1921,24141,-29.75,22.5,,,,,,
"Hill City","Iron, IVA",11.7,"Found",1947,11886,39.37,-99.85,,,,,,
"Little River (b)","H4/5",11.7,"Found",1965,14666,38.44,-98.07,,,,,,
"Willow Grove","Iron, ungrouped",11.7,"Found",1995,24277,-38.1,146.18,,,,,,
"Sayh al Uhaymir 277","H6",11.64,"Found",2002,23450,20.17,57.08,,,,,,
"Fukutomi","L5",11.62,"Fell",1882,10836,33.18,130.2,,,,,,
"Beeler","LL6",11.62,"Found",1924,4994,38.53,-100.22,,,,,,
"Silver Crown","Iron, IAB-MG",11.6,"Found",1887,23597,41.23,-104.98,,,,,,
"Kokubunji","L6",11.51,"Fell",1986,12342,34.3,133.95,,,,,,
"Bandong","LL6",11.5,"Fell",1871,4935,-6.92,107.6,,,,,,
"Deep Springs","Iron, ungrouped",11.5,"Found",1846,6637,36.5,-79.75,,,,,,
"Peetz","L6",11.5,"Found",1937,18783,40.95,-103.08,,,,,,
"Seneca Township","Iron, IVA",11.5,"Found",1923,23499,41.78,-84.18,,,,,,
"Lewis Cliff 85319","H5",11.49,"Found",1985,12789,-84.26,161.4,,,,,,
"Dar al Gani 399","L5",11.46,"Found",1998,5947,27.87,15.94,,,,,,
"al-Jimshan","H4",11.45,"Found",1955,473,20.7,52.83,,,,,,
"Novosibirsk","H5/6",11.41,"Found",1978,17932,55,82.9,,,,,,
"Dhofar 1558","L4",11.4,"Found",2009,53884,18.39,54.66,,,,,,
"Rakity","L3",11.4,"Found",1971,22375,51.8,79.9,,,,,,
"Kapoeta","Howardite",11.36,"Fell",1942,12251,4.7,33.63,,,,,,
"Clifford","L6",11.36,"Found",1962,5380,39.1,-103.26,,,,,,
"Corowa","Iron, IIF",11.34,"Found",1964,5446,-36,146.37,,,,,,
"Nazareth (iron)","Iron, IIIAB",11.31,"Found",1968,16933,34.53,-102.11,,,,,,
"Mount Browne","H6",11.3,"Fell",1902,16766,-29.8,141.7,,,,,,
"Binya","Iron, IIIF",11.3,"Found",1981,5052,-34.23,146.38,,,,,,
"Cedartown","Iron, IIAB",11.3,"Found",1898,5304,34.02,-85.27,,,,,,
"Clark County","Iron, IIIF",11.3,"Found",1937,5373,38,-84.17,,,,,,
"Densmore (1950)","H6",11.3,"Found",1950,6657,39.57,-99.65,,,,,,
"Duel Hill (1873)","Iron, IAB-MG",11.3,"Found",1873,7739,35.85,-82.7,,,,,,
"Grayton","H5",11.3,"Found",1983,11177,30.31,-86.17,,,,,,
"Mount Dyrring","Pallasite",11.3,"Found",1903,16772,-32.33,151.2,,,,,,
"Darinskoe","Iron, IIC",11.2,"Found",1984,6602,51.42,51.97,,,,,,
"Holyoke","H4",11.2,"Found",1933,11900,40.57,-102.3,,,,,,
"Jiddat al Harasis 426","L6",11.17,"Found",2007,48577,19.94,56.4,,,,,,
"Jaralito","Iron, IAB-MG",11.14,"Found",1977,12073,26.27,-103.89,,,,,,
"Barrilla","H5",11.1,"Found",1994,4952,30.78,-103.47,,,,,,
"Answer","Iron",11.09,"Found",1970,2309,-21.66,140.91,,,,,,
"Lundsgård","L6",11,"Fell",1889,14755,56.22,13.03,,,,,,
"Phuoc-Binh","L5",11,"Fell",1941,18812,15.72,108.1,,,,,,
"Aldama (a)","Iron, IIIAB",11,"Found",1985,459,28.83,-105.87,,,,,,
"Bison","LL6",11,"Found",1958,5061,38.31,-99.71,,,,,,
"Glen Rose (iron)","Iron, ungrouped",11,"Found",1934,10932,32.25,-97.72,,,,,,
"Goronyo","H4",11,"Found",2001,34019,13.27,5.4,,,,,,
"Yamato 75102","L4/5",11,"Found",1975,25143,-71.5,35.67,,,,,,
"Elyria","Iron, IIIAB",10.9,"Found",1971,10030,38.28,-97.37,,,,,,
"Frankfort (iron)","Iron, IIIAB",10.9,"Found",1866,10176,38.2,-84.83,,,,,,
"Kenna","Ureilite",10.9,"Found",1972,12277,33.9,-103.55,,,,,,
"Saotome","Iron, IVA",10.88,"Found",1892,23174,36.5,137,,,,,,
"Bingera","Iron, IIAB",10.84,"Found",1880,5050,-29.88,150.57,,,,,,
"Jiddat al Harasis 003","L5",10.83,"Found",1999,12091,19.53,55.76,,,,,,
"Credo","L6",10.82,"Found",1967,5468,-30.37,120.73,,,,,,
"Vengerovo","H5",10.8,"Fell",1950,24158,56.13,77.27,,,,,,
"Yamato 81124","H5",10.79,"Found",1981,29185,-71.5,35.67,,,,,,
"Quesa","Iron, IAB-ung",10.75,"Fell",1898,22360,39,-0.67,,,,,,
"Finney","L5",10.7,"Found",1962,10104,34.27,-101.57,,,,,,
"Rose City","H5",10.6,"Fell",1921,22766,44.52,-83.95,,,,,,
"Derrick Peak A78013","Iron, IIAB",10.6,"Found",1978,6689,-80.07,156.38,,,,,,
"Muslyumovo","H4",10.58,"Found",1964,16884,55.3,53.2,,,,,,
"Allan Hills A77250","Iron, IAB-MG",10.56,"Found",1977,1561,-76.72,159.67,,,,,,
"Nahuel Niyeu","H5",10.54,"Found",2005,50766,-40.53,-66.63,,,,,,
"Allan Hills A77283","Iron, IAB-MG",10.51,"Found",1977,1593,-76.72,159.67,,,,,,
"Gross-Divina","H5",10.5,"Fell",1837,11207,49.27,18.72,,,,,,
"Menow","H4",10.5,"Fell",1862,15485,53.18,13.15,,,,,,
"Pampanga","L5",10.5,"Fell",1859,18093,15.08,120.7,,,,,,
"Tambakwatu","L6",10.5,"Fell",1975,23795,-7.75,112.77,,,,,,
"Allan Hills A76003","L6",10.5,"Found",1976,1310,-76.72,159.67,,,,,,
"Dhofar 1026","H6",10.5,"Found",2003,6828,18.66,54.25,,,,,,
"Lake Grace","L6",10.5,"Found",1956,12443,-33.07,118.22,,,,,,
"Vitoria da Conquista","Iron, IVA",10.5,"Found",2007,48953,-14.84,-40.84,,,,,,
"Stretchleigh","Stone-uncl",10.4,"Fell",1623,23732,50.38,-3.95,,,,,,
"Barwise","H5",10.4,"Found",1950,4955,34,-101.5,,,,,,
"Johnson City","L6",10.4,"Found",1937,12197,37.55,-101.68,,,,,,
"Spearman","Iron, IIIAB",10.4,"Found",1934,23687,36.25,-101.22,,,,,,
"Shalim 003","H5",10.35,"Found",2001,23516,18.18,55.5,,,,,,
"Shalim 004","H5",10.35,"Found",2001,23517,18.18,55.5,,,,,,
"Bahjoi","Iron, IAB-sLL",10.32,"Fell",1934,4922,28.48,78.5,,,,,,
"Mantos Blancos","Iron, IVA",10.3,"Found",1876,15408,-23.45,-70.12,,,,,,
"Nerft","L6",10.25,"Fell",1864,16945,56.5,21.5,,,,,,
"Ramlat as Sahmah 204","L6",10.25,"Found",2003,35638,20.63,56.19,,,,,,
"Fermo","H3-5",10.2,"Fell",1996,10091,43.18,13.75,,,,,,
"Raghunathpura","Iron, IIAB",10.2,"Fell",1986,22371,27.73,76.47,,,,,,
"Edmonton (Kentucky)","Iron, IAB-sLM",10.2,"Found",1942,7771,37.03,-85.63,,,,,,
"Ellerslie","L5",10.2,"Found",1905,10020,-28.9,146.77,,,,,,
"Shişr 036","H3",10.18,"Found",2002,23571,18.51,53.99,,,,,,
"Lonewolf Nunataks 94104","H6",10.17,"Found",1994,14688,-81.33,152.83,,,,,,
"Asuka 881986","L6",10.15,"Found",1988,4695,-72,26,,,,,,
"Tendo","Iron, IIIAB",10.1,"Found",1910,23896,38.35,140.37,,,,,,
"Dhofar 069","H4",10.08,"Found",1999,6768,19.16,54.73,,,,,,
"Reckling Peak A79015","Mesosiderite-an",10.02,"Found",1979,22470,-76.22,158.54,,,,,,
"Sayh al Uhaymir 425","L5-6",10.01,"Found",2005,35714,20.93,57.15,,,,,,
"Djoumine","H5-6",10,"Fell",1999,7657,36.95,9.55,,,,,,
"Eagle","EL6",10,"Fell",1947,7760,40.78,-96.47,,,,,,
"El Idrissia","L6",10,"Fell",1989,7807,34.42,3.25,,,,,,
"Milena","L6",10,"Fell",1842,16640,46.18,16.1,,,,,,
"Nakhla","Martian (nakhlite)",10,"Fell",1911,16898,31.32,30.35,,,,,,
"Rembang","Iron, IVA",10,"Fell",1919,22585,-6.73,111.37,,,,,,
"Tagish Lake","C2-ung",10,"Fell",2000,23782,59.7,-134.2,,,,,,
"Tugalin-Bulen","H6",10,"Fell",1967,24062,45.47,105.38,,,,,,
"Cullison","H4",10,"Found",1911,5495,37.62,-98.92,,,,,,
"Derrick Peak 00200","Iron, IIAB",10,"Found",2000,6666,-80.07,156.38,,,,,,
"Egvekinot","Iron, IAB-sLM",10,"Found",1970,7773,66.8,178.2,,,,,,
"Gascoyne Junction","H5",10,"Found",1978,10865,-24.5,115.18,,,,,,
"Grosvenor Mountains 95500","L6",10,"Found",1995,11228,-85.67,175,,,,,,
"Kalvesta","H4",10,"Found",1968,12237,38.08,-100.25,,,,,,
"Kearney","H5",10,"Found",1934,12269,40.68,-99.07,,,,,,
"Lazarev","Iron, ungrouped",10,"Found",1961,12745,-71.95,11.5,,,,,,
"Lismore","Iron, IIIAB?",10,"Found",1959,14660,-35.95,143.33,,,,,,
"Locust Grove","Iron, IIAB",10,"Found",1857,14673,33.33,-84.1,,,,,,
"Misteca","Iron, ungrouped",10,"Found",1804,16705,16.8,-97.1,,,,,,
"Pampa (b)","L4/5",10,"Found",1986,18084,-23.2,-70.43,,,,,,
"Pampa (e)","L6",10,"Found",1987,18087,-23.2,-70.43,,,,,,
"Plateau du Tademait 003","L5",10,"Found",2002,31298,28.3,0.67,,,,,,
"Scottsville","Iron, IIAB",10,"Found",1867,23466,36.77,-86.17,,,,,,
"Sombrerete","Iron, IAB-sHL",10,"Found",1958,23664,23.63,-103.67,,,,,,
"Teocaltiche","Iron",10,"Found",1903,23901,21.43,-102.57,,,,,,
"Palmersville","H5",9.98,"Found",1908,18078,36.47,-88.6,,,,,,
"Round Top (a)","L5",9.94,"Found",1934,22768,30.06,-96.65,,,,,,
"Hope Creek","LL6",9.83,"Found",1998,11906,65.38,-146.27,,,,,,
"Shields","H5",9.78,"Found",1962,23533,38.7,-100.35,,,,,,
"Northwest Africa 778","H4",9.75,"Found",1999,17849,29.42,-5.27,,,,,,
"Mulberry Draw","L5",9.72,"Found",1963,16845,35.63,-100.13,,,,,,
"Khohar","L3.6",9.7,"Fell",1910,12298,25.1,81.53,,,,,,
"Utrecht","L6",9.7,"Fell",1843,24135,52.12,5.18,,,,,,
"Dhofar 131","H5/6",9.68,"Found",2000,6916,19.14,54.82,,,,,,
"Acfer 371","L5",9.61,"Found",2002,34017,27.68,4.47,,,,,,
"Yarroweyah","Iron, IIAB",9.6,"Found",1903,30357,-35.98,145.58,,,,,,
"Bluewater","Iron, IIIAB",9.54,"Found",1946,5078,35.27,-107.97,,,,,,
"Verkhnyi Saltov","Iron, IIIAB",9.53,"Found",2001,31352,50.11,36.8,,,,,,
"Ash Creek","L6",9.5,"Fell",2009,48954,31.81,-97.01,,,,,,
"Fluvanna (a)","L5",9.5,"Found",1967,10116,32.8,-101.12,,,,,,
"Reggane 003","H4",9.5,"Found",1989,22555,25.63,0.5,,,,,,
"Shalim 009","L6",9.47,"Found",2009,51962,18.87,55.48,,,,,,
"Kalkaska","Iron, IIIAB",9.4,"Found",1947,12234,44.65,-85.14,,,,,,
"Ural","OC",9.4,"Found",1981,24126,55.8,66,,,,,,
"Sandtown","Iron, IIIAB",9.35,"Found",1938,23157,35.93,-91.63,,,,,,
"Avanhandava","H4",9.33,"Fell",1952,4905,-21.46,-49.95,,,,,,
"Buffalo Gap","Iron, IAB-ung",9.3,"Found",2003,51831,32.25,-99.99,,,,,,
"Grady (1937)","H3.7",9.3,"Found",1937,10952,34.8,-103.32,,,,,,
"Rush Creek","L6",9.3,"Found",1938,22786,38.62,-102.72,,,,,,
"Allan Hills A77231","L6",9.27,"Found",1977,1542,-76.72,159.67,,,,,,
"Deán Funes","H5",9.26,"Found",1977,6635,-30.43,-64.2,,,,,,
"Alexandrovsky","H4",9.25,"Fell",1900,465,50.95,31.82,,,,,,
"Tiffa 007","H5",9.25,"Found",2001,23997,20.2,11.59,,,,,,
"Lua","L5",9.24,"Fell",1926,14721,24.95,75.15,,,,,,
"Queen Alexandra Range 90200","H4",9.22,"Found",1990,19005,-84.6,162.25,,,,,,
"Armel","L5",9.2,"Found",1967,2336,39.77,-102.13,,,,,,
"Waingaromia","Iron, IIIAB",9.2,"Found",1915,24198,-38.25,178.08,,,,,,
"Wickenburg (stone)","L6",9.2,"Found",1940,24258,33.97,-112.73,,,,,,
"Dhofar 772","L6",9.19,"Found",2000,7518,19.09,54.76,,,,,,
"Bernic Lake","Iron, IAB-MG",9.16,"Found",2002,54851,50.44,-95.53,,,,,,
"Palo Verde Mine","L6",9.16,"Found",2004,31284,34.71,-114.19,,,,,,
"Motta di Conti","H4",9.15,"Fell",1868,16762,45.2,8.5,,,,,,
"Bouri","H4",9.1,"Found",1996,47701,10.27,40.57,,,,,,
"Binneringie","H5",9.06,"Found",1946,55546,-31.49,122.12,,,,,,
"Franklin","H5",9.06,"Found",1921,10178,36.72,-86.57,,,,,,
"Barbacena","Iron, ungrouped",9.03,"Found",1918,4940,-21.22,-43.93,,,,,,
"Shişr 007","Ureilite",9.02,"Found",2001,23545,18.29,53.57,,,,,,
"Yamato 82111","H6",9.01,"Found",1982,29305,-71.5,35.67,,,,,,
"Granes","L6",9,"Fell",1964,10956,42.9,2.25,,,,,,
"Hainaut","H3-6",9,"Fell",1934,11472,50.32,3.73,,,,,,
"Rakovka","L6",9,"Fell",1878,22376,52.98,37.03,,,,,,
"Salles","L5",9,"Fell",1798,23111,46.05,4.63,,,,,,
"Tadjera","L5",9,"Fell",1867,23778,36.18,5.42,,,,,,
"Allan Hills 84004","H4",9,"Found",1984,607,-76.73,158.68,,,,,,
"Dar al Gani 901","H4",9,"Found",1998,6448,27.88,16.91,,,,,,
"El Atchane 003","L6",9,"Found",1991,7780,29.76,4.21,,,,,,
"Landor","Iron",9,"Found",1931,12458,-25.67,117,,,,,,
"Lonewolf Nunataks 94103","L6",9,"Found",1994,14687,-81.33,152.83,,,,,,
"Danby Dry Lake","H6",8.99,"Found",2000,5510,34.22,-115.05,,,,,,
"Arlington","Iron, IIE-an",8.94,"Found",1894,2333,44.6,-94.1,,,,,,
"Hyattville","L6",8.91,"Found",2008,52755,44.34,-107.67,,,,,,
"Hat Creek","H4",8.9,"Found",1939,11853,42.92,-104.42,,,,,,
"Ramlat as Sahmah 271","L6",8.9,"Found",2008,50959,20.52,56.12,,,,,,
"Moorleah","L6",8.89,"Fell",1930,16738,-40.98,145.6,,,,,,
"Ivanovka","H5",8.87,"Found",1983,12061,54.5,52.8,,,,,,
"Spade","H6",8.86,"Found",2000,23686,34,-102.13,,,,,,
"Dhofar 058","H4",8.85,"Found",1999,6757,19.17,54.76,,,,,,
"Yamato 791785","H5",8.83,"Found",1979,27134,-71.5,35.67,,,,,,
"Motpena (a)","L6",8.81,"Found",1968,16760,-31.1,138.27,,,,,,
"Bogou","Iron, IAB-MG",8.8,"Fell",1962,5097,12.5,0.7,,,,,,
"Chandakapur","L5",8.8,"Fell",1838,5320,20.27,76.02,,,,,,
"Dhofar 146","L6",8.8,"Found",2000,6931,18.34,54.42,,,,,,
"Frenchman Bay","H3.5",8.8,"Found",1964,10182,-30.61,115.17,,,,,,
"Garraf","L6",8.8,"Found",1905,10863,41.27,1.92,,,,,,
"Acfer 348","L5",8.75,"Found",2001,354,27.98,4.28,,,,,,
"Redfields","Iron, ungrouped",8.74,"Found",1969,22551,-30.72,116.5,,,,,,
"Allan Hills A80101","L6",8.73,"Found",1980,1929,-76.77,159.28,,,,,,
"Withrow","Iron, IIIAB?",8.73,"Found",1950,24320,47.71,-119.83,,,,,,
"Zakłodzie","Enst achon-ung",8.68,"Found",1998,30390,50.76,22.87,,,,,,
"Timber Lake","H3",8.66,"Found",2011,57160,45.43,-101.1,,,,,,
"Howe","H5",8.63,"Found",1938,11914,33.5,-96.6,,,,,,
"Bori","L6",8.6,"Fell",1894,5111,21.95,78.03,,,,,,
"Monroe","H4",8.6,"Fell",1849,16720,35.25,-80.5,,,,,,
"Bishop Canyon","Iron, IVA",8.6,"Found",1912,5058,38,-108.5,,,,,,
"Burdett","H5",8.6,"Found",1940,5167,38.23,-99.53,,,,,,
"Canyon City","Iron, IIIAB",8.6,"Found",1875,5256,40.9,-123.1,,,,,,
"Fife","H5",8.6,"Found",2003,30563,31.39,-99.41,,,,,,
"Lazbuddie","LL5",8.6,"Found",1970,12746,34.5,-102.75,,,,,,
"Murfreesboro","Iron, ungrouped",8.6,"Found",1847,16877,35.83,-86.42,,,,,,
"Seibert (b)","L6",8.6,"Found",1991,23480,39.28,-102.89,,,,,,
"Bartlett","Iron, IIIAB",8.59,"Found",1938,4953,30.83,-97.5,,,,,,
"Hardesty","Iron, IIIAB",8.58,"Found",1986,11825,36.57,-101.19,,,,,,
"Sayh al Uhaymir 008","Martian (shergottite)",8.58,"Found",1999,23200,20.98,57.32,,,,,,
"Patuxent Range 91501","L7",8.55,"Found",1991,18120,-84.72,-64.5,,,,,,
"Mirzapur","L5",8.51,"Fell",1910,16701,25.68,83.25,,,,,,
"Sayh al Uhaymir 423","H6",8.51,"Found",2005,35712,21.01,57.09,,,,,,
"Seres","H4",8.5,"Fell",1818,23501,41.05,23.57,,,,,,
"Amherst","L6",8.5,"Found",1947,2293,40.8,-99.2,,,,,,
"Dorrigo","Iron, ungrouped",8.5,"Found",1948,7720,-30.28,152.67,,,,,,
"Gaylord","H4",8.48,"Found",1983,10868,39.62,-98.7,,,,,,
"Reckling Peak A78002","H4",8.48,"Found",1978,22457,-76.27,159.25,,,,,,
"Jiddat al Harasis 293","L5",8.42,"Found",2005,35611,19.79,56.48,,,,,,
"Cherokee Springs","LL6",8.4,"Fell",1933,5340,35.03,-81.88,,,,,,
"Sindhri","H5",8.4,"Fell",1901,23611,26.22,69.55,,,,,,
"Burkett","Iron, IAB-MG",8.4,"Found",1913,5170,32.03,-99.25,,,,,,
"Otinapa","Pallasite, PMG",8.4,"Found",1986,18043,24.18,-105.03,,,,,,
"Harleton","L6",8.36,"Fell",1961,11830,32.68,-94.51,,,,,,
"Delaware","L4",8.35,"Found",1972,6640,35.28,-93.5,,,,,,
"Roosevelt County 102","L5",8.35,"Found",1988,22757,34,-103.25,,,,,,
"Taouz 002","LL6",8.35,"Found",1999,23875,30.9,-3.97,,,,,,
"Pecora Escarpment 82503","L6",8.31,"Found",1982,18266,-85.63,-68.7,,,,,,
"St. Mesmin","LL6",8.3,"Fell",1866,23092,48.45,3.93,,,,,,
"Bouvante","Eucrite-mmict",8.3,"Found",1978,5120,44.92,5.27,,,,,,
"Asuka 9048","L5",8.27,"Found",1990,4881,-72,26,,,,,,
"Shişr 043","Iron, IIIAB",8.27,"Found",2003,23578,18.59,53.81,,,,,,
"Hammadah al Hamra 236","L4",8.26,"Found",1997,11719,28.53,13.07,,,,,,
"Paposo 004","L3.1",8.25,"Found",2011,57171,-25,-70.47,,,,,,
"Reid 010","H6",8.22,"Found",1986,22565,-30.32,128.85,,,,,,
"Slovak","H5",8.22,"Found",1962,23647,34.65,-91.58,,,,,,
"Elephant Moraine 82603","H5",8.21,"Found",1982,7828,-76.3,157.33,,,,,,
"Chainpur","LL3.4",8.2,"Fell",1907,5315,25.85,83.48,,,,,,
"Kennard","H5",8.2,"Found",1961,12279,41.48,-96.17,,,,,,
"Lovina","Iron, ungrouped",8.2,"Found",1981,45978,-8.65,115.22,,,,,,
"Mukinbudin","H5",8.2,"Found",1938,45813,-30.92,118.2,,,,,,
"Uvalde","H5",8.2,"Found",1915,24137,29.2,-99.77,,,,,,
"Welland","Iron, IIIAB",8.2,"Found",1888,24235,43.02,-79.22,,,,,,
"Dar al Gani 487","L6",8.19,"Found",1997,6035,27.38,16.42,,,,,,
"Kingfisher","L5",8.18,"Found",1950,12317,35.83,-97.93,,,,,,
"Nadiabondi","H5",8.17,"Fell",1956,16889,12,1,,,,,,
"Dar al Gani 638","H4",8.17,"Found",1998,6185,26.95,16.15,,,,,,
"Springer","H5",8.14,"Found",1965,23688,36.35,-97.19,,,,,,
"Elephant Moraine 87500","Mesosiderite-B",8.13,"Found",1987,8051,-76.05,156.07,,,,,,
"Asuka 881785","H4",8.12,"Found",1988,4494,-72,26,,,,,,
"Leoville","CV3",8.1,"Found",1961,12766,39.63,-100.47,,,,,,
"Los Vientos 020","H4",8.1,"Found",2010,57330,-24.68,-69.77,,,,,,
"Sawyer","H4",8.1,"Found",2006,53806,37.52,-98.63,,,,,,
"Al Huqf 011","L6",8.06,"Found",2002,444,19.87,57,,,,,,
"Chico Hills","H4",8.03,"Found",1951,5347,36,-104.5,,,,,,
"Northwest Africa 841","L6",8.01,"Found",2001,17867,30.19,-9.04,,,,,,
"Enshi","H5",8,"Fell",1974,10038,30.3,109.5,,,,,,
"Grossliebenthal","L6",8,"Fell",1881,11208,46.35,30.58,,,,,,
"Mighei","CM2",8,"Fell",1889,16634,48.07,30.97,,,,,,
"Schönenberg","L6",8,"Fell",1846,23460,48.12,10.47,,,,,,
"Verkhne Tschirskaia","H5",8,"Fell",1843,24165,48.42,43.2,,,,,,
"Allan Hills 87900","L6",8,"Found",1987,1038,-76.75,159.34,,,,,,
"Alnif","H5",8,"Found",1992,2282,30.67,-5.17,,,,,,
"Dhofar 405","H5",8,"Found",2001,7187,19.3,54.53,,,,,,
"Grosvenor Mountains 95501","L6",8,"Found",1995,11229,-85.67,175,,,,,,
"New Almelo","L5",8,"Found",1917,16951,39.67,-100,,,,,,
"Northwest Africa 512","L4",8,"Found",1999,17763,23.6,-5,,,,,,
"Northwest Africa 6963","Martian (shergottite)",8,"Found",2011,54565,28,-11.13,,,,,,
"Oubari","LL6",8,"Found",1944,18049,26.8,13.58,,,,,,
"Queen Alexandra Range 93012","H6",8,"Found",1993,19101,-84.58,162.94,,,,,,
"Talbachat n'aït Isfoul","LL3",8,"Found",1999,23792,29.98,-5.23,,,,,,
"Lewis Cliff 87030","H5",7.99,"Found",1987,13504,-84.28,161.08,,,,,,
"Kaffir (c)","L6",7.95,"Found",1980,12225,34.67,-101.82,,,,,,
"Elephant Moraine A79001","Martian (shergottite)",7.94,"Found",1979,10002,-76.29,157.27,,,,,,
"Belly River","H6",7.9,"Found",1943,5007,49.5,-113,,,,,,
"Kybunga","L5",7.9,"Found",1956,12388,-33.9,138.48,,,,,,
"Warden","H5",7.87,"Found",1989,24213,-23.27,116.93,,,,,,
"Hammadah al Hamra 320","H6",7.82,"Found",2001,11803,28.97,12.21,,,,,,
"Phum Sambo","H4",7.8,"Fell",1933,18811,12,105.48,,,,,,
"Hardwick","L4",7.8,"Found",1937,11828,43.8,-96.17,,,,,,
"Wimberley","Iron, IIIAB",7.8,"Found",1976,24282,29.97,-98.12,,,,,,
"Kyle","L6",7.78,"Found",1965,12389,29.98,-97.87,,,,,,
"Dar al Gani 994","H4/5",7.77,"Found",2002,6534,27.49,16.45,,,,,,
"Melvern Lake","H5",7.75,"Found",1950,15477,38.53,-95.78,,,,,,
"Sayh al Uhaymir 016","H6",7.75,"Found",1999,23208,20.98,57.33,,,,,,
"Ohuma","L5",7.7,"Fell",1963,17996,6.75,8.5,,,,,,
"Clinton","Iron",7.7,"Found",1950,5381,36.08,-84.2,,,,,,
"Clover Springs","Mesosiderite-A2",7.7,"Found",1954,5384,34.45,-111.37,,,,,,
"Dhofar 1576","L5",7.7,"Found",2010,51864,18.52,54.23,,,,,,
"Dhofar 1733","L3",7.7,"Found",2011,57433,19.16,54.89,,,,,,
"Murphy","Iron, IIAB",7.7,"Found",1899,16881,35.1,-84.03,,,,,,
"Ventura","Iron, IAB-ung",7.7,"Found",1953,24159,34.25,-119.3,,,,,,
"Dawn (a)","H6",7.68,"Found",1981,6618,34.86,-102.12,,,,,,
"Williston","Iron, IIIAB",7.65,"Found",1962,24275,47.98,-103.65,,,,,,
"La Ciénega","H6",7.63,"Found",2007,51052,30.2,-111.94,,,,,,
"Dora (pallasite)","Pallasite, PMG",7.6,"Found",1955,7712,33.93,-103.96,,,,,,
"Sutton","H5",7.6,"Found",1964,23763,40.6,-97.87,,,,,,
"Yudoma","Iron, IVA",7.6,"Found",1946,30376,60,140,,,,,,
"Brandon","L6/7",7.58,"Found",1975,5132,40.81,-101.8,,,,,,
"Sayh al Uhaymir 272","H5",7.56,"Found",2003,23445,20.79,57.21,,,,,,
"Allan Hills 84002","L6",7.55,"Found",1984,605,-76.74,158.83,,,,,,
"Dhofar 1562","L6",7.55,"Found",2004,51567,18.93,54.4,,,,,,
"Tabor","H5",7.54,"Fell",1753,23776,49.4,14.65,,,,,,
"Elephant Moraine 87536","L6",7.53,"Found",1987,8086,-76.18,157.17,,,,,,
"Jiddat al Harasis 098","H4",7.52,"Found",2002,12157,19.23,56.09,,,,,,
"Bo Xian","LL3.9",7.5,"Fell",1977,5090,33.83,115.83,,,,,,
"Nanjemoy","H6",7.5,"Fell",1825,16904,38.42,-77.17,,,,,,
"Zomba","L6",7.5,"Fell",1899,30412,-15.18,35.28,,,,,,
"Ella Island","L6",7.5,"Found",1971,10018,72.88,-25.12,,,,,,
"Kimbolton","H4",7.5,"Found",1976,12312,-40.07,175.73,,,,,,
"San Francisco del Mezquital","Iron, IIAB",7.5,"Found",1868,23123,23.48,-104.37,,,,,,
"Jiddat al Harasis 279","L6",7.49,"Found",2005,35596,19.97,55.95,,,,,,
"Millrose","L6",7.46,"Found",1984,16686,-26.33,121,,,,,,
"Queen Alexandra Range 93011","H4",7.46,"Found",1993,19100,-84.62,162.45,,,,,,
"Arroyo Aguiar","H5",7.45,"Fell",1950,2340,-31.42,-60.67,,,,,,
"Dhofar 617","H6",7.4,"Found",2001,7374,19.16,54.71,,,,,,
"Idalia","H",7.4,"Found",1968,11998,39.7,-102.3,,,,,,
"Dar al Gani 478","L6",7.37,"Found",1998,6026,27.75,15.98,,,,,,
"Elephant Moraine 87533","L6",7.36,"Found",1987,8083,-76.18,157.17,,,,,,
"Lahmada","H6",7.36,"Found",1998,12414,27.17,-9.5,,,,,,
"Edmonton (Canada)","Iron, IIAB",7.34,"Found",1939,7770,53.67,-113.42,,,,,,
"Ijopega","H6",7.33,"Fell",1975,12004,-6.03,145.37,,,,,,
"Castalia","H5",7.3,"Fell",1874,5291,36.08,-78.07,,,,,,
"Graves Nunataks 98001","H5",7.3,"Found",1998,10993,-86.72,-141.5,,,,,,
"Dhofar 276","H5",7.29,"Found",2001,7059,18.65,54.14,,,,,,
"Shişr 025","L6",7.29,"Found",1998,23560,18.11,53.83,,,,,,
"Calico Rock","Iron, IIAB",7.28,"Found",1938,5198,36.08,-92.15,,,,,,
"Pecora Escarpment 91011","L5",7.27,"Found",1991,18302,-85.67,-69.03,,,,,,
"Qarat al Milh 001","LL4-6",7.27,"Found",2005,35461,21.37,57.73,,,,,,
"Bremervörde","H/L3.9",7.25,"Fell",1855,5135,53.4,9.1,,,,,,
"Inman","L/LL3.4",7.25,"Found",1966,12036,38.25,-97.67,,,,,,
"Supuhee","H6",7.24,"Fell",1865,23760,26.72,84.22,,,,,,
"Bir Rebaa","H6",7.2,"Found",1993,5054,31.67,8.42,,,,,,
"Bluewing 005","L5",7.2,"Found",1999,5083,40.29,-118.95,,,,,,
"Derrick Peak A78002","Iron, IIAB",7.19,"Found",1978,6678,-80.07,156.38,,,,,,
"Ramlat as Sahmah 252","L4",7.17,"Found",2005,35681,20.05,56.47,,,,,,
"Round Top (b)","H4",7.17,"Found",1939,22769,30.07,-96.7,,,,,,
"Dar al Gani 256","LL5-6",7.14,"Found",1997,5804,27.06,16.18,,,,,,
"Mart","Iron, IVA",7.14,"Found",1898,15435,31.5,-96.88,,,,,,
"Jiddat al Harasis 369","H~5",7.1,"Found",2003,51636,19.29,55.82,,,,,,
"Morven","H4/5",7.1,"Found",1925,16754,-44.82,171.13,,,,,,
"Los Vientos 012","H6",7.09,"Found",2011,57197,-24.68,-69.77,,,,,,
"Los Vientos 023","L6",7.09,"Found",2011,57333,-24.68,-69.77,,,,,,
"Canton","Iron, IIIAB",7.03,"Found",1894,5254,34.2,-84.48,,,,,,
"Borkut","L5",7,"Fell",1852,5113,48.15,24.28,,,,,,
"Dashoguz","H5",7,"Fell",1998,6604,41.98,59.69,,,,,,
"Ipiranga","H6",7,"Fell",1972,12043,-25.5,-54.5,,,,,,
"Lancon","H6",7,"Fell",1897,12456,43.75,5.12,,,,,,
"Lanzenkirchen","L4",7,"Fell",1925,12465,47.75,16.23,,,,,,
"Queen's Mercy","H6",7,"Fell",1925,22357,-30.12,28.7,,,,,,
"Repeev Khutor","Iron, IIF",7,"Fell",1933,22590,48.6,45.67,,,,,,
"Schellin","L",7,"Fell",1715,23457,53.35,15.05,,,,,,
"Sfax","L6",7,"Fell",1989,23512,34.75,10.72,,,,,,
"Tissint","Martian (shergottite)",7,"Fell",2011,54823,29.48,-7.61,,,,,,
"Elm Creek","H4",7,"Found",1906,10024,38.5,-96.2,,,,,,
"Flagg","L5",7,"Found",1954,10108,34.43,-102.52,,,,,,
"Hidden Valley","Iron, IIIAB",7,"Found",1991,11882,-19.12,145.42,,,,,,
"Ipitinga","H5",7,"Found",1989,12044,0.35,-53.82,,,,,,
"Jiddat al Harasis 407","H6",7,"Found",2006,48558,19.8,56.61,,,,,,
"Lombard","Iron, IIAB",7,"Found",1953,14679,46.1,-111.4,,,,,,
"Luis Lopez","Iron, IIIAB",7,"Found",1896,14751,34,-106.97,,,,,,
"Northwest Africa 256","LL5",7,"Found",1999,17668,29.92,-5.58,,,,,,
"Petropavlovsk","Iron, ungrouped",7,"Found",1841,18803,53.35,87.18,,,,,,
"Salla","L6",7,"Found",1963,23110,66.8,28.45,,,,,,
"MacAlpine Hills 88108","H5",6.99,"Found",1988,15272,-84.22,160.5,,,,,,
"Merweville","L5",6.97,"Found",1977,15493,-32.76,21.68,,,,,,
"Kendleton","L4",6.94,"Fell",1939,12275,29.45,-96,,,,,,
"Segowlie","LL6",6.93,"Fell",1853,23476,26.75,84.78,,,,,,
"Dhofar 375","LL4-6",6.93,"Found",2000,7157,19.04,54.79,,,,,,
"Sam's Valley","Iron, IIIAB",6.92,"Found",1894,23116,42.53,-122.88,,,,,,
"Pleşcoi","L5-6",6.91,"Fell",2008,51706,45.28,26.71,,,,,,
"Allan Hills 84055","H5",6.9,"Found",1984,657,-76.73,158.74,,,,,,
"Mayday","H4",6.9,"Found",1955,15448,39.47,-96.93,,,,,,
"Viedma","L5",6.9,"Found",2003,24172,-41.07,-62.85,,,,,,
"Lillaverke","H5",6.86,"Fell",1930,14650,56.65,15.87,,,,,,
"Marsland","H5",6.85,"Found",1933,15434,42.45,-103.3,,,,,,
"Kavarpura","Iron, IIE-an",6.8,"Fell",2006,47351,25.14,75.81,,,,,,
"Broken Bow","H4",6.8,"Found",1937,5145,41.43,-99.7,,,,,,
"Cleburne","Iron, IVA",6.8,"Found",1907,5377,32.32,-97.42,,,,,,
"Coonana","H4",6.8,"Found",1962,5437,-29.85,140.7,,,,,,
"Dhofar 435","H6",6.8,"Found",2001,7212,18.89,54.53,,,,,,
"Gunlock","L3.2",6.8,"Found",1982,11453,37.28,-113.78,,,,,,
"Hope","Iron, IAB-MG",6.8,"Found",1955,11905,33.68,-93.6,,,,,,
"Jerome (Idaho)","L",6.8,"Found",1954,12082,42.63,-114.83,,,,,,
"Los Vientos 010","H5",6.8,"Found",2011,57195,-24.68,-69.77,,,,,,
"Marshall County","Iron, IIIAB",6.8,"Found",1860,15433,37,-88.25,,,,,,
"Providence","Iron, IIIAB",6.8,"Found",1903,18893,38.57,-85.23,,,,,,
"Sanderson","Iron, IIIAB",6.8,"Found",1936,23135,30.13,-102.15,,,,,,
"St. Peter","L5",6.8,"Found",1957,23094,39.4,-100.03,,,,,,
"Union County","Iron, IC",6.8,"Found",1853,24122,34.75,-84,,,,,,
"Yamato 791869","H5",6.78,"Found",1979,27218,-71.5,35.67,,,,,,
"Dresden (Kansas)","H5",6.76,"Found",1953,7730,39.62,-100.46,,,,,,
"Sayh al Uhaymir 035","H5",6.76,"Found",2000,23227,20.67,57.18,,,,,,
"Jiddat al Harasis 501","H5",6.75,"Found",2007,50917,19.75,56.31,,,,,,
"Sayh al Uhaymir 072","H5",6.75,"Found",2001,23264,20.64,57.17,,,,,,
"Yamato 8435","L6",6.75,"Found",1984,29482,-71.5,35.67,,,,,,
"Acfer 001","L6",6.7,"Found",1989,11,27.5,3.62,,,,,,
"Eva","H5",6.7,"Found",1965,10066,36.82,-101.91,,,,,,
"Lushton","L6",6.7,"Found",1914,14760,40.75,-97.75,,,,,,
"Sarir Tibesti 001","H5",6.7,"Found",1994,23185,24.3,18.41,,,,,,
"Zegdou","H3",6.7,"Found",1998,30398,29.75,-4.5,,,,,,
"Keen Mountain","Iron, IIAB",6.69,"Found",1950,12271,37.22,-82,,,,,,
"Oliver","L6",6.69,"Found",1984,18014,41.2,-103.68,,,,,,
"Lemmon","H5",6.68,"Found",1984,12762,45.93,-102.18,,,,,,
"Kendrapara","H4-5",6.67,"Fell",2003,12276,20.46,86.7,,,,,,
"Fremont Butte","L4",6.65,"Found",1963,10181,38.5,-105.5,,,,,,
"Yamato 81132","H5",6.61,"Found",1981,29193,-71.5,35.67,,,,,,
"Chambord","Iron, IIIAB",6.6,"Found",1904,5318,48.45,-72.07,,,,,,
"Hammadah al Hamra 147","H4",6.6,"Found",1995,11630,28.66,12.75,,,,,,
"Tokio (a)","H5",6.6,"Found",1974,24016,33.22,-102.63,,,,,,
"Daule","L5",6.58,"Fell",2008,51559,-1.87,-79.96,,,,,,
"Okahandja","Iron, IIAB",6.58,"Found",1926,17999,-21.98,16.93,,,,,,
"Puquios","Iron, IID",6.58,"Found",1885,18903,-27.15,-69.92,,,,,,
"Allred","L4",6.57,"Found",1978,2280,33.1,-102.95,,,,,,
"Asuka 881899","LL3",6.57,"Found",1988,4608,-72,26,,,,,,
"Dhofar 260","L6",6.57,"Found",2001,7043,18.79,54.25,,,,,,
"Cobija","H6",6.53,"Found",1892,5388,-22.57,-70.25,,,,,,
"Otomi","H",6.51,"Fell",1867,18045,38.4,140.35,,,,,,
"Ankober","H4",6.5,"Fell",1942,2304,9.53,39.72,,,,,,
"Queen Alexandra Range 94202","L6",6.5,"Found",1994,19844,-84,168,,,,,,
"Allan Hills A77232","H4",6.49,"Found",1977,1543,-76.72,159.67,,,,,,
"Dhofar 1525","H4",6.48,"Found",2008,52398,18.78,54.4,,,,,,
"Cereseto","H5",6.46,"Fell",1840,5308,45.08,8.3,,,,,,
"Hub","L5",6.45,"Found",1991,11921,34.54,-102.59,,,,,,
"Allan Hills A77305","L6",6.44,"Found",1977,1614,-76.72,159.67,,,,,,
"Jiddat al Harasis 457","L6",6.44,"Found",2007,48608,19.73,56.33,,,,,,
"MacAlpine Hills 88111","H4",6.44,"Found",1988,15275,-84.22,160.5,,,,,,
"Ambapur Nagla","H5",6.4,"Fell",1895,2290,27.67,78.25,,,,,,
"Barbotan","H5",6.4,"Fell",1790,4942,43.95,-0.05,,,,,,
"Gambat","L6",6.4,"Fell",1897,10851,27.35,68.53,,,,,,
"Babb's Mill (Troost's Iron)","Iron, ungrouped",6.4,"Found",1842,4916,36.3,-82.88,,,,,,
"Grandview","L5",6.4,"Found",2008,47730,32.79,-101.94,,,,,,
"Hammadah al Hamra 125","H5",6.4,"Found",1995,11608,28.47,13.12,,,,,,
"Morton","H6",6.4,"Found",1980,16753,33.72,-102.77,,,,,,
"Ocate","Iron, IAB-MG",6.4,"Found",1986,48976,36.3,-105.05,,,,,,
"Roper River","Iron, IIIAB",6.4,"Found",1953,22763,-15,135,,,,,,
"Mihonoseki","L6",6.38,"Fell",1992,16635,35.57,133.22,,,,,,
"Sierra Sandon","Iron, IIIAB",6.33,"Found",1923,23591,-25.17,-69.28,,,,,,
"Crow Peak","Iron, IIAB",6.32,"Found",1958,44709,44.48,-103.97,,,,,,
"Ramlat as Sahmah 399","L6",6.32,"Found",2010,55495,20.15,55.71,,,,,,
"Northwest Africa 1664","Howardite",6.31,"Found",2002,17399,29.53,-3.18,,,,,,
"Acfer 084","H5",6.3,"Found",1990,93,27.55,3.87,,,,,,
"Sayh al Uhaymir 265","H4-6",6.29,"Found",2002,23438,20.71,57.18,,,,,,
"Floydada (b)","H5",6.27,"Found",1999,10115,33.98,-101.33,,,,,,
"Miller Butte 01001","L5",6.26,"Found",2001,16647,-72.68,161.32,,,,,,
"Hammadah al Hamra 116","H5",6.25,"Found",1995,11599,28.92,13.05,,,,,,
"Rhineland","H5",6.24,"Found",1961,22595,33.53,-99.62,,,,,,
"Mosca","L6",6.22,"Found",1942,16755,37.63,-105.83,,,,,,
"Queen Alexandra Range 93010","H5",6.21,"Found",1993,19099,-84.63,162.51,,,,,,
"Axtell","CV3",6.2,"Found",1943,4911,31.66,-96.97,,,,,,
"Summerfield","L5",6.2,"Found",1979,23743,34.77,-102.42,,,,,,
"Neuschwanstein","EL6",6.19,"Fell",2002,16950,47.53,10.81,,,,,,
"Pirapora","Iron, IIAB",6.18,"Found",1888,18833,-17.3,-45,,,,,,
"Yamato 790957","L5/6",6.18,"Found",1979,26306,-71.5,35.67,,,,,,
"Ovid","H6",6.17,"Found",1939,18057,40.97,-102.4,,,,,,
"Yamato 86796","H6",6.14,"Found",1986,30302,-71.5,35.67,,,,,,
"Khmelevka","L5",6.11,"Fell",1929,12297,56.75,75.33,,,,,,
"Hedjaz","L3.7-6",6.1,"Fell",1910,11870,27.33,35.67,,,,,,
"Nagy-Borové","L5",6.1,"Fell",1895,16893,49.17,19.5,,,,,,
"Haven","H6",6.1,"Found",1950,11858,37.96,-97.76,,,,,,
"Juarez","L6",6.1,"Found",1938,12205,-37.55,-60.15,,,,,,
"Yamato 75028","H3-6",6.1,"Found",1975,25069,-71.5,35.67,,,,,,
"Pecora Escarpment 91012","L5",6.09,"Found",1991,18303,-85.67,-69.01,,,,,,
"Forksville","L6",6.07,"Fell",1924,10123,36.78,-78.08,,,,,,
"Asuka 87308","H5",6.06,"Found",1987,2665,-72,26,,,,,,
"Quenggouk","H4",6.05,"Fell",1857,22358,17.77,95.18,,,,,,
"El Médano 153","H3",6.04,"Found",2010,57170,-24.85,-70.53,,,,,,
"Northwest Africa 1717","LL5-6",6.03,"Found",2002,17432,21,-13,,,,,,
"Alais","CI1",6,"Fell",1806,448,44.12,4.08,,,,,,
"Alta'ameem","LL5",6,"Fell",1977,2284,35.27,44.22,,,,,,
"Bishopville","Aubrite",6,"Fell",1843,5059,34.17,-80.28,,,,,,
"Chernyi Bor","H4",6,"Fell",1964,5339,53.7,30.1,,,,,,
"Cynthiana","L/LL4",6,"Fell",1877,5500,38.4,-84.25,,,,,,
"Kuleschovka","L6",6,"Fell",1811,12370,50.75,33.5,,,,,,
"Maromandia","L6",6,"Fell",2002,15430,-14.2,48.1,,,,,,
"Nikolskoe","L4",6,"Fell",1954,16977,56.12,37.33,,,,,,
"Oesel","L6",6,"Fell",1855,17989,58.5,23,,,,,,
"Ornans","CO3.4",6,"Fell",1868,18030,47.12,6.15,,,,,,
"Rupota","L4-6",6,"Fell",1949,22783,-10.27,38.77,,,,,,
"Tauk","L6",6,"Fell",1929,23887,35.13,44.45,,,,,,
"Cranfills Gap","H6",6,"Found",1940,5464,31.75,-97.75,,,,,,
"Foum Zguid","Iron, IIAB",6,"Found",1998,10171,30.07,-6.9,,,,,,
"Griffith","Iron, ungrouped",6,"Found",1985,11204,33.72,-102.82,,,,,,
"Hendersonville","L5",6,"Found",1901,11873,35.32,-81.47,,,,,,
"Northwest Africa 4255","Diogenite",6,"Found",2002,35378,27.85,-7.8,,,,,,
"Oxford","H5",6,"Found",1985,18063,40.17,-99.67,,,,,,
"Portales (c)","H4",6,"Found",1967,18873,34.1,-103.42,,,,,,
"Roundsprings","H5",6,"Found",1986,22770,39.17,-98.43,,,,,,
"Sidney","L",6,"Found",1941,23585,41.05,-102.9,,,,,,
"South Byron","Iron, ungrouped",6,"Found",1915,23676,43.03,-78.03,,,,,,
"Wairarapa Valley","H6",6,"Found",1863,24199,-41.32,175.13,,,,,,
"Dhofar 294","H3.9",5.99,"Found",2001,7077,18.61,54.5,,,,,,
"Sappa","L6",5.95,"Found",1983,23175,39.84,-100.51,,,,,,
"Yocemento","L4",5.92,"Found",1966,30364,38.9,-99.43,,,,,,
"Jhung","L5",5.9,"Fell",1873,12085,31.3,72.38,,,,,,
"Xi Ujimgin","L/LL6-an",5.9,"Fell",1980,24345,44.67,117.5,,,,,,
"Cashion","H4",5.9,"Found",1936,5287,35.85,-97.7,,,,,,
"Culbertson","H4",5.9,"Found",1913,5494,40.23,-100.83,,,,,,
"Kossuth","Iron, IVA",5.9,"Found",1975,12350,40.67,-84.35,,,,,,
"Travis County (b)","H4",5.9,"Found",1889,24041,30.56,-97.95,,,,,,
"Allan Hills A77225","H4",5.88,"Found",1977,1536,-76.72,159.67,,,,,,
"as-Su'aydan","L5",5.86,"Found",1960,2354,21.25,55.31,,,,,,
"Ojuelos Altos","L6",5.85,"Fell",1926,17997,38.18,-5.4,,,,,,
"Allan Hills 90411","L3.7",5.84,"Found",1990,1254,-76.98,156.93,,,,,,
"Misshof","H5",5.8,"Fell",1890,16703,56.67,23,,,,,,
"Yandama","L6",5.8,"Found",1914,30347,-29.75,141.03,,,,,,
"Pecora Escarpment 91014","L5",5.77,"Found",1991,18305,-85.67,-68.98,,,,,,
"Kemer","L4",5.76,"Fell",2008,53654,36.54,29.42,,,,,,
"El Médano 178","H~5",5.76,"Found",2011,57326,-24.85,-70.53,,,,,,
"Jiddat al Harasis 600","L6",5.75,"Found",2009,51949,19.8,55.68,,,,,,
"Washington County","Iron, ungrouped",5.75,"Found",1927,24217,39.7,-103.17,,,,,,
"Yaringie Hill","H5",5.75,"Found",2006,48950,-32.08,135.65,,,,,,
"Chinautla","Iron, IVA-an",5.72,"Found",1902,5352,14.5,-90.5,,,,,,
"Cowell","Iron, IIIAB",5.72,"Found",1932,5457,-33.3,136.02,,,,,,
"Asuka 87272","Eucrite-mmict",5.71,"Found",1987,2629,-72,26,,,,,,
"Gumoschnik","H5",5.7,"Fell",1904,11450,42.9,24.7,,,,,,
"Yafa","H5",5.7,"Fell",2000,24351,13.71,45.17,,,,,,
"Adams County","H5",5.7,"Found",1928,375,39.97,-103.77,,,,,,
"Grady (c)","H4",5.7,"Found",1970,10953,34.8,-103.32,,,,,,
"Northwest Africa 1580","L6",5.7,"Found",2001,17339,31.33,-4,,,,,,
"Dhofar 222","L5",5.68,"Found",2000,7006,18.69,54.37,,,,,,
"Dandapur","L6",5.65,"Fell",1878,5511,26.92,83.97,,,,,,
"Dhofar 138","L6",5.64,"Found",2000,6923,18.31,54.37,,,,,,
"Attica","H4",5.62,"Found",1996,4890,37.25,-98.13,,,,,,
"Ilinskaya Stanitza","Iron, IIIAB",5.62,"Found",1915,12023,51.23,57.38,,,,,,
"Roy (1934)","L6",5.62,"Found",1934,22775,35.95,-104.2,,,,,,
"Kress (c)","L6",5.6,"Found",1978,12360,34.34,-101.72,,,,,,
"Kuga","Iron, IIIAB",5.6,"Found",1950,12367,34.1,132.08,,,,,,
"Loop","L6",5.6,"Found",1962,14702,32.9,-102.28,,,,,,
"Newport","Pallasite, PMG",5.6,"Found",1923,16962,35.6,-91.27,,,,,,
"Felt (b)","L3.5-5",5.59,"Found",1990,10084,36.58,-102.7,,,,,,
"Ramlat al Wahibah 014","H5",5.59,"Found",2006,45885,21.06,58.4,,,,,,
"Sayh al Uhaymir 209","H5",5.59,"Found",2002,23382,20.33,57.25,,,,,,
"Hammadah al Hamra 097","L6",5.58,"Found",1995,11580,28.62,13.45,,,,,,
"Yamato 74077","L6",5.58,"Found",1974,24455,-71.84,36.36,,,,,,
"Pribram","H5",5.56,"Fell",1959,18887,49.67,14.03,,,,,,
"Sylacauga","H4",5.56,"Fell",1954,23773,33.19,-86.29,,,,,,
"Cowra","Iron, ungrouped",5.56,"Found",1888,5458,-33.85,148.68,,,,,,
"Shişr 162","Lunar (feldsp. breccia)",5.53,"Found",2006,53579,18.57,53.83,,,,,,
"Ksar Ghilane 001","L6",5.51,"Found",2008,54553,32.68,9.73,,,,,,
"Dongtai","LL6",5.5,"Fell",1970,7708,32.92,120.78,,,,,,
"Min-Fan-Zhun","LL6",5.5,"Fell",1952,16697,32.33,120.67,,,,,,
"Santa Isabel","L6",5.5,"Fell",1924,23165,-33.9,-61.7,,,,,,
"St. Christophe-la-Chartreuse","L6",5.5,"Fell",1841,23082,46.95,-1.5,,,,,,
"Acfer 098","H5",5.5,"Found",1990,107,27.47,3.88,,,,,,
"Atlanta","EL6",5.5,"Found",1938,4886,31.8,-92.75,,,,,,
"Kissij","H5",5.5,"Found",1899,12324,54.87,50.88,,,,,,
"Naretha","L4",5.5,"Found",1915,16913,-31,124.83,,,,,,
"Sayh al Uhaymir 013","H5",5.5,"Found",1999,23205,20.97,57.32,,,,,,
"Thurlow","Iron, IIIAB",5.5,"Found",1888,23979,44.75,-77.58,,,,,,
"Allan Hills A81015","H5",5.49,"Found",1981,1975,-76.71,158.78,,,,,,
"Yamato 790723","LL",5.48,"Found",1979,26072,-71.5,35.67,,,,,,
"Ikhrarene","L4",5.47,"Found",1969,12005,28.6,1.04,,,,,,
"Bovedy","L3",5.46,"Fell",1969,5121,54.57,-6.33,,,,,,
"Jiddat al Harasis 284","H4",5.45,"Found",2005,35602,19.75,56.68,,,,,,
"Asuka 87029","L4",5.44,"Found",1987,2386,-72,26,,,,,,
"Dhofar 148","L6",5.43,"Found",2000,6933,18.32,54.48,,,,,,
"Great Sand Sea 020","H",5.42,"Found",2000,11191,26.02,25.73,,,,,,
"Seminole (f)","H5",5.42,"Found",2008,54436,32.7,-102.67,,,,,,
"Searsmont","H5",5.4,"Fell",1871,23472,44.37,-69.2,,,,,,
"Binda","Eucrite-cm",5.4,"Found",1912,5049,-34.32,149.38,,,,,,
"Denton County","Iron, IIIAB",5.4,"Found",1856,6659,33,-97,,,,,,
"Felt","H6",5.4,"Found",1970,10083,36.55,-102.78,,,,,,
"Myersville","OC",5.4,"Found",1969,16886,28.95,-97.4,,,,,,
"Rica Aventura","Iron, IVA",5.4,"Found",1910,22596,-21.98,-69.62,,,,,,
"Tanezrouft 057","CK4-an",5.4,"Found",2002,23858,25.27,0.15,,,,,,
"Cheder","Iron, IID",5.39,"Found",2003,5336,51.53,94.6,,,,,,
"Tobe","H4",5.39,"Found",1963,24014,37.2,-103.58,,,,,,
"Ksar Ghilane 007","H6",5.38,"Found",2011,54558,32.76,9.86,,,,,,
"MacAlpine Hills 88110","H5",5.37,"Found",1988,15274,-84.22,160.5,,,,,,
"Whitecourt","Iron, IIIAB",5.37,"Found",2007,47345,54,-115.6,,,,,,
"Grosvenor Mountains 95502","L3.2",5.36,"Found",1995,11230,-85.67,175,,,,,,
"Pecora Escarpment 82506","Ureilite",5.32,"Found",1982,18269,-85.69,-67.71,,,,,,
"Bukhara","CV3",5.3,"Fell",2001,30448,39.78,64.6,,,,,,
"Arrabury","H6",5.3,"Found",1960,2337,-26.5,141.08,,,,,,
"Dhofar 157","H5",5.3,"Found",2000,6942,19.09,54.79,,,,,,
"Northwest Africa 850","H5",5.3,"Found",2001,17875,30.41,-5.89,,,,,,
"Ryder Gletcher","L5",5.29,"Found",1988,22790,81.17,-49,,,,,,
"Dar al Gani 551","L6",5.27,"Found",1997,6099,27.28,16.13,,,,,,
"Casilda","H5",5.25,"Found",1937,5288,-33.1,-61.13,,,,,,
"Coomandook","H6",5.23,"Found",1939,5435,-35.42,139.75,,,,,,
"Coyote Dry Lake 033","H5",5.22,"Found",1999,30456,35.06,-116.78,,,,,,
"Lixna","H4",5.21,"Fell",1820,14670,56,26.43,,,,,,
"Hammadah al Hamra 290","H6",5.21,"Found",1999,11773,29.01,12.63,,,,,,
"Cold Bokkeveld","CM2",5.2,"Fell",1838,5397,-33.13,19.38,,,,,,
"Northwest Africa 1579","L5",5.2,"Found",2001,17338,31.5,-4.85,,,,,,
"Roosevelt","H3.4",5.2,"Found",1972,22655,34.87,-98.95,,,,,,
"Corn","H5",5.18,"Found",1994,54859,35.41,-98.75,,,,,,
"Ouallen","H6",5.17,"Found",1936,18048,24.17,0.08,,,,,,
"Dhofar 414","L6",5.16,"Found",2001,7193,18.77,54.24,,,,,,
"Northwest Africa 767","L4",5.15,"Found",2000,17840,30.64,-5.09,,,,,,
"Tieret 010","H3",5.15,"Found",2010,56405,30.98,10.01,,,,,,
"Touat 002","H5",5.15,"Found",2002,31351,27.47,-0.52,,,,,,
"Claytonville (b)","OC",5.14,"Found",1978,5376,34.35,-101.66,,,,,,
"Jiddat al Harasis 229","L5",5.14,"Found",2005,35548,19.71,56.61,,,,,,
"Dhofar 1439","Eucrite-mmict",5.13,"Found",2003,47354,18.58,54.46,,,,,,
"Hammadah al Hamra 124","H5",5.13,"Found",1995,11607,28.47,13.18,,,,,,
"Ramlat as Sahmah 266","Mesosiderite",5.13,"Found",2006,48634,20.01,56.4,,,,,,
"Twin City","Iron, IAB-ung",5.13,"Found",1955,24090,32.58,-82.02,,,,,,
"Garrison","H5",5.12,"Found",1969,10864,33.86,-103.35,,,,,,
"Dar al Gani 002","H6",5.11,"Found",1995,5518,27.13,16.06,,,,,,
"Blanket","L6",5.1,"Fell",1909,5071,31.83,-98.83,,,,,,
"Pasamonte","Eucrite-pmict",5.1,"Fell",1933,18110,36.22,-103.4,,,,,,
"Dar al Gani 406","Iron, IAB complex",5.1,"Found",1998,5954,28.14,15.82,,,,,,
"Silver Bell","Iron, IIAB",5.1,"Found",1939,23596,32.48,-111.57,,,,,,
"Lonewolf Nunataks 94105","L6",5.09,"Found",1994,14689,-81.33,152.83,,,,,,
"Jiddat al Harasis 054","Ureilite",5.08,"Found",2004,30728,19.63,55.12,,,,,,
"Archie","H6",5.07,"Fell",1932,2329,38.5,-94.3,,,,,,
"Yamato 74371","H4",5.07,"Found",1974,24749,-71.8,35.49,,,,,,
"Hammadah al Hamra 259","H5",5.06,"Found",1998,11742,28.75,11.57,,,,,,
"Ramlat as Sahmah 384","Mesosiderite-C2",5.03,"Found",2010,55653,20,56.4,,,,,,
"Villa Regina","Iron, IIIAB",5.03,"Found","<2005",53827,-39.1,-67.07,,,,,,
"Watonga","LL3.1",5.03,"Found",1960,55758,35.83,-98.4,,,,,,
"Dhofar 132","Ureilite",5.01,"Found",2000,6917,19.15,54.58,,,,,,
"Buschhof","L6",5,"Fell",1863,5178,46.45,25.78,,,,,,
"Collescipoli","H5",5,"Fell",1890,5403,42.53,12.62,,,,,,
"Drake Creek","L6",5,"Fell",1827,7728,36.4,-86.5,,,,,,
"El Tigre","L6",5,"Fell",1993,7819,19.97,-103.05,,,,,,
"Galkiv","H4",5,"Fell",1995,10850,51.68,30.78,,,,,,
"Jonzac","Eucrite-mmict",5,"Fell",1819,12202,45.43,-0.45,,,,,,
"Kerilis","H5",5,"Fell",1874,12282,48.4,-3.3,,,,,,
"Magnesia","Iron, IAB-sHL",5,"Fell",1899,15386,37.87,27.52,,,,,,
"Nulles","H6",5,"Fell",1851,17959,41.63,0.75,,,,,,
"Raco","H5",5,"Fell",1957,22368,-26.67,-65.45,,,,,,
"Shergotty","Martian (shergottite)",5,"Fell",1865,23530,24.55,84.83,,,,,,
"Shupiyan","H6",5,"Fell",1912,23583,33.72,74.83,,,,,,
"Dhofar 1275","L7",5,"Found",2003,30515,18.83,54.64,,,,,,
"Dhofar 393","H5",5,"Found",2001,7175,19.14,54.83,,,,,,
"Dhofar 607","H5",5,"Found",2001,7364,18.73,54.19,,,,,,
"Essex","H5",5,"Found",2002,10056,34.61,-115.03,,,,,,
"Greenbrier County","Iron, IIIAB",5,"Found",1880,11194,37.83,-80.32,,,,,,
"Hammadah al Hamra 183","LL6",5,"Found",1996,11666,28.61,13.33,,,,,,
"Nainital","L",5,"Found",1980,16897,29.37,79.43,,,,,,
"Persimmon Creek","Iron, IAB-sLM",5,"Found",1893,18796,35.05,-84.23,,,,,,
"Queen Alexandra Range 99017","H5",5,"Found",1999,21469,-84,168,,,,,,
"Queretaro","H4",5,"Found",1971,22359,20.63,-100.38,,,,,,
"San Cristobal","Iron, IAB-ung",5,"Found",1882,23121,-23.43,-69.5,,,,,,
"Smithland","Iron, IVA",5,"Found",1839,23650,37.13,-88.4,,,,,,
"Smith's Mountain","Iron, IIIAB",5,"Found",1863,23652,36.42,-80,,,,,,
"Stoneham","H5",5,"Found",1960,31330,40.64,-103.7,,,,,,
"Temple","L6",5,"Found",1959,23894,31.12,-97.3,,,,,,
"Catalina 028","H5",4.99,"Found",2010,57296,-25.23,-69.72,,,,,,
"Maziba","L6",4.98,"Fell",1942,15454,-1.22,30,,,,,,
"Ste. Marguerite","H4",4.96,"Fell",1962,23099,50.77,3,,,,,,
"Dhofar 239","H4",4.95,"Found",2000,7022,18.42,54.48,,,,,,
"Dhofar 281","L3.8",4.94,"Found",2001,7064,18.58,54.3,,,,,,
"Meteorite Hills 96501","L6",4.94,"Found",1996,16560,-79.68,155.75,,,,,,
"Javorje","Iron, IIIAB",4.92,"Found",2009,53489,46.16,14.19,,,,,,
"Raoyang","L6",4.91,"Fell",1919,22394,38.2,115.7,,,,,,
"Cedar (Kansas)","H6",4.9,"Found",1937,5302,39.7,-98.98,,,,,,
"Monte das Fortes","L5",4.89,"Fell",1950,16725,38.02,-8.25,,,,,,
"Queen Alexandra Range 87401","L6",4.87,"Found",1987,19004,-84.42,163.67,,,,,,
"Eads","H4",4.86,"Found",1975,7759,38.47,-102.83,,,,,,
"Yamato 793375","L3.6",4.86,"Found",1979,28724,-71.5,35.67,,,,,,
"Mayo Belwa","Aubrite",4.85,"Fell",1974,15451,8.97,12.08,,,,,,
"Dar al Gani 100","H6",4.84,"Found",1996,5616,27.12,16.11,,,,,,
"Quartz Mountain","Iron, IIIAB",4.83,"Found",1935,18910,37.2,-116.7,,,,,,
"Jiddat al Harasis 295","L5",4.82,"Found",2005,35613,19.8,56.47,,,,,,
"Yukan","LL6",4.8,"Fell",1931,30377,28.72,116.62,,,,,,
"Grosvenor Mountains 95503","L6",4.8,"Found",1995,11231,-85.67,175,,,,,,
"La Luz","H4",4.8,"Found",2005,48962,33,-105.85,,,,,,
"Lone Island Lake","Iron, IAB-sLL",4.8,"Found",2005,55762,50.01,-95.39,,,,,,
"New Westville","Iron, IVA",4.8,"Found",1941,16961,39.8,-84.82,,,,,,
"Tulia (b)","L6",4.8,"Found",1917,24067,34.53,-101.7,,,,,,
"Garnett","H4",4.79,"Found",1938,10862,38.27,-95.25,,,,,,
"Dhofar 192","H4",4.78,"Found",1999,6976,18.26,54.24,,,,,,
"Hammadah al Hamra 109","H5",4.78,"Found",1995,11592,28.59,12.95,,,,,,
"Sayh al Uhaymir 295","L5",4.78,"Found",2004,34044,21.01,57.04,,,,,,
"Yamato 86787","L6",4.77,"Found",1986,30293,-71.5,35.67,,,,,,
"Fort Stockton","Iron",4.76,"Found",1952,10168,30.92,-103.07,,,,,,
"Hammadah al Hamra 103","L6",4.76,"Found",1995,11586,28.62,13.17,,,,,,
"Lexington County","Iron, IAB-MG",4.76,"Found",1880,14644,34,-81.25,,,,,,
"Reid 011","H3-6",4.76,"Found",1986,22566,-30.22,128.3,,,,,,
"South Plains","L5",4.76,"Found",1971,23680,34.27,-101.25,,,,,,
"Jiddat al Harasis 570","H4-6",4.75,"Found",2009,51912,19.75,56.33,,,,,,
"Pecora Escarpment 02067","H5",4.75,"Found",2002,18249,-85.63,-68.7,,,,,,
"Okano","Iron, IIAB",4.74,"Fell",1904,18000,35.08,135.2,,,,,,
"Itqiy","EH7-an",4.72,"Fell",1990,12058,26.59,-12.95,,,,,,
"Tanezrouft 034","H5",4.72,"Found",1991,23835,25.43,-0.09,,,,,,
"Tiffa 002","H4/5",4.71,"Found",1997,23992,19.7,11.53,,,,,,
"Muraid","L6",4.7,"Fell",1924,16874,24.5,90.22,,,,,,
"Frankel City","L6",4.7,"Found",1977,10175,32.33,-102.75,,,,,,
"Hot Springs","Iron, IIIAB",4.7,"Found",1995,11912,39.67,-118.97,,,,,,
"Al Huwaysah 012","H5",4.69,"Found",2010,55412,22.68,55.34,,,,,,
"Ellis County","H6",4.69,"Found",1948,10022,38.78,-99.33,,,,,,
"Ramsdorf","L6",4.68,"Fell",1958,22386,51.88,6.93,,,,,,
"Grove Mountains 051532","H5",4.68,"Found",2006,48192,-72.94,75.31,,,,,,
"Sayh al Uhaymir 010","H6",4.68,"Found",1999,23202,20.99,57.31,,,,,,
"Ulyanovsk","H5",4.68,"Found",2006,45816,54.36,48.59,,,,,,
"Sayh al Uhaymir 066","LL5",4.67,"Found",2000,23258,20.53,56.68,,,,,,
"Dhofar 1524","H5",4.65,"Found",2008,52397,18.51,54.61,,,,,,
"Gail","H4",4.65,"Found",1948,10843,32.7,-101.6,,,,,,
"Shallowater","Aubrite",4.65,"Found",1936,23522,33.7,-101.93,,,,,,
"Pony Creek","H4",4.64,"Found",1947,18866,31.66,-99.95,,,,,,
"Maigatari-Danduma","H5/6",4.63,"Fell",2004,30751,12.83,9.38,,,,,,
"Batyushkovo","L5",4.62,"Found",2007,51586,55.55,35.3,,,,,,
"Dhofar 365","H5",4.62,"Found",2000,7147,19.09,54.79,,,,,,
"Ningqiang","C3-ung",4.61,"Fell",1983,16981,32.93,105.91,,,,,,
"Muizenberg","L6",4.61,"Found",1880,16844,-34.1,18.47,,,,,,
"Seagraves (b)","H5",4.6,"Found",1976,23470,32.92,-102.5,,,,,,
"Ucera","H5",4.59,"Fell",1970,24097,11.05,-69.85,,,,,,
"Dhofar 057","L6",4.59,"Found",1999,6756,19.16,54.77,,,,,,
"Innisfree","L5",4.58,"Fell",1977,12039,53.42,-111.34,,,,,,
"Meteorite Hills 00400","Iron, IIIAB",4.58,"Found",2000,15635,-79.68,155.75,,,,,,
"Yamato 793496","L6",4.58,"Found",1979,28845,-71.5,35.67,,,,,,
"Djebel Chaab 003","L6",4.57,"Found",2003,30560,25.09,0.83,,,,,,
"Dhofar 1597","H5",4.56,"Found",2004,52603,18.96,54.37,,,,,,
"Daraj 146","H5",4.55,"Found",2000,6601,29.63,11.7,,,,,,
"Amber","L6",4.53,"Found",1934,2291,35.17,-97.88,,,,,,
"Eldee 001","L6",4.51,"Found",2006,47703,-31.67,141.24,,,,,,
"Northwest Africa 848","L6",4.51,"Found",2000,17874,28,-9.27,,,,,,
"Baroti","L6",4.5,"Fell",1910,4949,31.62,76.8,,,,,,
"High Possil","L6",4.5,"Fell",1804,11884,55.9,-4.23,,,,,,
"Kalumbi","L6",4.5,"Fell",1879,12236,17.83,73.98,,,,,,
"Mardan","H5",4.5,"Fell",1948,15414,34.23,72.08,,,,,,
"Mokoia","CV3",4.5,"Fell",1908,16713,-39.63,174.4,,,,,,
"Nammianthal","H5",4.5,"Fell",1886,16902,12.28,79.2,,,,,,
"Nedagolla","Iron, ungrouped",4.5,"Fell",1870,16935,18.68,83.48,,,,,,
"Ortenau","Stone-uncl",4.5,"Fell",1671,18033,48.5,8,,,,,,
"Portugal","Stone-uncl",4.5,"Fell",1796,18876,38.5,-8,,,,,,
"Abu Moharek","H4",4.5,"Found",1997,9,27.24,29.84,,,,,,
"Coolidge","C4-ung",4.5,"Found",1937,5434,38.03,-101.98,,,,,,
"El Djouf 007","H5",4.5,"Found",1989,7802,23.67,-1.82,,,,,,
"Hayes Center","L6",4.5,"Found",1941,11865,40.52,-101.03,,,,,,
"Lincoln County","L6",4.5,"Found",1937,14654,39.37,-103.17,,,,,,
"Northwest Africa 159","L4",4.5,"Found",1999,17349,30.33,-5.83,,,,,,
"Pavlodar (pallasite)","Pallasite, PMG-an",4.5,"Found",1885,18174,51.17,77.33,,,,,,
"Purmela","Iron, IIF",4.5,"Found",1977,32771,29.5,-98.05,,,,,,
"Sverdlovsk","H4/5",4.5,"Found",1985,23769,57,62.7,,,,,,
"Edjudina","H4",4.48,"Found",1969,7766,-29.59,122.18,,,,,,
"Dhofar 012","L4",4.47,"Found",2000,6711,18.36,54.23,,,,,,
"Dhofar 1280","H6",4.47,"Found",2005,34499,18.28,54.26,,,,,,
"Kushiike","OC",4.46,"Fell",1920,12381,37.05,138.38,,,,,,
"Ararki","L5",4.46,"Found",2001,45408,29.06,74.44,,,,,,
"Ramlat as Sahmah 286","H4-5",4.45,"Found",2009,51887,20.51,55.78,,,,,,
"Ouadangou","L5",4.44,"Fell",2003,56729,12.9,0.08,,,,,,
"Acfer 190","L6",4.44,"Found",1990,198,27.7,4.3,,,,,,
"Lewiston","H4",4.42,"Found",1983,14643,34.01,-103.6,,,,,,
"Hammadah al Hamra 040","L6",4.41,"Found",1990,11523,29.1,11.83,,,,,,
"Muddoor","L5",4.4,"Fell",1865,16841,12.63,77.02,,,,,,
"Assamakka","Iron, IVA-an",4.4,"Found",2002,53892,19.27,5.92,,,,,,
"Dalhart","H5",4.4,"Found",1968,5508,36.04,-102.41,,,,,,
"Dhofar 094","L5",4.4,"Found",1999,6793,18.67,54.57,,,,,,
"Elephant Moraine 87501","Mesosiderite",4.4,"Found",1987,8052,-76.04,156.09,,,,,,
"Grassland","L4",4.4,"Found",1964,10959,33.12,-101.58,,,,,,
"Little River (a)","H6",4.4,"Found",1967,14665,38.38,-98.02,,,,,,
"North West Forrest (E6)","EL6",4.4,"Found",1971,17007,-30.6,127.82,,,,,,
"Waverly","Iron, IAB-an",4.4,"Found",1983,24224,32.68,-85.57,,,,,,
"Dhofar 1677","H5",4.39,"Found",2011,56183,19.37,54.52,,,,,,
"Wallareenya","Iron, IIIAB",4.39,"Found",1965,24207,-20.67,118.83,,,,,,
"Patora","H6",4.38,"Fell",1969,18112,20.94,82.05,,,,,,
"Hammadah al Hamra 118","H4",4.38,"Found",1995,11601,28.67,13.34,,,,,,
"Vicenice","Iron, IID",4.37,"Found",1911,24170,49.22,15.8,,,,,,
"Grosvenor Mountains 85213","L6",4.36,"Found",1985,11222,-85.67,175,,,,,,
"Grove Mountains 021603","H3",4.36,"Found",2003,30708,-72.82,75.3,,,,,,
"Umm as Samim 032","H4",4.34,"Found",2010,55428,21.05,55.57,,,,,,
"Dolores","Iron, IIIAB",4.33,"Found",2001,7660,-19.65,-69.95,,,,,,
"Plateau du Tademait 002","L6",4.33,"Found",2002,31297,28.3,0.67,,,,,,
"Llano River","Iron, IIIAB",4.32,"Found",1975,53635,30.52,-99.74,,,,,,
"Powellsville","H5",4.31,"Found",1990,18880,38.67,-82.78,,,,,,
"Charlotte","Iron, IVA",4.3,"Fell",1835,5328,36.17,-87.33,,,,,,
"Košice","H5",4.3,"Fell",2010,53810,48.76,21.18,,,,,,
"Bates Nunataks A78002","L6",4.3,"Found",1978,4970,-80.25,153.5,,,,,,
"Lone Star","H4",4.3,"Found",1965,14682,34.26,-101.41,,,,,,
"McLean","H6",4.3,"Found",1939,15464,35.23,-100.6,,,,,,
"Pevensey","LL5",4.3,"Found",1868,18805,-34.78,144.67,,,,,,
"Rumanová","H5",4.3,"Found",1994,22781,48.35,17.87,,,,,,
"Rush County","H5",4.3,"Found",1948,22785,39.5,-85.5,,,,,,
"Sunray","H4",4.3,"Found",1985,23746,36,-101.83,,,,,,
"Giroux","Pallasite, PMG",4.28,"Found",1954,10918,49.62,-96.55,,,,,,
"Crumlin","L5",4.26,"Fell",1902,5477,54.62,-6.22,,,,,,
"Sayh al Uhaymir 075","H3-5",4.26,"Found",2001,23267,20.68,57.14,,,,,,
"Adhi Kot","EH4",4.24,"Fell",1919,379,32.1,71.8,,,,,,
"Dar al Gani 318","H3",4.24,"Found",1997,5866,27.14,15.87,,,,,,
"Dar al Gani 502","L6",4.24,"Found",1997,6050,27.29,16.12,,,,,,
"Jiddat al Harasis 111","L/LL4",4.24,"Found",2004,34023,19.66,56.96,,,,,,
"Raguli","H3.8",4.24,"Found",1972,22373,45.7,43.7,,,,,,
"Dhofar 975","L4",4.23,"Found",2004,33777,19.22,54.92,,,,,,
"Grady (1933)","L3-6",4.23,"Found",1933,10951,34.8,-103.32,,,,,,
"Yamato 792769","Eucrite-pmict",4.23,"Found",1979,28118,-71.5,35.67,,,,,,
"Hayy 001","H5",4.21,"Found",2010,55517,20.84,57.63,,,,,,
"Sayh al Uhaymir 187","L4-5",4.21,"Found",2002,23360,20.57,57.32,,,,,,
"Farnum","L5",4.2,"Found",1937,10076,40.25,-100.23,,,,,,
"Norristown","Iron, IIIAB",4.2,"Found",1965,16997,32.52,-82.55,,,,,,
"Asuka 881092","L3",4.19,"Found",1988,3801,-72,26,,,,,,
"Ramlat as Sahmah 203","Mesosiderite",4.19,"Found",2002,35637,20,56.42,,,,,,
"Sakauchi","Iron",4.18,"Fell",1913,23103,35.67,136.3,,,,,,
"Dhofar 1071","L6",4.18,"Found",2000,6878,18.85,54.65,,,,,,
"Elba","H5",4.18,"Found",1966,7821,39.83,-103.22,,,,,,
"Falsey Draw","L6",4.18,"Found",1995,10072,33.84,-103.94,,,,,,
"Jiddat al Harasis 058","L6",4.18,"Found",2000,12120,19.81,56.69,,,,,,
"Yamato 74362","L6",4.18,"Found",1974,24740,-71.79,35.8,,,,,,
"Yamato 792770","H6",4.18,"Found",1979,28119,-71.5,35.67,,,,,,
"Gashua","L6",4.16,"Fell",1984,44882,12.85,11.03,,,,,,
"Dar al Gani 1006","CO3",4.15,"Found",1999,5623,27.2,15.9,,,,,,
"Dar al Gani 470","L6",4.15,"Found",1998,6018,27.79,15.95,,,,,,
"Hammadah al Hamra 220","H4",4.15,"Found",1997,11703,28.93,12.63,,,,,,
"Wells","LL3.3",4.14,"Found",1985,24242,33.05,-101.93,,,,,,
"Allan Hills A77282","L6",4.13,"Found",1977,1592,-76.72,159.67,,,,,,
"Bakhardok","L6",4.12,"Found",1978,4923,38.6,58,,,,,,
"Ilafegh 002","Mesosiderite",4.12,"Found",1989,12007,21.52,1.3,,,,,,
"Fluvanna (b)","H6",4.11,"Found",1976,10117,32.9,-101.16,,,,,,
"MacAlpine Hills 88109","L5",4.11,"Found",1988,15273,-84.22,160.5,,,,,,
"Mount Baldr A76001","H6",4.11,"Found",1976,16764,-77.58,160.33,,,,,,
"Sioux County","Eucrite-mmict",4.1,"Fell",1933,23614,42.58,-103.67,,,,,,
"Algoma","Iron, IAB-sHL",4.1,"Found",1887,470,44.65,-87.47,,,,,,
"Brownfield (1964)","H5",4.1,"Found",1964,5152,33.22,-102.18,,,,,,
"Dwight","L6",4.1,"Found",1940,7756,38.85,-96.58,,,,,,
"Flagler","H3.8",4.1,"Found",1972,30564,39.23,-102.99,,,,,,
"Allan Hills A77233","H4",4.09,"Found",1977,1544,-76.72,159.67,,,,,,
"Hammadah al Hamra 136","L6",4.09,"Found",1995,11619,28.53,13.39,,,,,,
"Dhofar 1548","L6",4.07,"Found",2008,52421,18.65,54.18,,,,,,
"Hammadah al Hamra 155","H4/5",4.06,"Found",1995,11638,28.59,13.45,,,,,,
"Phulmari","Stone-uncl",4.06,"Found",1936,18810,20.13,75.5,,,,,,
"Queen Alexandra Range 97006","H5",4.06,"Found",1997,20413,-84,168,,,,,,
"Kuznetzovo","L6",4.05,"Fell",1932,12385,55.2,75.33,,,,,,
"Chinguetti","Mesosiderite-B1",4.05,"Found",1920,5354,20.25,-12.68,,,,,,
"Sayh al Uhaymir 498","L5",4.05,"Found",2009,52429,20.53,57.34,,,,,,
"Miller Range 99301","LL6",4.04,"Found",1999,16657,-83.25,157,,,,,,
"Lewis Cliff 87029","H5",4.03,"Found",1987,13503,-84.28,161.08,,,,,,
"Willaroy","H3.8-an",4.03,"Found",1970,24272,-30.1,143.2,,,,,,
"Elephant Moraine 92001","Mesosiderite",4.02,"Found",1992,9403,-76.04,156.14,,,,,,
"Grosvenor Mountains 95504","L3.5",4.02,"Found",1995,11232,-85.67,175,,,,,,
"Lost Creek","H3.8",4.02,"Found",1916,14712,39.12,-98.17,,,,,,
"Dar al Gani 1037","Martian (shergottite)",4.01,"Found",1999,5652,27.33,16.22,,,,,,
"Jiddat al Harasis 221","L5",4.01,"Found",2005,35540,19.76,56.55,,,,,,
"Bialystok","Eucrite-pmict",4,"Fell",1827,5042,53.1,23.2,,,,,,
"Çanakkale","L6",4,"Fell",1964,5250,39.8,26.6,,,,,,
"Chassigny","Martian (chassignite)",4,"Fell",1815,5331,47.72,5.37,,,,,,
"Chitenay","L6",4,"Fell",1978,5357,47.47,0.98,,,,,,
"Futtehpur","L6",4,"Fell",1822,10839,25.95,80.82,,,,,,
"Krasnyi Klyuch","H5",4,"Fell",1946,12357,54.33,56.08,,,,,,
"Lichtenberg","H6",4,"Fell",1973,14646,-26.15,26.18,,,,,,
"Mazapil","Iron, IAB-sLL",4,"Fell",1885,15453,24.68,-101.68,,,,,,
"Mern","L6",4,"Fell",1878,15489,55.05,12.07,,,,,,
"Nikolaevka","H4",4,"Fell",1935,16976,52.45,78.63,,,,,,
"Nogoya","CM2",4,"Fell",1879,16989,-32.37,-59.83,,,,,,
"Santa Lucia (2008)","L6",4,"Fell",2008,50909,-31.54,-68.49,,,,,,
"Sauguis","L6",4,"Fell",1868,23188,43.15,-0.85,,,,,,
"Sena","H4",4,"Fell",1773,23495,41.72,-0.05,,,,,,
"Shalka","Diogenite",4,"Fell",1850,23521,23.1,87.3,,,,,,
"St. Germain-du-Pinel","H6",4,"Fell",1890,23087,48.02,-1.15,,,,,,
"Werdama","H5",4,"Fell",2006,47344,32.8,21.79,,,,,,
"Akron (1961)","L6",4,"Found",1961,431,40.15,-103.17,,,,,,
"Alt Bela","Iron, IID",4,"Found",1898,2283,49.77,18.25,,,,,,
"Daraj 002","L4",4,"Found",1986,6541,29.87,11.69,,,,,,
"Derrick Peak 88018","Iron, IIAB",4,"Found",1988,6669,-80.07,156.38,,,,,,
"Dhofar 032","L6",4,"Found",1999,6731,19.12,54.79,,,,,,
"Edmond","H6",4,"Found",1983,7767,39.77,-99.92,,,,,,
"Harlowton","Iron, IAB-ung",4,"Found",1975,11831,46.43,-109.83,,,,,,
"Hughes 013","H5",4,"Found",1991,11937,-30.66,129.12,,,,,,
"Indianola","L5",4,"Found",1939,12030,40.23,-100.42,,,,,,
"Jamestown","Iron, IVA",4,"Found",1885,12071,46.62,-98.5,,,,,,
"Kalugalatenna","L6",4,"Found",2003,12235,7.32,80.55,,,,,,
"Laundry West","L4",4,"Found",1967,12739,-31.47,126.93,,,,,,
"Seneca Falls","Iron, IIIAB",4,"Found",1850,23498,42.92,-76.78,,,,,,
"Valkeala","L6",4,"Found",1962,24150,61.05,26.83,,,,,,
"Umm as Samim 009","L6",3.99,"Found",2009,51872,21.06,56.48,,,,,,
"Ichkala","H6",3.97,"Fell",1936,11995,58.2,82.93,,,,,,
"Pecora Escarpment 91015","L5",3.97,"Found",1991,18306,-85.67,-69.01,,,,,,
"Acomita","Pallasite, PMG",3.96,"Found",1962,372,35.05,-107.57,,,,,,
"Jiddat al Harasis 079","L6",3.96,"Found",2003,12139,19.91,55.66,,,,,,
"Almahata Sitta","Ureilite-an",3.95,"Fell",2008,48915,20.75,32.41,,,,,,
"Djermaia","H",3.95,"Fell",1961,7656,12.73,15.05,,,,,,
"Allan Hills 84070","L6",3.95,"Found",1984,672,-76.91,156.88,,,,,,
"Dhofar 1554","L5",3.95,"Found",2009,52425,18.67,54.15,,,,,,
"Chisenga","Iron, IIIAB",3.92,"Fell",1988,5355,-10.06,33.4,,,,,,
"Catherwood","L6",3.92,"Found",1965,5298,51.97,-107.44,,,,,,
"Meteorite Hills 01002","L5",3.92,"Found",2001,16235,-79.68,159.75,,,,,,
"Colony","CO3.0",3.91,"Found",1975,5407,35.35,-98.68,,,,,,
"Dar al Gani 763","L5",3.91,"Found",1999,6310,27.02,16.53,,,,,,
"Shuangyang","H5",3.9,"Fell",1971,23582,43.5,125.67,,,,,,
"Anson","L6",3.9,"Found",1972,2308,39.33,-97.56,,,,,,
"Ozren","Iron, IAB-MG",3.9,"Found",1952,18067,44.61,18.42,,,,,,
"Pecora Escarpment 91010","L6",3.9,"Found",1991,18301,-85.69,-68.34,,,,,,
"Ulysses","H4",3.9,"Found",1927,24110,37.6,-101.25,,,,,,
"Yamato 792736","H4",3.9,"Found",1979,28085,-71.5,35.67,,,,,,
"Doroninsk","H5-7",3.89,"Fell",1805,7718,51.2,112.3,,,,,,
"El Médano 170","L4",3.89,"Found",2011,57318,-24.85,-70.53,,,,,,
"Benoni","H6",3.88,"Fell",1943,5023,-26.17,28.42,,,,,,
"Ramlat as Sahmah 422","H3.7-5",3.88,"Found",2010,55659,20.51,56.48,,,,,,
"Wray (b)","L5",3.88,"Found",1938,24339,40.33,-102.2,,,,,,
"Zaborzika","L6",3.87,"Fell",1818,30379,50.28,27.68,,,,,,
"Ramlat as Sahmah 354","H6",3.87,"Found",2010,55445,20.32,55.59,,,,,,
"Wood's Mountain","Iron, IVA",3.87,"Found",1918,24332,35.68,-82.18,,,,,,
"Padvarninkai","Eucrite-mmict",3.86,"Fell",1929,18069,55.67,25,,,,,,
"Sayh al Uhaymir 258","L6",3.86,"Found",2002,23431,20.61,57.34,,,,,,
"Wisconsin Range 90302","H5",3.86,"Found",1990,24288,-84.75,-125,,,,,,
"Yamato 793168","L6",3.86,"Found",1979,28517,-71.5,35.67,,,,,,
"Taonan","L5",3.85,"Fell",1965,23873,45.4,122.9,,,,,,
"Allan Hills A81016","L6",3.85,"Found",1981,1976,-76.73,158.81,,,,,,
"Dokachi","H5",3.84,"Fell",1903,7658,23.5,90.33,,,,,,
"Allan Hills A81027","L6",3.84,"Found",1981,1987,-76.69,159.26,,,,,,
"Laborel","H5",3.83,"Fell",1871,12408,44.28,5.58,,,,,,
"Grosvenor Mountains 85200","H5",3.82,"Found",1985,11209,-85.67,175,,,,,,
"Northwest Africa 725","Acapulcoite",3.82,"Found",,17807,30.6,-5.05,,,,,,
"Dar al Gani 858","CO3",3.81,"Found",1999,6405,27.2,15.9,,,,,,
"Acfer 011","H5",3.8,"Found",1989,21,27.75,4.17,,,,,,
"Dhofar 477","L6",3.8,"Found",2001,7238,19.19,54.88,,,,,,
"Digor","Iron, IIIAB",3.8,"Found",2006,49716,42.33,89.33,,,,,,
"Seth Ward","H5",3.8,"Found",1977,23505,34.27,-101.65,,,,,,
"Allan Hills A77290","Iron, IAB-MG",3.78,"Found",1977,1600,-76.72,159.67,,,,,,
"Dhofar 1513","L5",3.78,"Found",2009,51558,19.34,54.53,,,,,,
"Ramnagar","L6",3.77,"Fell",1940,22384,26.45,82.9,,,,,,
"Davy (b)","H4",3.77,"Found",1981,6617,29.01,-97.71,,,,,,
"Dhofar 1631","H5",3.77,"Found",2004,55279,18.71,54.4,,,,,,
"Moss","CO3.6",3.76,"Fell",2006,36592,59.43,10.7,,,,,,
"Pitts","Iron, IAB-ung",3.76,"Fell",1921,18837,31.95,-83.52,,,,,,
"al-Ghanim (stone)","L6",3.76,"Found",1960,469,19.7,53.97,,,,,,
"Ofehértó","L6",3.75,"Fell",1900,17990,47.88,22.03,,,,,,
"Wessely","H5",3.75,"Fell",1831,24244,48.95,17.38,,,,,,
"Meteorite Hills 00438","L6",3.75,"Found",2000,15673,-79.68,155.75,,,,,,
"Cerro La Tiza","H4",3.74,"Found",2002,44877,-14.53,-75.78,,,,,,
"Kulp","H6",3.72,"Fell",1906,12373,41.12,45,,,,,,
"Kinsella","Iron, IIIAB",3.72,"Found",1946,12320,53.2,-111.43,,,,,,
"Mertzon","Iron, IAB-ung",3.72,"Found",1943,15490,31.27,-100.83,,,,,,
"Hamlet","LL4",3.71,"Fell",1959,11485,41.38,-86.6,,,,,,
"Hammadah al Hamra 294","L6",3.71,"Found",2000,11777,29.1,12.32,,,,,,
"Jiddat al Harasis 094","L6",3.71,"Found",2002,12153,19.98,56.77,,,,,,
"Bald Mountain","L4",3.7,"Fell",1929,4925,35.97,-82.48,,,,,,
"Benares (a)","LL4",3.7,"Fell",1798,5011,25.37,82.92,,,,,,
"Chadong","L6",3.7,"Fell",1998,5313,28.53,109.32,,,,,,
"Khanpur","LL5",3.7,"Fell",1932,12289,25.55,83.12,,,,,,
"Siena","LL5",3.7,"Fell",1794,23586,43.12,11.6,,,,,,
"Dar al Gani 650","L6",3.7,"Found",1999,6197,27.26,16.01,,,,,,
"Dhofar 1659","L6",3.7,"Found",2011,55577,18.36,54.41,,,,,,
"Elephant Moraine 87537","H5",3.7,"Found",1987,8087,-76.27,157.15,,,,,,
"Gila Bend","L5",3.7,"Found",2000,30664,33.03,-112.62,,,,,,
"Grove Mountains 050128","L6",3.7,"Found",2006,46425,-72.98,75.26,,,,,,
"Soper","Iron, ungrouped",3.7,"Found",1938,23669,34.03,-95.58,,,,,,
"Uruq al Hadd 002","H3",3.7,"Found",1996,24128,18.5,52.17,,,,,,
"Zenda","Iron, IAB complex",3.7,"Found",1955,30400,42.51,-88.49,,,,,,
"Asuka 882121","H6",3.69,"Found",1988,4830,-72,26,,,,,,
"Dhofar 1665","L3",3.69,"Found",2011,56380,19.17,54.92,,,,,,
"Shikarpur","L6",3.68,"Fell",1921,23534,25.85,87.58,,,,,,
"Dhofar 548","H4",3.68,"Found",2001,7309,19.35,54.57,,,,,,
"Jesenice","L6",3.67,"Fell",2009,51589,46.42,14.05,,,,,,
"Jiddat al Harasis 365","H~4",3.67,"Found",2003,51632,19.62,56.04,,,,,,
"Mount Leake","L5",3.67,"Found",1998,45812,-25.88,119.07,,,,,,
"Northwest Africa 836","L5",3.66,"Found",2000,17862,27.39,-9.02,,,,,,
"Cronstad","H5",3.65,"Fell",1877,5474,-27.7,27.3,,,,,,
"Bluebird","L6",3.65,"Found",2002,30445,35.87,-114.19,,,,,,
"Pampa de Mejillones 014","L/LL4-6",3.65,"Found",2006,54770,-23.23,-70.42,,,,,,
"Tanezrouft 060","LL4",3.65,"Found",2002,23861,25.28,0.2,,,,,,
"Florence","H3",3.64,"Fell",1922,10111,30.83,-97.77,,,,,,
"Dhofar 167","H6",3.64,"Found",2000,6952,19.06,54.62,,,,,,
"Sayh al Uhaymir 489","H5",3.64,"Found",2008,50970,20.96,56.97,,,,,,
"Witchelina","H4",3.64,"Found",1920,24319,-30,138,,,,,,
"Auburn","Iron, IIG",3.63,"Found",1867,4894,32.63,-85.5,,,,,,
"Goodland","L4",3.63,"Found",1923,10945,39.35,-101.67,,,,,,
"Gorlovka","H3.7",3.62,"Fell",1974,10949,48.28,38.08,,,,,,
"Yamato 82163","H6",3.62,"Found",1982,29357,-71.5,35.67,,,,,,
"Boumdeid (2011)","L6",3.6,"Fell",2011,57167,17.17,-11.34,,,,,,
"Udipi","H5",3.6,"Fell",1866,24104,13.48,74.78,,,,,,
"Virba","L6",3.6,"Fell",1873,24185,43.53,22.63,,,,,,
"Cee Vee","H5",3.6,"Found",1959,5305,34.2,-100.48,,,,,,
"Dar al Gani 215","H6",3.6,"Found",1996,5763,27.13,16.1,,,,,,
"Del Rio","Iron, IIF",3.6,"Found",1965,6639,29.37,-100.97,,,,,,
"Dhofar 745","H4",3.6,"Found",2000,7491,18.89,54.65,,,,,,
"Hammadah al Hamra 142","H5/6",3.6,"Found",1995,11625,28.48,13.02,,,,,,
"Hammadah al Hamra 281","CK4",3.6,"Found",2000,11764,28.49,13.21,,,,,,
"Kittakittaooloo","H4",3.6,"Found",1970,12327,-28.03,138.13,,,,,,
"Laketon","L6",3.6,"Found",1937,12448,35.57,-100.67,,,,,,
"McCook","L6",3.6,"Found",1965,15459,40.02,-100.78,,,,,,
"Muleshoe","H4/6",3.6,"Found",1972,16846,34.12,-102.7,,,,,,
"Nazareth (b)","L6",3.6,"Found",1967,16929,34.5,-102.25,,,,,,
"Oscuro Mountains","Iron, IAB-MG",3.6,"Found",1895,18035,33.63,-106.38,,,,,,
"Pine River","Iron, IAB-sLL",3.6,"Found",1931,18826,44.22,-89.1,,,,,,
"Salt River","Iron, IIC",3.6,"Found",1850,23113,37.95,-85.78,,,,,,
"San Carlos","H4",3.6,"Found",1942,23119,-35.53,-58.77,,,,,,
"Shişr 102","L6",3.6,"Found",2002,35718,18.63,53.92,,,,,,
"St. Francois County","Iron, IC",3.6,"Found",1863,23085,37.75,-90.5,,,,,,
"Mifflin","L5",3.58,"Fell",2010,52090,42.91,-90.37,,,,,,
"Penokee","H5",3.58,"Found",1947,18788,39.35,-99.92,,,,,,
"Southampton","Pallasite",3.58,"Found",2001,23682,44.51,-81.37,,,,,,
"Hammadah al Hamra 292","H4",3.57,"Found",2000,11775,29.02,10.54,,,,,,
"Jiddat al Harasis 586","H5",3.57,"Found",2009,51934,19.74,56.65,,,,,,
"Manych","LL3.4",3.56,"Fell",1951,15409,45.82,44.63,,,,,,
"Jiddat al Harasis 101","L6",3.56,"Found",2003,12160,19.75,56.97,,,,,,
"Jiddat al Harasis 213","L6",3.56,"Found",2003,35532,19.75,56.97,,,,,,
"Asuka 882021","L6",3.55,"Found",1988,4730,-72,26,,,,,,
"Dar al Gani 217","H6",3.55,"Found",1996,5765,27.13,16.13,,,,,,
"Dhofar 487","H4",3.55,"Found",2001,7248,19.15,54.77,,,,,,
"Sayh al Uhaymir 264","LL6",3.55,"Found",2002,23437,20.7,57.19,,,,,,
"Tanezrouft 076","L6",3.55,"Found",2003,31337,24.62,-0.56,,,,,,
"Dhofar 221","L5",3.54,"Found",2000,7005,18.25,54.2,,,,,,
"Northwest Africa 540","H6",3.54,"Found",2000,17787,31.1,-5.18,,,,,,
"Skiff","H4",3.54,"Found",1966,23622,49.25,-111.87,,,,,,
"Dhofar 010","H6",3.53,"Found",1999,6709,18.34,54.2,,,,,,
"Jiddat al Harasis 614","H4/5",3.53,"Found",2009,51970,19.01,55.31,,,,,,
"Mooresfort","H5",3.52,"Fell",1810,16737,52.45,-8.33,,,,,,
"Dar al Gani 998","CO3",3.52,"Found",1999,6538,27.17,15.92,,,,,,
"Dhofar 646","H5/6",3.52,"Found",2001,7403,18.99,54.18,,,,,,
"Las Salinas","Iron, IIIAB",3.52,"Found",1905,12734,-23,-69.5,,,,,,
"Grosnaja","CV3",3.5,"Fell",1861,11206,43.67,45.38,,,,,,
"Hedeskoga","H5",3.5,"Fell",1922,11869,55.47,13.78,,,,,,
"Kaptal-Aryk","L6",3.5,"Fell",1937,12253,42.45,73.37,,,,,,
"Lucé","L6",3.5,"Fell",1768,14724,47.85,0.48,,,,,,
"Rowton","Iron, IIIAB",3.5,"Fell",1876,22773,52.77,-2.52,,,,,,
"Success","L6",3.5,"Fell",1924,23736,36.48,-90.67,,,,,,
"Villalbeto de la Peña","L6",3.5,"Fell",2004,24179,42.8,-4.67,,,,,,
"Yanzhuang","H6",3.5,"Fell",1990,30350,24.57,114.17,,,,,,
"Kaffir (b)","H4",3.5,"Found",1966,12224,34.67,-101.82,,,,,,
"Lipovsky","Pallasite, PMG",3.5,"Found",1904,14658,49.08,42.52,,,,,,
"Mesa Verde Park","Iron, IAB-ung",3.5,"Found",1922,15494,37.17,-108.5,,,,,,
"Northwest Africa 034","L4",3.5,"Found",1999,17044,32.05,-3.03,,,,,,
"Seibert (a)","H5",3.5,"Found",1941,23479,39.3,-102.83,,,,,,
"Wiley","Iron, IIC",3.5,"Found",1938,24268,38.15,-102.67,,,,,,
"Yorktown (Texas)","H5",3.5,"Found",1957,30371,28.95,-97.4,,,,,,
"Acfer 091","LL5-6",3.49,"Found",1990,100,27.45,4.12,,,,,,
"Jiddat al Harasis 312","L6",3.49,"Found",2005,35629,19.72,55.7,,,,,,
"Queen Alexandra Range 99003","H5",3.49,"Found",1999,21456,-84,168,,,,,,
"Mount Wegener","Iron, IIIAB",3.48,"Found",1988,16809,-80.7,-23.58,,,,,,
"Wynyard","H5",3.48,"Found",1968,24344,51.88,-104.18,,,,,,
"Yamato 790448","LL3.2",3.48,"Found",1979,25797,-71.5,35.67,,,,,,
"Idutywa","H5",3.46,"Fell",1956,12000,-32.1,28.33,,,,,,
"Dhofar 228","L6",3.45,"Found",2001,7012,19.15,54.58,,,,,,
"Asuka 881073","H5",3.44,"Found",1988,3782,-72,26,,,,,,
"Sayh al Uhaymir 238","L4",3.44,"Found",2002,23411,20.56,57.31,,,,,,
"Utzenstorf","H5",3.42,"Fell",1928,24136,47.12,7.55,,,,,,
"Dhofar 1130","H4",3.42,"Found",2005,33833,19.22,54.94,,,,,,
"Moama","Eucrite-cm",3.42,"Found",1940,16708,-35.95,144.52,,,,,,
"Al Huwaysah 009","H6",3.41,"Found",2010,55410,22.76,55.41,,,,,,
"Pecora Escarpment 91013","L5",3.41,"Found",1991,18304,-85.67,-68.98,,,,,,
"Shişr 015","L5",3.41,"Found",2001,23550,18.55,53.92,,,,,,
"Didim","H3-5",3.4,"Fell",2007,47350,37.35,27.33,,,,,,
"Orvinio","H6",3.4,"Fell",1872,18034,42.13,12.93,,,,,,
"Pacula","L6",3.4,"Fell",1881,18068,21.05,-99.3,,,,,,
"Lewis Cliff 86011","L6",3.4,"Found",1986,12951,-84.28,161.61,,,,,,
"New Raymer","LL4",3.4,"Found",1995,30758,40.63,-103.84,,,,,,
"Romashki","L6",3.4,"Found",2009,52890,50.29,46.7,,,,,,
"Sayh al Uhaymir 543","L5/6",3.4,"Found",2011,55558,20.51,57.29,,,,,,
"Pesyanoe","Aubrite",3.39,"Fell",1933,18799,55.5,66.08,,,,,,
"Hammadah al Hamra 222","L6",3.39,"Found",1997,11705,29.19,11.6,,,,,,
"Maralinga","CK4-an",3.39,"Found",1974,15412,-30.3,131.27,,,,,,
"Acfer 125","L6",3.38,"Found",1990,134,27.68,4.35,,,,,,
"Primm","H5",3.38,"Found",1997,18889,35.67,-115.37,,,,,,
"San Juan 063","H5",3.38,"Found",2010,57201,-25.58,-69.78,,,,,,
"Dar al Gani 189","CO3",3.37,"Found",1996,5737,27.18,15.94,,,,,,
"Pecora Escarpment 91016","L6",3.37,"Found",1991,18307,-85.69,-68.34,,,,,,
"Ban Cho Lae","H5",3.35,"Found",1975,48651,19.09,99.01,,,,,,
"Daraj 145","H6",3.35,"Found",2000,6600,29.65,11.66,,,,,,
"Ekeby","H4",3.34,"Fell",1939,7776,56.03,13,,,,,,
"Yamato 790964","LL",3.34,"Found",1979,26313,-71.5,35.67,,,,,,
"Rewari","L6",3.33,"Fell",1929,22593,28.2,76.67,,,,,,
"Asuka 881976","H4",3.33,"Found",1988,4685,-72,26,,,,,,
"Rhine Villa","Iron, IIIE",3.33,"Found",1900,22594,-34.67,139.28,,,,,,
"Jiddat al Harasis 461","L6",3.31,"Found",2007,48612,19.77,56.35,,,,,,
"Kediri","L4",3.3,"Fell",1940,12270,-7.75,112.02,,,,,,
"Erie","L6",3.3,"Found",1965,10045,40.03,-105.06,,,,,,
"Hammadah al Hamra 131","L6",3.3,"Found",1995,11614,28.47,12.89,,,,,,
"Mercedes","H5",3.3,"Found",1994,34496,-34.67,-59.33,,,,,,
"Ogallala","Iron, IAB-sLL",3.3,"Found",1918,17992,41.17,-101.67,,,,,,
"Sayh al Uhaymir 541","H6",3.3,"Found",2011,55556,20.77,57.28,,,,,,
"Tagounite","Iron, IIIAB",3.3,"Found",1989,23783,29.97,-5.6,,,,,,
"Cadell","L6",3.29,"Found",1910,5193,-34.07,139.75,,,,,,
"Dar al Gani 313","L/LL3",3.29,"Found",1997,5861,26.81,15.9,,,,,,
"Tanezrouft 011","L/LL5-6",3.29,"Found",1991,23812,25.53,0.36,,,,,,
"Yamato 791209","H5",3.29,"Found",1979,26558,-71.5,35.67,,,,,,
"Yardea","Iron, IAB-MG",3.29,"Found",1875,30351,-32.45,135.55,,,,,,
"Smyer","H6",3.27,"Found",1968,23655,33.58,-102.17,,,,,,
"Dar al Gani 488","L6",3.26,"Found",1997,6036,27.27,16.12,,,,,,
"Hammadah al Hamra 266","L5",3.26,"Found",2000,11749,28.48,12.86,,,,,,
"Harrison Township","L6",3.26,"Found",1945,11843,38.33,-101.71,,,,,,
"Klein-Wenden","H6",3.25,"Fell",1843,12332,51.6,10.8,,,,,,
"Jiddat al Harasis 568","H4-6",3.25,"Found",2009,51910,19.7,56.37,,,,,,
"Portales (a)","H4",3.24,"Found",1967,18871,34.07,-103.5,,,,,,
"Yamato 74190","L6",3.24,"Found",1974,24568,-71.83,35.44,,,,,,
"Dwaleni","H4-6",3.23,"Fell",1970,7755,-27.2,31.32,,,,,,
"Allan Hills A77280","L6",3.23,"Found",1977,1590,-76.72,159.67,,,,,,
"Rangala","L6",3.22,"Fell",1937,22392,25.38,72.02,,,,,,
"Dhofar 316","L6",3.22,"Found",2001,7099,19.16,54.79,,,,,,
"Ramlat as Sahmah 278","H4",3.21,"Found",2008,50966,20.63,56.16,,,,,,
"Aleppo","L6",3.2,"Fell",1873,462,36.23,37.13,,,,,,
"Andover","L6",3.2,"Fell",1898,2295,44.62,-70.75,,,,,,
"Apt","L6",3.2,"Fell",1803,2320,43.87,5.38,,,,,,
"Barea","Mesosiderite-A1",3.2,"Fell",1842,4946,42.38,-2.5,,,,,,
"Felix","CO3.3",3.2,"Fell",1900,10081,32.53,-87.17,,,,,,
"Khor Temiki","Aubrite",3.2,"Fell",1932,12299,16,36,,,,,,
"Maridi","H6",3.2,"Fell",1941,15421,4.67,29.25,,,,,,
"Shytal","L6",3.2,"Fell",1863,23584,24.33,90.17,,,,,,
"Bald Eagle","Iron, IIIAB",3.2,"Found",1891,4924,41.28,-77.05,,,,,,
"Dar al Gani 575","H5",3.2,"Found",1998,6122,27.22,16.39,,,,,,
"Hughes 003","H5",3.2,"Found",,11927,-30.23,129.4,,,,,,
"Itutinga","Iron, IIIAB",3.2,"Found",1960,12059,-21.33,-44.67,,,,,,
"Norcateur","L6",3.2,"Found",1940,16991,39.82,-100.2,,,,,,
"Springfield","L6",3.2,"Found",1937,23689,37.38,-102.63,,,,,,
"Catalina 019","H4",3.19,"Found",2010,57185,-25.23,-69.72,,,,,,
"Almelo Township","L5",3.18,"Found",1949,2281,39.6,-100.12,,,,,,
"Catalina 003","Iron, IVB",3.18,"Found",1999,56101,-25.2,-69.83,,,,,,
"Dhofar 495","H4",3.18,"Found",2001,7256,19.16,54.58,,,,,,
"Nardoo (no. 1)","H5",3.18,"Found",1944,16910,-29.53,143.98,,,,,,
"Dhofar 140","L5",3.17,"Found",2000,6925,18.34,54.51,,,,,,
"Hammadah al Hamra 237","CBb",3.17,"Found",1997,11720,28.61,13.05,,,,,,
"Sayh al Uhaymir 186","H4-6",3.17,"Found",2002,23359,20.56,57.18,,,,,,
"Pampa de Mejillones 004","L6",3.16,"Found",2003,54718,-23.2,-70.45,,,,,,
"Al Huwaysah 001","LL6",3.15,"Found",2009,55403,22.8,55.33,,,,,,
"Dar al Gani 192","CO3",3.15,"Found",1996,5740,27.13,16,,,,,,
"Dar al Gani 969","L/LL6",3.15,"Found",1998,6509,26.98,16.35,,,,,,
"Dhofar 1658","LL6",3.15,"Found",2011,55576,18.36,54.41,,,,,,
"Ilafegh 014","H5",3.15,"Found",1989,12019,21.67,1.85,,,,,,
"Tanezrouft 032","H5",3.15,"Found",1991,23833,25.37,-0.02,,,,,,
"Monte Milone","L5",3.13,"Fell",1846,16726,43.27,13.35,,,,,,
"Acfer 028","H3.8",3.13,"Found",1989,38,27.67,4.25,,,,,,
"Dar al Gani 006","CO3",3.13,"Found",1995,5522,27.17,15.93,,,,,,
"Dar al Gani 061","LL5-6",3.13,"Found",1995,5577,27.46,16.28,,,,,,
"Dar al Gani 988","H5",3.13,"Found",2002,6528,27.07,16.39,,,,,,
"Dhofar 1448","L~6",3.11,"Found",2002,51597,19.35,54.8,,,,,,
"Yamato 793214","LL5",3.11,"Found",1979,28563,-71.5,35.67,,,,,,
"Dar al Gani 019","H6",3.1,"Found",1995,5535,27.08,16.2,,,,,,
"Ksar el Hajoui","L6",3.1,"Found",2010,53825,31.99,-2.99,,,,,,
"Tabbita","L6",3.1,"Found",1983,23775,-34.05,145.83,,,,,,
"West Point","L6",3.1,"Found",1972,24246,33.08,-102.05,,,,,,
"Allan Hills 84003","H5",3.09,"Found",1984,606,-76.73,158.67,,,,,,
"Jiddat al Harasis 458","H4",3.09,"Found",2007,48609,19.77,56.33,,,,,,
"Pecora Escarpment 82504","L5",3.09,"Found",1982,18267,-85.68,-68.72,,,,,,
"Pecora Escarpment 82505","L5",3.09,"Found",1982,18268,-85.62,-68.59,,,,,,
"Asuka 881832","LL6",3.08,"Found",1988,4541,-72,26,,,,,,
"Harding County","L4",3.08,"Found",1941,11826,45.5,-103.5,,,,,,
"Thumrayt 002","L3.5",3.07,"Found",2007,51862,17.97,54.07,,,,,,
"Yamato 74155","H4",3.07,"Found",1974,24533,-71.82,36.12,,,,,,
"Hildreth","L5",3.06,"Found",1894,11885,40.33,-99.03,,,,,,
"Novorybinskoe","Iron, IVA",3.06,"Found",1937,17931,51.88,71.25,,,,,,
"Isthilart","H5",3.05,"Fell",1928,12053,-31.18,-57.95,,,,,,
"Ackerly","L5",3.05,"Found",1995,55379,32.59,-101.77,,,,,,
"Dhofar 1534","H4",3.05,"Found",2006,52403,18.18,54.59,,,,,,
"Dhofar 187","L5",3.05,"Found",2000,6971,18.86,54.47,,,,,,
"Jiddat al Harasis 256","H5",3.04,"Found",2005,35573,19.99,56.34,,,,,,
"Jiddat al Harasis 630","L5",3.04,"Found",2010,52787,19.8,55.89,,,,,,
"Hammadah al Hamra 289","L5",3.03,"Found",1999,11772,29.1,12.57,,,,,,
"Jiddat al Harasis 310","L6",3.03,"Found",2005,35627,19.71,55.71,,,,,,
"Jiddat al Harasis 645","H5",3.03,"Found",2010,55476,19.44,56.61,,,,,,
"Shafter Lake","H5",3.03,"Found",1933,23513,32.4,-102.58,,,,,,
"Allan Hills 83100","CM1/2",3.02,"Found",1983,595,-76.72,159.67,,,,,,
"Camp Creek","H4",3.02,"Found",2009,53490,33.88,-111.79,,,,,,
"Jiddat al Harasis 646","H4",3.02,"Found",2010,55477,19.52,56.67,,,,,,
"Loomis","L6",3.02,"Found",1933,14698,40.47,-99.5,,,,,,
"Sayh al Uhaymir 473","L4",3.02,"Found",2002,48638,20.05,56.51,,,,,,
"Reckling Peak A79001","L6",3.01,"Found",1979,22461,-76.27,159.25,,,,,,
"Akwanga","H",3,"Fell",1959,432,8.92,8.43,,,,,,
"Eichstädt","H5",3,"Fell",1785,7775,48.9,11.22,,,,,,
"Inner Mongolia","L6",3,"Fell",1963,12037,41,112,,,,,,
"Kaba","CV3",3,"Fell",1857,12218,47.35,21.3,,,,,,
"Karakol","LL6",3,"Fell",1840,12256,47.22,81.02,,,,,,
"Le Pressoir","H5",3,"Fell",1845,12748,47.17,0.43,,,,,,
"Marmande","L5",3,"Fell",1848,15429,44.5,0.15,,,,,,
"Pohlitz","L5",3,"Fell",1819,18853,50.93,12.13,,,,,,
"Tillaberi","L6",3,"Fell",1970,23999,14.25,1.53,,,,,,
"Zabrodje","L6",3,"Fell",1893,30380,55.18,27.92,,,,,,
"Bushman Land","Iron, IVA",3,"Found",1933,5179,-30,20,,,,,,
"Kermichel","L6",3,"Found",1911,12283,47.65,-2.77,,,,,,
"Losttown","Iron, IID",3,"Found",1868,14715,34.25,-84.5,,,,,,
"Marburg","Pallasite",3,"Found",1906,15413,50.82,8.77,,,,,,
"Paloduro","Iron, IIIE",3,"Found",1935,18081,34.9,-101.22,,,,,,
"Plateau du Tademait 004","L6",3,"Found",2002,31299,28.3,0.5,,,,,,
"Plateau du Tademait 006","LL6",3,"Found",2004,45006,27.37,0.71,,,,,,
"Two Buttes (b)","H",3,"Found",1970,24092,37.63,-102.42,,,,,,
"Wardswell Draw","L6",3,"Found",1976,24214,32.9,-102.93,,,,,,
"Willowdale","H4",3,"Found",1951,24279,37.53,-98.37,,,,,,
"Zaffra","Iron, IAB-MG",3,"Found",1919,30383,35,-94.75,,,,,,
"Graves Nunataks 95201","H5",2.99,"Found",1995,10961,-86.72,-141.5,,,,,,
"Hammadah al Hamra 108","H5",2.99,"Found",1995,11591,28.58,13.3,,,,,,
"McKenzie Draw (b)","H4",2.99,"Found",1989,15462,32.93,-102.63,,,,,,
"Dar al Gani 636","L5",2.98,"Found",1998,6183,26.88,16.55,,,,,,
"Dhofar 105","H5",2.98,"Found",1999,6854,19.34,54.79,,,,,,
"Pavel","H5",2.97,"Fell",1966,18173,43.47,25.52,,,,,,
"Jiddat al Harasis 323","H5",2.97,"Found",2005,45847,19.96,56.45,,,,,,
"Chaves","Howardite",2.95,"Fell",1925,5334,41.93,-7.47,,,,,,
"Karloowala","L6",2.95,"Fell",1955,12263,31.58,71.6,,,,,,
"Grove Mountains 022021","LL5",2.95,"Found",2003,30713,-72.78,75.32,,,,,,
"Little Spring Creek","H5",2.95,"Found",1937,30743,37.68,-105.7,,,,,,
"Victoria West","Iron, IAB-sHL",2.95,"Found",1860,24171,-31.7,23.75,,,,,,
"Chela","H4",2.94,"Fell",1988,5338,-3.67,32.5,,,,,,
"Al Huqf 054","L~6",2.94,"Found",2001,45824,19.62,57.27,,,,,,
"Elephant Moraine 87539","H5",2.93,"Found",1987,8089,-76.04,156.07,,,,,,
"Jiddat al Harasis 218","L5",2.93,"Found",2005,35537,19.7,56.64,,,,,,
"Sayh al Uhaymir 219","H4",2.93,"Found",2002,23392,20.48,56.94,,,,,,
"LaPaz Icefield 02207","LL5",2.92,"Found",2002,12474,-86.37,-70,,,,,,
"Guangmingshan","H5",2.91,"Fell",1996,11435,39.8,122.76,,,,,,
"Abernathy","L6",2.91,"Found",1941,7,33.85,-101.8,,,,,,
"Acfer 113","LL6",2.91,"Found",1990,122,27.57,4.03,,,,,,
"Umm as Samim 027","L6",2.91,"Found",2010,55425,21.11,55.54,,,,,,
"Battle Mountain","L6",2.9,"Fell",2012,56133,40.67,-117.19,,,,,,
"Rodach","Stone-uncl",2.9,"Fell",1775,22642,50.35,10.8,,,,,,
"Zhuanghe","H5",2.9,"Fell",1976,30408,39.67,122.98,,,,,,
"Ashuwairif 003","H4",2.9,"Found",2008,53616,29.36,14.25,,,,,,
"Asuka 882058","H4",2.9,"Found",1988,4767,-72,26,,,,,,
"Dhofar 317","L5",2.9,"Found",2001,7100,18.59,54.02,,,,,,
"Pampa (g)","L5",2.9,"Found",2000,18089,-23.18,-70.43,,,,,,
"Prairie Dog Creek","H3.7",2.9,"Found",1893,18882,39.63,-100.5,,,,,,
"Villa Coronado","H5",2.9,"Found",1983,24177,26.75,-105.25,,,,,,
"El Atchane 011","H5",2.89,"Found",2002,7788,30.02,4.56,,,,,,
"Marion (Kansas)","L5",2.89,"Found",1955,15425,38.37,-97.03,,,,,,
"Dhofar 076","H6",2.88,"Found",1999,6775,19.22,54.57,,,,,,
"Dhofar 702","H4",2.88,"Found",2002,7458,19.17,54.78,,,,,,
"Northwest Africa 840","H5",2.88,"Found",2001,17866,30.19,-9.04,,,,,,
"Queen Alexandra Range 97018","L6",2.88,"Found",1997,20425,-84,168,,,,,,
"Sayh al Uhaymir 067","L5-6",2.87,"Found",2000,23259,20.04,57.28,,,,,,
"Cargo Muchacho Mountains","CO3",2.86,"Found",2000,50912,32.92,-114.77,,,,,,
"Happy (a)","H3",2.86,"Found",1971,11818,35.68,-101.99,,,,,,
"Jiddat al Harasis 506","H5",2.85,"Found",2008,50919,19.67,55.65,,,,,,
"Mandalay Spring","L6",2.85,"Found",2012,57454,40.89,-118.55,,,,,,
"Sayh al Uhaymir 542","H6",2.85,"Found",2011,55557,20.51,57.28,,,,,,
"Benton","LL6",2.84,"Fell",1949,5026,45.95,-67.55,,,,,,
"Elephant Moraine A79002","Diogenite",2.84,"Found",1979,10003,-76.33,157.24,,,,,,
"Meteorite Hills 01003","LL5",2.84,"Found",2001,16236,-79.68,159.75,,,,,,
"Ramlat as Sahmah 246","H5",2.84,"Found",2005,35678,20.84,56.42,,,,,,
"Ramlat as Sahmah 421","L6",2.84,"Found",2010,55515,20.42,56.28,,,,,,
"Aztec","L6",2.83,"Fell",1938,4913,36.8,-108,,,,,,
"Hammadah al Hamra 223","L6",2.83,"Found",1997,11706,29.19,11.61,,,,,,
"Dhofar 1544","L4",2.81,"Found",2008,52418,18.36,54.57,,,,,,
"Grove Mountains 053689","H4",2.81,"Found",2006,50571,-72.83,75.35,,,,,,
"La Bécasse","L6",2.8,"Fell",1879,12392,47.08,1.75,,,,,,
"Valdavur","H6",2.8,"Fell",1944,24144,11.98,79.75,,,,,,
"Daraj 101","H5",2.8,"Found",1986,6560,29.65,11.75,,,,,,
"Dhofar 1575","Ureilite",2.8,"Found",2009,51863,18.53,54.13,,,,,,
"Dimmitt (b)","OC",2.8,"Found",1981,7646,34.48,-102.33,,,,,,
"Lonewolf Nunataks 94101","CM2",2.8,"Found",1994,14685,-81.33,152.83,,,,,,
"Yamato 793464","L6",2.8,"Found",1979,28813,-71.5,35.67,,,,,,
"Allan Hills A78252","Iron, IVA",2.79,"Found",1978,1865,-76.72,159.67,,,,,,
"Dhofar 029","H6",2.79,"Found",1999,6728,19.1,54.82,,,,,,
"Ramlat as Sahmah 357","L6",2.78,"Found",2010,55646,20.43,55.53,,,,,,
"Kamalpur","L6",2.77,"Fell",1942,12238,26.03,81.47,,,,,,
"Dhofar 700","Diogenite",2.77,"Found",2002,7456,19.31,54.55,,,,,,
"Hammadah al Hamra 052","LL5-6",2.77,"Found",1994,11535,28.91,13.09,,,,,,
"Prospector Pool","Iron, ungrouped",2.77,"Found",2003,47700,-29.35,121.77,,,,,,
"Wethersfield (1982)","L6",2.76,"Fell",1982,24251,41.71,-72.67,,,,,,
"Slobodka","L4",2.75,"Fell",1818,23645,55,35,,,,,,
"Coon Butte","L6",2.75,"Found",1905,5436,35,-111,,,,,,
"Lake Bonney","L6",2.75,"Found",1961,12436,-37.75,140.3,,,,,,
"Morradal","Iron, ungrouped",2.75,"Found",1892,16748,62,7.67,,,,,,
"Queen Alexandra Range 99002","H6",2.75,"Found",1999,21455,-84,168,,,,,,
"Red Willow","Iron",2.75,"Found",1899,22550,40.25,-100.5,,,,,,
"Yamato 81049","L6",2.75,"Found",1981,29110,-71.5,35.67,,,,,,
"Jiddat al Harasis 274","H4/6",2.74,"Found",2005,35591,19.98,55.95,,,,,,
"Sayh al Uhaymir 242","L4",2.74,"Found",2003,23415,20.56,57.29,,,,,,
"Adrar Yaouelt","H5",2.73,"Found",2002,387,17.68,10.04,,,,,,
"Allan Hills A78130","L6",2.73,"Found",1978,1745,-76.72,159.67,,,,,,
"Elephant Moraine 83213","LL3.7",2.73,"Found",1983,7855,-76.28,157.23,,,,,,
"Mount Wisting 95300","H3.3",2.73,"Found",1995,16810,-86.45,-165.43,,,,,,
"Dhofar 1653","H6",2.72,"Found",2011,55571,18.6,54.45,,,,,,
"Dhofar 996","LL5",2.72,"Found",2003,30559,19.16,54.66,,,,,,
"Yamato 74354","L6",2.72,"Found",1974,24732,-71.77,35.76,,,,,,
"Dar al Gani 323","L4",2.71,"Found",1997,5871,28.3,15.72,,,,,,
"Jiddat al Harasis 103","L4",2.71,"Found",2003,12162,19.86,57,,,,,,
"Jiddat al Harasis 212","L4",2.71,"Found",2003,35531,19.86,57,,,,,,
"Ramlat as Sahmah 316","L5",2.71,"Found",2009,51988,20.89,55.51,,,,,,
"Andhara","Stone-uncl",2.7,"Fell",1880,2294,26.58,85.57,,,,,,
"Naragh","H6",2.7,"Fell",1974,16909,33.75,51.5,,,,,,
"Assam","L5",2.7,"Found",1846,2351,26,92,,,,,,
"Cat Mountain","L5",2.7,"Found",1981,5297,32.15,-111.11,,,,,,
"Dhofar 125","Acapulcoite",2.7,"Found",2000,6910,18.99,54.6,,,,,,
"Fuzzy Creek","Iron, IVA",2.7,"Found",,10841,31.61,-99.9,,,,,,
"Goalpara","Ureilite",2.7,"Found",1868,10938,26.17,90.6,,,,,,
"Hamilton (Texas)","OC",2.7,"Found",1965,11484,31.59,-98.25,,,,,,
"Pine Bluffs","H",2.7,"Found",1935,18824,41.18,-104.07,,,,,,
"Rosario","Iron, IAB-MG",2.7,"Found",1896,22765,14.6,-88.68,,,,,,
"Schaap-Kooi","H4",2.7,"Found",1910,23456,-32.08,21.33,,,,,,
"Stockyard Creek","H5",2.7,"Found",2008,55551,-23.26,116.9,,,,,,
"Stonington","H5",2.7,"Found",1942,23727,37.28,-102.2,,,,,,
"Yamato 792771","H5",2.7,"Found",1979,28120,-71.5,35.67,,,,,,
"Derrick Peak 00201","Iron, IIAB",2.69,"Found",2000,6667,-80.07,156.38,,,,,,
"Meteorite Hills 00437","L6",2.69,"Found",2000,15672,-79.68,155.75,,,,,,
"Dhofar 478","H5/6",2.68,"Found",2001,7239,19.17,54.62,,,,,,
"Dar al Gani 455","L6",2.67,"Found",1998,6003,27.81,15.93,,,,,,
"Dar al Gani 853","CO3",2.66,"Found",1999,6400,27.2,15.9,,,,,,
"Hammadah al Hamra 146","H5",2.65,"Found",1995,11629,28.63,12.87,,,,,,
"Hammadah al Hamra 250","H5",2.65,"Found",1997,11733,28.83,12.93,,,,,,
"Touat 001","L6",2.65,"Found",2002,31350,27.64,-0.52,,,,,,
"Yamato 792764","H4",2.65,"Found",1979,28113,-71.5,35.67,,,,,,
"Asuka 87337","L5",2.64,"Found",1987,2694,-72,26,,,,,,
"Jiddat al Harasis 665","H5",2.64,"Found",2011,56220,19.78,55.6,,,,,,
"Al Huqf 070","L4",2.63,"Found",2009,51937,19.19,57.11,,,,,,
"Hammadah al Hamra 288","H6",2.63,"Found",1999,11771,29.08,12.58,,,,,,
"La Yesera 002","LL5",2.63,"Found",2003,12407,-23.27,-70.48,,,,,,
"LaPaz Icefield 02320","LL5",2.63,"Found",2002,12587,-86.37,-70,,,,,,
"Jiddat al Harasis 288","L5",2.62,"Found",2005,35606,19.78,56.48,,,,,,
"Sayh al Uhaymir 089","L/LL3.6/3.7",2.62,"Found",2001,23281,20.88,57.2,,,,,,
"Acfer 219","H6",2.61,"Found",1991,227,27.52,3.79,,,,,,
"Jiddat al Harasis 017","L6",2.61,"Found",1999,12105,19.24,56.12,,,,,,
"Qingzhen","EH3",2.6,"Fell",1976,18908,26.53,106.47,,,,,,
"Daraj 011","H3",2.6,"Found",1986,6550,29.51,11.5,,,,,,
"Kress (b)","L4",2.6,"Found",1966,12359,34.36,-101.73,,,,,,
"Lake Machattie","H5",2.6,"Found",1988,12445,-24.83,139.8,,,,,,
"Meteorite Hills 00439","LL5",2.6,"Found",2000,15674,-79.68,155.75,,,,,,
"Otis","L6",2.6,"Found",1940,18044,38.53,-99.05,,,,,,
"St. Lawrence","LL6",2.6,"Found",1965,23088,31.73,-101.51,,,,,,
"Yamato 791926","H5",2.6,"Found",1979,27275,-71.5,35.67,,,,,,
"Monahans (1998)","H5",2.59,"Fell",1998,16719,31.61,-102.86,,,,,,
"Dor el Gani","Iron, IIIAB",2.58,"Found",1972,7711,26.96,16.03,,,,,,
"Shişr 014","L5",2.58,"Found",2004,31329,18.33,53.89,,,,,,
"Silverton (Texas)","H4",2.58,"Found",1938,23601,34.53,-101.18,,,,,,
"Yamato 82188","H5",2.58,"Found",1982,29382,-71.5,35.67,,,,,,
"Zvonkov","H6",2.57,"Fell",1955,30415,50.2,30.25,,,,,,
"Asuka 881877","L4",2.57,"Found",1988,4586,-72,26,,,,,,
"Leonora","L4",2.57,"Found",1990,55550,-28.85,121.4,,,,,,
"Queen Alexandra Range 93019","L6",2.57,"Found",1993,19108,-84.62,161.91,,,,,,
"Sayh al Uhaymir 002","L5/6",2.57,"Found",1999,23194,20.97,56.88,,,,,,
"Yamato 75097","L6",2.57,"Found",1975,25138,-71.5,35.67,,,,,,
"Dar al Gani 190","CO3",2.55,"Found",1996,5738,27.16,15.94,,,,,,
"Dhofar 100","L5",2.55,"Found",1999,6799,18.91,54.48,,,,,,
"Yamato 793401","L6",2.55,"Found",1979,28750,-71.5,35.67,,,,,,
"Acfer 077","L6",2.54,"Found",1990,86,27.63,4.52,,,,,,
"Hammadah al Hamra 218","LL4-6",2.54,"Found",1997,11701,28.64,13.32,,,,,,
"Yamato 791776","H6",2.54,"Found",1979,27125,-71.5,35.67,,,,,,
"Allan Hills 82103","H5",2.53,"Found",1982,479,-76.9,156.99,,,,,,
"Dhofar 021","H5/6",2.53,"Found",2000,6720,18.15,54.18,,,,,,
"Lunan","H6",2.52,"Fell",1980,14754,24.8,103.3,,,,,,
"Burnabbie","H5",2.52,"Found",1965,5173,-32.05,126.17,,,,,,
"Dar al Gani 859","L6",2.52,"Found",1998,6406,26.98,16.35,,,,,,
"Dhofar 1029","H5",2.52,"Found",2003,6831,18.4,54.08,,,,,,
"Dhofar 257","H6",2.52,"Found",2001,7040,18.75,54.38,,,,,,
"Inland Forts 83500","Iron, ungrouped",2.52,"Found",1983,12035,-77.63,161,,,,,,
"Jiddat al Harasis 289","L6",2.52,"Found",2005,35607,19.91,56.49,,,,,,
"Sayh al Uhaymir 140","L4/5",2.52,"Found",2001,23332,21.21,57.21,,,,,,
"Dhofar 1243","LL4",2.51,"Found",2005,33935,18.88,54.47,,,,,,
"Dhofar 161","L4",2.51,"Found",2000,6946,19.27,54.85,,,,,,
"Dhofar 479","H6",2.51,"Found",2001,7240,19.2,54.65,,,,,,
"Happy (b)","OC",2.51,"Found",1972,11819,34.59,-101.99,,,,,,
"Lahmada 012","H5",2.51,"Found",1998,12425,27.23,-9.76,,,,,,
"Red Deer Hill","L6",2.51,"Found",1975,22538,53.08,-105.84,,,,,,
"Yamato 790946","L6",2.51,"Found",1979,26295,-71.5,35.67,,,,,,
"Anlong","H5",2.5,"Fell",1971,2305,25.15,105.18,,,,,,
"Bholghati","Howardite",2.5,"Fell",1905,5041,22.08,86.9,,,,,,
"Fuyang","Stone-uncl",2.5,"Fell",1977,10840,32.9,115.9,,,,,,
"Ibitira","Eucrite-mmict",2.5,"Fell",1957,11993,-20,-45,,,,,,
"Marilia","H4",2.5,"Fell",1971,15422,-22.25,-49.93,,,,,,
"Savtschenskoje","LL4",2.5,"Fell",1894,23190,47.22,29.87,,,,,,
"Tathlith","L6",2.5,"Fell",1967,23885,19.38,43.73,,,,,,
"Varre-Sai","L5",2.5,"Fell",2010,53633,-20.85,-41.73,,,,,,
"Asuka 882042","H4",2.5,"Found",1988,4751,-72,26,,,,,,
"Batesland","H5",2.5,"Found",1961,4973,43.13,-102.1,,,,,,
"Cachiyuyal","Iron, IIIE",2.5,"Found",1874,5190,-25,-69.5,,,,,,
"Euclid","H5",2.5,"Found",1970,10063,47.96,-96.7,,,,,,
"Illinois Gulch","Iron, ungrouped",2.5,"Found",1899,12024,46.68,-112.55,,,,,,
"Krzadka","Iron",2.5,"Found",1929,12365,50.38,21.73,,,,,,
"Leoville (b)","OC",2.5,"Found",1969,12767,39.61,-100.48,,,,,,
"Oberlin","LL5",2.5,"Found",1911,17975,39.8,-100.52,,,,,,
"Queen Alexandra Range 93015","L6",2.5,"Found",1993,19104,-84.54,162.7,,,,,,
"South Bend","Pallasite, PMG",2.5,"Found",1893,23675,41.65,-86.22,,,,,,
"Tanezrouft 010","L/LL3",2.5,"Found",1991,23811,26.07,0.37,,,,,,
"Tarahumara","Iron, IIE",2.5,"Found",1994,23876,28.5,-106.25,,,,,,
"Allan Hills A78112","L6",2.49,"Found",1978,1727,-76.72,159.67,,,,,,
"Dhofar 1082","H4/5",2.49,"Found",2001,6890,18.74,54.19,,,,,,
"Kybo 001","LL5",2.49,"Found",1984,12387,-31.18,126.42,,,,,,
"Acfer 166","H3-5",2.48,"Found",1990,175,27.52,4.23,,,,,,
"Dar al Gani 654","H4",2.48,"Found",1999,6201,26.8,16.07,,,,,,
"Dar al Gani 979","L6",2.48,"Found",2000,6519,27.45,16.19,,,,,,
"Dhofar 1540","H3.9",2.48,"Found",2006,53882,18.64,54.72,,,,,,
"Dhofar 274","L6",2.48,"Found",2001,7057,18.06,54.05,,,,,,
"Mount Howe 88403","Iron, ungrouped",2.48,"Found",1988,16778,-87.37,-149.5,,,,,,
"Queen Alexandra Range 94205","L6",2.48,"Found",1994,19847,-84,168,,,,,,
"Rammya","H5",2.48,"Found",1996,22383,31.17,-3.92,,,,,,
"Thumrayt 001","Pallasite, PMG",2.48,"Found",2006,45958,17.58,54.35,,,,,,
"Allan Hills A77230","L4",2.47,"Found",1977,1541,-76.72,159.67,,,,,,
"Dhofar 978","L4",2.47,"Found",2004,30549,19.23,54.94,,,,,,
"Hammadah al Hamra 225","H4-5",2.47,"Found",1997,11708,28.96,12.33,,,,,,
"Northwest Africa 514","H5",2.47,"Found",1999,17765,30.13,-6.88,,,,,,
"Samelia","Iron, IIIAB",2.46,"Fell",1921,23115,25.67,74.87,,,,,,
"Cockburn","L6",2.46,"Found",1946,5391,-32.13,141.03,,,,,,
"Dar al Gani 298","LL4",2.46,"Found",1997,5846,26.79,16.7,,,,,,
"Gujargaon","H5",2.45,"Fell",1982,11448,22.98,76.05,,,,,,
"Nejo","L6",2.45,"Fell",1970,16941,9.5,35.33,,,,,,
"Dhofar 1500","L~6",2.45,"Found",2009,53789,19.18,54.59,,,,,,
"Krasnoi-Ugol","L6",2.44,"Fell",1829,12355,54.03,40.9,,,,,,
"Vishnupur","LL4-6",2.44,"Fell",1906,24187,23.1,87.43,,,,,,
"Sand Creek","H5",2.44,"Found",1986,23133,39.43,-100,,,,,,
"Coyote Dry Lake 024","H5",2.43,"Found",1999,30455,35.07,-116.77,,,,,,
"Elephant Moraine 92029","Iron, ungrouped",2.43,"Found",1992,9431,-76.05,156.01,,,,,,
"Morden","Iron, IAB?",2.43,"Found",1922,16743,-30.5,142.33,,,,,,
"Mount Prestrud 95400","H5",2.43,"Found",1995,16786,-86.57,-165.12,,,,,,
"Queen Alexandra Range 94204","EH7",2.43,"Found",1994,19846,-84,168,,,,,,
"Taouz 001","L6",2.43,"Found",1991,23874,30.9,-4.24,,,,,,
"Honolulu","L5",2.42,"Fell",1825,11904,21.3,-157.87,,,,,,
"Grosvenor Mountains 85206","H5",2.42,"Found",1985,11215,-85.67,175,,,,,,
"Jiddat al Harasis 503","H3-4",2.42,"Found",2007,51560,19.75,56.31,,,,,,
"Majuba 002","H4",2.42,"Found",2003,30753,40.63,-118.42,,,,,,
"Miller Range 99300","H5",2.42,"Found",1999,16656,-83.25,157,,,,,,
"Messina","L5",2.41,"Fell",1955,15495,38.18,15.57,,,,,,
"Catalina 027","L6",2.41,"Found",2010,57295,-25.23,-69.72,,,,,,
"Dar al Gani 251","L6",2.41,"Found",1997,5799,27.12,16.38,,,,,,
"Dhofar 946","LL5",2.41,"Found",2002,30526,19.17,54.4,,,,,,
"El Qoseir","Iron, ungrouped",2.41,"Found",1921,7815,26.28,34.25,,,,,,
"Geologists Range 85700","L6",2.41,"Found",1985,10872,-82.5,155.5,,,,,,
"Paposo 002","L/LL4",2.41,"Found",2011,54773,-25,-70.47,,,,,,
"Calivo","Stone-uncl",2.4,"Fell",1916,5200,11.75,122.33,,,,,,
"Ehole","H5",2.4,"Fell",1961,7774,-17.3,15.83,,,,,,
"Balfour Downs","Iron, IAB-sLL",2.4,"Found",1962,4927,-22.75,120.83,,,,,,
"Chamberlin","H5",2.4,"Found",1941,5317,36.2,-102.45,,,,,,
"Colby (Kansas)","H5",2.4,"Found",1940,5394,39.42,-101.05,,,,,,
"Comanche (stone)","L5",2.4,"Found",1956,5415,31.99,-98.65,,,,,,
"Dhofar 1507","L~6",2.4,"Found",2009,53796,18.68,54.15,,,,,,
"Jiddat al Harasis 670","H5",2.4,"Found",2011,56225,19.65,55.72,,,,,,
"Acfer 319","L6",2.39,"Found",1992,327,27.55,3.82,,,,,,
"Dhofar 544","H5",2.39,"Found",2001,7305,19.32,54.52,,,,,,
"Krider","H6",2.39,"Found",1978,12362,34.47,-103.92,,,,,,
"Queen Alexandra Range 94203","L6",2.39,"Found",1994,19845,-84,168,,,,,,
"Blackwell","L5",2.38,"Fell",1906,5068,36.83,-97.33,,,,,,
"Dhofar 195","H3-5",2.38,"Found",1999,6979,18.26,54.25,,,,,,
"Hammadah al Hamra 003","H5",2.38,"Found",1990,11488,28.98,12.18,,,,,,
"Dhofar 293","L5",2.37,"Found",2001,7076,19.11,54.86,,,,,,
"Grosvenor Mountains 85207","L6",2.37,"Found",1985,11216,-85.67,175,,,,,,
"Queen Alexandra Range 99004","H5",2.37,"Found",1999,21457,-84,168,,,,,,
"Sayh al Uhaymir 235","L6",2.37,"Found",2002,23408,20.54,57.2,,,,,,
"Wichita","H6",2.37,"Found",1971,24256,37.59,-97.21,,,,,,
"Yamato 74014","H6",2.37,"Found",1974,24392,-71.84,36.3,,,,,,
"Fayetteville","H4",2.36,"Fell",1934,10079,36.05,-94.17,,,,,,
"Allan Hills 85017","L6",2.36,"Found",1985,883,-76.9,156.76,,,,,,
"Dhofar 041","H5",2.36,"Found",1999,6740,19.1,54.82,,,,,,
"Dhofar 408","L6",2.36,"Found",2001,7189,18.69,54.13,,,,,,
"Queen Alexandra Range 97001","Howardite",2.36,"Found",1997,20408,-84,168,,,,,,
"Drayton","H4/5",2.35,"Found",1982,7729,48.67,-97.12,,,,,,
"Hammadah al Hamra 248","H3.9",2.35,"Found",1997,11731,28.64,12.78,,,,,,
"Sayh al Uhaymir 547","L5",2.35,"Found",2011,56205,20.1,56.71,,,,,,
"Tanezrouft 002","H5",2.35,"Found",1989,23803,24.4,1.03,,,,,,
"Tanezrouft 058","L6",2.35,"Found",2002,23859,25.33,0.55,,,,,,
"Graves Nunataks 98049","L6",2.34,"Found",1998,11041,-86.72,-141.5,,,,,,
"Sayh al Uhaymir 098","H5",2.34,"Found",2000,23290,21.14,56.81,,,,,,
"Sayh al Uhaymir 531","H5",2.34,"Found",2002,55277,21.01,57.32,,,,,,
"Uruq al Hadd 001","LL5",2.34,"Found",2003,24127,18.44,52.98,,,,,,
"Hammadah al Hamra 344","H~6",2.32,"Found",2000,55727,28.99,12.98,,,,,,
"Yamato 74647","H5",2.32,"Found",1974,25025,-71.7,36.02,,,,,,
"Dar al Gani 460","L6",2.31,"Found",1998,6008,27.8,15.92,,,,,,
"El-Oued","H4",2.31,"Found",1952,47729,31.53,8.88,,,,,,
"Graves Nunataks 98031","H4",2.31,"Found",1998,11023,-86.72,-141.5,,,,,,
"Sayh al Uhaymir 223","L5",2.31,"Found",2002,23396,20.49,57.37,,,,,,
"Cape Girardeau","H6",2.3,"Fell",1846,5260,37.27,-89.58,,,,,,
"Långhalsen","L6",2.3,"Fell",1947,12461,58.85,16.73,,,,,,
"Nobleborough","Eucrite-pmict",2.3,"Fell",1823,16984,44.08,-69.48,,,,,,
"Colfax","Iron, IAB-ung",2.3,"Found",1880,5402,35.3,-81.73,,,,,,
"Cookeville","Iron, IAB-ung",2.3,"Found",1913,5431,36.17,-85.52,,,,,,
"Dar al Gani 746","H5",2.3,"Found",1998,6293,27.15,16.1,,,,,,
"Daraj 116","L5/6",2.3,"Found",1986,6575,29.51,11.81,,,,,,
"Dhofar 1010","H4",2.3,"Found",2002,6811,18.55,54,,,,,,
"Dhofar 1495","L4",2.3,"Found",2008,51056,18.67,54.43,,,,,,
"Eunice","H5",2.3,"Found",1961,10064,34.47,-101.76,,,,,,
"Grant County","L6",2.3,"Found",1936,10958,37.47,-101.43,,,,,,
"Hobbs","H4",2.3,"Found",1933,11891,32.73,-103.1,,,,,,
"Kramer Creek","L4",2.3,"Found",1966,12354,38.39,-104.18,,,,,,
"Makarewa","L6",2.3,"Found",1879,15392,-46.32,168.4,,,,,,
"Pleasanton","H5",2.3,"Found",1935,18848,38.18,-94.72,,,,,,
"Shişr 045","H6",2.3,"Found",2005,34554,18.15,53.95,,,,,,
"Tule Draw","H5",2.3,"Found",1981,24064,34.67,-102,,,,,,
"Valentine","L4",2.3,"Found",1942,24148,42.93,-100.75,,,,,,
"Acfer 228","L5",2.29,"Found",1991,236,27.57,4.12,,,,,,
"Northwest Africa 7370","Diogenite-olivine",2.29,"Found",2009,56073,22.83,-6.18,,,,,,
"Yamato 74445","L6",2.29,"Found",1974,24823,-71.74,35.94,,,,,,
"Dumas (b)","H6",2.28,"Found",1980,7742,35.93,-101.9,,,,,,
"Hereford","OC",2.28,"Found",1970,11876,33.8,-102.24,,,,,,
"Ramlat as Sahmah 385","LL3.3",2.28,"Found",2010,55654,20.05,56.46,,,,,,
"Dundrum","H5",2.27,"Fell",1865,7745,52.55,-8.03,,,,,,
"Bowesmont","L6",2.27,"Found",1962,5124,48.68,-97.17,,,,,,
"Circle Back","L6",2.27,"Found",1977,5367,34.03,-102.68,,,,,,
"Dhofar 1664","H6",2.27,"Found",2011,55582,19.18,54.93,,,,,,
"Dhofar 922","L6",2.27,"Found",2003,7625,19.41,54.57,,,,,,
"Jiddat al Harasis 644","L6",2.27,"Found",2010,55474,19.81,56.67,,,,,,
"Erxleben","H6",2.25,"Fell",1812,10049,52.22,11.25,,,,,,
"Kukschin","L6",2.25,"Fell",1938,12368,51.15,31.7,,,,,,
"Berdyansk","L6",2.25,"Found",1843,5027,46.75,36.82,,,,,,
"Derrick Peak A78014","Iron, IIAB",2.25,"Found",1978,6690,-80.07,156.38,,,,,,
"Hammadah al Hamra 115","H5",2.25,"Found",1995,11598,28.56,13.01,,,,,,
"Kaalijarv","Iron, IAB-MG",2.25,"Found",1937,12217,58.4,22.67,,,,,,
"MacAlpine Hills 88115","H5",2.25,"Found",1988,15279,-84.22,160.5,,,,,,
"Allan Hills A81018","L5",2.24,"Found",1981,1978,-76.83,158.19,,,,,,
"Dar al Gani 009","H6",2.24,"Found",1995,5525,27.15,16.16,,,,,,
"LaPaz Icefield 02210","LL5",2.24,"Found",2002,12477,-86.37,-70,,,,,,
"Yamato 791630","L4",2.24,"Found",1979,26979,-71.5,35.67,,,,,,
"Tianzhang","H5",2.23,"Fell",1986,23984,32.95,118.99,,,,,,
"Allan Hills A77004","H4",2.23,"Found",1977,1320,-76.72,159.67,,,,,,
"Briggsdale","Iron, IIIAB",2.23,"Found",1949,5141,40.67,-104.32,,,,,,
"Queen Alexandra Range 99008","H5",2.23,"Found",1999,21460,-84,168,,,,,,
"Karatu","LL6",2.22,"Fell",1963,12258,-3.5,35.58,,,,,,
"Dar al Gani 742","H5",2.22,"Found",1998,6289,27.13,16.05,,,,,,
"Dar al Gani 758","L6",2.22,"Found",1999,6305,27.77,15.94,,,,,,
"Dhofar 1731","H5",2.22,"Found",2011,56358,18.57,54.16,,,,,,
"Dhofar 628","H5/6",2.22,"Found",2001,7385,19.11,54.81,,,,,,
"Jiddat al Harasis 328","L6",2.22,"Found",2006,45852,19.74,55.71,,,,,,
"Jiddat al Harasis 711","H5",2.22,"Found",2011,56263,19.55,55.43,,,,,,
"Dar al Gani 684","Eucrite",2.21,"Found",1999,6231,27.08,16.38,,,,,,
"Dhofar 109","L6",2.21,"Found",2000,6894,18.74,54.48,,,,,,
"Lewis Cliff 86490","L6",2.21,"Found",1986,13420,-84.25,161.35,,,,,,
"Wittekrantz","L5",2.2,"Fell",1880,24323,-32.5,23,,,,,,
"Adrar Madet 002","LL3",2.2,"Found",2002,386,18.61,10.49,,,,,,
"Bagdad","Iron, IIIAB",2.2,"Found",1959,4920,34.61,-113.4,,,,,,
"Dar al Gani 205","H5-6",2.2,"Found",1996,5753,27.64,15.9,,,,,,
"Dhofar 008","L3.3",2.2,"Found",1999,6707,18.34,54.19,,,,,,
"Ferintosh","OC",2.2,"Found",1965,10090,52.8,-112.98,,,,,,
"Hammadah al Hamra 331","L5/6",2.2,"Found",2003,30719,29.82,12.95,,,,,,
"Juderina Spring","L6",2.2,"Found",1990,45814,-25.92,119.3,,,,,,
"Plainview (1950)","H",2.2,"Found",1950,18842,34.12,-101.78,,,,,,
"Queen Alexandra Range 93022","H5",2.2,"Found",1993,19111,-84,168,,,,,,
"Seligman","Iron, IAB-MG",2.2,"Found",1949,23485,35.28,-112.87,,,,,,
"Shişr 020","H4-6",2.2,"Found",2001,23555,18.56,53.89,,,,,,
"Allan Hills A77289","Iron, IAB-MG",2.19,"Found",1977,1599,-76.72,159.67,,,,,,
"Jiddat al Harasis 659","L3.6",2.19,"Found",2011,56104,19.95,56.33,,,,,,
"Yamato 74097","Diogenite",2.19,"Found",1974,24475,-71.83,36.33,,,,,,
"Bogoslovka","H5",2.18,"Found",1948,5096,52.5,68.8,,,,,,
"Jiddat al Harasis 012","L6",2.18,"Found",1999,12100,19.2,55.77,,,,,,
"Sarir Qattusah 002","H6",2.18,"Found",1995,23181,26.81,15.87,,,,,,
"Dhofar 1651","L6",2.17,"Found",2011,55569,18.99,54.47,,,,,,
"Queen Alexandra Range 99016","LL5",2.17,"Found",1999,21468,-84,168,,,,,,
"Yamato 790724","Iron, IIIAB",2.17,"Found",1979,26073,-71.5,35.67,,,,,,
"Zubkovsky","L6",2.17,"Found",2003,31357,49.79,41.5,,,,,,
"Cosmo Newberry","Iron, IIAB",2.16,"Found",1980,5452,-27.95,122.88,,,,,,
"Dhofar 049","L4/5",2.16,"Found",1999,6748,19.18,54.85,,,,,,
"Lewis Cliff 86012","L6",2.16,"Found",1986,12952,-84.28,161.64,,,,,,
"Lider (a)","L5",2.16,"Found",1972,14648,34.66,-101.64,,,,,,
"Statesboro","L5",2.16,"Found",2000,23715,32.44,-81.92,,,,,,
"Dar al Gani 489","Martian (shergottite)",2.15,"Found",1997,6037,27.13,16.08,,,,,,
"Laurens County","Iron, ungrouped",2.15,"Found",1857,12741,34.5,-82.03,,,,,,
"Parma Canyon","Iron",2.15,"Found",1940,18107,43.8,-117,,,,,,
"Whetstone Mountains","H5",2.14,"Fell",2009,49514,31.96,-110.43,,,,,,
"Acfer 021","H6",2.14,"Found",1989,31,27.55,3.62,,,,,,
"Allan Hills 84056","L6",2.14,"Found",1984,658,-76.72,159.67,,,,,,
"Asuka 881395","L6",2.14,"Found",1988,4104,-72,26,,,,,,
"Jiddat al Harasis 563","H6",2.14,"Found",2008,50952,19.67,56.2,,,,,,
"Jiddat al Harasis 719","L6",2.14,"Found",,56433,19.66,55.73,,,,,,
"Scott City","H5",2.14,"Found",1905,23462,38.47,-100.93,,,,,,
"Yamato 791088","H6",2.14,"Found",1979,26437,-71.5,35.67,,,,,,
"Pantar","H5",2.13,"Fell",1938,18098,8.07,124.28,,,,,,
"Prambachkirchen","L6",2.13,"Fell",1932,18883,48.3,13.94,,,,,,
"Borrego","L6",2.13,"Found",1930,5115,33.27,-116.38,,,,,,
"Coyote Dry Lake 061","H5",2.13,"Found",1999,30459,35.05,-116.77,,,,,,
"Dar al Gani 653","H5",2.13,"Found",1999,6200,27.02,16.37,,,,,,
"Dhofar 1079","H4/5",2.13,"Found",2001,6886,18.74,54.2,,,,,,
"Goose Creek","H5",2.13,"Found",1999,10946,37.44,-98.32,,,,,,
"Meteorite Hills 96512","L6",2.13,"Found",1996,16571,-79.68,159.75,,,,,,
"Pierceville (stone)","L6",2.13,"Found",1939,18820,37.87,-100.67,,,,,,
"Sayh al Uhaymir 253","H5",2.13,"Found",2002,23426,20.6,57.16,,,,,,
"Duwun","L6",2.12,"Fell",1943,7754,33.43,127.27,,,,,,
"Patrimonio","L6",2.12,"Fell",1950,18116,-19.53,-48.57,,,,,,
"Dhofar 1530","H6",2.12,"Found",2006,52399,18.22,54.32,,,,,,
"Shişr 039","L4-5",2.12,"Found",2002,23574,18.55,53.96,,,,,,
"Acfer 273","H5/6",2.11,"Found",1991,281,27.62,4.46,,,,,,
"Allan Hills A77214","L3.4",2.11,"Found",1977,1525,-76.72,159.67,,,,,,
"Dar al Gani 999","Ureilite-pmict",2.11,"Found",2000,6539,27.03,16.37,,,,,,
"Perryton","LL6",2.11,"Found",1975,18794,36.35,-100.73,,,,,,
"Asuka 881887","LL6",2.1,"Found",1988,4596,-72,26,,,,,,
"Atwood","L6",2.1,"Found",1963,4891,40.52,-103.27,,,,,,
"Daraj 015","H4",2.1,"Found",1986,6554,29.56,12.03,,,,,,
"Dhofar 009","L6",2.1,"Found",1999,6708,18.28,54.11,,,,,,
"Dhofar 1531","L6",2.1,"Found",2006,52400,18.22,54.32,,,,,,
"El Gouanem","Ureilite",2.1,"Found",2000,7805,30.1,-6.85,,,,,,
"Hartley","L",2.1,"Found",1967,11847,35.94,-102.16,,,,,,
"Mount Howe 88400","H6",2.1,"Found",1988,16775,-87.37,-149.5,,,,,,
"Queen Alexandra Range 93021","L5",2.1,"Found",1993,19110,-84.58,162.96,,,,,,
"Winterhaven","Howardite",2.1,"Found",2002,47732,32.95,-114.67,,,,,,
"Yamato 82053","H5",2.1,"Found",1982,29247,-71.5,35.67,,,,,,
"Plantersville","H6",2.09,"Fell",1930,18846,30.7,-96.12,,,,,,
"Dhofar 273","L5",2.09,"Found",2001,7056,18.38,54.15,,,,,,
"Haviland (b)","H5",2.09,"Found",1976,11861,37.6,-99.13,,,,,,
"Sayh al Uhaymir 239","L4",2.09,"Found",2003,23412,20.56,56.85,,,,,,
"Al Huqf 065","L6",2.08,"Found",2007,48537,19.32,57.23,,,,,,
"Catalina 020","L6",2.08,"Found",2010,57186,-25.23,-69.72,,,,,,
"Hammadah al Hamra 010","H5",2.08,"Found",1990,11495,28.65,12.63,,,,,,
"Sayh al Uhaymir 471","L4-6",2.08,"Found",2002,48636,20.51,57.29,,,,,,
"Sayh al Uhaymir 556","H6",2.08,"Found",2011,56352,21.04,57.04,,,,,,
"Asuka 87010","L6",2.07,"Found",1987,2367,-72,26,,,,,,
"Dhofar 272","L5",2.07,"Found",2001,7055,18.44,54.12,,,,,,
"Ellisras","Iron",2.07,"Found",1970,10023,-23.83,27.92,,,,,,
"Queen Alexandra Range 99024","H6",2.07,"Found",1999,21476,-84,168,,,,,,
"Willowbar","L6",2.07,"Found",1971,24278,36.73,-102.2,,,,,,
"Sayh al Uhaymir 017","L4",2.06,"Found",1999,23209,20.97,57.32,,,,,,
"Yamato 74013","Diogenite",2.06,"Found",1974,24391,-71.84,36.3,,,,,,
"Soroti","Iron, ungrouped",2.05,"Fell",1945,23671,1.7,33.63,,,,,,
"Acfer 054","H5",2.05,"Found",1989,64,27.7,3.93,,,,,,
"Acfer 244","H6",2.05,"Found",1991,252,27.52,3.81,,,,,,
"Ilafegh 011","L5",2.05,"Found",1989,12016,21.63,1.52,,,,,,
"Reid 007","L6",2.05,"Found",1982,22562,-30.65,128.41,,,,,,
"Yamato 791406","H4",2.05,"Found",1979,26755,-71.5,35.67,,,,,,
"Elephant Moraine 96027","H6",2.04,"Found",1996,9621,-76.18,157.17,,,,,,
"Krasnodar","L5",2.04,"Found",2006,44716,45.01,39.21,,,,,,
"Milton","Pallasite, ungrouped",2.04,"Found",2000,16691,40.29,-95.38,,,,,,
"Dar al Gani 987","H5",2.03,"Found",2002,6527,27.06,16.39,,,,,,
"El Djouf 003","L6",2.03,"Found",1989,7799,23.5,-1.85,,,,,,
"Grosvenor Mountains 95505","L3.4",2.03,"Found",1995,11233,-85.67,175,,,,,,
"Sayh al Uhaymir 212","L5",2.03,"Found",2002,23385,20.4,57.04,,,,,,
"Itapicuru-Mirim","H5",2.02,"Fell",1879,12056,-3.4,-44.33,,,,,,
"Acfer 031","H5",2.02,"Found",1989,41,27.67,4.35,,,,,,
"Dar al Gani 003","H6",2.02,"Found",1995,5519,27.13,16.03,,,,,,
"Dar al Gani 476","Martian (shergottite)",2.02,"Found",1998,6024,27.35,16.2,,,,,,
"Dar al Gani 812","H5",2.02,"Found",2000,6359,26.96,16.46,,,,,,
"Elephant Moraine 87546","H6",2.02,"Found",1987,8096,-76.18,157.17,,,,,,
"Los Vientos 013","H6",2.02,"Found",2011,57198,-24.68,-69.77,,,,,,
"Northwest Africa 539","LL3.5",2.02,"Found",2000,17786,31.1,-5.18,,,,,,
"Queen Alexandra Range 99012","H4",2.02,"Found",1999,21464,-84,168,,,,,,
"Sayh al Uhaymir 554","H6",2.02,"Found",2010,56350,20.24,56.64,,,,,,
"Acfer 073","H5",2.01,"Found",1990,82,27.53,3.85,,,,,,
"Dhofar 074","H4",2.01,"Found",1999,6773,19.17,54.78,,,,,,
"Dhofar 1535","H6",2.01,"Found",2006,52415,18.52,54.11,,,,,,
"Dhofar 269","H5",2.01,"Found",2000,7052,19.04,54.52,,,,,,
"Graves Nunataks 95202","H5",2.01,"Found",1995,10962,-86.72,-141.5,,,,,,
"Hammadah al Hamra 184","H4",2.01,"Found",1996,11667,28.48,13.03,,,,,,
"Albareto","L/LL4",2,"Fell",1766,453,44.65,11.02,,,,,,
"Assisi","H5",2,"Fell",1886,2353,43.03,12.55,,,,,,
"Aumieres","L6",2,"Fell",1842,4900,44.33,3.23,,,,,,
"Beuste","L5",2,"Fell",1859,5034,43.22,-0.23,,,,,,
"Danville","L6",2,"Fell",1868,5514,34.4,-87.07,,,,,,
"Ibbenbüren","Diogenite",2,"Fell",1870,11992,52.28,7.7,,,,,,
"Kaidun","CR2",2,"Fell",1980,12228,15,48.3,,,,,,
"La Colina","H5",2,"Fell",1924,12395,-37.33,-61.53,,,,,,
"Lesves","L6",2,"Fell",1896,12772,50.37,4.73,,,,,,
"Macibini","Eucrite-pmict",2,"Fell",1936,15372,-28.83,31.95,,,,,,
"Malakal","L5",2,"Fell",1970,15394,9.5,31.75,,,,,,
"Parambu","LL5",2,"Fell",1967,18102,-6.23,-40.7,,,,,,
"Pavlovka","Howardite",2,"Fell",1882,18177,52.03,43,,,,,,
"Sinnai","H6",2,"Fell",1956,23613,39.3,9.2,,,,,,
"Tounkin","OC",2,"Fell",1824,24037,51.73,102.53,,,,,,
"Zebrak","H5",2,"Fell",1824,30397,49.88,13.92,,,,,,
"Acfer 298","L6",2,"Found",1992,306,27.71,4.17,,,,,,
"Allan Hills 84058","L6",2,"Found",1984,660,-77.02,157,,,,,,
"Allan Hills A77257","Ureilite",2,"Found",1977,1568,-76.72,159.67,,,,,,
"Boogaldi","Iron, IVA",2,"Found",1900,5107,-31.15,149.12,,,,,,
"Brownell","L6",2,"Found",1971,5150,38.7,-99.71,,,,,,
"Choolkooning 001","L6",2,"Found",1991,5360,-29.92,129.83,,,,,,
"Dar al Gani 682","H6",2,"Found",1999,6229,27.03,16.18,,,,,,
"Hammadah al Hamra 126","Ureilite",2,"Found",1995,11609,28.48,12.95,,,,,,
"Haniet-el-Beguel","Iron, IAB complex",2,"Found",1888,11817,32.48,4.4,,,,,,
"Kinley","L6",2,"Found",1965,12319,52.05,-107.23,,,,,,
"Monturaqui","Iron, IAB?",2,"Found",1965,16731,-23.93,-68.28,,,,,,
"Nagy-Vázsony","Iron, IAB-sLL",2,"Found",1890,16894,46.98,17.7,,,,,,
"Northwest Africa 010","H4",2,"Found",1999,17020,29.92,-5.58,,,,,,
"Northwest Africa 820","L3-5",2,"Found",1999,17852,31.42,-4.18,,,,,,
"Paposo","LL6",2,"Found",2001,31285,-25.14,-70.32,,,,,,
"Post","L",2,"Found",1965,18877,33.12,-101.38,,,,,,
"United Arab Emirates 002","L6",2,"Found",2005,51025,22.84,55.14,,,,,,
"Varpaisjärvi","L6",2,"Found",1913,24153,63.3,27.73,,,,,,
"Walcott","H5",2,"Found",1983,24201,32.4,-101.95,,,,,,
"Weatherford","CBa",2,"Found",1926,24226,35.5,-98.7,,,,,,
"Wilmot","H6",2,"Found",1944,24280,37.38,-96.87,,,,,,
"Asuka 881146","LL3.9",1.99,"Found",1988,3855,-72,26,,,,,,
"Burns Flat","L6",1.99,"Found",1971,5174,35.33,-99.15,,,,,,
"Chaunskij","Mesosiderite-an",1.99,"Found",1985,5333,69.1,172.6,,,,,,
"Foster","H4",1.99,"Found",1975,10170,33.1,-102.27,,,,,,
"Glasston","L5",1.99,"Found",1969,10928,48.72,-97.3,,,,,,
"Jiddat al Harasis 521","L6",1.99,"Found",2008,51408,19.53,55.18,,,,,,
"Queen Alexandra Range 93013","H5",1.99,"Found",1993,19102,-84.63,162.49,,,,,,
"Ramlat as Sahmah 292","L6",1.99,"Found",2009,51893,20.6,55.52,,,,,,
"Rencoret 001","H6",1.99,"Found",1996,56552,-23.18,-69.72,,,,,,
"Jiddat al Harasis 668","H5",1.98,"Found",2011,56223,19.76,55.59,,,,,,
"Queen Alexandra Range 93016","L6",1.98,"Found",1993,19105,-84.62,162.43,,,,,,
"Ternera","Iron, IVB",1.98,"Found",1891,23903,-27.33,-69.8,,,,,,
"Jalandhar","Iron",1.97,"Fell",1621,12069,31,75,,,,,,
"Dhofar 162","L6",1.97,"Found",2000,6947,19.13,54.37,,,,,,
"Elephant Moraine 83227","Eucrite-pmict",1.97,"Found",1983,7869,-76.3,157.27,,,,,,
"Clarendon (a)","H5",1.96,"Found",1979,5369,34.91,-100.91,,,,,,
"Dhofar 1449","L/LL~6",1.96,"Found",2002,51710,19.23,54.88,,,,,,
"Jiddat al Harasis 020","L6",1.96,"Found",2000,12108,19.83,56.09,,,,,,
"Ramlat as Sahmah 287","Diogenite",1.96,"Found",2009,51888,20.48,55.53,,,,,,
"Thurman","OC",1.96,"Found",1965,23980,39.52,-103.17,,,,,,
"Lonewolf Nunataks 94100","EL6",1.95,"Found",1994,14684,-81.33,152.83,,,,,,
"Sayh al Uhaymir 221","L5",1.95,"Found",2002,23394,20.49,57.4,,,,,,
"Acfer 053","H6",1.94,"Found",1989,63,27.73,4.05,,,,,,
"Dhofar 1521","L6",1.94,"Found",2008,52394,18.4,54.55,,,,,,
"Hammadah al Hamra 144","L5",1.94,"Found",1995,11627,28.51,13.01,,,,,,
"Ramlat al Wahibah 007","H5",1.94,"Found",2006,45878,21.17,58.41,,,,,,
"Vavilovka","LL6",1.93,"Fell",1876,24154,46.15,32.83,,,,,,
"Allan Hills 84001","Martian (OPX)",1.93,"Found",1984,604,-76.92,156.77,,,,,,
"Dar al Gani 005","CO3",1.93,"Found",1995,5521,27.16,15.95,,,,,,
"Dar al Gani 008","L6",1.93,"Found",1995,5524,27.16,16.11,,,,,,
"Dhofar 277","L6",1.93,"Found",2001,7060,18.35,54.34,,,,,,
"Dhofar 279","L6",1.93,"Found",2001,7062,18.27,54.34,,,,,,
"Hickiwan","H5",1.93,"Found",1974,11881,32.36,-112.41,,,,,,
"Jiddat al Harasis 580","H5",1.93,"Found",2009,51925,19.42,56.7,,,,,,
"Odessa (stone)","H4",1.93,"Found",1960,17986,46.5,30.77,,,,,,
"Queen Alexandra Range 99023","H5",1.93,"Found",1999,21475,-84,168,,,,,,
"Guêa","Stone-uncl",1.92,"Fell",1891,11440,43.77,20.23,,,,,,
"Adrar 001","H4/5",1.92,"Found",1990,381,28.05,0.17,,,,,,
"Dar al Gani 463","L6",1.92,"Found",1998,6011,27.01,15.86,,,,,,
"Hammadah al Hamra 227","H4-5",1.92,"Found",1997,11710,28.66,12.65,,,,,,
"Jiddat al Harasis 254","H5",1.92,"Found",2005,35571,19.99,56.35,,,,,,
"Acapulco","Acapulcoite",1.91,"Fell",1976,10,16.88,-99.9,,,,,,
"Asuka 880715","H5",1.91,"Found",1988,3424,-72,26,,,,,,
"Dhofar 1251","LL6",1.91,"Found",2005,33943,18.57,54.2,,,,,,
"Dhofar 267","H5",1.91,"Found",2000,7050,18.33,54.22,,,,,,
"Estación Imilac","H5",1.91,"Found",2004,54717,-24.23,-68.89,,,,,,
"Hammadah al Hamra 090","L6",1.91,"Found",1995,11573,28.49,13.22,,,,,,
"Sayh al Uhaymir 172","H6",1.91,"Found",2002,31321,20.99,57.28,,,,,,
"Yamato 791539","LL",1.91,"Found",1979,26888,-71.5,35.67,,,,,,
"Yamato 82050","CO3.2",1.91,"Found",1982,29244,-71.5,35.67,,,,,,
"Bielokrynitschie","H4",1.9,"Fell",1887,5043,50.13,27.17,,,,,,
"Dubrovnik","L3-6",1.9,"Fell",1951,7736,42.46,18.44,,,,,,
"Guangrao","L6",1.9,"Fell",1980,11437,37.1,118.4,,,,,,
"Kagarlyk","L6",1.9,"Fell",1908,12227,49.87,30.83,,,,,,
"Novo-Urei","Ureilite",1.9,"Fell",1886,17933,54.82,46,,,,,,
"Richland Springs","OC",1.9,"Fell",1980,22602,31.25,-99.03,,,,,,
"Asuka 881539","H3.8",1.9,"Found",1988,4248,-72,26,,,,,,
"Blaine Lake","L6",1.9,"Found",1974,5070,52.77,-106.9,,,,,,
"Dar al Gani 453","L6",1.9,"Found",1998,6001,27.8,15.94,,,,,,
"Elton","Iron, ungrouped",1.9,"Found",1936,10029,33.72,-100.83,,,,,,
"Jiddat al Harasis 313","L6",1.9,"Found",2005,35630,19.72,55.71,,,,,,
"Jiddat al Harasis 698","H4-5",1.9,"Found",2011,56250,19.13,55.56,,,,,,
"Sayh al Uhaymir 073","H5",1.9,"Found",2001,23265,20.65,57.17,,,,,,
"Seneca","H4",1.9,"Found",1936,23497,39.83,-96.07,,,,,,
"Ultuna","H",1.9,"Found",1944,24109,59.82,17.67,,,,,,
"Allan Hills 84064","H5",1.89,"Found",1984,666,-76.91,156.94,,,,,,
"Dar al Gani 248","H6",1.89,"Found",1997,5796,27.21,16.2,,,,,,
"Sulphur Springs Draw","H5",1.89,"Found",1990,23740,32.98,-102.38,,,,,,
"Moore County","Eucrite-cm",1.88,"Fell",1913,16736,35.42,-79.38,,,,,,
"Allan Hills A77288","H6",1.88,"Found",1977,1598,-76.72,159.67,,,,,,
"Dhofar 1272","LL4",1.88,"Found",2005,33964,18.68,54.29,,,,,,
"Hammadah al Hamra 205","H5",1.88,"Found",1997,11688,28.57,13.28,,,,,,
"Jiddat al Harasis 723","H4",1.88,"Found",,56437,19.64,55.58,,,,,,
"Sayh al Uhaymir 163","H5",1.88,"Found",2001,23350,21.04,57.33,,,,,,
"Al Huqf 055","H4",1.87,"Found",2001,45825,19.64,57.29,,,,,,
"Dar al Gani 608","L6",1.87,"Found",1998,6155,26.97,16.36,,,,,,
"Kaffir (a)","L5",1.87,"Found",1965,12223,34.62,-101.92,,,,,,
"Orimattila","H4",1.87,"Found",1974,18028,60.58,25.58,,,,,,
"Sayh al Uhaymir 033","H6",1.87,"Found",2000,23225,21,57.29,,,,,,
"Shişr 163","H4",1.87,"Found",2002,48650,18.56,53.91,,,,,,
"Thiel Mountains 07001","H6",1.87,"Found",2007,51010,-85.23,-90.44,,,,,,
"Linum","L6",1.86,"Fell",1854,14655,52.75,12.9,,,,,,
"Al Huqf 006","L6",1.86,"Found",2002,439,19.84,57.01,,,,,,
"Dar al Gani 402","L6",1.86,"Found",1998,5950,27.81,15.91,,,,,,
"Dhofar 1497","L3-5",1.86,"Found",2008,51566,18.73,54.4,,,,,,
"Dhofar 780","H5/6",1.86,"Found",2000,7526,19.72,54.68,,,,,,
"Fenbark","H5",1.86,"Found",1968,10085,-30.44,121.26,,,,,,
"Bjelaja Zerkov","H6",1.85,"Fell",1796,5063,49.78,30.17,,,,,,
"Allan Hills A81030","L3.4",1.85,"Found",1981,1990,-76.7,159.39,,,,,,
"Jiddat al Harasis 096","L6",1.85,"Found",2002,12155,19.46,56.83,,,,,,
"Sayh al Uhaymir 009","H5",1.85,"Found",1999,23201,20.99,57.31,,,,,,
"Umm as Samim 001","H5",1.85,"Found",2001,24115,21.32,56.42,,,,,,
"Yamato 791905","H5",1.85,"Found",1979,27254,-71.5,35.67,,,,,,
"Dhofar 142","L4",1.84,"Found",2000,6927,18.38,54.24,,,,,,
"Yamato 791312","H4/5",1.84,"Found",1979,26661,-71.5,35.67,,,,,,
"Blithfield","EL6",1.83,"Found",1910,5075,45.5,-77,,,,,,
"Burkhala","Iron, IAB-ung",1.83,"Found",1983,5171,63.8,149,,,,,,
"Hammadah al Hamra 071","L6",1.83,"Found",1994,11554,29.21,12.52,,,,,,
"Ozernoe","L6",1.83,"Found",1983,18065,54.9,62.8,,,,,,
"Yamato 790739","LL6",1.83,"Found",1979,26088,-71.5,35.67,,,,,,
"Dar al Gani 1058","Lunar (feldsp. breccia)",1.82,"Found",1998,54650,27.38,16.18,,,,,,
"Dhofar 139","L6",1.82,"Found",2000,6924,18.34,54.45,,,,,,
"Dhofar 200","H4",1.82,"Found",2000,6984,19.3,54.6,,,,,,
"El Médano 171","H~5",1.82,"Found",2011,57319,-24.85,-70.53,,,,,,
"Elephant Moraine 82602","H4",1.82,"Found",1982,7827,-76.29,157.21,,,,,,
"Grove Mountains 051862","L6",1.82,"Found",2006,46957,-72.78,75.34,,,,,,
"Majuba 007","H4",1.82,"Found",2007,54684,40.62,-118.38,,,,,,
"Yamato 74193","H5",1.82,"Found",1974,24571,-71.64,35.59,,,,,,
"Changde","H5",1.81,"Fell",1977,5322,29.08,111.75,,,,,,
"Nagai","L6",1.81,"Fell",1922,16890,38.12,140.06,,,,,,
"Acfer 068","L6",1.81,"Found",1990,77,27.55,3.7,,,,,,
"Dar al Gani 050","L5",1.81,"Found",1995,5566,27.31,16.21,,,,,,
"Dar al Gani 766","H4",1.81,"Found",1999,6313,26.97,16.54,,,,,,
"Dhofar 1181","H5",1.81,"Found",2005,33884,18.75,54.27,,,,,,
"Dhofar 594","H3-6",1.81,"Found",2001,7351,18.72,54.4,,,,,,
"Elephant Moraine 87502","L6",1.81,"Found",1987,8053,-76.29,156.5,,,,,,
"Lewis Cliff 86013","L6",1.81,"Found",1986,12953,-84.28,161.65,,,,,,
"Queen Alexandra Range 99009","H5",1.81,"Found",1999,21461,-84,168,,,,,,
"Akbarpur","H4",1.8,"Fell",1838,427,29.72,77.95,,,,,,
"Dharwar","OC",1.8,"Fell",1848,6699,14.88,75.6,,,,,,
"Petersburg","Eucrite-pmict",1.8,"Fell",1855,18801,35.3,-86.63,,,,,,
"Richmond","LL5",1.8,"Fell",1828,22603,37.47,-77.5,,,,,,
"Serra de Magé","Eucrite-cm",1.8,"Fell",1923,23502,-8.38,-36.77,,,,,,
"Alamosa","L6",1.8,"Found",1937,450,37.47,-105.87,,,,,,
"Boaz (stone)","H5",1.8,"Found",1968,5091,33.65,-103.71,,,,,,
"Chuckwalla","Iron, IAB-MG",1.8,"Found",1992,5361,35.25,-118.09,,,,,,
"Derrick Peak 88025","Iron, IIAB",1.8,"Found",1988,6676,-80.07,156.38,,,,,,
"Elsinora","H5",1.8,"Found",1922,10027,-29.45,143.6,,,,,,
"Hopper","Iron, IIIAB",1.8,"Found",1889,11907,36.55,-79.78,,,,,,
"Jiddat al Harasis 118","LL~6",1.8,"Found",2005,34030,19.8,56.72,,,,,,
"Jiddat al Harasis 276","H4/6",1.8,"Found",2005,35593,19.98,55.96,,,,,,
"Kokomo","Iron, IVB",1.8,"Found",1862,12340,40.48,-86.37,,,,,,
"Lider (b)","H5",1.8,"Found",1972,14649,34.66,-101.64,,,,,,
"Modoc (1948)","H6",1.8,"Found",1948,16712,38.5,-101.1,,,,,,
"Mosquero","H4",1.8,"Found",1963,16757,35.75,-103.93,,,,,,
"Mut","H5",1.8,"Found",2003,30757,25.6,28.45,,,,,,
"Paposo 005","H5",1.8,"Found",2011,57200,-25,-70.47,,,,,,
"Sayh al Uhaymir 290","CH3",1.8,"Found",2004,32488,21.08,57.15,,,,,,
"Yamato 75271","L5",1.8,"Found",1975,25312,-71.5,35.67,,,,,,
"Allan Hills 83102","CM2",1.79,"Found",1983,597,-77.04,157.15,,,,,,
"Dhofar 143","H5",1.79,"Found",2000,6928,18.41,54.17,,,,,,
"Dhofar 283","H6",1.79,"Found",2001,7066,18.44,54.02,,,,,,
"Needmore","OC",1.79,"Found",1976,16937,34.04,-102.8,,,,,,
"Tatum","H4",1.79,"Found",1938,23886,33.23,-103.44,,,,,,
"Dhofar 156","L5",1.78,"Found",2000,6941,19.15,54.65,,,,,,
"Dhofar 231","H4",1.78,"Found",2001,7015,18.79,54.58,,,,,,
"Old Homestead 003","Howardite",1.78,"Found",2002,55545,-31.45,127.89,,,,,,
"Benld","H6",1.77,"Fell",1938,5021,39.08,-89.15,,,,,,
"Briscoe","L5",1.77,"Found",1940,5142,34.35,-101.4,,,,,,
"Dar al Gani 118","L5/6",1.77,"Found",1996,5668,27.25,16.01,,,,,,
"Dhofar 1724","H4",1.77,"Found",2010,56347,19.3,54.83,,,,,,
"Dhofar 690","L6",1.77,"Found",2001,7447,19.41,54.76,,,,,,
"Erofeevka","H4",1.77,"Found",1937,10048,51.87,70.35,,,,,,
"Meteorite Hills 00436","Diogenite",1.77,"Found",2000,15671,-79.68,155.75,,,,,,
"Petropavlovka","H4",1.77,"Found",1916,18802,48.2,43.73,,,,,,
"Queen Alexandra Range 93014","H6",1.77,"Found",1993,19103,-84.62,162.44,,,,,,
"Akhricha","H",1.76,"Found",1968,428,28.46,1.03,,,,,,
"Dhofar 1730","H6",1.76,"Found",2011,56357,18.49,54.18,,,,,,
"Elephant Moraine 87543","H6",1.76,"Found",1987,8093,-76.18,157.17,,,,,,
"Jiddat al Harasis 555","H5",1.76,"Found",2008,50948,19.57,55.49,,,,,,
"Sweetwater","H5",1.76,"Found",1961,23770,32.55,-100.42,,,,,,
"Gnadenfrei","H5",1.75,"Fell",1879,10936,50.67,16.77,,,,,,
"Dar al Gani 624","L6",1.75,"Found",1998,6171,27.37,16.19,,,,,,
"Dhofar 1514","R3.6",1.75,"Found",2008,53878,18.34,54.39,,,,,,
"Fleming","H3.7",1.75,"Found",1940,10110,40.68,-102.82,,,,,,
"Grosvenor Mountains 85204","L6",1.75,"Found",1985,11213,-85.67,175,,,,,,
"Hammadah al Hamra 106","H5",1.75,"Found",1995,11589,28.58,13.33,,,,,,
"Pecora Escarpment 91020","EL3",1.75,"Found",1991,18311,-85.54,-70.72,,,,,,
"Western Arkansas","Iron, IVA",1.75,"Found",1890,24248,35,-94,,,,,,
"Dar al Gani 044","H4",1.74,"Found",1995,5560,27.14,16.27,,,,,,
"Dhofar 017","H4",1.74,"Found",2000,6716,18.16,54.14,,,,,,
"Sayh al Uhaymir 087","H5",1.74,"Found",2000,23279,20.32,57.23,,,,,,
"Allan Hills A77208","H4",1.73,"Found",1977,1519,-76.72,159.67,,,,,,
"Asuka 882062","H4",1.73,"Found",1988,4771,-72,26,,,,,,
"Dar al Gani 167","H5-6",1.73,"Found",1996,5715,27.18,16.12,,,,,,
"Dar al Gani 467","L6",1.73,"Found",1998,6015,28.01,15.84,,,,,,
"Dhofar 1543","H4",1.73,"Found",2008,52417,18.22,54.32,,,,,,
"Dhofar 749","LL6",1.73,"Found",2000,7495,18.88,54.78,,,,,,
"Dhofar 977","H3",1.73,"Found",2004,30548,19.22,54.96,,,,,,
"Elephant Moraine 87503","Howardite",1.73,"Found",1987,8054,-76.27,156.49,,,,,,
"Grove Mountains 053690","H4",1.73,"Found",2006,48464,-72.83,75.36,,,,,,
"Jiddat al Harasis 593","H5",1.73,"Found",2009,51942,19.42,56.7,,,,,,
"Meteorite Hills A78003","L6",1.73,"Found",1978,16599,-79.68,155.75,,,,,,
"Payson","L6",1.73,"Found",2001,18178,34.23,-111.4,,,,,,
"Ramlat as Sahmah 328","L6",1.73,"Found",2009,52004,20.42,56.5,,,,,,
"Dexter","Iron, IIIAB",1.72,"Found",1889,6697,33.82,-97,,,,,,
"Dhofar 1556","H4",1.72,"Found",2009,52426,18.73,54.58,,,,,,
"Dhofar 361","H3",1.72,"Found",2000,7144,19.03,54.86,,,,,,
"Grove Mountains 021491","L6",1.72,"Found",2003,46742,-72.94,75.35,,,,,,
"Hammadah al Hamra 099","H6",1.72,"Found",1995,11582,28.64,13.38,,,,,,
"Jiddat al Harasis 587","H5",1.72,"Found",2009,51935,19.8,56.67,,,,,,
"Sterley","Pallasite, PMG",1.72,"Found",1950,56575,34.21,-101.39,,,,,,
"Yamato 74459","H6",1.72,"Found",1974,24837,-71.73,35.98,,,,,,
"Yamato 792761","H6",1.72,"Found",1979,28110,-71.5,35.67,,,,,,
"Silao","H5",1.71,"Fell",1995,23594,20.93,-101.38,,,,,,
"Slavetic","H5",1.71,"Fell",1868,23626,45.68,15.6,,,,,,
"Sultanpur","L/LL6",1.71,"Fell",1916,23741,25.93,84.28,,,,,,
"Dhofar 223","H4",1.71,"Found",2000,7007,18.27,54.1,,,,,,
"Miller Range 99305","L6",1.71,"Found",1999,16661,-83.25,157,,,,,,
"Northwest Africa 768","H4",1.71,"Found",2000,17841,28,-9.27,,,,,,
"Sayh al Uhaymir 450","L4",1.71,"Found",2006,45941,20.88,57.36,,,,,,
"Seminole (c)","H4",1.71,"Found",1967,23490,32.55,-102.39,,,,,,
"Seminole (d)","H6",1.71,"Found",1976,23491,32.72,-102.65,,,,,,
"Umm as Samim 014","H4",1.71,"Found",2009,51878,21.37,56.31,,,,,,
"Yamato 790749","H4",1.71,"Found",1979,26098,-71.5,35.67,,,,,,
"Chervony Kut","Eucrite-mmict",1.7,"Fell",1939,5342,50.83,34,,,,,,
"Manbhoom","LL6",1.7,"Fell",1863,15402,23.05,86.7,,,,,,
"Umm Ruaba","L5",1.7,"Fell",1966,24118,13.47,31.22,,,,,,
"Dar al Gani 180","LL3.9",1.7,"Found",1996,5728,27.26,16.41,,,,,,
"Dar al Gani 199","H6",1.7,"Found",1996,5747,27.06,16.4,,,,,,
"Derrick Peak 88019","Iron, IIAB",1.7,"Found",1988,6670,-80.07,156.38,,,,,,
"Dhofar 263","LL6",1.7,"Found",2001,7046,18.35,54.4,,,,,,
"Ferguson Switch","H5",1.7,"Found",1937,10089,34,-101.5,,,,,,
"Graves Nunataks 98032","Ureilite",1.7,"Found",1998,11024,-86.72,-141.5,,,,,,
"Mainz","L6",1.7,"Found",1852,15389,50,8.27,,,,,,
"Moctezuma","Iron, IAB-sLL",1.7,"Found",1889,16710,29.8,-109.67,,,,,,
"San Francisco Mountains","Iron, IVA",1.7,"Found",1920,23124,35,-112,,,,,,
"Sayh al Uhaymir 101","L6",1.7,"Found",2000,23293,21.05,57.26,,,,,,
"Siratik","Iron, IIAB",1.7,"Found",1716,23615,14,-11,,,,,,
"Asuka 881814","LL4",1.69,"Found",1988,4523,-72,26,,,,,,
"Jiddat al Harasis 223","H5",1.69,"Found",2005,35542,19.82,56.66,,,,,,
"Nardoo (no. 2)","L6",1.69,"Found",1944,16911,-29.5,144.07,,,,,,
"Borgo San Donino","LL6",1.68,"Fell",1808,5110,44.87,10.05,,,,,,
"Tin as Sawwan","L4-5",1.68,"Found",2011,56556,32.76,9.1,,,,,,
"Allan Hills A77263","Iron, IAB-MG",1.67,"Found",1977,1574,-76.72,159.67,,,,,,
"Dhofar 278","L6",1.67,"Found",2001,7061,18.67,54.67,,,,,,
"Frontier Mountain 93005","L5",1.67,"Found",1993,10636,-72.97,160.44,,,,,,
"Pitino","H5",1.67,"Found",2002,18836,-27.47,-60.58,,,,,,
"Asuka 881978","L6",1.65,"Found",1988,4687,-72,26,,,,,,
"Dhofar 1508","L~5",1.65,"Found",2009,53797,18.62,54.44,,,,,,
"Dhofar 679","H5",1.65,"Found",2001,7436,19.27,54.67,,,,,,
"Hammadah al Hamra 185","H5",1.65,"Found",1996,11668,28.7,13.32,,,,,,
"Jiddat al Harasis 582","L6",1.65,"Found",2009,51927,19.42,56.7,,,,,,
"Ramlat as Sahmah 378","H5",1.65,"Found",2010,55464,20.57,56.05,,,,,,
"Rockhampton","Stone-uncl",1.64,"Fell",1895,22640,-23.38,150.52,,,,,,
"Allan Hills 84065","L6",1.64,"Found",1984,667,-76.9,156.83,,,,,,
"Dar al Gani 175","H5-6",1.64,"Found",1996,5723,27.12,16.09,,,,,,
"Elephant Moraine 87550","H5",1.64,"Found",1987,8100,-76.18,157.17,,,,,,
"Hammadah al Hamra 214","H6",1.64,"Found",1997,11697,28.5,13.23,,,,,,
"Mount DeWitt 96600","H6",1.64,"Found",1996,16769,-77.2,159.83,,,,,,
"Quinyambie","LL3.6",1.64,"Found",1968,22365,-30.15,140.98,,,,,,
"Rock Creek","L5",1.64,"Found",1980,22638,34.42,-101.5,,,,,,
"Kangean","H5",1.63,"Fell",1908,12245,-7,115.5,,,,,,
"Asuka 881913","LL3",1.63,"Found",1988,4622,-72,26,,,,,,
"Brownfield (iron)","Iron, IID",1.63,"Found",1960,5154,33.22,-102.18,,,,,,
"Hammadah al Hamra 139","H5",1.63,"Found",1995,11622,28.51,12.97,,,,,,
"Meteorite Hills 00445","L5",1.63,"Found",2000,15680,-79.68,155.75,,,,,,
"Ramlat as Sahmah 381","L6",1.63,"Found",2010,55467,20.57,56.28,,,,,,
"Santa Rosalia","Pallasite, PMG",1.63,"Found",1950,23168,27.33,-112.33,,,,,,
"Aguada","L6",1.62,"Fell",1930,398,-31.6,-65.23,,,,,,
"Acfer 132","H6",1.62,"Found",1990,141,27.5,3.77,,,,,,
"Dar al Gani 029","H6",1.62,"Found",1995,5545,27.2,16.09,,,,,,
"Dar al Gani 294","LL4",1.62,"Found",1997,5842,27.2,16.37,,,,,,
"Dar al Gani 672","LL5",1.62,"Found",1999,6219,27.47,16.3,,,,,,
"Hammadah al Hamra 240","L4",1.62,"Found",1997,11723,29.45,11.36,,,,,,
"Los Vientos 008","H5",1.62,"Found",2010,57193,-24.68,-69.77,,,,,,
"Meteorite Hills 00440","L5",1.62,"Found",2000,15675,-79.68,155.75,,,,,,
"Mount Howe 88401","Eucrite-br",1.62,"Found",1988,16776,-87.37,-149.5,,,,,,
"Roosevelt County 089","H5",1.62,"Found",1980,22744,34.13,-103.53,,,,,,
"Wellman (d)","H",1.62,"Found",1966,24240,33.02,-102.37,,,,,,
"Asuka 882093","H4",1.61,"Found",1988,4802,-72,26,,,,,,
"Dar al Gani 391","Eucrite-pmict",1.61,"Found",1997,5939,27.36,16.17,,,,,,
"Dhofar 1539","H4",1.61,"Found",2006,52406,18.27,54.43,,,,,,
"Dhofar 183","L5",1.61,"Found",2000,6967,18.85,54.47,,,,,,
"Sayh al Uhaymir 512","H4-5",1.61,"Found",2009,51884,20.91,56.95,,,,,,
"Yamato 791710","L4",1.61,"Found",1979,27059,-71.5,35.67,,,,,,
"Cilimus","L5",1.6,"Fell",1979,5364,-6.95,108.1,,,,,,
"Dolgovoli","L6",1.6,"Fell",1864,7659,50.75,25.3,,,,,,
"Gopalpur","H6",1.6,"Fell",1865,10948,24.23,89.05,,,,,,
"Huaxi","H5",1.6,"Fell",2010,54719,26.46,106.63,,,,,,
"Kaprada","L5/6",1.6,"Fell",2004,47357,20.34,73.22,,,,,,
"Mässing","Howardite",1.6,"Fell",1803,15443,48.13,12.62,,,,,,
"Middlesbrough","L6",1.6,"Fell",1881,16632,54.57,-1.17,,,,,,
"Sitathali","H5",1.6,"Fell",1875,23616,20.92,82.58,,,,,,
"Warrenton","CO3.7",1.6,"Fell",1877,24215,38.68,-91.15,,,,,,
"Asuka 8602","L4",1.6,"Found",1986,2356,-72.83,24.5,,,,,,
"Dar al Gani 497","H5",1.6,"Found",1997,6045,27.2,16.07,,,,,,
"Fairfield","Iron, IAB-MG",1.6,"Found",1974,10069,39.33,-84.6,,,,,,
"Hobbs (b)","H5",1.6,"Found",1933,11892,32.73,-103.1,,,,,,
"Jiddat al Harasis 099","H4-5",1.6,"Found",2002,12158,19.53,56.84,,,,,,
"Livingston (Montana)","Iron, IIIAB",1.6,"Found",1936,14668,45.6,-110.58,,,,,,
"Loop (b)","H",1.6,"Found",1964,14703,32.99,-102.39,,,,,,
"Peck's Spring","L5",1.6,"Found",1926,18182,32,-102,,,,,,
"Simondium","Mesosiderite-A4",1.6,"Found",1907,23604,-33.85,18.95,,,,,,
"Tanezrouft 066","H6",1.6,"Found",2002,23866,25.19,0.79,,,,,,
"Tanezrouft 078","L6",1.6,"Found",2003,31339,24.74,-0.52,,,,,,
"Walltown","L6",1.6,"Found",1956,24208,37.33,-84.72,,,,,,
"Selakopi","H5",1.59,"Fell",1939,23481,-7.23,107.33,,,,,,
"Allan Hills A81031","L3.4",1.59,"Found",1981,1991,-76.71,159.38,,,,,,
"Asuka 880999","H4",1.59,"Found",1988,3708,-72,26,,,,,,
"Bolshaya Korta","H5",1.59,"Found",1939,5101,57.63,83.37,,,,,,
"Dar al Gani 544","H5",1.59,"Found",1997,6092,26.96,16.46,,,,,,
"Dhofar 036","L6",1.59,"Found",1999,6735,19.13,54.81,,,,,,
"Dhofar 1279","L6",1.59,"Found",2005,34498,18.25,54.2,,,,,,
"Dhofar 964","H4",1.59,"Found",2004,30542,19.13,54.86,,,,,,
"Jiddat al Harasis 388","L~6",1.59,"Found",2003,51654,19.28,55.76,,,,,,
"Meteorite Hills 01001","LL6",1.59,"Found",2001,16234,-79.68,159.75,,,,,,
"Queen Alexandra Range 94208","L6",1.59,"Found",1994,19850,-84,168,,,,,,
"Queen Alexandra Range 94209","L6",1.59,"Found",1994,19851,-84,168,,,,,,
"Smith Center","L6",1.59,"Found",1937,23649,39.83,-99.02,,,,,,
"Hammadah al Hamra 175","L5",1.58,"Found",1996,11658,28.63,13.09,,,,,,
"Hammadah al Hamra 241","L6",1.58,"Found",1997,11724,29.44,11.35,,,,,,
"Jiddat al Harasis 648","H4",1.58,"Found",2010,55479,19.4,56.57,,,,,,
"Lewis Cliff 87032","H6",1.58,"Found",1987,13506,-84.34,161.4,,,,,,
"Sayh al Uhaymir 185","H/L4-5",1.58,"Found",2002,23358,20.51,57.28,,,,,,
"Allan Hills 83001","L4",1.57,"Found",1983,521,-76.72,158.74,,,,,,
"Dar al Gani 521","CV3",1.57,"Found",1997,6069,27.31,16.23,,,,,,
"Dhofar 1692","L6",1.57,"Found",2011,56198,18.39,54.54,,,,,,
"Dora (stone)","OC",1.57,"Found",1970,7713,33.92,-103.35,,,,,,
"Elephant Moraine 82604","H5",1.57,"Found",1982,7829,-76.18,157.17,,,,,,
"Paposo 010","H~6",1.57,"Found",2011,57341,-25,-70.47,,,,,,
"Yamato 790445","H5",1.57,"Found",1979,25794,-71.5,35.67,,,,,,
"Bawku","LL5",1.56,"Fell",1989,4976,11.08,-0.18,,,,,,
"Boulder Mine","L5",1.56,"Found",2008,52852,34.69,-114.32,,,,,,
"Dar al Gani 432","H4",1.56,"Found",1998,5980,27.45,15.99,,,,,,
"Dar al Gani 440","L6",1.56,"Found",1998,5988,27.48,16.26,,,,,,
"Dhofar 122","L6",1.56,"Found",2000,6907,18.99,54.62,,,,,,
"Dhofar 485","Howardite",1.56,"Found",2001,7246,19.1,54.78,,,,,,
"Dhofar 747","L3",1.56,"Found",2000,7493,18.8,54.74,,,,,,
"LaPaz Icefield 02209","LL5",1.56,"Found",2002,12476,-86.37,-70,,,,,,
"Selden","LL5",1.56,"Found",1960,23484,39.53,-100.57,,,,,,
"Yamato 791845","H6",1.56,"Found",1979,27194,-71.5,35.67,,,,,,
"Kisvarsány","L6",1.55,"Fell",1914,12325,48.17,22.31,,,,,,
"Worden","L5",1.55,"Fell",1997,24337,42.38,-83.61,,,,,,
"Brownfield (c)","OC",1.55,"Found",1974,5153,33.14,-102.28,,,,,,
"Lonewolf Nunataks 94106","L6",1.55,"Found",1994,14690,-81.33,152.83,,,,,,
"Meteorite Hills 01004","LL5",1.55,"Found",2001,16237,-79.68,159.75,,,,,,
"Northwest Africa 1578","L6",1.55,"Found",2001,17337,31.6,-4.38,,,,,,
"Rainbow","CO3.2",1.55,"Found",1994,22374,-35.91,141.86,,,,,,
"Tindouf","H6",1.55,"Found",1997,24005,27.75,-8.13,,,,,,
"Haverö","Ureilite",1.54,"Fell",1971,11859,60.25,22.06,,,,,,
"Acfer 065","H4-5",1.54,"Found",1989,74,27.5,4.28,,,,,,
"Cook 003","CK4",1.54,"Found",1986,5423,-30.32,129.06,,,,,,
"Daraj 105","H5",1.54,"Found",1986,6564,29.63,11.76,,,,,,
"Dhofar 1642","H6",1.54,"Found",2009,55398,18.93,54.73,,,,,,
"Dhofar 1716","H5",1.54,"Found",2010,56340,18.91,54.63,,,,,,
"Kamyshla","L6",1.54,"Found",1981,12242,54,52.2,,,,,,
"Queen Alexandra Range 94207","L6",1.54,"Found",1994,19849,-84,168,,,,,,
"Asab","H5",1.53,"Found",1999,2343,-25.43,17.92,,,,,,
"Hammadah al Hamra 341","LL5",1.53,"Found",2001,53619,29.31,11.6,,,,,,
"Jiddat al Harasis 087","H4-6",1.53,"Found",2002,12146,19.59,56.18,,,,,,
"McCracken","H4/5",1.53,"Found",1980,15460,38.53,-99.81,,,,,,
"Puerta de Arauco","Iron",1.53,"Found",1904,18896,-28.88,-66.67,,,,,,
"Queen Alexandra Range 86900","Mesosiderite",1.53,"Found",1986,19002,-84.6,162.46,,,,,,
"Sarir Qattusah 005","L6",1.53,"Found",1999,23184,26.84,15.69,,,,,,
"Thiel Mountains 99017","L4",1.53,"Found",2000,23969,-85.16,-94.86,,,,,,
"Allan Hills 83108","CO3.5",1.52,"Found",1983,603,-77.05,157.08,,,,,,
"Canyonlands","H6",1.52,"Found",1961,5258,38.18,-109.88,,,,,,
"Dhofar 639","L6",1.52,"Found",2001,7396,19.2,54.6,,,,,,
"Lahmada 011","H5",1.52,"Found",1998,12424,27.23,-9.75,,,,,,
"Sayh al Uhaymir 039","L6",1.52,"Found",2000,23231,21.06,57.28,,,,,,
"Yamato 82122","H6",1.52,"Found",1982,29316,-71.5,35.67,,,,,,
"Allan Hills A76002","Iron, IAB-MG",1.51,"Found",1976,1309,-76.72,159.67,,,,,,
"Dar al Gani 107","H6",1.51,"Found",1996,5657,27.13,16.09,,,,,,
"Dhofar 662","H5",1.51,"Found",2001,7419,19.1,54.81,,,,,,
"Hammadah al Hamra 302","L6",1.51,"Found",2000,11785,28.54,13.31,,,,,,
"Leikanger","L6",1.51,"Found",1978,12761,61.27,6.85,,,,,,
"Shişr 037","L5",1.51,"Found",2002,23572,18.54,53.94,,,,,,
"Angra dos Reis (stone)","Angrite",1.5,"Fell",1869,2302,-22.97,-44.32,,,,,,
"Breitscheid","H5",1.5,"Fell",1956,5134,50.67,8.18,,,,,,
"Burnwell","H4-an",1.5,"Fell",1990,5175,37.62,-82.24,,,,,,
"Bustee","Aubrite",1.5,"Fell",1852,5181,26.78,82.83,,,,,,
"Esnandes","L6",1.5,"Fell",1837,10051,46.25,-1.1,,,,,,
"Favars","H5",1.5,"Fell",1844,10078,44.38,2.82,,,,,,
"Katagum","L6",1.5,"Fell",1999,35465,11.33,10.08,,,,,,
"Kharkov","L6",1.5,"Fell",1787,12291,50.63,35.08,,,,,,
"Kiffa","H5",1.5,"Fell",1970,12303,16.58,-11.33,,,,,,
"Macau","H5",1.5,"Fell",1836,15370,-5.2,-36.67,,,,,,
"Moti-ka-nagla","H6",1.5,"Fell",1868,16759,26.83,77.33,,,,,,
"Stavropol","L6",1.5,"Fell",1857,23717,45.05,41.98,,,,,,
"Urasaki","Stone-uncl",1.5,"Fell",1926,24129,34.48,133.28,,,,,,
"Vernon County","H6",1.5,"Fell",1865,24168,43.5,-91.17,,,,,,
"Blackwater Draw","H4",1.5,"Found",1979,5067,34.21,-103.22,,,,,,
"Cincinnati","Iron, IIAB",1.5,"Found",1870,5366,39.12,-84.5,,,,,,
"Cuba","Iron, IAB?",1.5,"Found",1871,5479,22,-80,,,,,,
"Dermbach","Iron, ungrouped",1.5,"Found",1924,6665,50.72,10.12,,,,,,
"Dhofar 135","H4",1.5,"Found",2000,6920,18.33,54.26,,,,,,
"Dhofar 1580","LL6",1.5,"Found",2004,52586,18.57,54.43,,,,,,
"Dhofar 935","H5",1.5,"Found",2002,7637,19.11,54.81,,,,,,
"Elephant Moraine 87544","LL4",1.5,"Found",1987,8094,-76.18,157.17,,,,,,
"Iredell","Iron, IIAB",1.5,"Found",1898,12046,31.97,-97.87,,,,,,
"Khatiyah","H5",1.5,"Found",2000,12292,25.43,50.78,,,,,,
"Meadow (a)","H5",1.5,"Found",1975,15465,33.33,-102.27,,,,,,
"Nazareth (d)","H6",1.5,"Found",1968,16931,34.58,-102.08,,,,,,
"Ramlat as Sahmah 113","L6",1.5,"Found",2003,45914,20.47,55.86,,,,,,
"Richa","Iron, IID",1.5,"Found",1960,22598,10,9,,,,,,
"Serrania de Varas","Iron, IVA",1.5,"Found",1875,23503,-24.55,-69.07,,,,,,
"Simbirsk (of P. Partsch)","OC",1.5,"Found",1838,23602,54.3,48.4,,,,,,
"Surprise Springs","Iron, IAB-sLL",1.5,"Found",1899,23761,34.17,-115.92,,,,,,
"Tomhannock Creek","H5",1.5,"Found",1863,24022,42.88,-73.6,,,,,,
"Yarri","Iron, IIIAB",1.5,"Found",1908,30356,-29.45,121.22,,,,,,
"Cave Creek","H4",1.49,"Found",1992,5299,31.7,-110.78,,,,,,
"Dar al Gani 058","L5",1.49,"Found",1995,5574,27.28,16.22,,,,,,
"Dar al Gani 612","H5",1.49,"Found",1998,6159,27.27,16.36,,,,,,
"Dhofar 043","H5",1.49,"Found",1999,6742,19.11,54.81,,,,,,
"Dhofar 1520","H4",1.49,"Found",2008,52393,18.68,54.54,,,,,,
"Dhofar 673","L6",1.49,"Found",2001,7430,19.21,54.61,,,,,,
"Kimba","H4",1.49,"Found",1997,12310,-33.22,136.42,,,,,,
"La Yesera 004","L6",1.49,"Found",2003,54649,-23.29,-70.47,,,,,,
"Ramlat as Sahmah 284","LL5",1.49,"Found",2009,51885,20.52,55.8,,,,,,
"Sayh al Uhaymir 524","L6",1.49,"Found",2009,52009,21.04,57.23,,,,,,
"Jiddat al Harasis 357","H~6",1.48,"Found",2003,51625,19.36,55.61,,,,,,
"Palo Blanco Creek","Eucrite-mmict",1.48,"Found",1954,18080,36.5,-104.5,,,,,,
"Sayh al Uhaymir 552","L6",1.48,"Found",2010,56348,20.6,57.16,,,,,,
"Tanezrouft 013","L6",1.48,"Found",1991,23814,25.48,0.71,,,,,,
"Zillah 001","L6",1.48,"Found",1990,31355,29.04,17.02,,,,,,
"Ellemeet","Diogenite",1.47,"Fell",1925,10019,51.75,4,,,,,,
"Yurtuk","Howardite",1.47,"Fell",1936,30378,47.32,35.37,,,,,,
"Allan Hills A77216","L3.7-3.9",1.47,"Found",1977,1527,-76.72,159.67,,,,,,
"Dar al Gani 1059","H6",1.47,"Found",2010,56098,28.29,15.49,,,,,,
"Daraj 004","H5",1.47,"Found",1986,6543,29.87,11.69,,,,,,
"Dhofar 256","H6",1.47,"Found",2001,7039,18.75,54.38,,,,,,
"Dhofar 444","L6",1.47,"Found",2001,7219,18.91,54.48,,,,,,
"Hammadah al Hamra 314","LL6",1.47,"Found",2001,11797,28.65,13.46,,,,,,
"Igdi","Eucrite-mmict",1.47,"Found",2000,12002,29.23,-8.37,,,,,,
"Meteorite Hills 00444","H6",1.47,"Found",2000,15679,-79.68,155.75,,,,,,
"Claxton","L6",1.46,"Fell",1984,5374,32.1,-81.87,,,,,,
"Cranganore","L6",1.46,"Fell",1917,5465,10.2,76.27,,,,,,
"Hallingeberg","L3.4",1.46,"Fell",1944,11479,57.82,16.23,,,,,,
"Sinai","L6",1.46,"Fell",1916,23606,30.9,32.48,,,,,,
"Acfer 024","H5",1.46,"Found",1989,34,27.55,3.93,,,,,,
"Acfer 365","L5",1.46,"Found",2002,30432,27.61,3.94,,,,,,
"Acfer 366","CH3",1.46,"Found",2002,32782,26.61,3.94,,,,,,
"Dhofar 1568","H4",1.46,"Found",2009,52434,18.88,54.68,,,,,,
"Dhofar 212","H3.9",1.46,"Found",2000,6996,18.86,54.83,,,,,,
"Graves Nunataks 95205","Ureilite",1.46,"Found",1995,10965,-86.72,-141.5,,,,,,
"Hammadah al Hamra 101","L6",1.46,"Found",1995,11584,28.66,13.3,,,,,,
"Jiddat al Harasis 423","H4",1.46,"Found",2007,48574,19.78,56.41,,,,,,
"Lahmada 015","H6",1.46,"Found",1998,12428,27.23,-9.76,,,,,,
"LaPaz Icefield 02212","LL5",1.46,"Found",2002,12479,-86.37,-70,,,,,,
"Lubbock","L5",1.46,"Found",1938,14722,33.6,-101.73,,,,,,
"Miller Range 99302","H4",1.46,"Found",1999,16658,-83.25,157,,,,,,
"Queen Alexandra Range 99015","H5",1.46,"Found",1999,21467,-84,168,,,,,,
"Acfer 075","H5",1.45,"Found",1990,84,27.52,3.73,,,,,,
"Aguemour 009","L3.8",1.45,"Found",1992,408,27.43,4.12,,,,,,
"Asuka 882026","L6",1.45,"Found",1988,4735,-72,26,,,,,,
"Dhofar 1515","H6",1.45,"Found",2008,52389,18.53,54.62,,,,,,
"Dhofar 168","LL3/4",1.45,"Found",2000,6953,19.04,54.58,,,,,,
"Dhofar 286","L6",1.45,"Found",2001,7069,18.13,54.12,,,,,,
"Elephant Moraine 90610","L6",1.45,"Found",1990,9019,-76.18,157.17,,,,,,
"Great Sand Sea 007","H6",1.45,"Found",1996,11187,26.91,26.15,,,,,,
"Grosvenor Mountains 85203","H5",1.45,"Found",1985,11212,-85.67,175,,,,,,
"Jiddat al Harasis 370","L~6",1.45,"Found",2003,51637,19.33,55.81,,,,,,
"MacAlpine Hills 88116","H5",1.45,"Found",1988,15280,-84.22,160.5,,,,,,
"Queen Alexandra Range 99011","H4",1.45,"Found",1999,21463,-84,168,,,,,,
"Aguila Blanca","L",1.44,"Fell",1920,417,-30.87,-64.55,,,,,,
"Berlanguillas","L6",1.44,"Fell",1811,5029,41.68,-3.8,,,,,,
"Maryville","L6",1.44,"Fell",1983,15436,35.8,-84.1,,,,,,
"Acfer 047","L4",1.44,"Found",1989,57,27.83,4.7,,,,,,
"Hammadah al Hamra 242","L5",1.44,"Found",1997,11725,29.04,12.89,,,,,,
"Laundry Rockhole","H5",1.44,"Found",1967,12738,-31.53,127.02,,,,,,
"Ramlat as Sahmah 309","Brachinite",1.44,"Found",2009,51981,20.77,55.44,,,,,,
"York (stone)","L6",1.44,"Found",1928,30368,40.87,-97.6,,,,,,
"Palca de Aparzo","L5",1.43,"Fell",1988,18074,-23.12,-65.1,,,,,,
"Allan Hills A76005","Eucrite-pmict",1.43,"Found",1976,1312,-76.72,159.67,,,,,,
"Allan Hills A81017","L5",1.43,"Found",1981,1977,-76.77,159.28,,,,,,
"Dar al Gani 400","Lunar (anorth)",1.43,"Found",1998,5948,27.37,16.2,,,,,,
"Dar al Gani 647","Eucrite-mmict",1.43,"Found",1997,6194,27.17,16.13,,,,,,
"Jiddat al Harasis 376","H5",1.43,"Found",2003,51643,19.32,55.7,,,,,,
"Jiddat al Harasis 500","H5",1.43,"Found",2007,51405,19.75,56.31,,,,,,
"Los Vientos 005","H3",1.43,"Found",2010,57174,-24.68,-69.77,,,,,,
"MacAlpine Hills 87304","L6",1.43,"Found",1987,15247,-84.22,160.5,,,,,,
"Morro la Mina","H5",1.43,"Found",1986,16752,-24.25,-68.85,,,,,,
"Yamato 8410","L5",1.43,"Found",1984,29457,-71.5,35.67,,,,,,
"Holetta","Stone-uncl",1.42,"Fell",1923,11895,9.07,38.42,,,,,,
"Great Sand Sea 021","L5",1.42,"Found",2002,11192,28.11,25.54,,,,,,
"Iron River","Iron, IVA",1.42,"Found",1889,12048,46.08,-88.56,,,,,,
"Mereta","H4",1.42,"Found",1941,15488,31.43,-100.13,,,,,,
"Pecora Escarpment 91017","L6",1.42,"Found",1991,18308,-85.69,-68.34,,,,,,
"Reckling Peak 92404","LL6",1.42,"Found",1992,22413,-76.22,158.41,,,,,,
"Sayh al Uhaymir 259","H4",1.42,"Found",2002,23432,20.62,56.95,,,,,,
"Al Huwaysah 010","Achondrite-ung",1.41,"Found",2010,55637,22.75,55.47,,,,,,
"Allan Hills 85016","L6",1.41,"Found",1985,882,-77,156.96,,,,,,
"Allen","H4",1.41,"Found",1923,2277,33.1,-96.7,,,,,,
"Dhofar 1744","H5",1.41,"Found",,56482,19.15,54.59,,,,,,
"Dhofar 296","L5",1.41,"Found",2000,7079,19.33,54.7,,,,,,
"Elephant Moraine 90034","L6",1.41,"Found",1990,8444,-76.28,156.4,,,,,,
"Jiddat al Harasis 124","L5",1.41,"Found",2001,34534,19.8,54.8,,,,,,
"Jiddat al Harasis 386","H~5",1.41,"Found",2003,51652,19.3,55.79,,,,,,
"Canon City","H6",1.4,"Fell",1973,5253,38.47,-105.24,,,,,,
"Oesede","H5",1.4,"Fell",1927,17988,52.28,8.05,,,,,,
"Acfer 223","L/LL6",1.4,"Found",1991,231,27.54,3.83,,,,,,
"Asuka 881356","L6",1.4,"Found",1988,4065,-72,26,,,,,,
"Blue Tier","Iron",1.4,"Found",1890,5077,-41.18,148.03,,,,,,
"Bouanane","L6",1.4,"Found",2009,52888,31.98,-3.2,,,,,,
"Correo","H4",1.4,"Found",1979,5447,34.95,-107.17,,,,,,
"Dar al Gani 851","L5",1.4,"Found",1999,6398,27.2,15.89,,,,,,
"Dhofar 1494","H4",1.4,"Found",2008,51055,18.69,54.44,,,,,,
"Dhofar 631","H5",1.4,"Found",2001,7388,19.11,54.82,,,,,,
"El Atchane 008","H4",1.4,"Found",1991,7785,30.06,4.56,,,,,,
"Elephant Moraine 83214","L6",1.4,"Found",1983,7856,-76.29,157.24,,,,,,
"Grosvenor Mountains 85201","Iron, IIIAB",1.4,"Found",1985,11210,-85.67,175,,,,,,
"Jiddat al Harasis","H4",1.4,"Found",1957,12089,19.25,56.07,,,,,,
"Jiddat al Harasis 021","H5",1.4,"Found",2000,12109,19.27,56.09,,,,,,
"Lonaconing","Iron, IAB-sHL",1.4,"Found",1888,14680,39.42,-79.15,,,,,,
"O'Malley 001","H6",1.4,"Found",1991,18017,-30.75,131.17,,,,,,
"Pecora Escarpment 91023","LL6",1.4,"Found",1991,18314,-85.68,-68.42,,,,,,
"Shişr 041","L5",1.4,"Found",2002,23576,18.55,53.94,,,,,,
"Shişr 101","L6",1.4,"Found",2002,35717,18.63,53.92,,,,,,
"Ngawi","LL3.6",1.39,"Fell",1883,16966,-7.45,111.42,,,,,,
"Acfer 050","H6",1.39,"Found",1989,60,27.65,4.5,,,,,,
"Acfer 106","LL6",1.39,"Found",1990,115,27.5,3.9,,,,,,
"Dar al Gani 635","H5",1.39,"Found",1998,6182,26.9,16.68,,,,,,
"Djebel Chaab 001","L/LL6",1.39,"Found",2003,7653,25.22,0.85,,,,,,
"El Djouf 002","H5",1.39,"Found",1989,7798,23.45,-1.87,,,,,,
"Morrill","Iron, IAB-an",1.39,"Found",1920,16749,42.18,-103.93,,,,,,
"Sayh al Uhaymir 241","H4-6",1.39,"Found",2002,23414,20.56,57.38,,,,,,
"Severny Kolchim","H3",1.39,"Found",1965,23507,60.5,57,,,,,,
"Yamato 790519","LL",1.39,"Found",1979,25868,-71.5,35.67,,,,,,
"Yamato 791961","L3.6",1.39,"Found",1979,27310,-71.5,35.67,,,,,,
"Atoka","L6",1.38,"Fell",1945,4888,34.32,-96.15,,,,,,
"Acfer 071","L6",1.38,"Found",1990,80,27.63,4.28,,,,,,
"Dar al Gani 155","H5",1.38,"Found",1996,5703,27.16,16.03,,,,,,
"Dar al Gani 191","CO3",1.38,"Found",1996,5739,27.16,15.95,,,,,,
"Dar al Gani 734","EL4",1.38,"Found",1997,6281,27.13,16.05,,,,,,
"Dhofar 583","H6",1.38,"Found",2001,7343,18.72,54.19,,,,,,
"Hammadah al Hamra 089","H5",1.38,"Found",1995,11572,28.47,13.32,,,,,,
"Meteorite Hills 01050","LL6",1.38,"Found",2001,16283,-79.68,159.75,,,,,,
"Queen Alexandra Range 97002","Howardite",1.38,"Found",1997,20409,-84,168,,,,,,
"Queen Alexandra Range 97003","CM2",1.38,"Found",1997,20410,-84,168,,,,,,
"Coyote Dry Lake 115","H5-6",1.37,"Found",1999,30466,35.06,-116.77,,,,,,
"Dhofar 356","H6",1.37,"Found",2000,7139,18.64,54.73,,,,,,
"Kackley","H4",1.37,"Found",2006,45966,39.72,-97.85,,,,,,
"Lahmada 013","H6",1.37,"Found",1998,12426,27.23,-9.76,,,,,,
"Northwest Africa 6129","H6",1.37,"Found",2007,51538,30.46,-5.49,,,,,,
"Overland Park","H4",1.37,"Found",1998,18056,38.97,-94.67,,,,,,
"Reid 012","L6",1.37,"Found",1989,22567,-30.5,128.5,,,,,,
"Yamato 790462","L6",1.37,"Found",1979,25811,-71.5,35.67,,,,,,
"Caswell County","OC",1.36,"Fell",1810,5296,36.5,-79.25,,,,,,
"Coyote Dry Lake 064","H5",1.36,"Found",1999,30461,35.06,-116.77,,,,,,
"Dar al Gani 606","H5",1.36,"Found",1998,6153,26.88,16.7,,,,,,
"Dhofar 1630","H5",1.36,"Found",2004,55278,18.7,54.37,,,,,,
"Grosvenor Mountains 85208","L6",1.36,"Found",1985,11217,-85.67,175,,,,,,
"Jiddat al Harasis 100","H4-5",1.36,"Found",2002,12159,19.51,56.85,,,,,,
"Jiddat al Harasis 393","H~5",1.36,"Found",2003,51659,19.32,55.78,,,,,,
"Meteorite Hills 01030","LL5",1.36,"Found",2001,16263,-79.68,159.75,,,,,,
"Panhandle","H5",1.36,"Found",1969,18096,35.33,-101.38,,,,,,
"Phillips County (pallasite)","Pallasite, PMG-an",1.36,"Found",1935,18807,40.45,-102.38,,,,,,
"Sayh al Uhaymir 437","H~4",1.36,"Found",2001,45929,21.09,57.29,,,,,,
"Tiffa 004","H5",1.36,"Found",1997,23994,19.96,11.88,,,,,,
"Wild Horse","H5",1.36,"Found",1979,24264,39.42,-103.2,,,,,,
"Allan Hills A77294","H5",1.35,"Found",1977,1604,-76.72,159.67,,,,,,
"Allan Hills A81020","H5",1.35,"Found",1981,1980,-76.69,159.08,,,,,,
"Dhofar 127","H4",1.35,"Found",2000,6912,19.29,54.83,,,,,,
"Dhofar 346","H5",1.35,"Found",2001,7129,18.92,54.6,,,,,,
"Dhofar 916","H4",1.35,"Found",2002,7619,19.1,54.79,,,,,,
"Jiddat al Harasis 220","L4-5",1.35,"Found",2005,35539,19.7,56.64,,,,,,
"Kirishi","L4",1.35,"Found",2006,51592,59.55,32.11,,,,,,
"Ramlat as Sahmah 308","H4",1.35,"Found",2009,51909,20.49,55.82,,,,,,
"Sayh al Uhaymir 326","L6",1.35,"Found",2004,34553,21.01,57.31,,,,,,
"Umm as Samim 012","H4",1.35,"Found",2009,51876,21.38,56.29,,,,,,
"Boriskino","CM2",1.34,"Fell",1930,5112,54.23,52.48,,,,,,
"Acfer 055","H5",1.34,"Found",1989,65,27.5,3.98,,,,,,
"Acfer 212","H5",1.34,"Found",1991,220,27.61,3.71,,,,,,
"Asuka 881855","H4",1.34,"Found",1988,4564,-72,26,,,,,,
"Dar al Gani 232","H5",1.34,"Found",1997,5780,27.17,16.09,,,,,,
"Dhofar 271","H4",1.34,"Found",2000,7054,18.27,54.05,,,,,,
"Dhofar 284","L6",1.34,"Found",2001,7067,18.46,54.03,,,,,,
"Grosvenor Mountains 95518","H4",1.34,"Found",1995,11246,-85.67,175,,,,,,
"Sayh al Uhaymir 005","Martian (shergottite)",1.34,"Found",1999,23197,21,57.33,,,,,,
"Tanezrouft 048","H5",1.34,"Found",1992,23849,25.4,0.61,,,,,,
"Al Huwaysah 016","H5",1.33,"Found",2010,55414,22.7,55.33,,,,,,
"Corrizatillo","Iron, IAB complex",1.33,"Found",1884,5448,-26.03,-70.33,,,,,,
"Dhofar 624","H5",1.33,"Found",2001,7381,19.12,54.81,,,,,,
"Hammadah al Hamra 151","L5",1.33,"Found",1995,11634,28.65,13.47,,,,,,
"Miller Range 99304","H5",1.33,"Found",1999,16660,-83.25,157,,,,,,
"Reckling Peak 92405","L5",1.33,"Found",1992,22414,-76.23,158.53,,,,,,
"Sandy Creek","L5",1.33,"Found",1999,23158,40.43,-98.07,,,,,,
"Shişr 019","H4",1.33,"Found",2001,23554,18.55,53.89,,,,,,
"Gyokukei","OC",1.32,"Fell",1930,11467,35,127.5,,,,,,
"Acfer 378","LL6",1.32,"Found",2003,35480,27.4,3.75,,,,,,
"Al Huqf 052","H~5",1.32,"Found",2001,45822,19.66,57.04,,,,,,
"Asuka 881229","L4",1.32,"Found",1988,3938,-72,26,,,,,,
"Elephant Moraine 92031","L6",1.32,"Found",1992,9433,-76.02,155.89,,,,,,
"Jiddat al Harasis 006","H5",1.32,"Found",1999,12094,19.36,56.29,,,,,,
"Jiddat al Harasis 283","L5",1.32,"Found",2005,35600,19.69,56.15,,,,,,
"Jiddat al Harasis 607","L6",1.32,"Found",2009,51956,19.91,55.91,,,,,,
"Lewis Cliff 87031","H5",1.32,"Found",1987,13505,-84.35,161.35,,,,,,
"Logan","H5",1.32,"Found",1918,14677,36.58,-100.2,,,,,,
"Sayh al Uhaymir 182","L~4",1.32,"Found",2003,34004,20.72,57.13,,,,,,
"Sayh al Uhaymir 555","H4/5",1.32,"Found",2010,56351,20.05,56.59,,,,,,
"Rio Negro","L4",1.31,"Fell",1934,22611,-26.1,-49.8,,,,,,
"Allan Hills A78251","L6",1.31,"Found",1978,1864,-76.72,159.67,,,,,,
"Dhofar 1467","L~5",1.31,"Found",2008,51610,18.57,54.16,,,,,,
"Dhofar 653","H5/6",1.31,"Found",2001,7410,19.11,54.81,,,,,,
"Elephant Moraine 96020","L6",1.31,"Found",1996,9614,-76.18,157.17,,,,,,
"LaPaz Icefield 02204","L5",1.31,"Found",2002,12471,-86.37,-70,,,,,,
"Majuba 003","H4",1.31,"Found",2003,30754,40.63,-118.41,,,,,,
"Yamato 791925","L4",1.31,"Found",1979,27274,-71.5,35.67,,,,,,
"Ashdon","L6",1.3,"Fell",1923,2346,52.05,0.3,,,,,,
"Glanggang","H5-6",1.3,"Fell",1939,10924,-7.25,107.7,,,,,,
"Ishinga","H",1.3,"Fell",1954,12049,-8.93,33.8,,,,,,
"Louisville","L6",1.3,"Fell",1977,14716,38.25,-85.75,,,,,,
"Mezel","L6",1.3,"Fell",1949,16627,45.77,3.25,,,,,,
"Mornans","H5",1.3,"Fell",1875,16747,44.6,5.13,,,,,,
"Vissannapeta","Eucrite-cm",1.3,"Fell",1997,24188,16.83,80.75,,,,,,
"Acfer 200","H3-6",1.3,"Found",1991,208,27.5,3.92,,,,,,
"Bowesmont (b)","L5",1.3,"Found",1972,5125,48.78,-97.35,,,,,,
"Dar al Gani 466","L6",1.3,"Found",1998,6014,28.01,15.85,,,,,,
"Dhofar 1666","L4",1.3,"Found",2011,56381,19.18,54.92,,,,,,
"Dhofar 401","L5/6",1.3,"Found",2001,7183,19.3,54.53,,,,,,
"Garden Head","Iron, IAB-sHH",1.3,"Found",1944,10857,49.82,-108.46,,,,,,
"Hammadah al Hamra 111","H5",1.3,"Found",1995,11594,28.62,13.13,,,,,,
"Hangman Crossing","H4",1.3,"Found",1976,11816,38.92,-85.95,,,,,,
"Jiddat al Harasis 733","H6",1.3,"Found",,56448,19.56,56.21,,,,,,
"Joel's Iron","Iron, IIIAB",1.3,"Found",1858,12175,-24,-69,,,,,,
"Jonah","H5",1.3,"Found",1963,12200,30.63,-97.53,,,,,,
"Meteorite Hills 00441","L5",1.3,"Found",2000,15676,-79.68,155.75,,,,,,
"Octave Mine","H5",1.3,"Found",2004,35633,34.13,-112.7,,,,,,
"Pampa (f)","L4/5",1.3,"Found",2000,18088,-23.18,-70.43,,,,,,
"Shişr 169","H5",1.3,"Found",2004,52605,18.6,53.97,,,,,,
"Sublette","L6",1.3,"Found",1952,23735,37.5,-100.83,,,,,,
"Waldo","L6",1.3,"Found",1937,24202,39.1,-98.83,,,,,,
"Kamsagar","L6",1.29,"Fell",1902,12241,14.18,75.8,,,,,,
"Dhofar 110","H6",1.29,"Found",2000,6895,18.44,54.45,,,,,,
"Elephant Moraine 87554","L6",1.29,"Found",1987,8104,-76.27,156.51,,,,,,
"MacAlpine Hills 88112","L6",1.29,"Found",1988,15276,-84.22,160.5,,,,,,
"Queen Alexandra Range 99010","H5",1.29,"Found",1999,21462,-84,168,,,,,,
"Atarra","L4",1.28,"Fell",1920,4883,25.25,80.63,,,,,,
"Lanxi","L6",1.28,"Fell",1986,12464,46.24,126.2,,,,,,
"Qidong","L/LL5",1.28,"Fell",1982,18907,32.08,121.5,,,,,,
"Acfer 162","H3-6",1.28,"Found",1990,171,27.67,4.02,,,,,,
"Acfer 342","L6",1.28,"Found",2002,348,27.59,4.66,,,,,,
"Algarrobo","Iron, IAB-ung",1.28,"Found",1959,467,-27.08,-70.58,,,,,,
"Asuka 881847","H4",1.28,"Found",1988,4556,-72,26,,,,,,
"Dhofar 470","H4",1.28,"Found",2001,7231,19.05,54.7,,,,,,
"Hammadah al Hamra 186","LL6",1.28,"Found",1996,11669,28.71,13.27,,,,,,
"LaPaz Icefield 02206","CV3",1.28,"Found",2002,12473,-86.37,-70,,,,,,
"Northwest Africa 722","L-imp melt",1.28,"Found",2000,17804,31.15,-4.25,,,,,,
"Queen Alexandra Range 90201","L5",1.28,"Found",1990,19006,-84.6,162.34,,,,,,
"Reckling Peak A78003","L6",1.28,"Found",1978,22458,-76.27,159.25,,,,,,
"Yamato 000749","Martian (nakhlite)",1.28,"Found",2000,24356,-71.5,35.67,,,,,,
"Sharps","H3.4",1.27,"Fell",1921,23525,37.83,-76.7,,,,,,
"Usti Nad Orlici","L6",1.27,"Fell",1963,24132,49.98,16.38,,,,,,
"Asuka 87350","H5",1.27,"Found",1987,2707,-72,26,,,,,,
"Daraj 008","H4",1.27,"Found",1986,6547,29.58,11.75,,,,,,
"Gourara","H6",1.27,"Found",2002,30665,29.76,1.88,,,,,,
"Grosvenor Mountains 95508","L6",1.27,"Found",1995,11236,-85.67,175,,,,,,
"Hammadah al Hamra 217","H4-5",1.27,"Found",1997,11700,28.55,13.03,,,,,,
"Hammadah al Hamra 310","H6",1.27,"Found",2000,11793,29.45,13.2,,,,,,
"Jiddat al Harasis 583","H5",1.27,"Found",2009,51928,19.42,56.7,,,,,,
"Lewis Cliff 88022","H5",1.27,"Found",1988,13776,-84.25,161.38,,,,,,
"Northwest Africa 026","L6",1.27,"Found",1999,17036,30.33,-5.83,,,,,,
"Queen Alexandra Range 97012","LL6",1.27,"Found",1997,20419,-84,168,,,,,,
"Sayh al Uhaymir 500","H6",1.27,"Found",2009,52431,20.13,56.56,,,,,,
"Yamato 790269","H4",1.27,"Found",1979,25618,-71.5,35.67,,,,,,
"Derrick Peak A78015","Iron, IIAB",1.26,"Found",1978,6691,-80.07,156.38,,,,,,
"Dhofar 807","H5",1.26,"Found",2001,7553,18.5,54.09,,,,,,
"El Médano 086","H4",1.26,"Found",2011,56598,-24.85,-70.53,,,,,,
"Hammadah al Hamra 194","L4",1.26,"Found",1996,11677,28.66,13.47,,,,,,
"Kumtag 003","H5",1.26,"Found",2011,56384,41.5,93.55,,,,,,
"Lewis Cliff 87033","H5",1.26,"Found",1987,13507,-84.28,161.08,,,,,,
"Queen Alexandra Range 93026","H5",1.26,"Found",1993,19115,-84.63,162.51,,,,,,
"Sayh al Uhaymir 492","L6",1.26,"Found",2008,50968,21.27,57.13,,,,,,
"Dosso","L6",1.25,"Fell",1962,7722,13.05,3.17,,,,,,
"Hassi-Jekna","Iron, IAB-sHL",1.25,"Fell",1890,11852,28.95,0.82,,,,,,
"Muzaffarpur","Iron, IAB-sHL",1.25,"Fell",1964,16885,26.13,85.53,,,,,,
"Sabetmahet","H5",1.25,"Fell",1855,22792,27.43,82.08,,,,,,
"Trebbin","LL6",1.25,"Fell",1988,24042,52.22,13.17,,,,,,
"Ballinger","Iron, IAB-MG",1.25,"Found",1927,4930,31.77,-99.98,,,,,,
"Dar al Gani 570","L4/5",1.25,"Found",1997,6117,27.55,15.86,,,,,,
"Dhofar 1593","H5",1.25,"Found",2004,52599,18.94,54.32,,,,,,
"Dhofar 1638","L5",1.25,"Found",2004,55286,18.41,54.31,,,,,,
"Dhofar 938","LL5",1.25,"Found",2002,30519,19.41,54.58,,,,,,
"El Djouf 001","CR2",1.25,"Found",1989,7797,23.43,-1.42,,,,,,
"Jiddat al Harasis 065","L6",1.25,"Found",2000,12127,19.25,56.36,,,,,,
"Jiddat al Harasis 761","H5",1.25,"Found",,56491,19.95,56.39,,,,,,
"Plainview (e)","H5",1.25,"Found",2010,54437,34.19,-101.71,,,,,,
"Shalim 002","L6",1.25,"Found",2000,23515,18.71,55.72,,,,,,
"Sleeper Camp 001","L6",1.25,"Found",1962,23627,-30.25,126.33,,,,,,
"Starvation Flat","L5",1.25,"Found",2002,44800,36.78,-114.95,,,,,,
"Yamato 791500","H3/4",1.25,"Found",1979,26849,-71.5,35.67,,,,,,
"Asuka 881061","H4",1.24,"Found",1988,3770,-72,26,,,,,,
"Bushnell","H4",1.24,"Found",1939,5180,41.23,-103.9,,,,,,
"Delphos (a)","L4",1.24,"Found",1968,6645,34.08,-103.53,,,,,,
"Dhofar 129","L6",1.24,"Found",2000,6914,19.3,54.73,,,,,,
"Elephant Moraine 83207","H4",1.24,"Found",1983,7849,-76.27,157.17,,,,,,
"Hammadah al Hamra 285","Howardite",1.24,"Found",2000,11768,29.04,13.21,,,,,,
"Jiddat al Harasis 512","H4",1.24,"Found",2008,50925,19.53,55.18,,,,,,
"Jiddat al Harasis 764","L5",1.24,"Found",,56494,19.81,56.48,,,,,,
"Lakeview","H4",1.24,"Found",1970,12449,34.53,-101.7,,,,,,
"Lick Creek","Iron, IIAB",1.24,"Found",1879,14647,35.67,-80.25,,,,,,
"MacAlpine Hills 87305","L4",1.24,"Found",1987,15248,-84.22,160.5,,,,,,
"Yamato 82187","L6",1.24,"Found",1982,29381,-71.5,35.67,,,,,,
"Avce","Iron, IIAB",1.23,"Fell",1908,4906,46,13.5,,,,,,
"Acfer 206","H5",1.23,"Found",1991,214,27.69,4.38,,,,,,
"Al Huwaysah 005","L(LL)3.5-3.7",1.23,"Found",2010,55636,22.73,55.33,,,,,,
"Allan Hills A77281","L6",1.23,"Found",1977,1591,-76.72,159.67,,,,,,
"Belgica 7904","C2-ung",1.23,"Found",1979,5001,-72.58,31.25,,,,,,
"Dar al Gani 142","H5/6",1.23,"Found",1996,5691,27.25,16.4,,,,,,
"Dar al Gani 461","L6",1.23,"Found",1998,6009,28.02,15.86,,,,,,
"Dhofar 541","H4",1.23,"Found",2000,7302,18.33,54.18,,,,,,
"Dhofar 864","L6",1.23,"Found",2002,7610,18.16,54.16,,,,,,
"El Médano 078","L6",1.23,"Found",2011,56378,-24.85,-70.53,,,,,,
"Elephant Moraine 87535","L6",1.23,"Found",1987,8085,-76.28,156.36,,,,,,
"Hammadah al Hamra 221","H4-5",1.23,"Found",1997,11704,29.22,11.54,,,,,,
"Jiddat al Harasis 656","L6",1.23,"Found",2011,55564,19.65,55.75,,,,,,
"LaPaz Icefield 02205","Lunar (basalt)",1.23,"Found",2002,12472,-86.37,-70,,,,,,
"Meteorite Hills 00447","L5",1.23,"Found",2000,15682,-79.68,155.75,,,,,,
"Queen Alexandra Range 94213","L6",1.23,"Found",1994,19855,-84,168,,,,,,
"Ramlat as Sahmah 227","L4",1.23,"Found",2003,35659,20.56,56.08,,,,,,
"San Juan 001","L5",1.23,"Found",2001,23126,-25.58,-69.8,,,,,,
"Yamato 794044","L6",1.23,"Found",1979,28998,-71.5,35.67,,,,,,
"Oued el Hadjar","LL6",1.22,"Fell",1986,18050,30.18,-6.58,,,,,,
"Simmern","H5",1.22,"Fell",1920,23603,49.98,7.53,,,,,,
"Dhofar 1588","L5",1.22,"Found",2004,52594,18.99,54.28,,,,,,
"Dhofar 1655","L6",1.22,"Found",2011,55573,18.4,54.49,,,,,,
"Elephant Moraine 87547","H6",1.22,"Found",1987,8097,-76.05,156.1,,,,,,
"Minas Gerais","L6",1.22,"Found",1888,16693,-18.5,-44,,,,,,
"Ramlat as Sahmah 310","H3-6",1.22,"Found",2009,51982,20.78,55.44,,,,,,
"Yamato 793539","LL6",1.22,"Found",1979,28888,-71.5,35.67,,,,,,
"Allan Hills A79025","H5",1.21,"Found",1979,1900,-76.72,159.67,,,,,,
"Chañaral","Iron, IIIAB",1.21,"Found",1884,5319,-26.5,-70.25,,,,,,
"Dar al Gani 036","LL6",1.21,"Found",1995,5552,27.1,16.31,,,,,,
"Dhofar 1290","LL4",1.21,"Found",2004,34506,18.57,54.42,,,,,,
"Elephant Moraine 83202","L5-6",1.21,"Found",1983,7844,-76.3,157.22,,,,,,
"Elephant Moraine 83228","Eucrite-pmict",1.21,"Found",1983,7870,-76.29,157.24,,,,,,
"Graves Nunataks 95203","L5",1.21,"Found",1995,10963,-86.72,-141.5,,,,,,
"Hammadah al Hamra 213","L3-6",1.21,"Found",1997,11696,28.48,13.32,,,,,,
"Hammadah al Hamra 258","L5/6",1.21,"Found",1998,11741,28.86,11.43,,,,,,
"Jiddat al Harasis 095","L6",1.21,"Found",2002,12154,19.98,56.77,,,,,,
"Jiddat al Harasis 263","H5",1.21,"Found",2005,35580,20,56.51,,,,,,
"Pingrup","H5-melt breccia",1.21,"Found",2011,55547,-33.58,118.66,,,,,,
"Sayh al Uhaymir 415","H5",1.21,"Found",2005,35704,20,56.51,,,,,,
"Toulon","H5",1.21,"Found",1962,24035,41.12,-89.81,,,,,,
"Cosina","H5",1.2,"Fell",1844,5451,21.17,-100.87,,,,,,
"Iguaracu","H5",1.2,"Fell",1977,12003,-23.2,-51.83,,,,,,
"Asuka 881380","H4",1.2,"Found",1988,4089,-72,26,,,,,,
"Dhofar 781","H5",1.2,"Found",2000,7527,18.57,54.71,,,,,,
"El Médano 177","H~5",1.2,"Found",2011,57325,-24.85,-70.53,,,,,,
"Eltanin","Mesosiderite",1.2,"Found",1981,10028,-57.79,-90.79,,,,,,
"Gahanna","Iron, IAB-MG",1.2,"Found",1950,10842,40.02,-82.87,,,,,,
"Graves Nunataks 98015","H5",1.2,"Found",1998,11007,-86.72,-141.5,,,,,,
"Hammadah al Hamra 080","H6",1.2,"Found",1995,11563,28.65,13.02,,,,,,
"Hammadah al Hamra 171","H5",1.2,"Found",1996,11654,28.62,13.36,,,,,,
"Hart Camp","H6",1.2,"Found",1970,11846,34,-102.18,,,,,,
"Jiddat al Harasis 354","L~6",1.2,"Found",2003,51622,19.36,55.64,,,,,,
"MacAlpine Hills 87306","L4",1.2,"Found",1987,15249,-84.22,160.5,,,,,,
"Metsäkylä","H4",1.2,"Found",1938,16625,60.65,27.07,,,,,,
"Muckera 005","L6",1.2,"Found",1991,16825,-30.37,130.06,,,,,,
"Northwest Africa 724","LL3",1.2,"Found",,17806,30.23,-5.87,,,,,,
"Oyogos-Yar","H4",1.2,"Found",1990,18064,72.68,143.53,,,,,,
"Sand Draw","H5",1.2,"Found",1947,23134,40.82,-102.25,,,,,,
"Suwanee Spring","L5",1.2,"Found",1979,23768,34.95,-107.17,,,,,,
"Dar al Gani 020","L4/5",1.19,"Found",1995,5536,27.08,16.19,,,,,,
"Dar al Gani 600","H5",1.19,"Found",1998,6147,26.92,16.67,,,,,,
"Dhofar 098","H5",1.19,"Found",1999,6797,18.76,54.51,,,,,,
"Grosvenor Mountains 95506","H5",1.19,"Found",1995,11234,-85.67,175,,,,,,
"Jiddat al Harasis 206","Mesosiderite",1.19,"Found",2002,35525,19.99,56.42,,,,,,
"Jiddat al Harasis 378","L~6",1.19,"Found",2003,51645,19.29,55.71,,,,,,
"Jiddat al Harasis 791","L6",1.19,"Found",,56523,19.73,55.7,,,,,,
"Meteorite Hills 00449","LL6",1.19,"Found",2000,15684,-79.68,155.75,,,,,,
"Northwest Africa 477","H5",1.19,"Found",2000,17745,32.03,-4.18,,,,,,
"Ramlat as Sahmah 343","H5",1.19,"Found",2010,55435,20.5,55.52,,,,,,
"Seminole Draw (b)","H5",1.19,"Found",1976,23494,32.72,-102.65,,,,,,
"Asuka 881857","LL5",1.18,"Found",1988,4566,-72,26,,,,,,
"Catalina 031","L~6",1.18,"Found",2010,57299,-25.23,-69.72,,,,,,
"Dhofar 046","H4",1.18,"Found",1999,6745,19.16,54.82,,,,,,
"Dhofar 202","H4-5",1.18,"Found",2000,6986,19.42,54.76,,,,,,
"Dhofar 289","H6",1.18,"Found",2001,7072,18.33,54.19,,,,,,
"Dhofar 397","H5",1.18,"Found",2001,7179,19.04,54.88,,,,,,
"Mellenbye","LL6",1.18,"Found",1929,15473,-28.85,116.28,,,,,,
"Meteorite Hills 00446","L5",1.18,"Found",2000,15681,-79.68,155.75,,,,,,
"Pecora Escarpment 02071","L5",1.18,"Found",2002,18253,-85.63,-68.7,,,,,,
"Seminole (b)","H4",1.18,"Found",1965,23489,32.54,-102.71,,,,,,
"Tanezrouft 004","H4/5",1.18,"Found",1989,23805,25.47,0.67,,,,,,
"Wisconsin Range 91623","L6",1.18,"Found",1991,24313,-86.54,-123.12,,,,,,
"Acfer 347","L3",1.17,"Found",2001,353,27.68,4.3,,,,,,
"Asuka 880770","H6",1.17,"Found",1988,3479,-72,26,,,,,,
"Asuka 882063","H4",1.17,"Found",1988,4772,-72,26,,,,,,
"Dhofar 1024","H5/6",1.17,"Found",2002,6826,19.31,54.49,,,,,,
"Dhofar 1601","L5",1.17,"Found",2003,52623,19.19,54.63,,,,,,
"Dhofar 395","H6",1.17,"Found",2001,7177,19.04,54.89,,,,,,
"Elephant Moraine 87540","L6",1.17,"Found",1987,8090,-76.28,157.22,,,,,,
"Graves Nunataks 95204","H5",1.17,"Found",1995,10964,-86.72,-141.5,,,,,,
"Hammadah al Hamra 078","H5",1.17,"Found",1994,11561,29.19,12.27,,,,,,
"Jiddat al Harasis 394","L~6",1.17,"Found",2003,51660,19.3,55.81,,,,,,
"Jiddat al Harasis 564","H6",1.17,"Found",2008,50953,19.69,56.14,,,,,,
"Pecora Escarpment 91019","L5",1.17,"Found",1991,18310,-85.67,-69.05,,,,,,
"Ramlat al Wahibah 027","H5",1.17,"Found",2006,45898,21.26,58.39,,,,,,
"Ramlat as Sahmah 318","L5",1.17,"Found",2009,51990,20.89,55.49,,,,,,
"Sayh al Uhaymir 068","H5",1.17,"Found",2001,23260,21.33,57.18,,,,,,
"Shişr 176","L6",1.17,"Found",2010,56406,18.22,53.82,,,,,,
"Douar Mghila","LL6",1.16,"Fell",1932,7723,32.33,-6.3,,,,,,
"Pirthalla","H6",1.16,"Fell",1884,18835,29.58,76,,,,,,
"Acfer 134","L5",1.16,"Found",1990,143,27.77,4.53,,,,,,
"Cotesfield","L6",1.16,"Found",1928,5454,41.37,-98.63,,,,,,
"Dhofar 123","H6",1.16,"Found",2000,6908,19.01,54.6,,,,,,
"Dhofar 291","L5",1.16,"Found",2000,7074,18.25,54.1,,,,,,
"Dhofar 751","H6",1.16,"Found",2000,7497,18.89,54.71,,,,,,
"Elephant Moraine 87534","L5",1.16,"Found",1987,8084,-76.18,157.17,,,,,,
"Elephant Moraine 87541","L6",1.16,"Found",1987,8091,-75.99,155.7,,,,,,
"Hinojo","H",1.16,"Found",1928,11888,-36.87,-60.17,,,,,,
"Snyder Hill","L5",1.16,"Found",1994,23658,32.16,-111.11,,,,,,
"Yamato 81075","L4",1.16,"Found",1981,29136,-71.5,35.67,,,,,,
"Allan Hills A76008","H6",1.15,"Found",1976,1315,-76.72,159.67,,,,,,
"Allan Hills A79016","H6",1.15,"Found",1979,1891,-76.72,159.67,,,,,,
"Dar al Gani 637","L6",1.15,"Found",1998,6184,26.88,16.65,,,,,,
"Dhofar 1074","H5",1.15,"Found",2001,6881,18.74,54.2,,,,,,
"Elephant Moraine 92030","L6",1.15,"Found",1992,9432,-76.07,155.93,,,,,,
"Hammadah al Hamra 176","L6",1.15,"Found",1996,11659,28.66,13.31,,,,,,
"Meteorite Hills 00442","L4",1.15,"Found",2000,15677,-79.68,155.75,,,,,,
"Meteorite Hills 00448","L5",1.15,"Found",2000,15683,-79.68,155.75,,,,,,
"Northwest Africa 050","H5",1.15,"Found",,17060,29.92,-5.58,,,,,,
"Northwest Africa 734","L5",1.15,"Found",1999,17816,32.33,-3.5,,,,,,
"Sayh al Uhaymir 514","L5",1.15,"Found",2009,51931,20.71,57.12,,,,,,
"Tiffa 008","CO3",1.15,"Found",2001,31349,20.36,11.85,,,,,,
"Devri-Khera","L6",1.14,"Fell",1994,6696,24.23,76.53,,,,,,
"Aguemour 004","H5",1.14,"Found",1990,403,27.33,4.5,,,,,,
"Allan Hills 84069","H5",1.14,"Found",1984,671,-76.75,158.84,,,,,,
"Allan Hills A76006","H6",1.14,"Found",1976,1313,-76.72,159.67,,,,,,
"Asuka 881124","L3.5",1.14,"Found",1988,3833,-72,26,,,,,,
"Asuka 881608","LL6",1.14,"Found",1988,4317,-72,26,,,,,,
"Dhofar 1728","L6",1.14,"Found",2011,56355,18.98,54.65,,,,,,
"Dhofar 338","H4",1.14,"Found",2001,7121,18.76,54.7,,,,,,
"Jiddat al Harasis 064","L6",1.14,"Found",2000,12126,19.64,55.64,,,,,,
"Jiddat al Harasis 737","L5",1.14,"Found",,56452,19.77,56.4,,,,,,
"Jiddat al Harasis 742","L4",1.14,"Found",,56457,19.83,56.47,,,,,,
"MacAlpine Hills 88118","L5",1.14,"Found",1988,15282,-84.22,160.5,,,,,,
"Tanezrouft 063","H4",1.14,"Found",2002,23864,25.2,0.24,,,,,,
"Yamato 793408","H3.2-an",1.14,"Found",1979,28757,-71.5,35.67,,,,,,
"Allan Hills A77182","H5",1.13,"Found",1977,1494,-76.72,159.67,,,,,,
"Asuka 882005","H3",1.13,"Found",1988,4714,-72,26,,,,,,
"Dar al Gani 322","H4",1.13,"Found",1997,5870,27.1,16.14,,,,,,
"Dar al Gani 558","L5",1.13,"Found",1997,6106,27.55,15.85,,,,,,
"Dhofar 1516","H5",1.13,"Found",2008,52390,18.41,54.6,,,,,,
"Gheriat 002","L6",1.13,"Found",1990,10910,30.51,12.22,,,,,,
"Graves Nunataks 98014","H5",1.13,"Found",1998,11006,-86.72,-141.5,,,,,,
"Grosvenor Mountains 85209","L6",1.13,"Found",1985,11218,-85.67,175,,,,,,
"Hajmah (c)","L5/6",1.13,"Found",1958,11476,19.92,56.25,,,,,,
"Hammadah al Hamra 181","LL4-6",1.13,"Found",1996,11664,28.58,12.9,,,,,,
"Queen Alexandra Range 90203","H6",1.13,"Found",1990,19008,-84.59,162.78,,,,,,
"Ramlat as Sahmah 330","L5",1.13,"Found",2004,52619,20.08,56.33,,,,,,
"San Juan 062","H5",1.13,"Found",2010,54828,-25.43,-69.69,,,,,,
"Asuka 882023","Mesosiderite",1.12,"Found",1988,4732,-72,26,,,,,,
"Dar al Gani 705","H5/6",1.12,"Found",1999,6252,26.97,16.4,,,,,,
"Dhofar 1611","H5",1.12,"Found",2003,52634,19.13,54.65,,,,,,
"Meteorite Hills 00459","LL6",1.12,"Found",2000,15694,-79.68,155.75,,,,,,
"Meteorite Hills 01021","LL5",1.12,"Found",2001,16254,-79.68,159.75,,,,,,
"Northwest Africa 251","L5",1.12,"Found",1999,17663,29.92,-5.58,,,,,,
"Ramlat as Sahmah 337","H3.6",1.12,"Found",2010,55643,20.81,55.46,,,,,,
"Ramlat as Sahmah 397","L6",1.12,"Found",2010,55493,20.15,55.71,,,,,,
"Thiel Mountains 82405","H6",1.12,"Found",1982,23917,-85.25,-91,,,,,,
"Yamato 82177","H6",1.12,"Found",1982,29371,-71.5,35.67,,,,,,
"Hashima","H4",1.11,"Fell",1910,11848,35.29,136.7,,,,,,
"Adrar Madet","H5/6",1.11,"Found",1997,385,18.5,10.4,,,,,,
"Aguemour 015","L4",1.11,"Found",1993,414,27.51,4.16,,,,,,
"Allan Hills 84068","H5",1.11,"Found",1984,670,-76.93,156.94,,,,,,
"Anoka","Iron, IAB-sLM",1.11,"Found",1961,2307,45.2,-93.43,,,,,,
"Catalina 032","H4",1.11,"Found",2010,57300,-25.23,-69.72,,,,,,
"Dar al Gani 587","L6",1.11,"Found",1998,6134,27.15,16.08,,,,,,
"Dougherty","L6",1.11,"Found",2002,7724,33.98,-101.2,,,,,,
"Queen Alexandra Range 93027","H5",1.11,"Found",1993,19116,-84.57,162.09,,,,,,
"Beyrout","LL3.8",1.1,"Fell",1921,5035,33.88,35.5,,,,,,
"Chandpur","L6",1.1,"Fell",1885,5321,27.28,79.05,,,,,,
"Mianchi","H5",1.1,"Fell",1980,16631,34.8,111.7,,,,,,
"Mtola","Stone-uncl",1.1,"Fell",1944,16820,-11.5,33.5,,,,,,
"Nyirábrany","LL5",1.1,"Fell",1914,17970,47.55,22.03,,,,,,
"Asuka 87339","H4",1.1,"Found",1987,2696,-72,26,,,,,,
"Boerne","H6",1.1,"Found",1932,5095,29.8,-98.8,,,,,,
"Dar al Gani 821","H4/5",1.1,"Found",2000,6368,27,16.45,,,,,,
"Dhofar 095","H3",1.1,"Found",1999,6794,18.68,54.59,,,,,,
"Dhofar 562","H5",1.1,"Found",2001,7323,18.73,54.39,,,,,,
"El Médano 172","H~5",1.1,"Found",2011,57320,-24.85,-70.53,,,,,,
"Grosvenor Mountains 95510","L6",1.1,"Found",1995,11238,-85.67,175,,,,,,
"Grove Mountains 020158","L4",1.1,"Found",2003,30687,-72.98,75.27,,,,,,
"Guilford County","Iron, IIIAB",1.1,"Found",1822,11444,35.57,-79.83,,,,,,
"Hammadah al Hamra 206","L6",1.1,"Found",1997,11689,28.59,13.33,,,,,,
"Hughes 047","H5/6",1.1,"Found",1993,11971,-30.32,129.73,,,,,,
"Karval","H5",1.1,"Found",1936,12265,38.72,-103.52,,,,,,
"MacAlpine Hills 88117","L6",1.1,"Found",1988,15281,-84.22,160.5,,,,,,
"McAddo","L6",1.1,"Found",1935,15457,33.75,-100.93,,,,,,
"Northwest Africa 835","H6",1.1,"Found",2000,17861,28,-9.27,,,,,,
"Shişr 033","CR",1.1,"Found",2002,23568,18.35,53.75,,,,,,
"Yamato 793444","H4",1.1,"Found",1979,28793,-71.5,35.67,,,,,,
"Dhofar 1232","H4",1.09,"Found",2005,33924,18.9,54.34,,,,,,
"MacAlpine Hills 87302","L4",1.09,"Found",1987,15245,-84.22,160.5,,,,,,
"Northwest Africa 052","L5",1.09,"Found",1998,17062,31.12,-5.18,,,,,,
"Northwest Africa 058","L6",1.09,"Found",,17068,27.17,-9.5,,,,,,
"Thiel Mountains 91701","L4",1.09,"Found",1991,23929,-85.16,-94.57,,,,,,
"Wisconsin Range 91603","L4",1.09,"Found",1991,24293,-86.53,-123.69,,,,,,
"Yamato 74191","L3.7",1.09,"Found",1974,24569,-71.83,35.52,,,,,,
"Yamato 793201","L6",1.09,"Found",1979,28550,-71.5,35.67,,,,,,
"Asuka 881769","L4",1.08,"Found",1988,4478,-72,26,,,,,,
"Bates Nunataks A78004","LL6",1.08,"Found",1978,4971,-80.25,153.5,,,,,,
"Dar al Gani 459","L6",1.08,"Found",1998,6007,27.81,15.91,,,,,,
"Dar al Gani 951","L5",1.08,"Found",2000,6491,27.9,15.86,,,,,,
"Dhofar 1636","L5",1.08,"Found",2004,55284,18.4,54.32,,,,,,
"Graves Nunataks 98041","L6",1.08,"Found",1998,11033,-86.72,-141.5,,,,,,
"Hammadah al Hamra 056","LL6",1.08,"Found",1994,11539,28.67,13.16,,,,,,
"Hammadah al Hamra 261","Eucrite",1.08,"Found",2000,11744,28.46,12.85,,,,,,
"Pampa de Mejillones 007","L6",1.08,"Found",2003,54641,-23.23,-70.46,,,,,,
"Sayh al Uhaymir 214","L5",1.08,"Found",2003,23387,20.42,57.36,,,,,,
"Sołtmany","L6",1.07,"Fell",2011,53829,54.01,22.01,,,,,,
"Acfer 046","H5",1.07,"Found",1989,56,27.78,4.7,,,,,,
"Acfer 157","L6",1.07,"Found",1990,166,27.67,4.23,,,,,,
"Acfer 388","H4",1.07,"Found",2004,44853,27.62,3.87,,,,,,
"Al Huqf 008","L6",1.07,"Found",2002,441,19.84,57.01,,,,,,
"Al Huqf 050","H4",1.07,"Found",2002,35485,19.6,57.03,,,,,,
"Asuka 87008","L4",1.07,"Found",1987,2365,-72,26,,,,,,
"Asuka 881991","L6",1.07,"Found",1988,4700,-72,26,,,,,,
"Dhofar 013","H4",1.07,"Found",2000,6712,18.37,54.24,,,,,,
"Dhofar 245","L6",1.07,"Found",2001,7028,18.66,54.71,,,,,,
"El Djouf 006","L6",1.07,"Found",1989,7801,23.67,-1.58,,,,,,
"Hughes 002","L6",1.07,"Found",,11926,-30.57,129.63,,,,,,
"Jiddat al Harasis 120","H5",1.07,"Found",2002,34032,19.73,55.72,,,,,,
"Jiddat al Harasis 321","H5",1.07,"Found",2002,45845,19.73,55.72,,,,,,
"Neptune Mountains","Iron, IAB complex",1.07,"Found",1964,16944,-83.25,-55,,,,,,
"Ramlat as Sahmah 264","L6",1.07,"Found",1989,48632,20.71,55.43,,,,,,
"Sayh al Uhaymir 262","L6",1.07,"Found",2003,23435,20.64,57.29,,,,,,
"Shahdad","H5",1.07,"Found",2005,52642,30.55,57.78,,,,,,
"Slaton","L4",1.07,"Found",1941,23625,33.43,-101.75,,,,,,
"Yamato 74640","H6",1.07,"Found",1974,25018,-71.71,36,,,,,,
"Daniel's Kuil","EL6",1.06,"Fell",1868,5513,-28.2,24.57,,,,,,
"Launton","L6",1.06,"Fell",1830,12740,51.9,-1.12,,,,,,
"Dar al Gani 602","L6",1.06,"Found",1998,6149,26.99,16.14,,,,,,
"Deakin 007","H6",1.06,"Found",1989,6631,-30.17,128.67,,,,,,
"Dhofar 019","Martian (shergottite)",1.06,"Found",2000,6718,18.32,54.15,,,,,,
"Dhofar 1472","LL6",1.06,"Found",2008,51615,18.57,54.15,,,,,,
"Dhofar 1517","H5",1.06,"Found",2008,52391,18.93,54.41,,,,,,
"Dhofar 394","H5",1.06,"Found",2001,7176,19.04,54.89,,,,,,
"Dhofar 979","Ureilite",1.06,"Found",2004,30550,19.76,54.94,,,,,,
"Elephant Moraine 83201","H6",1.06,"Found",1983,7843,-76.3,157.29,,,,,,
"Hammadah al Hamra 167","LL4-5",1.06,"Found",1996,11650,28.88,12.42,,,,,,
"Ilafegh 017","H5",1.06,"Found",2004,44890,21.59,1.52,,,,,,
"Jiddat al Harasis 028","H4",1.06,"Found",2000,12116,19.62,55.41,,,,,,
"Jiddat al Harasis 389","H~6",1.06,"Found",2003,51655,19.28,55.77,,,,,,
"Jiddat al Harasis 468","L6",1.06,"Found",2007,48619,19.81,56.47,,,,,,
"Jiddat al Harasis 578","H6",1.06,"Found",2009,51920,19.76,56.3,,,,,,
"Johannessen Nunataks 01001","H5",1.06,"Found",2001,12176,-72.86,161.14,,,,,,
"MacAlpine Hills 87307","H4",1.06,"Found",1987,15250,-84.22,160.5,,,,,,
"Meteorite Hills 01022","LL5",1.06,"Found",2001,16255,-79.68,159.75,,,,,,
"Powell Peak 002","L4",1.06,"Found",2008,54526,34.7,-114.35,,,,,,
"Tanezrouft 080","L(LL)5",1.06,"Found",2003,31341,24.65,-0.57,,,,,,
"Zelfana","L5",1.06,"Found",2002,31353,32.16,4.63,,,,,,
"Bhola","LL3-6",1.05,"Fell",1940,5040,22.68,90.65,,,,,,
"Norfork","Iron, IIIAB",1.05,"Fell",1918,16994,36.22,-92.27,,,,,,
"Akron (1940)","H6",1.05,"Found",1940,430,40.15,-103.17,,,,,,
"Allan Hills A77269","L6",1.05,"Found",1977,1580,-76.72,159.67,,,,,,
"Allan Hills A78050","L6",1.05,"Found",1978,1666,-76.72,159.67,,,,,,
"Allan Hills A81019","H5",1.05,"Found",1981,1979,-76.83,158.21,,,,,,
"Asuka 881091","L6",1.05,"Found",1988,3800,-72,26,,,,,,
"Clareton","L6",1.05,"Found",1931,5371,43.7,-104.7,,,,,,
"Dar al Gani 333","H5-6",1.05,"Found",1997,5881,27.13,16.23,,,,,,
"Dar al Gani 619","L6",1.05,"Found",1998,6166,27.48,16.3,,,,,,
"Dar al Gani 737","L3",1.05,"Found",1998,6284,27.19,16.06,,,,,,
"Dhofar 154","H5",1.05,"Found",2000,6939,19.12,54.83,,,,,,
"Dhofar 1693","L4",1.05,"Found",2011,56199,18.46,54.65,,,,,,
"Dhofar 1726","H3",1.05,"Found",2011,56423,19.18,54.89,,,,,,
"El Médano 154","L6",1.05,"Found",2011,57187,-24.85,-70.53,,,,,,
"LaPaz Icefield 02321","LL5",1.05,"Found",2002,12588,-86.37,-70,,,,,,
"Mangalo","L6",1.05,"Found",1975,15404,-33.57,136.65,,,,,,
"Naiman","L6",1.05,"Found",1982,16896,42.83,120.67,,,,,,
"Nyanga Lake 002","H4/5",1.05,"Found",1986,17967,-29.63,126.32,,,,,,
"Queen Alexandra Range 93001","Mesosiderite",1.05,"Found",1993,19091,-84.62,162.23,,,,,,
"Umm as Samim 002","H5",1.05,"Found",2001,24116,21.32,56.42,,,,,,
"Yamato 74115","H5",1.05,"Found",1974,24493,-71.81,36.14,,,,,,
"Yamato 791028","H5",1.05,"Found",1979,26377,-71.5,35.67,,,,,,
"Bishunpur","LL3.15",1.04,"Fell",1895,5060,25.38,82.6,,,,,,
"Minamino","L",1.04,"Fell",1632,16692,35.08,136.93,,,,,,
"Al Huqf 007","L5",1.04,"Found",2002,440,19.84,57.01,,,,,,
"Dar al Gani 593","L6",1.04,"Found",1998,6140,27.64,15.88,,,,,,
"Dhofar 1226","L5",1.04,"Found",2005,33918,18.69,54.33,,,,,,
"Dhofar 1475","L~6",1.04,"Found",2008,51616,18.6,54.18,,,,,,
"Elephant Moraine 92002","CK5",1.04,"Found",1992,9404,-76.02,155.8,,,,,,
"Haviland (a)","H5",1.04,"Found",1937,11860,37.62,-99.1,,,,,,
"Jiddat al Harasis 590","H5",1.04,"Found",2009,51939,19.42,56.7,,,,,,
"Jiddat al Harasis 730","L4",1.04,"Found",,56445,19.64,55.58,,,,,,
"Kharga","Iron, IVA",1.04,"Found",2000,12290,31.13,25.05,,,,,,
"Paposo 008","H~5",1.04,"Found",2011,57339,-25,-70.47,,,,,,
"Ramlat as Sahmah 339","H3.6-6",1.04,"Found",2010,55645,20.8,55.46,,,,,,
"Rooikop 001","H5",1.04,"Found",1991,22652,-23.08,14.72,,,,,,
"Tarfa","L6",1.04,"Found",1954,23879,19.5,55.5,,,,,,
"Yamato 792772","LL4",1.04,"Found",1979,28121,-71.5,35.67,,,,,,
"Ceniceros","L3.7",1.03,"Fell",1988,5306,26.47,-105.23,,,,,,
"Toulouse","H6",1.03,"Fell",1812,24036,43.6,1.4,,,,,,
"Dar al Gani 075","H4",1.03,"Found",1995,5591,27.2,16.04,,,,,,
"Dar al Gani 500","H4/5",1.03,"Found",1997,6048,27.33,16.28,,,,,,
"Dar al Gani 641","H5",1.03,"Found",1998,6188,26.96,16.47,,,,,,
"Dar al Gani 948","L6",1.03,"Found",2000,6488,27.69,15.98,,,,,,
"Dhofar 153","H6",1.03,"Found",2000,6938,19.11,54.82,,,,,,
"Dhofar 396","H5",1.03,"Found",2001,7178,19.04,54.89,,,,,,
"Dhofar 748","H6",1.03,"Found",2000,7494,18.77,54.72,,,,,,
"Queen Alexandra Range 99096","H6",1.03,"Found",1999,21548,-84,168,,,,,,
"Sayh al Uhaymir 269","H4-5",1.03,"Found",2003,23442,20.73,57.19,,,,,,
"Sayh al Uhaymir 472","H5",1.03,"Found",2002,48637,20.39,56.94,,,,,,
"Sayh al Uhaymir 546","H5",1.03,"Found",2011,56095,20.6,57.14,,,,,,
"Tanezrouft 079","H6",1.03,"Found",2003,31340,24.58,-0.52,,,,,,
"Troup","L6",1.02,"Fell",1917,24054,32.17,-95.1,,,,,,
"Acfer 004","L6",1.02,"Found",1989,14,27.58,3.82,,,,,,
"Asuka 881075","H",1.02,"Found",1988,3784,-72,26,,,,,,
"Asuka 881850","L6",1.02,"Found",1988,4559,-72,26,,,,,,
"Catalina 018","L6",1.02,"Found",2010,57184,-25.23,-69.72,,,,,,
"Dhofar 037","H5",1.02,"Found",1999,6736,19.12,54.8,,,,,,
"Hammadah al Hamra 303","H5",1.02,"Found",2000,11786,28.54,13.4,,,,,,
"Jiddat al Harasis 439","H4",1.02,"Found",2007,48590,19.58,56.44,,,,,,
"Jiddat al Harasis 666","H4-6",1.02,"Found",2011,56221,19.77,55.59,,,,,,
"Pecora Escarpment 02072","LL6",1.02,"Found",2002,18254,-85.63,-68.7,,,,,,
"Sayh al Uhaymir 076","L6",1.02,"Found",2001,23268,20.73,57.12,,,,,,
"Yamato 791956","L6",1.02,"Found",1979,27305,-71.5,35.67,,,,,,
"Acfer 211","H3.9",1.01,"Found",1991,219,27.46,3.78,,,,,,
"Allan Hills 99506","H5",1.01,"Found",1999,1307,-76.72,159.67,,,,,,
"Dar al Gani 045","H6",1.01,"Found",1995,5561,27.15,16.16,,,,,,
"Dar al Gani 148","H5",1.01,"Found",1996,5696,27.05,16.38,,,,,,
"Dar al Gani 397","L6",1.01,"Found",1998,5945,27.82,15.92,,,,,,
"Dhofar 1545","H4",1.01,"Found",2008,52407,18.57,54.59,,,,,,
"Dhofar 1553","H4",1.01,"Found",2009,52424,18.85,54.38,,,,,,
"Grosvenor Mountains 95509","H5",1.01,"Found",1995,11237,-85.67,175,,,,,,
"Grove Mountains 022038","L5",1.01,"Found",2003,46573,-72.78,75.3,,,,,,
"Hammadah al Hamra 123","LL4",1.01,"Found",1995,11606,28.48,13.2,,,,,,
"Jiddat al Harasis 102","H5",1.01,"Found",1998,12161,19.51,56.98,,,,,,
"Jiddat al Harasis 352","H~6",1.01,"Found",2003,51620,19.36,55.63,,,,,,
"Queen Alexandra Range 02100","LL5",1.01,"Found",2002,18913,-84,168,,,,,,
"Salar de Imilac","H5",1.01,"Found",2000,23106,-24.2,-68.81,,,,,,
"Tanezrouft 082","CM2",1.01,"Found",2003,31343,24.82,-0.43,,,,,,
"Venus","H4",1.01,"Found",1960,24160,32.4,-97.08,,,,,,
"Yamato 81016","H5",1.01,"Found",1981,29077,-71.5,35.67,,,,,,
"Novy-Projekt","OC",1,"Fell",1908,17935,56,22,,,,,,
"Valdinizza","L6",1,"Fell",1903,24145,44.87,9.15,,,,,,
"Dar al Gani 369","H/L3.5",1,"Found",1997,5917,27.95,15.9,,,,,,
"Dhofar 066","H5/6",1,"Found",1999,6765,19.18,54.67,,,,,,
"Hammadah al Hamra 048","H4/5",1,"Found",1994,11531,28.49,13.31,,,,,,
"Jiddat al Harasis 013","H5",1,"Found",1999,12101,19.17,56.16,,,,,,
"Queen Alexandra Range 99018","H4",1,"Found",1999,21470,-84,168,,,,,,
"Ramlat as Sahmah 320","L6",1,"Found",2009,51992,20.87,55.43,,,,,,
"Rio Rancho","L6",1,"Found",2011,55670,35.3,-106.63,,,,,,
html {
background: rgb(54, 54, 54); margin: 0px; padding: 0px; font-family: Armata, Helvetica, Arial, sans; font-size: 12px;
}
.title {
padding: 10px 10px 10px 30px; color: rgb(0, 196, 255); font-size: 2.2em; font-weight: normal; margin-bottom: 20px;
}
.subtitle {
color: rgb(204, 204, 204); font-family: "Sanchez", serif; font-size: 1.4em;
}
h4 {
color: rgb(0, 196, 255); padding-bottom: 0px; font-family: Armata, Helvetica, Arial, sans; font-size: 1.1em; font-weight: normal; margin-bottom: 0px;
}
#header {
margin: 0px auto; width: 1260px; height: 50px;
}
#map_background {
width: 100%;
}
#charts {
background: rgb(85, 85, 85); margin: 0px auto; width: 1260px;
}
#chartsBackground {
background: rgb(85, 85, 85); padding: 0px; width: 100%; border-bottom-color: rgb(54, 54, 54); border-bottom-width: 1px; border-bottom-style: none; z-index: 1000;
}
#content {
background: rgb(68, 68, 68); color: rgb(255, 255, 255);
}
.about {
margin: 0px auto; width: 800px; font-family: "Sanchez", serif;
}
.about1 {
width: 480px; float: left;
}
.about2 {
width: 280px; float: right;
}
.about a {
color: rgb(255, 255, 255); text-decoration: none; border-bottom-color: rgb(0, 196, 255); border-bottom-width: 2px; border-bottom-style: solid;
}
.about a:hover {
color: rgb(0, 196, 255);
}
.axis text {
font-size: 0.8em; fill: #fff;
}
.axis path {
fill: none; stroke: #fff; stroke-width: 0; shape-rendering: crispEdges;
}
.axis line {
fill: none; stroke: #fff; stroke-width: 0; shape-rendering: crispEdges;
}
#chartAxis {
fill: none; stroke: #fff; stroke-width: 0.6; shape-rendering: crispEdges;
}
div.tooltip {
background: rgb(219, 219, 219); padding: 6px; border-radius: 4px; border: 1px solid rgb(114, 114, 114); border-image: none; width: auto; height: auto; text-align: left; color: black; font-size: 12px; visibility: hidden; position: absolute; z-index: 1200; max-width: 350px; opacity: 0.9; -webkit-border-radius: 4px; -mozilla-border-radius: 4px;
}
.closeButton {
top: -10px; right: -10px; color: rgb(0, 0, 0); position: absolute; cursor: pointer;
}
.brush .extent {
fill-opacity: 0.125; stroke: #fff; shape-rendering: crispEdges;
}
.selecting rect {
fill-opacity: 0.2;
}
.selecting rect.selected {
stroke: #f00;
}
.help {
padding: 5px 0px; color: rgb(114, 114, 114); font-family: "Sanchez", serif; font-size: 1em;
}
#charts .help {
text-align: right; color: rgb(204, 204, 204); padding-right: 30px;
}
#map_background .help {
text-align: right; color: rgb(204, 204, 204); padding-right: 30px;
}
#menu {
background: rgb(245, 245, 245); padding: 10px; left: 30px; top: 400px; width: 210px; height: auto; font-size: 0.9em; display: block; position: absolute; opacity: 0;
}
#menuItem {
color: rgb(54, 54, 54); padding-right: 15px; padding-bottom: 4px; font-family: Armata, Helvetica, Arial, sans; font-size: 1.1em; font-weight: bold; float: left; display: block; cursor: pointer;
}
.last#menuItem {
padding-right: 0px;
}
#menuItem:hover {
color: rgb(0, 196, 255);
}
.active#menuItem {
color: rgb(0, 196, 255);
}
.typeMenu {
clear: both; border-top-color: rgb(114, 114, 114); border-top-width: 1px; border-top-style: solid;
}
.found_fellMenu {
border-top-color: rgb(114, 114, 114); border-top-width: 1px; border-top-style: solid;
}
.lunarMenu {
clear: both; border-top-color: rgb(114, 114, 114); border-top-width: 1px; border-top-style: solid;
}
.background {
opacity: 0;
}
#map {
opacity: 0;
}
#map path {
fill: #f4f4f4; stroke: #898989; stroke-width: 0.808px;
}
div.zoom {
background: rgb(102, 102, 102); margin: 0px; padding: 0px; border: 1px solid white; border-image: none; width: 25px; height: 25px; text-align: center; color: white; font-size: 18px; position: absolute; z-index: 1000; cursor: pointer; opacity: 0.95; -ms-user-select: none; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; user-select: none;
}
.yearText {
font-size: 30px; fill: #fff; text-anchor: start;
}
circle {
stroke: #fff; stroke-width: 0;
}
.history {
padding-top: 5px; font-size: 0.8em;
}
.label {
font-family: "Sanchez", serif;
}
#button {
cursor: pointer;
}
#button:hover {
fill: #00c4ff;
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment