mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
18196 lines
504 KiB
JavaScript
18196 lines
504 KiB
JavaScript
class CQiClient {
|
||
constructor(corpusId) {
|
||
this.socket = io(
|
||
'/corpora/corpus/corpus_analysis',
|
||
{
|
||
auth: {corpus_id: corpusId},
|
||
transports: ['websocket'],
|
||
upgrade: false
|
||
}
|
||
);
|
||
this.connected = false;
|
||
this.corpora = new CQiCorpusCollection(this.socket);
|
||
}
|
||
|
||
connect() {
|
||
return new Promise((resolve, reject) => {
|
||
this.socket.emit('cqi.connect', response => {
|
||
if (response.code === 200) {
|
||
this.connected = true;
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
disconnect() {
|
||
return new Promise((resolve, reject) => {
|
||
this.socket.emit('cqi.disconnect', response => {
|
||
if (response.code === 200) {
|
||
this.connected = false;
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
ping() {
|
||
return new Promise((resolve, reject) => {
|
||
this.socket.emit('cqi.ping', response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiCorpusCollection {
|
||
constructor(socket) {
|
||
this.socket = socket;
|
||
}
|
||
|
||
get(corpusName) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: corpusName};
|
||
|
||
this.socket.emit('cqi.corpora.get', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(new CQiCorpus(this.socket, response.payload));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
list() {
|
||
return new Promise((resolve, reject) => {
|
||
this.socket.emit('cqi.corpora.list', response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload.map(x => {return new CQiSubcorpus(this.socket, x);}));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiCorpus {
|
||
constructor(socket, attrs) {
|
||
this.socket = socket;
|
||
this.charset = attrs.charset;
|
||
this.name = attrs.name;
|
||
this.properties = attrs.properties;
|
||
this.size = attrs.size;
|
||
this.alignmentAttributes = new CQiAlignmentAttributeCollection(this.socket, this);
|
||
this.positionalAttributes = new CQiPositionalAttributeCollection(this.socket, this);
|
||
this.structuralAttributes = new CQiStructuralAttributeCollection(this.socket, this);
|
||
this.subcorpora = new CQiSubcorpusCollection(this.socket, this);
|
||
}
|
||
|
||
getVisualizationData() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.get_visualization_data', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
getCorpusData() {
|
||
return new Promise((resolve, reject) => {
|
||
const dummyData = {
|
||
"corpus": {
|
||
"lexicon": {
|
||
"0": {
|
||
"bounds": [
|
||
0,
|
||
20729
|
||
],
|
||
"counts": {
|
||
"text": 5,
|
||
"s": 864,
|
||
"ent": 411,
|
||
"token": 20730
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 6,
|
||
"1": 1,
|
||
"2": 732,
|
||
"3": 2,
|
||
"4": 91,
|
||
"5": 102,
|
||
"6": 47,
|
||
"7": 133,
|
||
"8": 461,
|
||
"9": 24,
|
||
"10": 104,
|
||
"11": 3,
|
||
"12": 11,
|
||
"13": 4,
|
||
"14": 5,
|
||
"15": 319,
|
||
"16": 188,
|
||
"17": 3,
|
||
"18": 2,
|
||
"19": 1,
|
||
"20": 26,
|
||
"21": 1179,
|
||
"22": 3,
|
||
"23": 770,
|
||
"24": 109,
|
||
"25": 1,
|
||
"26": 1297,
|
||
"27": 81,
|
||
"28": 1,
|
||
"29": 1,
|
||
"30": 1,
|
||
"31": 2,
|
||
"32": 1,
|
||
"33": 127,
|
||
"34": 1,
|
||
"35": 541,
|
||
"36": 1,
|
||
"37": 1,
|
||
"38": 1,
|
||
"39": 4,
|
||
"40": 24,
|
||
"41": 3,
|
||
"42": 4,
|
||
"43": 3,
|
||
"44": 2,
|
||
"45": 2,
|
||
"46": 5,
|
||
"47": 5,
|
||
"48": 3,
|
||
"49": 50,
|
||
"50": 5,
|
||
"51": 4,
|
||
"52": 2,
|
||
"53": 2,
|
||
"54": 20,
|
||
"55": 1,
|
||
"56": 226,
|
||
"57": 5,
|
||
"58": 135,
|
||
"59": 4,
|
||
"60": 2,
|
||
"61": 3,
|
||
"62": 4,
|
||
"63": 5,
|
||
"64": 85,
|
||
"65": 2,
|
||
"66": 63,
|
||
"67": 1,
|
||
"68": 6,
|
||
"69": 457,
|
||
"70": 9,
|
||
"71": 6,
|
||
"72": 1,
|
||
"73": 10,
|
||
"74": 4,
|
||
"75": 2,
|
||
"76": 5,
|
||
"77": 148,
|
||
"78": 112,
|
||
"79": 1,
|
||
"80": 1,
|
||
"81": 1,
|
||
"82": 3,
|
||
"83": 6,
|
||
"84": 4,
|
||
"85": 15,
|
||
"86": 1,
|
||
"87": 1,
|
||
"88": 12,
|
||
"89": 15,
|
||
"90": 165,
|
||
"91": 11,
|
||
"92": 1,
|
||
"93": 1,
|
||
"94": 99,
|
||
"95": 1,
|
||
"96": 36,
|
||
"97": 3,
|
||
"98": 3,
|
||
"99": 5,
|
||
"100": 1,
|
||
"101": 185,
|
||
"102": 16,
|
||
"103": 50,
|
||
"104": 2,
|
||
"105": 19,
|
||
"106": 1,
|
||
"107": 46,
|
||
"108": 82,
|
||
"109": 6,
|
||
"110": 3,
|
||
"111": 2,
|
||
"112": 1,
|
||
"113": 201,
|
||
"114": 3,
|
||
"115": 26,
|
||
"116": 4,
|
||
"117": 6,
|
||
"118": 1,
|
||
"119": 43,
|
||
"120": 3,
|
||
"121": 37,
|
||
"122": 31,
|
||
"123": 1,
|
||
"124": 1,
|
||
"125": 4,
|
||
"126": 46,
|
||
"127": 1,
|
||
"128": 18,
|
||
"129": 1,
|
||
"130": 1,
|
||
"131": 52,
|
||
"132": 1,
|
||
"133": 1,
|
||
"134": 1,
|
||
"135": 46,
|
||
"136": 197,
|
||
"137": 110,
|
||
"138": 8,
|
||
"139": 1,
|
||
"140": 1,
|
||
"141": 5,
|
||
"142": 1,
|
||
"143": 3,
|
||
"144": 1,
|
||
"145": 2,
|
||
"146": 4,
|
||
"147": 3,
|
||
"148": 24,
|
||
"149": 11,
|
||
"150": 7,
|
||
"151": 5,
|
||
"152": 1,
|
||
"153": 1,
|
||
"154": 3,
|
||
"155": 376,
|
||
"156": 6,
|
||
"157": 2,
|
||
"158": 1,
|
||
"159": 11,
|
||
"160": 7,
|
||
"161": 1,
|
||
"162": 15,
|
||
"163": 17,
|
||
"164": 1,
|
||
"165": 6,
|
||
"166": 3,
|
||
"167": 3,
|
||
"168": 3,
|
||
"169": 4,
|
||
"170": 1,
|
||
"171": 1,
|
||
"172": 2,
|
||
"173": 30,
|
||
"174": 3,
|
||
"175": 4,
|
||
"176": 28,
|
||
"177": 3,
|
||
"178": 3,
|
||
"179": 90,
|
||
"180": 22,
|
||
"181": 7,
|
||
"182": 1,
|
||
"183": 159,
|
||
"184": 3,
|
||
"185": 1,
|
||
"186": 11,
|
||
"187": 4,
|
||
"188": 1,
|
||
"189": 2,
|
||
"190": 1,
|
||
"191": 9,
|
||
"192": 1,
|
||
"193": 2,
|
||
"194": 34,
|
||
"195": 3,
|
||
"196": 3,
|
||
"197": 1,
|
||
"198": 2,
|
||
"199": 2,
|
||
"200": 5,
|
||
"201": 93,
|
||
"202": 1,
|
||
"203": 11,
|
||
"204": 2,
|
||
"205": 2,
|
||
"206": 30,
|
||
"207": 202,
|
||
"208": 4,
|
||
"209": 1,
|
||
"210": 5,
|
||
"211": 8,
|
||
"212": 1,
|
||
"213": 1,
|
||
"214": 1,
|
||
"215": 9,
|
||
"216": 45,
|
||
"217": 3,
|
||
"218": 2,
|
||
"219": 7,
|
||
"220": 51,
|
||
"221": 7,
|
||
"222": 1,
|
||
"223": 21,
|
||
"224": 11,
|
||
"225": 6,
|
||
"226": 1,
|
||
"227": 15,
|
||
"228": 2,
|
||
"229": 9,
|
||
"230": 69,
|
||
"231": 14,
|
||
"232": 1,
|
||
"233": 1,
|
||
"234": 1,
|
||
"235": 5,
|
||
"236": 2,
|
||
"237": 5,
|
||
"238": 1,
|
||
"239": 3,
|
||
"240": 4,
|
||
"241": 2,
|
||
"242": 2,
|
||
"243": 17,
|
||
"244": 2,
|
||
"245": 14,
|
||
"246": 1,
|
||
"247": 1,
|
||
"248": 17,
|
||
"249": 1,
|
||
"250": 3,
|
||
"251": 1,
|
||
"252": 1,
|
||
"253": 3,
|
||
"254": 29,
|
||
"255": 9,
|
||
"256": 1,
|
||
"257": 1,
|
||
"258": 1,
|
||
"259": 4,
|
||
"260": 1,
|
||
"261": 6,
|
||
"262": 35,
|
||
"263": 6,
|
||
"264": 1,
|
||
"265": 1,
|
||
"266": 1,
|
||
"267": 10,
|
||
"268": 75,
|
||
"269": 17,
|
||
"270": 2,
|
||
"271": 1,
|
||
"272": 19,
|
||
"273": 13,
|
||
"274": 8,
|
||
"275": 1,
|
||
"276": 5,
|
||
"277": 5,
|
||
"278": 61,
|
||
"279": 2,
|
||
"280": 4,
|
||
"281": 1,
|
||
"282": 2,
|
||
"283": 1,
|
||
"284": 4,
|
||
"285": 1,
|
||
"286": 27,
|
||
"287": 36,
|
||
"288": 4,
|
||
"289": 11,
|
||
"290": 22,
|
||
"291": 3,
|
||
"292": 13,
|
||
"293": 2,
|
||
"294": 1,
|
||
"295": 4,
|
||
"296": 1,
|
||
"297": 2,
|
||
"298": 5,
|
||
"299": 3,
|
||
"300": 1,
|
||
"301": 15,
|
||
"302": 6,
|
||
"303": 14,
|
||
"304": 2,
|
||
"305": 8,
|
||
"306": 3,
|
||
"307": 18,
|
||
"308": 10,
|
||
"309": 2,
|
||
"310": 2,
|
||
"311": 6,
|
||
"312": 7,
|
||
"313": 9,
|
||
"314": 7,
|
||
"315": 8,
|
||
"316": 13,
|
||
"317": 7,
|
||
"318": 7,
|
||
"319": 12,
|
||
"320": 19,
|
||
"321": 80,
|
||
"322": 11,
|
||
"323": 6,
|
||
"324": 5,
|
||
"325": 9,
|
||
"326": 3,
|
||
"327": 1,
|
||
"328": 1,
|
||
"329": 3,
|
||
"330": 20,
|
||
"331": 1,
|
||
"332": 6,
|
||
"333": 8,
|
||
"334": 25,
|
||
"335": 7,
|
||
"336": 11,
|
||
"337": 1,
|
||
"338": 6,
|
||
"339": 2,
|
||
"340": 18,
|
||
"341": 40,
|
||
"342": 1,
|
||
"343": 1,
|
||
"344": 2,
|
||
"345": 22,
|
||
"346": 1,
|
||
"347": 4,
|
||
"348": 1,
|
||
"349": 44,
|
||
"350": 1,
|
||
"351": 10,
|
||
"352": 4,
|
||
"353": 8,
|
||
"354": 6,
|
||
"355": 7,
|
||
"356": 2,
|
||
"357": 1,
|
||
"358": 2,
|
||
"359": 7,
|
||
"360": 15,
|
||
"361": 14,
|
||
"362": 1,
|
||
"363": 1,
|
||
"364": 1,
|
||
"365": 1,
|
||
"366": 8,
|
||
"367": 1,
|
||
"368": 1,
|
||
"369": 5,
|
||
"370": 1,
|
||
"371": 21,
|
||
"372": 1,
|
||
"373": 21,
|
||
"374": 1,
|
||
"375": 1,
|
||
"376": 8,
|
||
"377": 1,
|
||
"378": 3,
|
||
"379": 24,
|
||
"380": 9,
|
||
"381": 7,
|
||
"382": 3,
|
||
"383": 3,
|
||
"384": 1,
|
||
"385": 7,
|
||
"386": 3,
|
||
"387": 1,
|
||
"388": 69,
|
||
"389": 2,
|
||
"390": 4,
|
||
"391": 12,
|
||
"392": 1,
|
||
"393": 21,
|
||
"394": 2,
|
||
"395": 1,
|
||
"396": 60,
|
||
"397": 1,
|
||
"398": 8,
|
||
"399": 9,
|
||
"400": 8,
|
||
"401": 1,
|
||
"402": 1,
|
||
"403": 8,
|
||
"404": 1,
|
||
"405": 16,
|
||
"406": 1,
|
||
"407": 29,
|
||
"408": 1,
|
||
"409": 3,
|
||
"410": 1,
|
||
"411": 1,
|
||
"412": 3,
|
||
"413": 2,
|
||
"414": 2,
|
||
"415": 2,
|
||
"416": 3,
|
||
"417": 4,
|
||
"418": 2,
|
||
"419": 3,
|
||
"420": 1,
|
||
"421": 11,
|
||
"422": 1,
|
||
"423": 2,
|
||
"424": 42,
|
||
"425": 4,
|
||
"426": 1,
|
||
"427": 63,
|
||
"428": 1,
|
||
"429": 1,
|
||
"430": 1,
|
||
"431": 8,
|
||
"432": 3,
|
||
"433": 2,
|
||
"434": 13,
|
||
"435": 1,
|
||
"436": 15,
|
||
"437": 7,
|
||
"438": 34,
|
||
"439": 2,
|
||
"440": 4,
|
||
"441": 1,
|
||
"442": 2,
|
||
"443": 3,
|
||
"444": 5,
|
||
"445": 1,
|
||
"446": 6,
|
||
"447": 1,
|
||
"448": 2,
|
||
"449": 22,
|
||
"450": 17,
|
||
"451": 1,
|
||
"452": 4,
|
||
"453": 1,
|
||
"454": 1,
|
||
"455": 3,
|
||
"456": 1,
|
||
"457": 3,
|
||
"458": 12,
|
||
"459": 6,
|
||
"460": 2,
|
||
"461": 2,
|
||
"462": 6,
|
||
"463": 19,
|
||
"464": 5,
|
||
"465": 2,
|
||
"466": 2,
|
||
"467": 9,
|
||
"468": 5,
|
||
"469": 1,
|
||
"470": 12,
|
||
"471": 25,
|
||
"472": 2,
|
||
"473": 2,
|
||
"474": 1,
|
||
"475": 1,
|
||
"476": 1,
|
||
"477": 7,
|
||
"478": 2,
|
||
"479": 99,
|
||
"480": 6,
|
||
"481": 2,
|
||
"482": 1,
|
||
"483": 2,
|
||
"484": 26,
|
||
"485": 5,
|
||
"486": 2,
|
||
"487": 1,
|
||
"488": 3,
|
||
"489": 2,
|
||
"490": 3,
|
||
"491": 11,
|
||
"492": 7,
|
||
"493": 1,
|
||
"494": 1,
|
||
"495": 1,
|
||
"496": 1,
|
||
"497": 9,
|
||
"498": 5,
|
||
"499": 8,
|
||
"500": 4,
|
||
"501": 4,
|
||
"502": 2,
|
||
"503": 7,
|
||
"504": 29,
|
||
"505": 1,
|
||
"506": 8,
|
||
"507": 1,
|
||
"508": 2,
|
||
"509": 2,
|
||
"510": 9,
|
||
"511": 1,
|
||
"512": 1,
|
||
"513": 1,
|
||
"514": 15,
|
||
"515": 15,
|
||
"516": 9,
|
||
"517": 17,
|
||
"518": 1,
|
||
"519": 35,
|
||
"520": 72,
|
||
"521": 2,
|
||
"522": 1,
|
||
"523": 8,
|
||
"524": 1,
|
||
"525": 1,
|
||
"526": 1,
|
||
"527": 3,
|
||
"528": 2,
|
||
"529": 2,
|
||
"530": 20,
|
||
"531": 2,
|
||
"532": 10,
|
||
"533": 2,
|
||
"534": 4,
|
||
"535": 2,
|
||
"536": 1,
|
||
"537": 1,
|
||
"538": 2,
|
||
"539": 2,
|
||
"540": 2,
|
||
"541": 8,
|
||
"542": 3,
|
||
"543": 1,
|
||
"544": 2,
|
||
"545": 2,
|
||
"546": 3,
|
||
"547": 1,
|
||
"548": 12,
|
||
"549": 1,
|
||
"550": 2,
|
||
"551": 34,
|
||
"552": 5,
|
||
"553": 4,
|
||
"554": 3,
|
||
"555": 2,
|
||
"556": 2,
|
||
"557": 34,
|
||
"558": 3,
|
||
"559": 3,
|
||
"560": 6,
|
||
"561": 3,
|
||
"562": 4,
|
||
"563": 1,
|
||
"564": 1,
|
||
"565": 11,
|
||
"566": 1,
|
||
"567": 1,
|
||
"568": 1,
|
||
"569": 3,
|
||
"570": 4,
|
||
"571": 22,
|
||
"572": 4,
|
||
"573": 7,
|
||
"574": 2,
|
||
"575": 1,
|
||
"576": 1,
|
||
"577": 26,
|
||
"578": 2,
|
||
"579": 1,
|
||
"580": 11,
|
||
"581": 4,
|
||
"582": 2,
|
||
"583": 1,
|
||
"584": 1,
|
||
"585": 1,
|
||
"586": 7,
|
||
"587": 3,
|
||
"588": 13,
|
||
"589": 5,
|
||
"590": 1,
|
||
"591": 1,
|
||
"592": 16,
|
||
"593": 2,
|
||
"594": 1,
|
||
"595": 2,
|
||
"596": 8,
|
||
"597": 1,
|
||
"598": 1,
|
||
"599": 1,
|
||
"600": 2,
|
||
"601": 2,
|
||
"602": 6,
|
||
"603": 3,
|
||
"604": 1,
|
||
"605": 4,
|
||
"606": 2,
|
||
"607": 1,
|
||
"608": 4,
|
||
"609": 6,
|
||
"610": 1,
|
||
"611": 3,
|
||
"612": 3,
|
||
"613": 3,
|
||
"614": 1,
|
||
"615": 1,
|
||
"616": 9,
|
||
"617": 3,
|
||
"618": 1,
|
||
"619": 9,
|
||
"620": 1,
|
||
"621": 1,
|
||
"622": 2,
|
||
"623": 1,
|
||
"624": 2,
|
||
"625": 1,
|
||
"626": 3,
|
||
"627": 3,
|
||
"628": 1,
|
||
"629": 1,
|
||
"630": 1,
|
||
"631": 8,
|
||
"632": 8,
|
||
"633": 10,
|
||
"634": 1,
|
||
"635": 2,
|
||
"636": 1,
|
||
"637": 4,
|
||
"638": 1,
|
||
"639": 1,
|
||
"640": 2,
|
||
"641": 1,
|
||
"642": 1,
|
||
"643": 12,
|
||
"644": 1,
|
||
"645": 8,
|
||
"646": 4,
|
||
"647": 5,
|
||
"648": 1,
|
||
"649": 8,
|
||
"650": 2,
|
||
"651": 2,
|
||
"652": 1,
|
||
"653": 45,
|
||
"654": 1,
|
||
"655": 2,
|
||
"656": 2,
|
||
"657": 2,
|
||
"658": 32,
|
||
"659": 1,
|
||
"660": 2,
|
||
"661": 11,
|
||
"662": 2,
|
||
"663": 6,
|
||
"664": 2,
|
||
"665": 1,
|
||
"666": 4,
|
||
"667": 1,
|
||
"668": 1,
|
||
"669": 2,
|
||
"670": 3,
|
||
"671": 3,
|
||
"672": 1,
|
||
"673": 11,
|
||
"674": 2,
|
||
"675": 1,
|
||
"676": 1,
|
||
"677": 1,
|
||
"678": 2,
|
||
"679": 2,
|
||
"680": 5,
|
||
"681": 5,
|
||
"682": 1,
|
||
"683": 5,
|
||
"684": 2,
|
||
"685": 6,
|
||
"686": 3,
|
||
"687": 8,
|
||
"688": 5,
|
||
"689": 5,
|
||
"690": 3,
|
||
"691": 3,
|
||
"692": 2,
|
||
"693": 2,
|
||
"694": 5,
|
||
"695": 3,
|
||
"696": 10,
|
||
"697": 5,
|
||
"698": 3,
|
||
"699": 9,
|
||
"700": 27,
|
||
"701": 29,
|
||
"702": 2,
|
||
"703": 12,
|
||
"704": 2,
|
||
"705": 7,
|
||
"706": 1,
|
||
"707": 1,
|
||
"708": 4,
|
||
"709": 3,
|
||
"710": 4,
|
||
"711": 1,
|
||
"712": 1,
|
||
"713": 1,
|
||
"714": 1,
|
||
"715": 1,
|
||
"716": 1,
|
||
"717": 1,
|
||
"718": 1,
|
||
"719": 1,
|
||
"720": 2,
|
||
"721": 1,
|
||
"722": 1,
|
||
"723": 3,
|
||
"724": 1,
|
||
"725": 14,
|
||
"726": 2,
|
||
"727": 2,
|
||
"728": 1,
|
||
"729": 1,
|
||
"730": 7,
|
||
"731": 3,
|
||
"732": 1,
|
||
"733": 8,
|
||
"734": 1,
|
||
"735": 1,
|
||
"736": 1,
|
||
"737": 2,
|
||
"738": 1,
|
||
"739": 2,
|
||
"740": 1,
|
||
"741": 2,
|
||
"742": 1,
|
||
"743": 2,
|
||
"744": 1,
|
||
"745": 2,
|
||
"746": 17,
|
||
"747": 1,
|
||
"748": 1,
|
||
"749": 2,
|
||
"750": 6,
|
||
"751": 1,
|
||
"752": 1,
|
||
"753": 1,
|
||
"754": 1,
|
||
"755": 9,
|
||
"756": 7,
|
||
"757": 2,
|
||
"758": 16,
|
||
"759": 10,
|
||
"760": 5,
|
||
"761": 1,
|
||
"762": 1,
|
||
"763": 3,
|
||
"764": 5,
|
||
"765": 4,
|
||
"766": 3,
|
||
"767": 4,
|
||
"768": 1,
|
||
"769": 3,
|
||
"770": 1,
|
||
"771": 2,
|
||
"772": 10,
|
||
"773": 10,
|
||
"774": 2,
|
||
"775": 2,
|
||
"776": 19,
|
||
"777": 3,
|
||
"778": 3,
|
||
"779": 8,
|
||
"780": 2,
|
||
"781": 1,
|
||
"782": 3,
|
||
"783": 1,
|
||
"784": 2,
|
||
"785": 1,
|
||
"786": 10,
|
||
"787": 1,
|
||
"788": 10,
|
||
"789": 5,
|
||
"790": 4,
|
||
"791": 8,
|
||
"792": 1,
|
||
"793": 1,
|
||
"794": 1,
|
||
"795": 1,
|
||
"796": 1,
|
||
"797": 1,
|
||
"798": 1,
|
||
"799": 1,
|
||
"800": 1,
|
||
"801": 2,
|
||
"802": 2,
|
||
"803": 2,
|
||
"804": 1,
|
||
"805": 4,
|
||
"806": 1,
|
||
"807": 2,
|
||
"808": 3,
|
||
"809": 18,
|
||
"810": 6,
|
||
"811": 9,
|
||
"812": 2,
|
||
"813": 1,
|
||
"814": 3,
|
||
"815": 2,
|
||
"816": 1,
|
||
"817": 1,
|
||
"818": 17,
|
||
"819": 2,
|
||
"820": 1,
|
||
"821": 2,
|
||
"822": 1,
|
||
"823": 2,
|
||
"824": 1,
|
||
"825": 1,
|
||
"826": 4,
|
||
"827": 2,
|
||
"828": 2,
|
||
"829": 2,
|
||
"830": 1,
|
||
"831": 1,
|
||
"832": 2,
|
||
"833": 3,
|
||
"834": 1,
|
||
"835": 2,
|
||
"836": 24,
|
||
"837": 7,
|
||
"838": 3,
|
||
"839": 11,
|
||
"840": 1,
|
||
"841": 1,
|
||
"842": 1,
|
||
"843": 2,
|
||
"844": 17,
|
||
"845": 1,
|
||
"846": 5,
|
||
"847": 1,
|
||
"848": 10,
|
||
"849": 10,
|
||
"850": 15,
|
||
"851": 2,
|
||
"852": 2,
|
||
"853": 5,
|
||
"854": 3,
|
||
"855": 1,
|
||
"856": 1,
|
||
"857": 1,
|
||
"858": 9,
|
||
"859": 2,
|
||
"860": 1,
|
||
"861": 1,
|
||
"862": 4,
|
||
"863": 1,
|
||
"864": 1,
|
||
"865": 1,
|
||
"866": 11,
|
||
"867": 2,
|
||
"868": 5,
|
||
"869": 1,
|
||
"870": 1,
|
||
"871": 1,
|
||
"872": 6,
|
||
"873": 1,
|
||
"874": 4,
|
||
"875": 4,
|
||
"876": 1,
|
||
"877": 1,
|
||
"878": 2,
|
||
"879": 1,
|
||
"880": 1,
|
||
"881": 18,
|
||
"882": 2,
|
||
"883": 1,
|
||
"884": 3,
|
||
"885": 2,
|
||
"886": 3,
|
||
"887": 6,
|
||
"888": 2,
|
||
"889": 3,
|
||
"890": 1,
|
||
"891": 1,
|
||
"892": 1,
|
||
"893": 1,
|
||
"894": 3,
|
||
"895": 2,
|
||
"896": 1,
|
||
"897": 1,
|
||
"898": 1,
|
||
"899": 1,
|
||
"900": 1,
|
||
"901": 10,
|
||
"902": 2,
|
||
"903": 1,
|
||
"904": 1,
|
||
"905": 1,
|
||
"906": 1,
|
||
"907": 1,
|
||
"908": 1,
|
||
"909": 1,
|
||
"910": 3,
|
||
"911": 1,
|
||
"912": 2,
|
||
"913": 1,
|
||
"914": 1,
|
||
"915": 1,
|
||
"916": 1,
|
||
"917": 2,
|
||
"918": 1,
|
||
"919": 21,
|
||
"920": 1,
|
||
"921": 1,
|
||
"922": 1,
|
||
"923": 1,
|
||
"924": 1,
|
||
"925": 1,
|
||
"926": 10,
|
||
"927": 1,
|
||
"928": 1,
|
||
"929": 5,
|
||
"930": 3,
|
||
"931": 4,
|
||
"932": 1,
|
||
"933": 2,
|
||
"934": 1,
|
||
"935": 1,
|
||
"936": 2,
|
||
"937": 8,
|
||
"938": 3,
|
||
"939": 6,
|
||
"940": 4,
|
||
"941": 1,
|
||
"942": 9,
|
||
"943": 1,
|
||
"944": 1,
|
||
"945": 1,
|
||
"946": 38,
|
||
"947": 3,
|
||
"948": 1,
|
||
"949": 1,
|
||
"950": 1,
|
||
"951": 1,
|
||
"952": 1,
|
||
"953": 5,
|
||
"954": 1,
|
||
"955": 1,
|
||
"956": 2,
|
||
"957": 1,
|
||
"958": 1,
|
||
"959": 2,
|
||
"960": 1,
|
||
"961": 1,
|
||
"962": 12,
|
||
"963": 11,
|
||
"964": 2,
|
||
"965": 10,
|
||
"966": 1,
|
||
"967": 1,
|
||
"968": 1,
|
||
"969": 3,
|
||
"970": 2,
|
||
"971": 2,
|
||
"972": 1,
|
||
"973": 3,
|
||
"974": 3,
|
||
"975": 3,
|
||
"976": 5,
|
||
"977": 1,
|
||
"978": 1,
|
||
"979": 1,
|
||
"980": 1,
|
||
"981": 1,
|
||
"982": 2,
|
||
"983": 19,
|
||
"984": 8,
|
||
"985": 6,
|
||
"986": 1,
|
||
"987": 3,
|
||
"988": 19,
|
||
"989": 2,
|
||
"990": 3,
|
||
"991": 1,
|
||
"992": 1,
|
||
"993": 1,
|
||
"994": 1,
|
||
"995": 10,
|
||
"996": 5,
|
||
"997": 2,
|
||
"998": 4,
|
||
"999": 1,
|
||
"1000": 1,
|
||
"1001": 1,
|
||
"1002": 1,
|
||
"1003": 11,
|
||
"1004": 2,
|
||
"1005": 1,
|
||
"1006": 5,
|
||
"1007": 3,
|
||
"1008": 2,
|
||
"1009": 1,
|
||
"1010": 2,
|
||
"1011": 4,
|
||
"1012": 1,
|
||
"1013": 1,
|
||
"1014": 1,
|
||
"1015": 3,
|
||
"1016": 7,
|
||
"1017": 1,
|
||
"1018": 2,
|
||
"1019": 2,
|
||
"1020": 1,
|
||
"1021": 6,
|
||
"1022": 1,
|
||
"1023": 1,
|
||
"1024": 1,
|
||
"1025": 6,
|
||
"1026": 1,
|
||
"1027": 1,
|
||
"1028": 15,
|
||
"1029": 1,
|
||
"1030": 7,
|
||
"1031": 3,
|
||
"1032": 7,
|
||
"1033": 1,
|
||
"1034": 1,
|
||
"1035": 1,
|
||
"1036": 20,
|
||
"1037": 6,
|
||
"1038": 1,
|
||
"1039": 4,
|
||
"1040": 3,
|
||
"1041": 1,
|
||
"1042": 1,
|
||
"1043": 1,
|
||
"1044": 1,
|
||
"1045": 4,
|
||
"1046": 1,
|
||
"1047": 3,
|
||
"1048": 7,
|
||
"1049": 1,
|
||
"1050": 1,
|
||
"1051": 1,
|
||
"1052": 1,
|
||
"1053": 1,
|
||
"1054": 1,
|
||
"1055": 20,
|
||
"1056": 1,
|
||
"1057": 1,
|
||
"1058": 1,
|
||
"1059": 1,
|
||
"1060": 7,
|
||
"1061": 1,
|
||
"1062": 1,
|
||
"1063": 1,
|
||
"1064": 1,
|
||
"1065": 3,
|
||
"1066": 1,
|
||
"1067": 1,
|
||
"1068": 1,
|
||
"1069": 1,
|
||
"1070": 5,
|
||
"1071": 3,
|
||
"1072": 1,
|
||
"1073": 11,
|
||
"1074": 1,
|
||
"1075": 1,
|
||
"1076": 1,
|
||
"1077": 1,
|
||
"1078": 2,
|
||
"1079": 1,
|
||
"1080": 1,
|
||
"1081": 3,
|
||
"1082": 1,
|
||
"1083": 2,
|
||
"1084": 1,
|
||
"1085": 1,
|
||
"1086": 1,
|
||
"1087": 3,
|
||
"1088": 1,
|
||
"1089": 1,
|
||
"1090": 1,
|
||
"1091": 1,
|
||
"1092": 1,
|
||
"1093": 1,
|
||
"1094": 4,
|
||
"1095": 4,
|
||
"1096": 3,
|
||
"1097": 1,
|
||
"1098": 1,
|
||
"1099": 1,
|
||
"1100": 1,
|
||
"1101": 2,
|
||
"1102": 2,
|
||
"1103": 3,
|
||
"1104": 1,
|
||
"1105": 1,
|
||
"1106": 1,
|
||
"1107": 2,
|
||
"1108": 1,
|
||
"1109": 1,
|
||
"1110": 5,
|
||
"1111": 3,
|
||
"1112": 1,
|
||
"1113": 1,
|
||
"1114": 1,
|
||
"1115": 1,
|
||
"1116": 2,
|
||
"1117": 2,
|
||
"1118": 1,
|
||
"1119": 15,
|
||
"1120": 5,
|
||
"1121": 1,
|
||
"1122": 1,
|
||
"1123": 3,
|
||
"1124": 1,
|
||
"1125": 1,
|
||
"1126": 1,
|
||
"1127": 1,
|
||
"1128": 2,
|
||
"1129": 1,
|
||
"1130": 9,
|
||
"1131": 1,
|
||
"1132": 20,
|
||
"1133": 1,
|
||
"1134": 1,
|
||
"1135": 4,
|
||
"1136": 1,
|
||
"1137": 1,
|
||
"1138": 1,
|
||
"1139": 1,
|
||
"1140": 2,
|
||
"1141": 1,
|
||
"1142": 1,
|
||
"1143": 1,
|
||
"1144": 2,
|
||
"1145": 1,
|
||
"1146": 1,
|
||
"1147": 3,
|
||
"1148": 1,
|
||
"1149": 4,
|
||
"1150": 1,
|
||
"1151": 1,
|
||
"1152": 1,
|
||
"1153": 1,
|
||
"1154": 1,
|
||
"1155": 1,
|
||
"1156": 1,
|
||
"1157": 1,
|
||
"1158": 1,
|
||
"1159": 1,
|
||
"1160": 1,
|
||
"1161": 1,
|
||
"1162": 1,
|
||
"1163": 4,
|
||
"1164": 10,
|
||
"1165": 8,
|
||
"1166": 3,
|
||
"1167": 5,
|
||
"1168": 1,
|
||
"1169": 1,
|
||
"1170": 4,
|
||
"1171": 5,
|
||
"1172": 1,
|
||
"1173": 1,
|
||
"1174": 1,
|
||
"1175": 1,
|
||
"1176": 2,
|
||
"1177": 3,
|
||
"1178": 1,
|
||
"1179": 1,
|
||
"1180": 13,
|
||
"1181": 1,
|
||
"1182": 2,
|
||
"1183": 1,
|
||
"1184": 2,
|
||
"1185": 3,
|
||
"1186": 10,
|
||
"1187": 2,
|
||
"1188": 2,
|
||
"1189": 2,
|
||
"1190": 14,
|
||
"1191": 1,
|
||
"1192": 1,
|
||
"1193": 1,
|
||
"1194": 2,
|
||
"1195": 1,
|
||
"1196": 2,
|
||
"1197": 1,
|
||
"1198": 1,
|
||
"1199": 1,
|
||
"1200": 1,
|
||
"1201": 1,
|
||
"1202": 1,
|
||
"1203": 1,
|
||
"1204": 1,
|
||
"1205": 1,
|
||
"1206": 1,
|
||
"1207": 3,
|
||
"1208": 1,
|
||
"1209": 1,
|
||
"1210": 1,
|
||
"1211": 1,
|
||
"1212": 1,
|
||
"1213": 2,
|
||
"1214": 1,
|
||
"1215": 3,
|
||
"1216": 3,
|
||
"1217": 6,
|
||
"1218": 1,
|
||
"1219": 7,
|
||
"1220": 6,
|
||
"1221": 1,
|
||
"1222": 4,
|
||
"1223": 1,
|
||
"1224": 1,
|
||
"1225": 1,
|
||
"1226": 2,
|
||
"1227": 6,
|
||
"1228": 2,
|
||
"1229": 1,
|
||
"1230": 5,
|
||
"1231": 1,
|
||
"1232": 1,
|
||
"1233": 1,
|
||
"1234": 2,
|
||
"1235": 1,
|
||
"1236": 18,
|
||
"1237": 5,
|
||
"1238": 1,
|
||
"1239": 1,
|
||
"1240": 1,
|
||
"1241": 1,
|
||
"1242": 1,
|
||
"1243": 1,
|
||
"1244": 1,
|
||
"1245": 1,
|
||
"1246": 3,
|
||
"1247": 1,
|
||
"1248": 1,
|
||
"1249": 1,
|
||
"1250": 2,
|
||
"1251": 1,
|
||
"1252": 1,
|
||
"1253": 4,
|
||
"1254": 5,
|
||
"1255": 1,
|
||
"1256": 1,
|
||
"1257": 2,
|
||
"1258": 1,
|
||
"1259": 3,
|
||
"1260": 1,
|
||
"1261": 1,
|
||
"1262": 2,
|
||
"1263": 1,
|
||
"1264": 2,
|
||
"1265": 2,
|
||
"1266": 1,
|
||
"1267": 1,
|
||
"1268": 1,
|
||
"1269": 1,
|
||
"1270": 3,
|
||
"1271": 2,
|
||
"1272": 3,
|
||
"1273": 5,
|
||
"1274": 1,
|
||
"1275": 1,
|
||
"1276": 3,
|
||
"1277": 1,
|
||
"1278": 14,
|
||
"1279": 1,
|
||
"1280": 3,
|
||
"1281": 1,
|
||
"1282": 2,
|
||
"1283": 1,
|
||
"1284": 1,
|
||
"1285": 2,
|
||
"1286": 1,
|
||
"1287": 2,
|
||
"1288": 4,
|
||
"1289": 2,
|
||
"1290": 1,
|
||
"1291": 14,
|
||
"1292": 2,
|
||
"1293": 3,
|
||
"1294": 1,
|
||
"1295": 1,
|
||
"1296": 1,
|
||
"1297": 1,
|
||
"1298": 1,
|
||
"1299": 1,
|
||
"1300": 1,
|
||
"1301": 1,
|
||
"1302": 1,
|
||
"1303": 3,
|
||
"1304": 5,
|
||
"1305": 1,
|
||
"1306": 1,
|
||
"1307": 1,
|
||
"1308": 1,
|
||
"1309": 3,
|
||
"1310": 14,
|
||
"1311": 1,
|
||
"1312": 1,
|
||
"1313": 3,
|
||
"1314": 1,
|
||
"1315": 1,
|
||
"1316": 1,
|
||
"1317": 1,
|
||
"1318": 1,
|
||
"1319": 1,
|
||
"1320": 1,
|
||
"1321": 6,
|
||
"1322": 1,
|
||
"1323": 1,
|
||
"1324": 1,
|
||
"1325": 1,
|
||
"1326": 1,
|
||
"1327": 6,
|
||
"1328": 1,
|
||
"1329": 1,
|
||
"1330": 1,
|
||
"1331": 1,
|
||
"1332": 2,
|
||
"1333": 1,
|
||
"1334": 1,
|
||
"1335": 1,
|
||
"1336": 1,
|
||
"1337": 1,
|
||
"1338": 3,
|
||
"1339": 1,
|
||
"1340": 1,
|
||
"1341": 1,
|
||
"1342": 1,
|
||
"1343": 5,
|
||
"1344": 4,
|
||
"1345": 1,
|
||
"1346": 1,
|
||
"1347": 6,
|
||
"1348": 2,
|
||
"1349": 1,
|
||
"1350": 1,
|
||
"1351": 1,
|
||
"1352": 1,
|
||
"1353": 5,
|
||
"1354": 1,
|
||
"1355": 1,
|
||
"1356": 2,
|
||
"1357": 1,
|
||
"1358": 6,
|
||
"1359": 2,
|
||
"1360": 3,
|
||
"1361": 1,
|
||
"1362": 11,
|
||
"1363": 2,
|
||
"1364": 1,
|
||
"1365": 4,
|
||
"1366": 2,
|
||
"1367": 5,
|
||
"1368": 4,
|
||
"1369": 4,
|
||
"1370": 3,
|
||
"1371": 3,
|
||
"1372": 2,
|
||
"1373": 3,
|
||
"1374": 1,
|
||
"1375": 1,
|
||
"1376": 1,
|
||
"1377": 1,
|
||
"1378": 3,
|
||
"1379": 1,
|
||
"1380": 1,
|
||
"1381": 7,
|
||
"1382": 2,
|
||
"1383": 1,
|
||
"1384": 1,
|
||
"1385": 1,
|
||
"1386": 3,
|
||
"1387": 2,
|
||
"1388": 2,
|
||
"1389": 1,
|
||
"1390": 1,
|
||
"1391": 1,
|
||
"1392": 2,
|
||
"1393": 10,
|
||
"1394": 2,
|
||
"1395": 1,
|
||
"1396": 1,
|
||
"1397": 1,
|
||
"1398": 1,
|
||
"1399": 1,
|
||
"1400": 1,
|
||
"1401": 1,
|
||
"1402": 2,
|
||
"1403": 1,
|
||
"1404": 1,
|
||
"1405": 4,
|
||
"1406": 1,
|
||
"1407": 8,
|
||
"1408": 1,
|
||
"1409": 1,
|
||
"1410": 2,
|
||
"1411": 2,
|
||
"1412": 1,
|
||
"1413": 1,
|
||
"1414": 1,
|
||
"1415": 1,
|
||
"1416": 2,
|
||
"1417": 1,
|
||
"1418": 1,
|
||
"1419": 2,
|
||
"1420": 1,
|
||
"1421": 1,
|
||
"1422": 1,
|
||
"1423": 4,
|
||
"1424": 1,
|
||
"1425": 8,
|
||
"1426": 3,
|
||
"1427": 1,
|
||
"1428": 2,
|
||
"1429": 2,
|
||
"1430": 1,
|
||
"1431": 3,
|
||
"1432": 1,
|
||
"1433": 1,
|
||
"1434": 2,
|
||
"1435": 1,
|
||
"1436": 1,
|
||
"1437": 1,
|
||
"1438": 2,
|
||
"1439": 1,
|
||
"1440": 1,
|
||
"1441": 1,
|
||
"1442": 2,
|
||
"1443": 1,
|
||
"1444": 2,
|
||
"1445": 1,
|
||
"1446": 1,
|
||
"1447": 1,
|
||
"1448": 1,
|
||
"1449": 24,
|
||
"1450": 2,
|
||
"1451": 2,
|
||
"1452": 1,
|
||
"1453": 1,
|
||
"1454": 1,
|
||
"1455": 2,
|
||
"1456": 2,
|
||
"1457": 1,
|
||
"1458": 4,
|
||
"1459": 1,
|
||
"1460": 1,
|
||
"1461": 2,
|
||
"1462": 1,
|
||
"1463": 1,
|
||
"1464": 3,
|
||
"1465": 1,
|
||
"1466": 12,
|
||
"1467": 3,
|
||
"1468": 12,
|
||
"1469": 1,
|
||
"1470": 1,
|
||
"1471": 1,
|
||
"1472": 2,
|
||
"1473": 1,
|
||
"1474": 4,
|
||
"1475": 1,
|
||
"1476": 1,
|
||
"1477": 1,
|
||
"1478": 1,
|
||
"1479": 1,
|
||
"1480": 1,
|
||
"1481": 1,
|
||
"1482": 1,
|
||
"1483": 3,
|
||
"1484": 2,
|
||
"1485": 5,
|
||
"1486": 3,
|
||
"1487": 1,
|
||
"1488": 1,
|
||
"1489": 6,
|
||
"1490": 1,
|
||
"1491": 1,
|
||
"1492": 2,
|
||
"1493": 2,
|
||
"1494": 1,
|
||
"1495": 1,
|
||
"1496": 1,
|
||
"1497": 1,
|
||
"1498": 1,
|
||
"1499": 1,
|
||
"1500": 1,
|
||
"1501": 1,
|
||
"1502": 1,
|
||
"1503": 1,
|
||
"1504": 1,
|
||
"1505": 1,
|
||
"1506": 1,
|
||
"1507": 4,
|
||
"1508": 1,
|
||
"1509": 1,
|
||
"1510": 1,
|
||
"1511": 3,
|
||
"1512": 1,
|
||
"1513": 1,
|
||
"1514": 2,
|
||
"1515": 1,
|
||
"1516": 1,
|
||
"1517": 1,
|
||
"1518": 2,
|
||
"1519": 1,
|
||
"1520": 1,
|
||
"1521": 4,
|
||
"1522": 1,
|
||
"1523": 3,
|
||
"1524": 1,
|
||
"1525": 2,
|
||
"1526": 1,
|
||
"1527": 1,
|
||
"1528": 1,
|
||
"1529": 3,
|
||
"1530": 1,
|
||
"1531": 1,
|
||
"1532": 1,
|
||
"1533": 4,
|
||
"1534": 1,
|
||
"1535": 2,
|
||
"1536": 13,
|
||
"1537": 1,
|
||
"1538": 7,
|
||
"1539": 1,
|
||
"1540": 1,
|
||
"1541": 1,
|
||
"1542": 1,
|
||
"1543": 1,
|
||
"1544": 2,
|
||
"1545": 3,
|
||
"1546": 2,
|
||
"1547": 4,
|
||
"1548": 1,
|
||
"1549": 4,
|
||
"1550": 1,
|
||
"1551": 1,
|
||
"1552": 3,
|
||
"1553": 1,
|
||
"1554": 3,
|
||
"1555": 1,
|
||
"1556": 1,
|
||
"1557": 1,
|
||
"1558": 1,
|
||
"1559": 1,
|
||
"1560": 2,
|
||
"1561": 1,
|
||
"1562": 2,
|
||
"1563": 2,
|
||
"1564": 2,
|
||
"1565": 2,
|
||
"1566": 2,
|
||
"1567": 2,
|
||
"1568": 4,
|
||
"1569": 1,
|
||
"1570": 1,
|
||
"1571": 1,
|
||
"1572": 1,
|
||
"1573": 3,
|
||
"1574": 4,
|
||
"1575": 4,
|
||
"1576": 1,
|
||
"1577": 1,
|
||
"1578": 2,
|
||
"1579": 1,
|
||
"1580": 1,
|
||
"1581": 1,
|
||
"1582": 2,
|
||
"1583": 5,
|
||
"1584": 3,
|
||
"1585": 1,
|
||
"1586": 4,
|
||
"1587": 1,
|
||
"1588": 2,
|
||
"1589": 3,
|
||
"1590": 1,
|
||
"1591": 2,
|
||
"1592": 1,
|
||
"1593": 1,
|
||
"1594": 1,
|
||
"1595": 2,
|
||
"1596": 1,
|
||
"1597": 1,
|
||
"1598": 6,
|
||
"1599": 6,
|
||
"1600": 2,
|
||
"1601": 1,
|
||
"1602": 1,
|
||
"1603": 1,
|
||
"1604": 1,
|
||
"1605": 3,
|
||
"1606": 1,
|
||
"1607": 5,
|
||
"1608": 2,
|
||
"1609": 2,
|
||
"1610": 3,
|
||
"1611": 3,
|
||
"1612": 1,
|
||
"1613": 2,
|
||
"1614": 3,
|
||
"1615": 2,
|
||
"1616": 4,
|
||
"1617": 3,
|
||
"1618": 10,
|
||
"1619": 4,
|
||
"1620": 2,
|
||
"1621": 8,
|
||
"1622": 1,
|
||
"1623": 15,
|
||
"1624": 1,
|
||
"1625": 1,
|
||
"1626": 1,
|
||
"1627": 1,
|
||
"1628": 7,
|
||
"1629": 5,
|
||
"1630": 1,
|
||
"1631": 2,
|
||
"1632": 1,
|
||
"1633": 1,
|
||
"1634": 4,
|
||
"1635": 2,
|
||
"1636": 2,
|
||
"1637": 6,
|
||
"1638": 6,
|
||
"1639": 1,
|
||
"1640": 2,
|
||
"1641": 21,
|
||
"1642": 2,
|
||
"1643": 2,
|
||
"1644": 1,
|
||
"1645": 5,
|
||
"1646": 1,
|
||
"1647": 2,
|
||
"1648": 2,
|
||
"1649": 4,
|
||
"1650": 1,
|
||
"1651": 1,
|
||
"1652": 13,
|
||
"1653": 3,
|
||
"1654": 4,
|
||
"1655": 3,
|
||
"1656": 1,
|
||
"1657": 1,
|
||
"1658": 2,
|
||
"1659": 1,
|
||
"1660": 2,
|
||
"1661": 1,
|
||
"1662": 1,
|
||
"1663": 1,
|
||
"1664": 3,
|
||
"1665": 4,
|
||
"1666": 4,
|
||
"1667": 1,
|
||
"1668": 1,
|
||
"1669": 5,
|
||
"1670": 1,
|
||
"1671": 1,
|
||
"1672": 2,
|
||
"1673": 12,
|
||
"1674": 1,
|
||
"1675": 3,
|
||
"1676": 2,
|
||
"1677": 1,
|
||
"1678": 1,
|
||
"1679": 2,
|
||
"1680": 3,
|
||
"1681": 5,
|
||
"1682": 1,
|
||
"1683": 1,
|
||
"1684": 1,
|
||
"1685": 2,
|
||
"1686": 1,
|
||
"1687": 6,
|
||
"1688": 1,
|
||
"1689": 14,
|
||
"1690": 1,
|
||
"1691": 4,
|
||
"1692": 1,
|
||
"1693": 4,
|
||
"1694": 1,
|
||
"1695": 5,
|
||
"1696": 1,
|
||
"1697": 8,
|
||
"1698": 9,
|
||
"1699": 1,
|
||
"1700": 2,
|
||
"1701": 1,
|
||
"1702": 2,
|
||
"1703": 1,
|
||
"1704": 3,
|
||
"1705": 2,
|
||
"1706": 4,
|
||
"1707": 3,
|
||
"1708": 2,
|
||
"1709": 1,
|
||
"1710": 4,
|
||
"1711": 10,
|
||
"1712": 3,
|
||
"1713": 4,
|
||
"1714": 1,
|
||
"1715": 2,
|
||
"1716": 1,
|
||
"1717": 1,
|
||
"1718": 1,
|
||
"1719": 1,
|
||
"1720": 1,
|
||
"1721": 3,
|
||
"1722": 1,
|
||
"1723": 1,
|
||
"1724": 3,
|
||
"1725": 2,
|
||
"1726": 2,
|
||
"1727": 1,
|
||
"1728": 1,
|
||
"1729": 2,
|
||
"1730": 2,
|
||
"1731": 7,
|
||
"1732": 1,
|
||
"1733": 1,
|
||
"1734": 2,
|
||
"1735": 1,
|
||
"1736": 3,
|
||
"1737": 3,
|
||
"1738": 2,
|
||
"1739": 1,
|
||
"1740": 1,
|
||
"1741": 5,
|
||
"1742": 2,
|
||
"1743": 1,
|
||
"1744": 1,
|
||
"1745": 1,
|
||
"1746": 1,
|
||
"1747": 7,
|
||
"1748": 1,
|
||
"1749": 3,
|
||
"1750": 2,
|
||
"1751": 1,
|
||
"1752": 1,
|
||
"1753": 4,
|
||
"1754": 4,
|
||
"1755": 5,
|
||
"1756": 10,
|
||
"1757": 1,
|
||
"1758": 1,
|
||
"1759": 3,
|
||
"1760": 2,
|
||
"1761": 2,
|
||
"1762": 1,
|
||
"1763": 3,
|
||
"1764": 1,
|
||
"1765": 1,
|
||
"1766": 1,
|
||
"1767": 11,
|
||
"1768": 2,
|
||
"1769": 6,
|
||
"1770": 2,
|
||
"1771": 4,
|
||
"1772": 5,
|
||
"1773": 1,
|
||
"1774": 1,
|
||
"1775": 1,
|
||
"1776": 1,
|
||
"1777": 1,
|
||
"1778": 1,
|
||
"1779": 1,
|
||
"1780": 2,
|
||
"1781": 3,
|
||
"1782": 3,
|
||
"1783": 2,
|
||
"1784": 1,
|
||
"1785": 6,
|
||
"1786": 3,
|
||
"1787": 2,
|
||
"1788": 6,
|
||
"1789": 8,
|
||
"1790": 5,
|
||
"1791": 3,
|
||
"1792": 1,
|
||
"1793": 1,
|
||
"1794": 1,
|
||
"1795": 2,
|
||
"1796": 2,
|
||
"1797": 1,
|
||
"1798": 2,
|
||
"1799": 2,
|
||
"1800": 1,
|
||
"1801": 2,
|
||
"1802": 2,
|
||
"1803": 13,
|
||
"1804": 4,
|
||
"1805": 1,
|
||
"1806": 3,
|
||
"1807": 7,
|
||
"1808": 18,
|
||
"1809": 5,
|
||
"1810": 1,
|
||
"1811": 8,
|
||
"1812": 9,
|
||
"1813": 6,
|
||
"1814": 1,
|
||
"1815": 4,
|
||
"1816": 2,
|
||
"1817": 3,
|
||
"1818": 1,
|
||
"1819": 1,
|
||
"1820": 2,
|
||
"1821": 1,
|
||
"1822": 1,
|
||
"1823": 3,
|
||
"1824": 1,
|
||
"1825": 5,
|
||
"1826": 5,
|
||
"1827": 3,
|
||
"1828": 2,
|
||
"1829": 2,
|
||
"1830": 1,
|
||
"1831": 1,
|
||
"1832": 9,
|
||
"1833": 3,
|
||
"1834": 2,
|
||
"1835": 1,
|
||
"1836": 4,
|
||
"1837": 2,
|
||
"1838": 5,
|
||
"1839": 1,
|
||
"1840": 2,
|
||
"1841": 7,
|
||
"1842": 1,
|
||
"1843": 1,
|
||
"1844": 1,
|
||
"1845": 6,
|
||
"1846": 1,
|
||
"1847": 1,
|
||
"1848": 2,
|
||
"1849": 6,
|
||
"1850": 1,
|
||
"1851": 1,
|
||
"1852": 2,
|
||
"1853": 1,
|
||
"1854": 1,
|
||
"1855": 5,
|
||
"1856": 1,
|
||
"1857": 1,
|
||
"1858": 3,
|
||
"1859": 1,
|
||
"1860": 1,
|
||
"1861": 2,
|
||
"1862": 5,
|
||
"1863": 9,
|
||
"1864": 1,
|
||
"1865": 1,
|
||
"1866": 2,
|
||
"1867": 4,
|
||
"1868": 1,
|
||
"1869": 6,
|
||
"1870": 4,
|
||
"1871": 3,
|
||
"1872": 1,
|
||
"1873": 2,
|
||
"1874": 4,
|
||
"1875": 2,
|
||
"1876": 1,
|
||
"1877": 1,
|
||
"1878": 1,
|
||
"1879": 3,
|
||
"1880": 3,
|
||
"1881": 6,
|
||
"1882": 1,
|
||
"1883": 1,
|
||
"1884": 1,
|
||
"1885": 1,
|
||
"1886": 1,
|
||
"1887": 1,
|
||
"1888": 1,
|
||
"1889": 2,
|
||
"1890": 1,
|
||
"1891": 2,
|
||
"1892": 4,
|
||
"1893": 4,
|
||
"1894": 1,
|
||
"1895": 6,
|
||
"1896": 1,
|
||
"1897": 1,
|
||
"1898": 1,
|
||
"1899": 4,
|
||
"1900": 2,
|
||
"1901": 1,
|
||
"1902": 9,
|
||
"1903": 4,
|
||
"1904": 1,
|
||
"1905": 3,
|
||
"1906": 1,
|
||
"1907": 1,
|
||
"1908": 2,
|
||
"1909": 2,
|
||
"1910": 2,
|
||
"1911": 1,
|
||
"1912": 4,
|
||
"1913": 1,
|
||
"1914": 3,
|
||
"1915": 1,
|
||
"1916": 3,
|
||
"1917": 5,
|
||
"1918": 2,
|
||
"1919": 1,
|
||
"1920": 1,
|
||
"1921": 3,
|
||
"1922": 3,
|
||
"1923": 4,
|
||
"1924": 1,
|
||
"1925": 11,
|
||
"1926": 1,
|
||
"1927": 1,
|
||
"1928": 5,
|
||
"1929": 1,
|
||
"1930": 2,
|
||
"1931": 1,
|
||
"1932": 1,
|
||
"1933": 1,
|
||
"1934": 1,
|
||
"1935": 1,
|
||
"1936": 5,
|
||
"1937": 1,
|
||
"1938": 1,
|
||
"1939": 2,
|
||
"1940": 1,
|
||
"1941": 6,
|
||
"1942": 1,
|
||
"1943": 2,
|
||
"1944": 1,
|
||
"1945": 1,
|
||
"1946": 1,
|
||
"1947": 1,
|
||
"1948": 1,
|
||
"1949": 1,
|
||
"1950": 1,
|
||
"1951": 1,
|
||
"1952": 3,
|
||
"1953": 1,
|
||
"1954": 2,
|
||
"1955": 1,
|
||
"1956": 1,
|
||
"1957": 1,
|
||
"1958": 2,
|
||
"1959": 1,
|
||
"1960": 1,
|
||
"1961": 1,
|
||
"1962": 1,
|
||
"1963": 1,
|
||
"1964": 1,
|
||
"1965": 1,
|
||
"1966": 1,
|
||
"1967": 1,
|
||
"1968": 1,
|
||
"1969": 1,
|
||
"1970": 2,
|
||
"1971": 2,
|
||
"1972": 3,
|
||
"1973": 1,
|
||
"1974": 1,
|
||
"1975": 6,
|
||
"1976": 1,
|
||
"1977": 1,
|
||
"1978": 6,
|
||
"1979": 2,
|
||
"1980": 10,
|
||
"1981": 5,
|
||
"1982": 3,
|
||
"1983": 6,
|
||
"1984": 3,
|
||
"1985": 2,
|
||
"1986": 2,
|
||
"1987": 1,
|
||
"1988": 5,
|
||
"1989": 1,
|
||
"1990": 1,
|
||
"1991": 2,
|
||
"1992": 4,
|
||
"1993": 1,
|
||
"1994": 1,
|
||
"1995": 3,
|
||
"1996": 6,
|
||
"1997": 1,
|
||
"1998": 1,
|
||
"1999": 3,
|
||
"2000": 1,
|
||
"2001": 2,
|
||
"2002": 5,
|
||
"2003": 4,
|
||
"2004": 2,
|
||
"2005": 1,
|
||
"2006": 1,
|
||
"2007": 1,
|
||
"2008": 1,
|
||
"2009": 1,
|
||
"2010": 7,
|
||
"2011": 1,
|
||
"2012": 1,
|
||
"2013": 1,
|
||
"2014": 1,
|
||
"2015": 1,
|
||
"2016": 1,
|
||
"2017": 1,
|
||
"2018": 15,
|
||
"2019": 1,
|
||
"2020": 1,
|
||
"2021": 1,
|
||
"2022": 1,
|
||
"2023": 1,
|
||
"2024": 1,
|
||
"2025": 3,
|
||
"2026": 1,
|
||
"2027": 1,
|
||
"2028": 1,
|
||
"2029": 1,
|
||
"2030": 1,
|
||
"2031": 1,
|
||
"2032": 1,
|
||
"2033": 1,
|
||
"2034": 1,
|
||
"2035": 1,
|
||
"2036": 4,
|
||
"2037": 3,
|
||
"2038": 1,
|
||
"2039": 1,
|
||
"2040": 1,
|
||
"2041": 1,
|
||
"2042": 1,
|
||
"2043": 4,
|
||
"2044": 1,
|
||
"2045": 5,
|
||
"2046": 2,
|
||
"2047": 1,
|
||
"2048": 1,
|
||
"2049": 1,
|
||
"2050": 1,
|
||
"2051": 1,
|
||
"2052": 1,
|
||
"2053": 1,
|
||
"2054": 8,
|
||
"2055": 1,
|
||
"2056": 2,
|
||
"2057": 1,
|
||
"2058": 1,
|
||
"2059": 2,
|
||
"2060": 2,
|
||
"2061": 2,
|
||
"2062": 4,
|
||
"2063": 1,
|
||
"2064": 1,
|
||
"2065": 2,
|
||
"2066": 7,
|
||
"2067": 4,
|
||
"2068": 2,
|
||
"2069": 1,
|
||
"2070": 8,
|
||
"2071": 1,
|
||
"2072": 2,
|
||
"2073": 2,
|
||
"2074": 2,
|
||
"2075": 2,
|
||
"2076": 2,
|
||
"2077": 1,
|
||
"2078": 5,
|
||
"2079": 8,
|
||
"2080": 1,
|
||
"2081": 1,
|
||
"2082": 1,
|
||
"2083": 1,
|
||
"2084": 1,
|
||
"2085": 1,
|
||
"2086": 1,
|
||
"2087": 3,
|
||
"2088": 1,
|
||
"2089": 2,
|
||
"2090": 2,
|
||
"2091": 1,
|
||
"2092": 1,
|
||
"2093": 1,
|
||
"2094": 2,
|
||
"2095": 2,
|
||
"2096": 1,
|
||
"2097": 1,
|
||
"2098": 4,
|
||
"2099": 3,
|
||
"2100": 2,
|
||
"2101": 1,
|
||
"2102": 1,
|
||
"2103": 4,
|
||
"2104": 1,
|
||
"2105": 1,
|
||
"2106": 2,
|
||
"2107": 1,
|
||
"2108": 1,
|
||
"2109": 3,
|
||
"2110": 2,
|
||
"2111": 10,
|
||
"2112": 1,
|
||
"2113": 1,
|
||
"2114": 2,
|
||
"2115": 2,
|
||
"2116": 1,
|
||
"2117": 1,
|
||
"2118": 1,
|
||
"2119": 1,
|
||
"2120": 5,
|
||
"2121": 1,
|
||
"2122": 2,
|
||
"2123": 1,
|
||
"2124": 1,
|
||
"2125": 1,
|
||
"2126": 1,
|
||
"2127": 2,
|
||
"2128": 1,
|
||
"2129": 1,
|
||
"2130": 1,
|
||
"2131": 1,
|
||
"2132": 2,
|
||
"2133": 1,
|
||
"2134": 5,
|
||
"2135": 2,
|
||
"2136": 3,
|
||
"2137": 1,
|
||
"2138": 1,
|
||
"2139": 2,
|
||
"2140": 3,
|
||
"2141": 4,
|
||
"2142": 1,
|
||
"2143": 1,
|
||
"2144": 5,
|
||
"2145": 1,
|
||
"2146": 1,
|
||
"2147": 1,
|
||
"2148": 1,
|
||
"2149": 1,
|
||
"2150": 2,
|
||
"2151": 1,
|
||
"2152": 2,
|
||
"2153": 1,
|
||
"2154": 2,
|
||
"2155": 1,
|
||
"2156": 1,
|
||
"2157": 1,
|
||
"2158": 1,
|
||
"2159": 1,
|
||
"2160": 1,
|
||
"2161": 1,
|
||
"2162": 1,
|
||
"2163": 1,
|
||
"2164": 1,
|
||
"2165": 1,
|
||
"2166": 2,
|
||
"2167": 6,
|
||
"2168": 1,
|
||
"2169": 1,
|
||
"2170": 2,
|
||
"2171": 1,
|
||
"2172": 1,
|
||
"2173": 2,
|
||
"2174": 1,
|
||
"2175": 1,
|
||
"2176": 3,
|
||
"2177": 2,
|
||
"2178": 3,
|
||
"2179": 1,
|
||
"2180": 1,
|
||
"2181": 1,
|
||
"2182": 1,
|
||
"2183": 1,
|
||
"2184": 3,
|
||
"2185": 1,
|
||
"2186": 1,
|
||
"2187": 1,
|
||
"2188": 3,
|
||
"2189": 4,
|
||
"2190": 1,
|
||
"2191": 2,
|
||
"2192": 2,
|
||
"2193": 9,
|
||
"2194": 1,
|
||
"2195": 1,
|
||
"2196": 1,
|
||
"2197": 3,
|
||
"2198": 2,
|
||
"2199": 1,
|
||
"2200": 1,
|
||
"2201": 1,
|
||
"2202": 1,
|
||
"2203": 2,
|
||
"2204": 4,
|
||
"2205": 2,
|
||
"2206": 1,
|
||
"2207": 2,
|
||
"2208": 1,
|
||
"2209": 1,
|
||
"2210": 2,
|
||
"2211": 1,
|
||
"2212": 2,
|
||
"2213": 1,
|
||
"2214": 2,
|
||
"2215": 2,
|
||
"2216": 3,
|
||
"2217": 1,
|
||
"2218": 1,
|
||
"2219": 5,
|
||
"2220": 1,
|
||
"2221": 1,
|
||
"2222": 2,
|
||
"2223": 1,
|
||
"2224": 1,
|
||
"2225": 3,
|
||
"2226": 1,
|
||
"2227": 4,
|
||
"2228": 1,
|
||
"2229": 3,
|
||
"2230": 1,
|
||
"2231": 1,
|
||
"2232": 2,
|
||
"2233": 1,
|
||
"2234": 1,
|
||
"2235": 1,
|
||
"2236": 1,
|
||
"2237": 1,
|
||
"2238": 1,
|
||
"2239": 1,
|
||
"2240": 1,
|
||
"2241": 1,
|
||
"2242": 1,
|
||
"2243": 1,
|
||
"2244": 1,
|
||
"2245": 1,
|
||
"2246": 1,
|
||
"2247": 2,
|
||
"2248": 2,
|
||
"2249": 1,
|
||
"2250": 3,
|
||
"2251": 4,
|
||
"2252": 1,
|
||
"2253": 2,
|
||
"2254": 3,
|
||
"2255": 1,
|
||
"2256": 1,
|
||
"2257": 1,
|
||
"2258": 1,
|
||
"2259": 2,
|
||
"2260": 1,
|
||
"2261": 2,
|
||
"2262": 2,
|
||
"2263": 2,
|
||
"2264": 5,
|
||
"2265": 1,
|
||
"2266": 1,
|
||
"2267": 1,
|
||
"2268": 1,
|
||
"2269": 1,
|
||
"2270": 1,
|
||
"2271": 1,
|
||
"2272": 1,
|
||
"2273": 2,
|
||
"2274": 1,
|
||
"2275": 3,
|
||
"2276": 1,
|
||
"2277": 1,
|
||
"2278": 1,
|
||
"2279": 1,
|
||
"2280": 1,
|
||
"2281": 1,
|
||
"2282": 1,
|
||
"2283": 1,
|
||
"2284": 1,
|
||
"2285": 1,
|
||
"2286": 2,
|
||
"2287": 1,
|
||
"2288": 1,
|
||
"2289": 1,
|
||
"2290": 1,
|
||
"2291": 1,
|
||
"2292": 2,
|
||
"2293": 1,
|
||
"2294": 3,
|
||
"2295": 1,
|
||
"2296": 3,
|
||
"2297": 4,
|
||
"2298": 1,
|
||
"2299": 1,
|
||
"2300": 1,
|
||
"2301": 1,
|
||
"2302": 1,
|
||
"2303": 1,
|
||
"2304": 3,
|
||
"2305": 1,
|
||
"2306": 1,
|
||
"2307": 1,
|
||
"2308": 2,
|
||
"2309": 1,
|
||
"2310": 1,
|
||
"2311": 1,
|
||
"2312": 1,
|
||
"2313": 2,
|
||
"2314": 1,
|
||
"2315": 2,
|
||
"2316": 2,
|
||
"2317": 2,
|
||
"2318": 6,
|
||
"2319": 1,
|
||
"2320": 1,
|
||
"2321": 1,
|
||
"2322": 1,
|
||
"2323": 2,
|
||
"2324": 1,
|
||
"2325": 1,
|
||
"2326": 1,
|
||
"2327": 2,
|
||
"2328": 1,
|
||
"2329": 1,
|
||
"2330": 1,
|
||
"2331": 1,
|
||
"2332": 2,
|
||
"2333": 1,
|
||
"2334": 1,
|
||
"2335": 1,
|
||
"2336": 1,
|
||
"2337": 1,
|
||
"2338": 1,
|
||
"2339": 1,
|
||
"2340": 1,
|
||
"2341": 1,
|
||
"2342": 1,
|
||
"2343": 1,
|
||
"2344": 9,
|
||
"2345": 1,
|
||
"2346": 2,
|
||
"2347": 4,
|
||
"2348": 1,
|
||
"2349": 5,
|
||
"2350": 3,
|
||
"2351": 2,
|
||
"2352": 1,
|
||
"2353": 1,
|
||
"2354": 2,
|
||
"2355": 1,
|
||
"2356": 1,
|
||
"2357": 2,
|
||
"2358": 2,
|
||
"2359": 2,
|
||
"2360": 1,
|
||
"2361": 3,
|
||
"2362": 3,
|
||
"2363": 1,
|
||
"2364": 2,
|
||
"2365": 1,
|
||
"2366": 3,
|
||
"2367": 2,
|
||
"2368": 1,
|
||
"2369": 1,
|
||
"2370": 1,
|
||
"2371": 1,
|
||
"2372": 1,
|
||
"2373": 2,
|
||
"2374": 3,
|
||
"2375": 1,
|
||
"2376": 1,
|
||
"2377": 2,
|
||
"2378": 1,
|
||
"2379": 1,
|
||
"2380": 1,
|
||
"2381": 4,
|
||
"2382": 2,
|
||
"2383": 4,
|
||
"2384": 1,
|
||
"2385": 2,
|
||
"2386": 3,
|
||
"2387": 1,
|
||
"2388": 1,
|
||
"2389": 1,
|
||
"2390": 1,
|
||
"2391": 1,
|
||
"2392": 1,
|
||
"2393": 1,
|
||
"2394": 1,
|
||
"2395": 1,
|
||
"2396": 3,
|
||
"2397": 1,
|
||
"2398": 2,
|
||
"2399": 9,
|
||
"2400": 1,
|
||
"2401": 1,
|
||
"2402": 2,
|
||
"2403": 1,
|
||
"2404": 1,
|
||
"2405": 3,
|
||
"2406": 3,
|
||
"2407": 2,
|
||
"2408": 1,
|
||
"2409": 2,
|
||
"2410": 1,
|
||
"2411": 1,
|
||
"2412": 1,
|
||
"2413": 9,
|
||
"2414": 3,
|
||
"2415": 2,
|
||
"2416": 2,
|
||
"2417": 7,
|
||
"2418": 1,
|
||
"2419": 1,
|
||
"2420": 1,
|
||
"2421": 1,
|
||
"2422": 2,
|
||
"2423": 2,
|
||
"2424": 2,
|
||
"2425": 4,
|
||
"2426": 2,
|
||
"2427": 2,
|
||
"2428": 1,
|
||
"2429": 1,
|
||
"2430": 5,
|
||
"2431": 1,
|
||
"2432": 1,
|
||
"2433": 3,
|
||
"2434": 1,
|
||
"2435": 5,
|
||
"2436": 3,
|
||
"2437": 1,
|
||
"2438": 2,
|
||
"2439": 1,
|
||
"2440": 1,
|
||
"2441": 1,
|
||
"2442": 2,
|
||
"2443": 2,
|
||
"2444": 2,
|
||
"2445": 1,
|
||
"2446": 1,
|
||
"2447": 1,
|
||
"2448": 1,
|
||
"2449": 2,
|
||
"2450": 3,
|
||
"2451": 1,
|
||
"2452": 1,
|
||
"2453": 1,
|
||
"2454": 1,
|
||
"2455": 1,
|
||
"2456": 1,
|
||
"2457": 2,
|
||
"2458": 1,
|
||
"2459": 1,
|
||
"2460": 1,
|
||
"2461": 1,
|
||
"2462": 1,
|
||
"2463": 1,
|
||
"2464": 1,
|
||
"2465": 1,
|
||
"2466": 1,
|
||
"2467": 1,
|
||
"2468": 1,
|
||
"2469": 1,
|
||
"2470": 1,
|
||
"2471": 2,
|
||
"2472": 1,
|
||
"2473": 7,
|
||
"2474": 1,
|
||
"2475": 3,
|
||
"2476": 1,
|
||
"2477": 2,
|
||
"2478": 1,
|
||
"2479": 3,
|
||
"2480": 1,
|
||
"2481": 1,
|
||
"2482": 1,
|
||
"2483": 2,
|
||
"2484": 1,
|
||
"2485": 2,
|
||
"2486": 1,
|
||
"2487": 1,
|
||
"2488": 1,
|
||
"2489": 1,
|
||
"2490": 1,
|
||
"2491": 1,
|
||
"2492": 1,
|
||
"2493": 1,
|
||
"2494": 1,
|
||
"2495": 1,
|
||
"2496": 1,
|
||
"2497": 2,
|
||
"2498": 2,
|
||
"2499": 7,
|
||
"2500": 2,
|
||
"2501": 1,
|
||
"2502": 1,
|
||
"2503": 1,
|
||
"2504": 1,
|
||
"2505": 1,
|
||
"2506": 1,
|
||
"2507": 1,
|
||
"2508": 1,
|
||
"2509": 1,
|
||
"2510": 1,
|
||
"2511": 2,
|
||
"2512": 1,
|
||
"2513": 1,
|
||
"2514": 1,
|
||
"2515": 1,
|
||
"2516": 1,
|
||
"2517": 1,
|
||
"2518": 1,
|
||
"2519": 1,
|
||
"2520": 2,
|
||
"2521": 4,
|
||
"2522": 1,
|
||
"2523": 1,
|
||
"2524": 2,
|
||
"2525": 1,
|
||
"2526": 1,
|
||
"2527": 1,
|
||
"2528": 1,
|
||
"2529": 1,
|
||
"2530": 1,
|
||
"2531": 1,
|
||
"2532": 1,
|
||
"2533": 5,
|
||
"2534": 1,
|
||
"2535": 1,
|
||
"2536": 1,
|
||
"2537": 1,
|
||
"2538": 1,
|
||
"2539": 1,
|
||
"2540": 1,
|
||
"2541": 2,
|
||
"2542": 2,
|
||
"2543": 3,
|
||
"2544": 1,
|
||
"2545": 1,
|
||
"2546": 1,
|
||
"2547": 1,
|
||
"2548": 2,
|
||
"2549": 1,
|
||
"2550": 1,
|
||
"2551": 2,
|
||
"2552": 2,
|
||
"2553": 1,
|
||
"2554": 2,
|
||
"2555": 1,
|
||
"2556": 1,
|
||
"2557": 1,
|
||
"2558": 1,
|
||
"2559": 2,
|
||
"2560": 1,
|
||
"2561": 1,
|
||
"2562": 1,
|
||
"2563": 2,
|
||
"2564": 3,
|
||
"2565": 2,
|
||
"2566": 2,
|
||
"2567": 1,
|
||
"2568": 1,
|
||
"2569": 4,
|
||
"2570": 6,
|
||
"2571": 1,
|
||
"2572": 1,
|
||
"2573": 1,
|
||
"2574": 2,
|
||
"2575": 2,
|
||
"2576": 1,
|
||
"2577": 7,
|
||
"2578": 1,
|
||
"2579": 1,
|
||
"2580": 1,
|
||
"2581": 1,
|
||
"2582": 1,
|
||
"2583": 3,
|
||
"2584": 2,
|
||
"2585": 2,
|
||
"2586": 1,
|
||
"2587": 2,
|
||
"2588": 1,
|
||
"2589": 1,
|
||
"2590": 1,
|
||
"2591": 1,
|
||
"2592": 3,
|
||
"2593": 1,
|
||
"2594": 1,
|
||
"2595": 2,
|
||
"2596": 5,
|
||
"2597": 1,
|
||
"2598": 1,
|
||
"2599": 1,
|
||
"2600": 2,
|
||
"2601": 1,
|
||
"2602": 5,
|
||
"2603": 1,
|
||
"2604": 2,
|
||
"2605": 1,
|
||
"2606": 2,
|
||
"2607": 4,
|
||
"2608": 3,
|
||
"2609": 1,
|
||
"2610": 1,
|
||
"2611": 1,
|
||
"2612": 1,
|
||
"2613": 2,
|
||
"2614": 2,
|
||
"2615": 1,
|
||
"2616": 1,
|
||
"2617": 1,
|
||
"2618": 1,
|
||
"2619": 1,
|
||
"2620": 2,
|
||
"2621": 1,
|
||
"2622": 1,
|
||
"2623": 3,
|
||
"2624": 2,
|
||
"2625": 2,
|
||
"2626": 1,
|
||
"2627": 1,
|
||
"2628": 1,
|
||
"2629": 1,
|
||
"2630": 1,
|
||
"2631": 1,
|
||
"2632": 1,
|
||
"2633": 1,
|
||
"2634": 1,
|
||
"2635": 1,
|
||
"2636": 1,
|
||
"2637": 1,
|
||
"2638": 2,
|
||
"2639": 1,
|
||
"2640": 1,
|
||
"2641": 1,
|
||
"2642": 1,
|
||
"2643": 1,
|
||
"2644": 2,
|
||
"2645": 1,
|
||
"2646": 2,
|
||
"2647": 1,
|
||
"2648": 1,
|
||
"2649": 1,
|
||
"2650": 1,
|
||
"2651": 2,
|
||
"2652": 1,
|
||
"2653": 1,
|
||
"2654": 2,
|
||
"2655": 1,
|
||
"2656": 1,
|
||
"2657": 1,
|
||
"2658": 2,
|
||
"2659": 1,
|
||
"2660": 3,
|
||
"2661": 2,
|
||
"2662": 1,
|
||
"2663": 1,
|
||
"2664": 1,
|
||
"2665": 1,
|
||
"2666": 1,
|
||
"2667": 1,
|
||
"2668": 2,
|
||
"2669": 2,
|
||
"2670": 1,
|
||
"2671": 1,
|
||
"2672": 1,
|
||
"2673": 1,
|
||
"2674": 2,
|
||
"2675": 1,
|
||
"2676": 1,
|
||
"2677": 1,
|
||
"2678": 1,
|
||
"2679": 2,
|
||
"2680": 2,
|
||
"2681": 2,
|
||
"2682": 1,
|
||
"2683": 1,
|
||
"2684": 1,
|
||
"2685": 1,
|
||
"2686": 1,
|
||
"2687": 1,
|
||
"2688": 1,
|
||
"2689": 1,
|
||
"2690": 1,
|
||
"2691": 1,
|
||
"2692": 2,
|
||
"2693": 2,
|
||
"2694": 2,
|
||
"2695": 1,
|
||
"2696": 1,
|
||
"2697": 1,
|
||
"2698": 1,
|
||
"2699": 2,
|
||
"2700": 4,
|
||
"2701": 1,
|
||
"2702": 1,
|
||
"2703": 1,
|
||
"2704": 1,
|
||
"2705": 1,
|
||
"2706": 2,
|
||
"2707": 1,
|
||
"2708": 2,
|
||
"2709": 1,
|
||
"2710": 6,
|
||
"2711": 1,
|
||
"2712": 3,
|
||
"2713": 2,
|
||
"2714": 1,
|
||
"2715": 1,
|
||
"2716": 1,
|
||
"2717": 1,
|
||
"2718": 3,
|
||
"2719": 3,
|
||
"2720": 1,
|
||
"2721": 1,
|
||
"2722": 3,
|
||
"2723": 1,
|
||
"2724": 1,
|
||
"2725": 1,
|
||
"2726": 1,
|
||
"2727": 3,
|
||
"2728": 2,
|
||
"2729": 1,
|
||
"2730": 1,
|
||
"2731": 4,
|
||
"2732": 2,
|
||
"2733": 1,
|
||
"2734": 1,
|
||
"2735": 3,
|
||
"2736": 2,
|
||
"2737": 1,
|
||
"2738": 2,
|
||
"2739": 1,
|
||
"2740": 1,
|
||
"2741": 1,
|
||
"2742": 2,
|
||
"2743": 1,
|
||
"2744": 1,
|
||
"2745": 2,
|
||
"2746": 6,
|
||
"2747": 1,
|
||
"2748": 1,
|
||
"2749": 1,
|
||
"2750": 2,
|
||
"2751": 2,
|
||
"2752": 2,
|
||
"2753": 1,
|
||
"2754": 1,
|
||
"2755": 1,
|
||
"2756": 1,
|
||
"2757": 1,
|
||
"2758": 2,
|
||
"2759": 2,
|
||
"2760": 1,
|
||
"2761": 1,
|
||
"2762": 1,
|
||
"2763": 1,
|
||
"2764": 1,
|
||
"2765": 1,
|
||
"2766": 2,
|
||
"2767": 1,
|
||
"2768": 2,
|
||
"2769": 1,
|
||
"2770": 1,
|
||
"2771": 1,
|
||
"2772": 2,
|
||
"2773": 1,
|
||
"2774": 1,
|
||
"2775": 1,
|
||
"2776": 1,
|
||
"2777": 2,
|
||
"2778": 2,
|
||
"2779": 3,
|
||
"2780": 1,
|
||
"2781": 1,
|
||
"2782": 4,
|
||
"2783": 1,
|
||
"2784": 4,
|
||
"2785": 1,
|
||
"2786": 1,
|
||
"2787": 1,
|
||
"2788": 2,
|
||
"2789": 1,
|
||
"2790": 1,
|
||
"2791": 1,
|
||
"2792": 1,
|
||
"2793": 1,
|
||
"2794": 1,
|
||
"2795": 1,
|
||
"2796": 1,
|
||
"2797": 1,
|
||
"2798": 1,
|
||
"2799": 1,
|
||
"2800": 1,
|
||
"2801": 1,
|
||
"2802": 1,
|
||
"2803": 1,
|
||
"2804": 1,
|
||
"2805": 1,
|
||
"2806": 1,
|
||
"2807": 1,
|
||
"2808": 1,
|
||
"2809": 1,
|
||
"2810": 1,
|
||
"2811": 1,
|
||
"2812": 2,
|
||
"2813": 1,
|
||
"2814": 3,
|
||
"2815": 1,
|
||
"2816": 2,
|
||
"2817": 1,
|
||
"2818": 1,
|
||
"2819": 1,
|
||
"2820": 6,
|
||
"2821": 1,
|
||
"2822": 1,
|
||
"2823": 2,
|
||
"2824": 2,
|
||
"2825": 1,
|
||
"2826": 1,
|
||
"2827": 1,
|
||
"2828": 1,
|
||
"2829": 1,
|
||
"2830": 3,
|
||
"2831": 1,
|
||
"2832": 1,
|
||
"2833": 2,
|
||
"2834": 1,
|
||
"2835": 1,
|
||
"2836": 1,
|
||
"2837": 1,
|
||
"2838": 1,
|
||
"2839": 1,
|
||
"2840": 1,
|
||
"2841": 1,
|
||
"2842": 3,
|
||
"2843": 1,
|
||
"2844": 2,
|
||
"2845": 2,
|
||
"2846": 2,
|
||
"2847": 1,
|
||
"2848": 1,
|
||
"2849": 1,
|
||
"2850": 1,
|
||
"2851": 1,
|
||
"2852": 1,
|
||
"2853": 1,
|
||
"2854": 1,
|
||
"2855": 1,
|
||
"2856": 1,
|
||
"2857": 3,
|
||
"2858": 2,
|
||
"2859": 1,
|
||
"2860": 1,
|
||
"2861": 1,
|
||
"2862": 2,
|
||
"2863": 2,
|
||
"2864": 1,
|
||
"2865": 1,
|
||
"2866": 1,
|
||
"2867": 1,
|
||
"2868": 2,
|
||
"2869": 1,
|
||
"2870": 1,
|
||
"2871": 1,
|
||
"2872": 1,
|
||
"2873": 1,
|
||
"2874": 1,
|
||
"2875": 2,
|
||
"2876": 1,
|
||
"2877": 1,
|
||
"2878": 2,
|
||
"2879": 1,
|
||
"2880": 2,
|
||
"2881": 1,
|
||
"2882": 1,
|
||
"2883": 1,
|
||
"2884": 1,
|
||
"2885": 2,
|
||
"2886": 1,
|
||
"2887": 1,
|
||
"2888": 1,
|
||
"2889": 3,
|
||
"2890": 4,
|
||
"2891": 1,
|
||
"2892": 1,
|
||
"2893": 1,
|
||
"2894": 2,
|
||
"2895": 1,
|
||
"2896": 1,
|
||
"2897": 1,
|
||
"2898": 3,
|
||
"2899": 1,
|
||
"2900": 3,
|
||
"2901": 1,
|
||
"2902": 1,
|
||
"2903": 1,
|
||
"2904": 1,
|
||
"2905": 1,
|
||
"2906": 1,
|
||
"2907": 1,
|
||
"2908": 2,
|
||
"2909": 1,
|
||
"2910": 2,
|
||
"2911": 1,
|
||
"2912": 1,
|
||
"2913": 1,
|
||
"2914": 1,
|
||
"2915": 1,
|
||
"2916": 4,
|
||
"2917": 1,
|
||
"2918": 1,
|
||
"2919": 1,
|
||
"2920": 1,
|
||
"2921": 1,
|
||
"2922": 1,
|
||
"2923": 2,
|
||
"2924": 1,
|
||
"2925": 1,
|
||
"2926": 1,
|
||
"2927": 2,
|
||
"2928": 1,
|
||
"2929": 1,
|
||
"2930": 1,
|
||
"2931": 1,
|
||
"2932": 1,
|
||
"2933": 1,
|
||
"2934": 2,
|
||
"2935": 2,
|
||
"2936": 1,
|
||
"2937": 8,
|
||
"2938": 1,
|
||
"2939": 1,
|
||
"2940": 1,
|
||
"2941": 1,
|
||
"2942": 2,
|
||
"2943": 1,
|
||
"2944": 1,
|
||
"2945": 2,
|
||
"2946": 1,
|
||
"2947": 1,
|
||
"2948": 1,
|
||
"2949": 7,
|
||
"2950": 2,
|
||
"2951": 2,
|
||
"2952": 1,
|
||
"2953": 1,
|
||
"2954": 2,
|
||
"2955": 1,
|
||
"2956": 1,
|
||
"2957": 1,
|
||
"2958": 1,
|
||
"2959": 1,
|
||
"2960": 1,
|
||
"2961": 1,
|
||
"2962": 1,
|
||
"2963": 1,
|
||
"2964": 1,
|
||
"2965": 1,
|
||
"2966": 2,
|
||
"2967": 4,
|
||
"2968": 1,
|
||
"2969": 3,
|
||
"2970": 1,
|
||
"2971": 1,
|
||
"2972": 2,
|
||
"2973": 1,
|
||
"2974": 1,
|
||
"2975": 6,
|
||
"2976": 1,
|
||
"2977": 2,
|
||
"2978": 2,
|
||
"2979": 1,
|
||
"2980": 2,
|
||
"2981": 2,
|
||
"2982": 1,
|
||
"2983": 2,
|
||
"2984": 1,
|
||
"2985": 1,
|
||
"2986": 1,
|
||
"2987": 1,
|
||
"2988": 2,
|
||
"2989": 1,
|
||
"2990": 1,
|
||
"2991": 1,
|
||
"2992": 1,
|
||
"2993": 3,
|
||
"2994": 1,
|
||
"2995": 1,
|
||
"2996": 1,
|
||
"2997": 1,
|
||
"2998": 1,
|
||
"2999": 3,
|
||
"3000": 2,
|
||
"3001": 1,
|
||
"3002": 1,
|
||
"3003": 2,
|
||
"3004": 1,
|
||
"3005": 1,
|
||
"3006": 3,
|
||
"3007": 1,
|
||
"3008": 1,
|
||
"3009": 1,
|
||
"3010": 1,
|
||
"3011": 1,
|
||
"3012": 1,
|
||
"3013": 2,
|
||
"3014": 1,
|
||
"3015": 1,
|
||
"3016": 2,
|
||
"3017": 1,
|
||
"3018": 2,
|
||
"3019": 1,
|
||
"3020": 2,
|
||
"3021": 1,
|
||
"3022": 1,
|
||
"3023": 2,
|
||
"3024": 2,
|
||
"3025": 1,
|
||
"3026": 1,
|
||
"3027": 1,
|
||
"3028": 1,
|
||
"3029": 1,
|
||
"3030": 1,
|
||
"3031": 2,
|
||
"3032": 2,
|
||
"3033": 2,
|
||
"3034": 1,
|
||
"3035": 3,
|
||
"3036": 1,
|
||
"3037": 1,
|
||
"3038": 1,
|
||
"3039": 1,
|
||
"3040": 1,
|
||
"3041": 1,
|
||
"3042": 1,
|
||
"3043": 1,
|
||
"3044": 1,
|
||
"3045": 1,
|
||
"3046": 1,
|
||
"3047": 1,
|
||
"3048": 1,
|
||
"3049": 1,
|
||
"3050": 1,
|
||
"3051": 1,
|
||
"3052": 1,
|
||
"3053": 1,
|
||
"3054": 1,
|
||
"3055": 3,
|
||
"3056": 2,
|
||
"3057": 1,
|
||
"3058": 1,
|
||
"3059": 1,
|
||
"3060": 1,
|
||
"3061": 2,
|
||
"3062": 1,
|
||
"3063": 1,
|
||
"3064": 1,
|
||
"3065": 2,
|
||
"3066": 1,
|
||
"3067": 1,
|
||
"3068": 1,
|
||
"3069": 1,
|
||
"3070": 1,
|
||
"3071": 1,
|
||
"3072": 1,
|
||
"3073": 1,
|
||
"3074": 1,
|
||
"3075": 1,
|
||
"3076": 1,
|
||
"3077": 1,
|
||
"3078": 2,
|
||
"3079": 2,
|
||
"3080": 1,
|
||
"3081": 1,
|
||
"3082": 1,
|
||
"3083": 1,
|
||
"3084": 7,
|
||
"3085": 1,
|
||
"3086": 1,
|
||
"3087": 1,
|
||
"3088": 1,
|
||
"3089": 1,
|
||
"3090": 2,
|
||
"3091": 1,
|
||
"3092": 1,
|
||
"3093": 1,
|
||
"3094": 1,
|
||
"3095": 4,
|
||
"3096": 1,
|
||
"3097": 1,
|
||
"3098": 1,
|
||
"3099": 2,
|
||
"3100": 1,
|
||
"3101": 1,
|
||
"3102": 2,
|
||
"3103": 2,
|
||
"3104": 1,
|
||
"3105": 1,
|
||
"3106": 2,
|
||
"3107": 2,
|
||
"3108": 1,
|
||
"3109": 1,
|
||
"3110": 3,
|
||
"3111": 4,
|
||
"3112": 1,
|
||
"3113": 1,
|
||
"3114": 1,
|
||
"3115": 1,
|
||
"3116": 1,
|
||
"3117": 2,
|
||
"3118": 3,
|
||
"3119": 1,
|
||
"3120": 1,
|
||
"3121": 1,
|
||
"3122": 2,
|
||
"3123": 1,
|
||
"3124": 4,
|
||
"3125": 1,
|
||
"3126": 1,
|
||
"3127": 1,
|
||
"3128": 1,
|
||
"3129": 1,
|
||
"3130": 2,
|
||
"3131": 1,
|
||
"3132": 1,
|
||
"3133": 1,
|
||
"3134": 1,
|
||
"3135": 1,
|
||
"3136": 1,
|
||
"3137": 1,
|
||
"3138": 1,
|
||
"3139": 1,
|
||
"3140": 2,
|
||
"3141": 2,
|
||
"3142": 3,
|
||
"3143": 2,
|
||
"3144": 1,
|
||
"3145": 2,
|
||
"3146": 1,
|
||
"3147": 1,
|
||
"3148": 1,
|
||
"3149": 3,
|
||
"3150": 1,
|
||
"3151": 1,
|
||
"3152": 2,
|
||
"3153": 1,
|
||
"3154": 1,
|
||
"3155": 1,
|
||
"3156": 1,
|
||
"3157": 1,
|
||
"3158": 1,
|
||
"3159": 1,
|
||
"3160": 1,
|
||
"3161": 2,
|
||
"3162": 1,
|
||
"3163": 1,
|
||
"3164": 1,
|
||
"3165": 3,
|
||
"3166": 1,
|
||
"3167": 1,
|
||
"3168": 1,
|
||
"3169": 6,
|
||
"3170": 2,
|
||
"3171": 2,
|
||
"3172": 1,
|
||
"3173": 3,
|
||
"3174": 1,
|
||
"3175": 1,
|
||
"3176": 1,
|
||
"3177": 1,
|
||
"3178": 1,
|
||
"3179": 3,
|
||
"3180": 1,
|
||
"3181": 2,
|
||
"3182": 1,
|
||
"3183": 1,
|
||
"3184": 1,
|
||
"3185": 1,
|
||
"3186": 1,
|
||
"3187": 1,
|
||
"3188": 1,
|
||
"3189": 1,
|
||
"3190": 1,
|
||
"3191": 1,
|
||
"3192": 1,
|
||
"3193": 1,
|
||
"3194": 1,
|
||
"3195": 1,
|
||
"3196": 1,
|
||
"3197": 1,
|
||
"3198": 1,
|
||
"3199": 3,
|
||
"3200": 1,
|
||
"3201": 2,
|
||
"3202": 1,
|
||
"3203": 1,
|
||
"3204": 1,
|
||
"3205": 1,
|
||
"3206": 1,
|
||
"3207": 1,
|
||
"3208": 1,
|
||
"3209": 3,
|
||
"3210": 1,
|
||
"3211": 1,
|
||
"3212": 4,
|
||
"3213": 2,
|
||
"3214": 2,
|
||
"3215": 1,
|
||
"3216": 1,
|
||
"3217": 1,
|
||
"3218": 1,
|
||
"3219": 1,
|
||
"3220": 2,
|
||
"3221": 1,
|
||
"3222": 1,
|
||
"3223": 2,
|
||
"3224": 1,
|
||
"3225": 1,
|
||
"3226": 1,
|
||
"3227": 1,
|
||
"3228": 1,
|
||
"3229": 1,
|
||
"3230": 1,
|
||
"3231": 1,
|
||
"3232": 1,
|
||
"3233": 2,
|
||
"3234": 4,
|
||
"3235": 1,
|
||
"3236": 1,
|
||
"3237": 1,
|
||
"3238": 1,
|
||
"3239": 1,
|
||
"3240": 1,
|
||
"3241": 1,
|
||
"3242": 1,
|
||
"3243": 1,
|
||
"3244": 1,
|
||
"3245": 1,
|
||
"3246": 8,
|
||
"3247": 1,
|
||
"3248": 1,
|
||
"3249": 1,
|
||
"3250": 1,
|
||
"3251": 1,
|
||
"3252": 1,
|
||
"3253": 1,
|
||
"3254": 1,
|
||
"3255": 1,
|
||
"3256": 1,
|
||
"3257": 7,
|
||
"3258": 1,
|
||
"3259": 1,
|
||
"3260": 1,
|
||
"3261": 1,
|
||
"3262": 2,
|
||
"3263": 1,
|
||
"3264": 1,
|
||
"3265": 2,
|
||
"3266": 1,
|
||
"3267": 1,
|
||
"3268": 1,
|
||
"3269": 1,
|
||
"3270": 1,
|
||
"3271": 1,
|
||
"3272": 1,
|
||
"3273": 1,
|
||
"3274": 1,
|
||
"3275": 3,
|
||
"3276": 1,
|
||
"3277": 1,
|
||
"3278": 1,
|
||
"3279": 1,
|
||
"3280": 1,
|
||
"3281": 1,
|
||
"3282": 1,
|
||
"3283": 2,
|
||
"3284": 1,
|
||
"3285": 1,
|
||
"3286": 1,
|
||
"3287": 1,
|
||
"3288": 1,
|
||
"3289": 1,
|
||
"3290": 1,
|
||
"3291": 2,
|
||
"3292": 1,
|
||
"3293": 1,
|
||
"3294": 1,
|
||
"3295": 1,
|
||
"3296": 4,
|
||
"3297": 1,
|
||
"3298": 1,
|
||
"3299": 1,
|
||
"3300": 1,
|
||
"3301": 1,
|
||
"3302": 2,
|
||
"3303": 1,
|
||
"3304": 1,
|
||
"3305": 1,
|
||
"3306": 3,
|
||
"3307": 1,
|
||
"3308": 3,
|
||
"3309": 1,
|
||
"3310": 1,
|
||
"3311": 1,
|
||
"3312": 1,
|
||
"3313": 1,
|
||
"3314": 1,
|
||
"3315": 1,
|
||
"3316": 1,
|
||
"3317": 1,
|
||
"3318": 3,
|
||
"3319": 1,
|
||
"3320": 1,
|
||
"3321": 1,
|
||
"3322": 1,
|
||
"3323": 1,
|
||
"3324": 3,
|
||
"3325": 1,
|
||
"3326": 1,
|
||
"3327": 1,
|
||
"3328": 1,
|
||
"3329": 1,
|
||
"3330": 1,
|
||
"3331": 1,
|
||
"3332": 1,
|
||
"3333": 2,
|
||
"3334": 1,
|
||
"3335": 2,
|
||
"3336": 2,
|
||
"3337": 1,
|
||
"3338": 1,
|
||
"3339": 1,
|
||
"3340": 1,
|
||
"3341": 1,
|
||
"3342": 1,
|
||
"3343": 1,
|
||
"3344": 1,
|
||
"3345": 1,
|
||
"3346": 1,
|
||
"3347": 1,
|
||
"3348": 1,
|
||
"3349": 1,
|
||
"3350": 1,
|
||
"3351": 2,
|
||
"3352": 1,
|
||
"3353": 1,
|
||
"3354": 1,
|
||
"3355": 1,
|
||
"3356": 1,
|
||
"3357": 1,
|
||
"3358": 1,
|
||
"3359": 1,
|
||
"3360": 1,
|
||
"3361": 1,
|
||
"3362": 1,
|
||
"3363": 1,
|
||
"3364": 1,
|
||
"3365": 1,
|
||
"3366": 1,
|
||
"3367": 1,
|
||
"3368": 1,
|
||
"3369": 1,
|
||
"3370": 1,
|
||
"3371": 1,
|
||
"3372": 1,
|
||
"3373": 1,
|
||
"3374": 2,
|
||
"3375": 1,
|
||
"3376": 1,
|
||
"3377": 1,
|
||
"3378": 1,
|
||
"3379": 1,
|
||
"3380": 1,
|
||
"3381": 1,
|
||
"3382": 1,
|
||
"3383": 1,
|
||
"3384": 1,
|
||
"3385": 1,
|
||
"3386": 1,
|
||
"3387": 1,
|
||
"3388": 1,
|
||
"3389": 1,
|
||
"3390": 1,
|
||
"3391": 1,
|
||
"3392": 1,
|
||
"3393": 1,
|
||
"3394": 1,
|
||
"3395": 1,
|
||
"3396": 1,
|
||
"3397": 1,
|
||
"3398": 3,
|
||
"3399": 1,
|
||
"3400": 1,
|
||
"3401": 1,
|
||
"3402": 1,
|
||
"3403": 1,
|
||
"3404": 1,
|
||
"3405": 1,
|
||
"3406": 1,
|
||
"3407": 1,
|
||
"3408": 1,
|
||
"3409": 1,
|
||
"3410": 1,
|
||
"3411": 1,
|
||
"3412": 1,
|
||
"3413": 1,
|
||
"3414": 2,
|
||
"3415": 1,
|
||
"3416": 1,
|
||
"3417": 1,
|
||
"3418": 1,
|
||
"3419": 1,
|
||
"3420": 1,
|
||
"3421": 1,
|
||
"3422": 1,
|
||
"3423": 1,
|
||
"3424": 5,
|
||
"3425": 1,
|
||
"3426": 1,
|
||
"3427": 1,
|
||
"3428": 1,
|
||
"3429": 1,
|
||
"3430": 1,
|
||
"3431": 1,
|
||
"3432": 1,
|
||
"3433": 1,
|
||
"3434": 1,
|
||
"3435": 1,
|
||
"3436": 1,
|
||
"3437": 1,
|
||
"3438": 2,
|
||
"3439": 9,
|
||
"3440": 17,
|
||
"3441": 1,
|
||
"3442": 2,
|
||
"3443": 1,
|
||
"3444": 1,
|
||
"3445": 1,
|
||
"3446": 1,
|
||
"3447": 2,
|
||
"3448": 1,
|
||
"3449": 1,
|
||
"3450": 1,
|
||
"3451": 1,
|
||
"3452": 1,
|
||
"3453": 1,
|
||
"3454": 1,
|
||
"3455": 1,
|
||
"3456": 1,
|
||
"3457": 1,
|
||
"3458": 1,
|
||
"3459": 1,
|
||
"3460": 1,
|
||
"3461": 1,
|
||
"3462": 1,
|
||
"3463": 1,
|
||
"3464": 1,
|
||
"3465": 1,
|
||
"3466": 1,
|
||
"3467": 1,
|
||
"3468": 1,
|
||
"3469": 1,
|
||
"3470": 1,
|
||
"3471": 1,
|
||
"3472": 1,
|
||
"3473": 1,
|
||
"3474": 1,
|
||
"3475": 1,
|
||
"3476": 1,
|
||
"3477": 1,
|
||
"3478": 1,
|
||
"3479": 3,
|
||
"3480": 1,
|
||
"3481": 1,
|
||
"3482": 1,
|
||
"3483": 3,
|
||
"3484": 1,
|
||
"3485": 1,
|
||
"3486": 1,
|
||
"3487": 1,
|
||
"3488": 1,
|
||
"3489": 1,
|
||
"3490": 1,
|
||
"3491": 1,
|
||
"3492": 1,
|
||
"3493": 1,
|
||
"3494": 1,
|
||
"3495": 1,
|
||
"3496": 1,
|
||
"3497": 1,
|
||
"3498": 1,
|
||
"3499": 2,
|
||
"3500": 1,
|
||
"3501": 1,
|
||
"3502": 1,
|
||
"3503": 2,
|
||
"3504": 1,
|
||
"3505": 1,
|
||
"3506": 2,
|
||
"3507": 1,
|
||
"3508": 1,
|
||
"3509": 1,
|
||
"3510": 1,
|
||
"3511": 10,
|
||
"3512": 3,
|
||
"3513": 4,
|
||
"3514": 5,
|
||
"3515": 1,
|
||
"3516": 1,
|
||
"3517": 1,
|
||
"3518": 1,
|
||
"3519": 1,
|
||
"3520": 1,
|
||
"3521": 4,
|
||
"3522": 1,
|
||
"3523": 1,
|
||
"3524": 1,
|
||
"3525": 1,
|
||
"3526": 1,
|
||
"3527": 1,
|
||
"3528": 1,
|
||
"3529": 1,
|
||
"3530": 1,
|
||
"3531": 1,
|
||
"3532": 1,
|
||
"3533": 1,
|
||
"3534": 1,
|
||
"3535": 1,
|
||
"3536": 1,
|
||
"3537": 1,
|
||
"3538": 1,
|
||
"3539": 1,
|
||
"3540": 1,
|
||
"3541": 1,
|
||
"3542": 1,
|
||
"3543": 1,
|
||
"3544": 1,
|
||
"3545": 1,
|
||
"3546": 1,
|
||
"3547": 1,
|
||
"3548": 1,
|
||
"3549": 1,
|
||
"3550": 1,
|
||
"3551": 1,
|
||
"3552": 1,
|
||
"3553": 1,
|
||
"3554": 1,
|
||
"3555": 4,
|
||
"3556": 3,
|
||
"3557": 3,
|
||
"3558": 1,
|
||
"3559": 1,
|
||
"3560": 1,
|
||
"3561": 4,
|
||
"3562": 1,
|
||
"3563": 1,
|
||
"3564": 1,
|
||
"3565": 1,
|
||
"3566": 2,
|
||
"3567": 3,
|
||
"3568": 1,
|
||
"3569": 1,
|
||
"3570": 2,
|
||
"3571": 1,
|
||
"3572": 2,
|
||
"3573": 4,
|
||
"3574": 1,
|
||
"3575": 2,
|
||
"3576": 2,
|
||
"3577": 5,
|
||
"3578": 1,
|
||
"3579": 2,
|
||
"3580": 1,
|
||
"3581": 1,
|
||
"3582": 3,
|
||
"3583": 1,
|
||
"3584": 1,
|
||
"3585": 1,
|
||
"3586": 1,
|
||
"3587": 1,
|
||
"3588": 1,
|
||
"3589": 12,
|
||
"3590": 1,
|
||
"3591": 1,
|
||
"3592": 1,
|
||
"3593": 1,
|
||
"3594": 1,
|
||
"3595": 1,
|
||
"3596": 1,
|
||
"3597": 1,
|
||
"3598": 1,
|
||
"3599": 1,
|
||
"3600": 1,
|
||
"3601": 1,
|
||
"3602": 1,
|
||
"3603": 3,
|
||
"3604": 4,
|
||
"3605": 1,
|
||
"3606": 1,
|
||
"3607": 1,
|
||
"3608": 1,
|
||
"3609": 1,
|
||
"3610": 1,
|
||
"3611": 1,
|
||
"3612": 2,
|
||
"3613": 1,
|
||
"3614": 3,
|
||
"3615": 3,
|
||
"3616": 2,
|
||
"3617": 1,
|
||
"3618": 2,
|
||
"3619": 1,
|
||
"3620": 1,
|
||
"3621": 1,
|
||
"3622": 2,
|
||
"3623": 1,
|
||
"3624": 1,
|
||
"3625": 1,
|
||
"3626": 1,
|
||
"3627": 2,
|
||
"3628": 1,
|
||
"3629": 1,
|
||
"3630": 1,
|
||
"3631": 1,
|
||
"3632": 1,
|
||
"3633": 3,
|
||
"3634": 5,
|
||
"3635": 2,
|
||
"3636": 1,
|
||
"3637": 2,
|
||
"3638": 4,
|
||
"3639": 2,
|
||
"3640": 1,
|
||
"3641": 1,
|
||
"3642": 1,
|
||
"3643": 1,
|
||
"3644": 2,
|
||
"3645": 2,
|
||
"3646": 1,
|
||
"3647": 1,
|
||
"3648": 1,
|
||
"3649": 1,
|
||
"3650": 3,
|
||
"3651": 1,
|
||
"3652": 2,
|
||
"3653": 2,
|
||
"3654": 1,
|
||
"3655": 3,
|
||
"3656": 1,
|
||
"3657": 2,
|
||
"3658": 1,
|
||
"3659": 5,
|
||
"3660": 1,
|
||
"3661": 1,
|
||
"3662": 1,
|
||
"3663": 1,
|
||
"3664": 1,
|
||
"3665": 3,
|
||
"3666": 1,
|
||
"3667": 2,
|
||
"3668": 3,
|
||
"3669": 3,
|
||
"3670": 4,
|
||
"3671": 1,
|
||
"3672": 3,
|
||
"3673": 1,
|
||
"3674": 1,
|
||
"3675": 1,
|
||
"3676": 1,
|
||
"3677": 1,
|
||
"3678": 1,
|
||
"3679": 3,
|
||
"3680": 2,
|
||
"3681": 1,
|
||
"3682": 3,
|
||
"3683": 1,
|
||
"3684": 2,
|
||
"3685": 1,
|
||
"3686": 1,
|
||
"3687": 1,
|
||
"3688": 4,
|
||
"3689": 1,
|
||
"3690": 2,
|
||
"3691": 1,
|
||
"3692": 1,
|
||
"3693": 1,
|
||
"3694": 1,
|
||
"3695": 1,
|
||
"3696": 1,
|
||
"3697": 1,
|
||
"3698": 1,
|
||
"3699": 4,
|
||
"3700": 1,
|
||
"3701": 4,
|
||
"3702": 1,
|
||
"3703": 3,
|
||
"3704": 1,
|
||
"3705": 1,
|
||
"3706": 3,
|
||
"3707": 1,
|
||
"3708": 1,
|
||
"3709": 1,
|
||
"3710": 1,
|
||
"3711": 1,
|
||
"3712": 2,
|
||
"3713": 1,
|
||
"3714": 1,
|
||
"3715": 1,
|
||
"3716": 1,
|
||
"3717": 2,
|
||
"3718": 1,
|
||
"3719": 1,
|
||
"3720": 1,
|
||
"3721": 1,
|
||
"3722": 1,
|
||
"3723": 1,
|
||
"3724": 1,
|
||
"3725": 1,
|
||
"3726": 4,
|
||
"3727": 1,
|
||
"3728": 9,
|
||
"3729": 1,
|
||
"3730": 1,
|
||
"3731": 1,
|
||
"3732": 3,
|
||
"3733": 1,
|
||
"3734": 2,
|
||
"3735": 1,
|
||
"3736": 1,
|
||
"3737": 2,
|
||
"3738": 1,
|
||
"3739": 1,
|
||
"3740": 1,
|
||
"3741": 1,
|
||
"3742": 2,
|
||
"3743": 1,
|
||
"3744": 1,
|
||
"3745": 1,
|
||
"3746": 1,
|
||
"3747": 2,
|
||
"3748": 1,
|
||
"3749": 1,
|
||
"3750": 1,
|
||
"3751": 1,
|
||
"3752": 1,
|
||
"3753": 1,
|
||
"3754": 2,
|
||
"3755": 1,
|
||
"3756": 3,
|
||
"3757": 1,
|
||
"3758": 1,
|
||
"3759": 1,
|
||
"3760": 1,
|
||
"3761": 1,
|
||
"3762": 4,
|
||
"3763": 2,
|
||
"3764": 4,
|
||
"3765": 1,
|
||
"3766": 1,
|
||
"3767": 1,
|
||
"3768": 1,
|
||
"3769": 1,
|
||
"3770": 1,
|
||
"3771": 1,
|
||
"3772": 1,
|
||
"3773": 2,
|
||
"3774": 1,
|
||
"3775": 1,
|
||
"3776": 1,
|
||
"3777": 1,
|
||
"3778": 2,
|
||
"3779": 1,
|
||
"3780": 1,
|
||
"3781": 3,
|
||
"3782": 1,
|
||
"3783": 2,
|
||
"3784": 1,
|
||
"3785": 1,
|
||
"3786": 1,
|
||
"3787": 1,
|
||
"3788": 2,
|
||
"3789": 1,
|
||
"3790": 1,
|
||
"3791": 1,
|
||
"3792": 1,
|
||
"3793": 1,
|
||
"3794": 1,
|
||
"3795": 2,
|
||
"3796": 2,
|
||
"3797": 1,
|
||
"3798": 1,
|
||
"3799": 2,
|
||
"3800": 1,
|
||
"3801": 2,
|
||
"3802": 2,
|
||
"3803": 1,
|
||
"3804": 1,
|
||
"3805": 1,
|
||
"3806": 1,
|
||
"3807": 1,
|
||
"3808": 1,
|
||
"3809": 2,
|
||
"3810": 2,
|
||
"3811": 2,
|
||
"3812": 4,
|
||
"3813": 1,
|
||
"3814": 1,
|
||
"3815": 1,
|
||
"3816": 1,
|
||
"3817": 1,
|
||
"3818": 1,
|
||
"3819": 1,
|
||
"3820": 1,
|
||
"3821": 1,
|
||
"3822": 1,
|
||
"3823": 1,
|
||
"3824": 1,
|
||
"3825": 1,
|
||
"3826": 1,
|
||
"3827": 1,
|
||
"3828": 1,
|
||
"3829": 1,
|
||
"3830": 1,
|
||
"3831": 1,
|
||
"3832": 1,
|
||
"3833": 1,
|
||
"3834": 1,
|
||
"3835": 1,
|
||
"3836": 1,
|
||
"3837": 1,
|
||
"3838": 1,
|
||
"3839": 1,
|
||
"3840": 1,
|
||
"3841": 1,
|
||
"3842": 1,
|
||
"3843": 1,
|
||
"3844": 1,
|
||
"3845": 1,
|
||
"3846": 1,
|
||
"3847": 1,
|
||
"3848": 1,
|
||
"3849": 1,
|
||
"3850": 1,
|
||
"3851": 1,
|
||
"3852": 1,
|
||
"3853": 1,
|
||
"3854": 1,
|
||
"3855": 1,
|
||
"3856": 1,
|
||
"3857": 1,
|
||
"3858": 1,
|
||
"3859": 1,
|
||
"3860": 1,
|
||
"3861": 1,
|
||
"3862": 1,
|
||
"3863": 1,
|
||
"3864": 1,
|
||
"3865": 1,
|
||
"3866": 1,
|
||
"3867": 1,
|
||
"3868": 1,
|
||
"3869": 1,
|
||
"3870": 1,
|
||
"3871": 1,
|
||
"3872": 2,
|
||
"3873": 1,
|
||
"3874": 2,
|
||
"3875": 1,
|
||
"3876": 3,
|
||
"3877": 2,
|
||
"3878": 1,
|
||
"3879": 1,
|
||
"3880": 1,
|
||
"3881": 1,
|
||
"3882": 1,
|
||
"3883": 1,
|
||
"3884": 1,
|
||
"3885": 1,
|
||
"3886": 1,
|
||
"3887": 1,
|
||
"3888": 1,
|
||
"3889": 1,
|
||
"3890": 1,
|
||
"3891": 1,
|
||
"3892": 1,
|
||
"3893": 1,
|
||
"3894": 1,
|
||
"3895": 1,
|
||
"3896": 1,
|
||
"3897": 1,
|
||
"3898": 1,
|
||
"3899": 1,
|
||
"3900": 1,
|
||
"3901": 1,
|
||
"3902": 2,
|
||
"3903": 1,
|
||
"3904": 1,
|
||
"3905": 1,
|
||
"3906": 2,
|
||
"3907": 1,
|
||
"3908": 2,
|
||
"3909": 2,
|
||
"3910": 1,
|
||
"3911": 1,
|
||
"3912": 3,
|
||
"3913": 1,
|
||
"3914": 1,
|
||
"3915": 1,
|
||
"3916": 1,
|
||
"3917": 1,
|
||
"3918": 3,
|
||
"3919": 3,
|
||
"3920": 3,
|
||
"3921": 1,
|
||
"3922": 1,
|
||
"3923": 1,
|
||
"3924": 1,
|
||
"3925": 3,
|
||
"3926": 1,
|
||
"3927": 1,
|
||
"3928": 1,
|
||
"3929": 1,
|
||
"3930": 1,
|
||
"3931": 1,
|
||
"3932": 1,
|
||
"3933": 1,
|
||
"3934": 1,
|
||
"3935": 1,
|
||
"3936": 1,
|
||
"3937": 1,
|
||
"3938": 1,
|
||
"3939": 1,
|
||
"3940": 1,
|
||
"3941": 1,
|
||
"3942": 1,
|
||
"3943": 1,
|
||
"3944": 1,
|
||
"3945": 1,
|
||
"3946": 1,
|
||
"3947": 1,
|
||
"3948": 1,
|
||
"3949": 1,
|
||
"3950": 1,
|
||
"3951": 1,
|
||
"3952": 1,
|
||
"3953": 1,
|
||
"3954": 1,
|
||
"3955": 1,
|
||
"3956": 1,
|
||
"3957": 1,
|
||
"3958": 1,
|
||
"3959": 1,
|
||
"3960": 1,
|
||
"3961": 1,
|
||
"3962": 1,
|
||
"3963": 1,
|
||
"3964": 1,
|
||
"3965": 1,
|
||
"3966": 1,
|
||
"3967": 1,
|
||
"3968": 1,
|
||
"3969": 1,
|
||
"3970": 1,
|
||
"3971": 1,
|
||
"3972": 1,
|
||
"3973": 1,
|
||
"3974": 1,
|
||
"3975": 1,
|
||
"3976": 1,
|
||
"3977": 1,
|
||
"3978": 1,
|
||
"3979": 1,
|
||
"3980": 1,
|
||
"3981": 1,
|
||
"3982": 1,
|
||
"3983": 1,
|
||
"3984": 1,
|
||
"3985": 1,
|
||
"3986": 1,
|
||
"3987": 1,
|
||
"3988": 1,
|
||
"3989": 1,
|
||
"3990": 1,
|
||
"3991": 1,
|
||
"3992": 1
|
||
},
|
||
"lemma": {
|
||
"0": 1275,
|
||
"1": 1,
|
||
"2": 732,
|
||
"3": 3,
|
||
"4": 105,
|
||
"5": 563,
|
||
"6": 63,
|
||
"7": 133,
|
||
"8": 24,
|
||
"9": 106,
|
||
"10": 6,
|
||
"11": 387,
|
||
"12": 6,
|
||
"13": 5,
|
||
"14": 349,
|
||
"15": 193,
|
||
"16": 3,
|
||
"17": 2,
|
||
"18": 1,
|
||
"19": 33,
|
||
"20": 2,
|
||
"21": 776,
|
||
"22": 123,
|
||
"23": 1,
|
||
"24": 1297,
|
||
"25": 87,
|
||
"26": 1,
|
||
"27": 1,
|
||
"28": 1,
|
||
"29": 2,
|
||
"30": 1,
|
||
"31": 127,
|
||
"32": 1,
|
||
"33": 567,
|
||
"34": 1,
|
||
"35": 1,
|
||
"36": 1,
|
||
"37": 4,
|
||
"38": 24,
|
||
"39": 3,
|
||
"40": 18,
|
||
"41": 3,
|
||
"42": 2,
|
||
"43": 12,
|
||
"44": 11,
|
||
"45": 7,
|
||
"46": 20,
|
||
"47": 53,
|
||
"48": 5,
|
||
"49": 6,
|
||
"50": 2,
|
||
"51": 4,
|
||
"52": 20,
|
||
"53": 1,
|
||
"54": 226,
|
||
"55": 7,
|
||
"56": 137,
|
||
"57": 5,
|
||
"58": 2,
|
||
"59": 3,
|
||
"60": 4,
|
||
"61": 7,
|
||
"62": 115,
|
||
"63": 2,
|
||
"64": 577,
|
||
"65": 1,
|
||
"66": 6,
|
||
"67": 470,
|
||
"68": 10,
|
||
"69": 6,
|
||
"70": 1,
|
||
"71": 10,
|
||
"72": 4,
|
||
"73": 4,
|
||
"74": 5,
|
||
"75": 148,
|
||
"76": 1,
|
||
"77": 1,
|
||
"78": 1,
|
||
"79": 3,
|
||
"80": 6,
|
||
"81": 8,
|
||
"82": 15,
|
||
"83": 1,
|
||
"84": 7,
|
||
"85": 29,
|
||
"86": 15,
|
||
"87": 172,
|
||
"88": 12,
|
||
"89": 2,
|
||
"90": 1,
|
||
"91": 107,
|
||
"92": 2,
|
||
"93": 40,
|
||
"94": 3,
|
||
"95": 11,
|
||
"96": 6,
|
||
"97": 2,
|
||
"98": 231,
|
||
"99": 2,
|
||
"100": 22,
|
||
"101": 10,
|
||
"102": 46,
|
||
"103": 102,
|
||
"104": 9,
|
||
"105": 3,
|
||
"106": 2,
|
||
"107": 1,
|
||
"108": 201,
|
||
"109": 34,
|
||
"110": 28,
|
||
"111": 4,
|
||
"112": 13,
|
||
"113": 1,
|
||
"114": 43,
|
||
"115": 3,
|
||
"116": 37,
|
||
"117": 1,
|
||
"118": 1,
|
||
"119": 15,
|
||
"120": 47,
|
||
"121": 1,
|
||
"122": 18,
|
||
"123": 1,
|
||
"124": 1,
|
||
"125": 1,
|
||
"126": 1,
|
||
"127": 1,
|
||
"128": 123,
|
||
"129": 10,
|
||
"130": 1,
|
||
"131": 1,
|
||
"132": 1,
|
||
"133": 3,
|
||
"134": 1,
|
||
"135": 4,
|
||
"136": 3,
|
||
"137": 30,
|
||
"138": 12,
|
||
"139": 7,
|
||
"140": 14,
|
||
"141": 1,
|
||
"142": 1,
|
||
"143": 7,
|
||
"144": 6,
|
||
"145": 4,
|
||
"146": 2,
|
||
"147": 26,
|
||
"148": 10,
|
||
"149": 2,
|
||
"150": 17,
|
||
"151": 17,
|
||
"152": 1,
|
||
"153": 6,
|
||
"154": 3,
|
||
"155": 3,
|
||
"156": 3,
|
||
"157": 4,
|
||
"158": 1,
|
||
"159": 1,
|
||
"160": 2,
|
||
"161": 30,
|
||
"162": 3,
|
||
"163": 4,
|
||
"164": 29,
|
||
"165": 3,
|
||
"166": 3,
|
||
"167": 26,
|
||
"168": 11,
|
||
"169": 1,
|
||
"170": 279,
|
||
"171": 19,
|
||
"172": 1,
|
||
"173": 4,
|
||
"174": 1,
|
||
"175": 2,
|
||
"176": 1,
|
||
"177": 17,
|
||
"178": 1,
|
||
"179": 13,
|
||
"180": 35,
|
||
"181": 3,
|
||
"182": 3,
|
||
"183": 7,
|
||
"184": 2,
|
||
"185": 5,
|
||
"186": 5,
|
||
"187": 99,
|
||
"188": 1,
|
||
"189": 11,
|
||
"190": 2,
|
||
"191": 2,
|
||
"192": 217,
|
||
"193": 4,
|
||
"194": 1,
|
||
"195": 5,
|
||
"196": 8,
|
||
"197": 1,
|
||
"198": 1,
|
||
"199": 1,
|
||
"200": 11,
|
||
"201": 49,
|
||
"202": 3,
|
||
"203": 3,
|
||
"204": 7,
|
||
"205": 60,
|
||
"206": 10,
|
||
"207": 1,
|
||
"208": 31,
|
||
"209": 12,
|
||
"210": 9,
|
||
"211": 1,
|
||
"212": 4,
|
||
"213": 12,
|
||
"214": 69,
|
||
"215": 15,
|
||
"216": 1,
|
||
"217": 11,
|
||
"218": 4,
|
||
"219": 5,
|
||
"220": 2,
|
||
"221": 4,
|
||
"222": 1,
|
||
"223": 3,
|
||
"224": 5,
|
||
"225": 2,
|
||
"226": 2,
|
||
"227": 34,
|
||
"228": 2,
|
||
"229": 12,
|
||
"230": 1,
|
||
"231": 1,
|
||
"232": 22,
|
||
"233": 5,
|
||
"234": 8,
|
||
"235": 1,
|
||
"236": 24,
|
||
"237": 30,
|
||
"238": 9,
|
||
"239": 1,
|
||
"240": 1,
|
||
"241": 1,
|
||
"242": 4,
|
||
"243": 1,
|
||
"244": 6,
|
||
"245": 45,
|
||
"246": 7,
|
||
"247": 1,
|
||
"248": 3,
|
||
"249": 3,
|
||
"250": 14,
|
||
"251": 83,
|
||
"252": 2,
|
||
"253": 1,
|
||
"254": 23,
|
||
"255": 8,
|
||
"256": 17,
|
||
"257": 5,
|
||
"258": 62,
|
||
"259": 2,
|
||
"260": 1,
|
||
"261": 3,
|
||
"262": 1,
|
||
"263": 10,
|
||
"264": 1,
|
||
"265": 27,
|
||
"266": 36,
|
||
"267": 5,
|
||
"268": 13,
|
||
"269": 23,
|
||
"270": 3,
|
||
"271": 18,
|
||
"272": 2,
|
||
"273": 1,
|
||
"274": 4,
|
||
"275": 3,
|
||
"276": 4,
|
||
"277": 5,
|
||
"278": 3,
|
||
"279": 2,
|
||
"280": 20,
|
||
"281": 7,
|
||
"282": 14,
|
||
"283": 2,
|
||
"284": 3,
|
||
"285": 19,
|
||
"286": 10,
|
||
"287": 2,
|
||
"288": 2,
|
||
"289": 7,
|
||
"290": 13,
|
||
"291": 9,
|
||
"292": 16,
|
||
"293": 7,
|
||
"294": 7,
|
||
"295": 44,
|
||
"296": 19,
|
||
"297": 11,
|
||
"298": 7,
|
||
"299": 6,
|
||
"300": 9,
|
||
"301": 3,
|
||
"302": 1,
|
||
"303": 4,
|
||
"304": 22,
|
||
"305": 1,
|
||
"306": 6,
|
||
"307": 8,
|
||
"308": 25,
|
||
"309": 8,
|
||
"310": 11,
|
||
"311": 1,
|
||
"312": 6,
|
||
"313": 2,
|
||
"314": 18,
|
||
"315": 45,
|
||
"316": 1,
|
||
"317": 19,
|
||
"318": 2,
|
||
"319": 22,
|
||
"320": 1,
|
||
"321": 5,
|
||
"322": 1,
|
||
"323": 45,
|
||
"324": 4,
|
||
"325": 12,
|
||
"326": 17,
|
||
"327": 8,
|
||
"328": 2,
|
||
"329": 1,
|
||
"330": 4,
|
||
"331": 7,
|
||
"332": 14,
|
||
"333": 1,
|
||
"334": 1,
|
||
"335": 1,
|
||
"336": 1,
|
||
"337": 8,
|
||
"338": 1,
|
||
"339": 1,
|
||
"340": 6,
|
||
"341": 1,
|
||
"342": 22,
|
||
"343": 2,
|
||
"344": 1,
|
||
"345": 1,
|
||
"346": 8,
|
||
"347": 1,
|
||
"348": 4,
|
||
"349": 27,
|
||
"350": 9,
|
||
"351": 7,
|
||
"352": 1,
|
||
"353": 3,
|
||
"354": 1,
|
||
"355": 7,
|
||
"356": 3,
|
||
"357": 1,
|
||
"358": 75,
|
||
"359": 4,
|
||
"360": 5,
|
||
"361": 12,
|
||
"362": 2,
|
||
"363": 24,
|
||
"364": 4,
|
||
"365": 1,
|
||
"366": 62,
|
||
"367": 1,
|
||
"368": 9,
|
||
"369": 9,
|
||
"370": 8,
|
||
"371": 1,
|
||
"372": 10,
|
||
"373": 1,
|
||
"374": 16,
|
||
"375": 1,
|
||
"376": 46,
|
||
"377": 1,
|
||
"378": 4,
|
||
"379": 1,
|
||
"380": 3,
|
||
"381": 3,
|
||
"382": 2,
|
||
"383": 2,
|
||
"384": 2,
|
||
"385": 3,
|
||
"386": 6,
|
||
"387": 2,
|
||
"388": 3,
|
||
"389": 1,
|
||
"390": 2,
|
||
"391": 3,
|
||
"392": 42,
|
||
"393": 4,
|
||
"394": 5,
|
||
"395": 67,
|
||
"396": 1,
|
||
"397": 2,
|
||
"398": 2,
|
||
"399": 9,
|
||
"400": 3,
|
||
"401": 2,
|
||
"402": 13,
|
||
"403": 1,
|
||
"404": 16,
|
||
"405": 7,
|
||
"406": 42,
|
||
"407": 4,
|
||
"408": 1,
|
||
"409": 2,
|
||
"410": 3,
|
||
"411": 5,
|
||
"412": 5,
|
||
"413": 1,
|
||
"414": 39,
|
||
"415": 23,
|
||
"416": 1,
|
||
"417": 4,
|
||
"418": 1,
|
||
"419": 4,
|
||
"420": 3,
|
||
"421": 3,
|
||
"422": 13,
|
||
"423": 6,
|
||
"424": 18,
|
||
"425": 2,
|
||
"426": 22,
|
||
"427": 2,
|
||
"428": 2,
|
||
"429": 9,
|
||
"430": 5,
|
||
"431": 1,
|
||
"432": 12,
|
||
"433": 169,
|
||
"434": 2,
|
||
"435": 2,
|
||
"436": 1,
|
||
"437": 1,
|
||
"438": 1,
|
||
"439": 9,
|
||
"440": 2,
|
||
"441": 16,
|
||
"442": 2,
|
||
"443": 2,
|
||
"444": 26,
|
||
"445": 6,
|
||
"446": 5,
|
||
"447": 1,
|
||
"448": 3,
|
||
"449": 2,
|
||
"450": 20,
|
||
"451": 11,
|
||
"452": 14,
|
||
"453": 1,
|
||
"454": 2,
|
||
"455": 1,
|
||
"456": 1,
|
||
"457": 9,
|
||
"458": 5,
|
||
"459": 9,
|
||
"460": 4,
|
||
"461": 5,
|
||
"462": 2,
|
||
"463": 8,
|
||
"464": 60,
|
||
"465": 1,
|
||
"466": 3,
|
||
"467": 2,
|
||
"468": 2,
|
||
"469": 9,
|
||
"470": 1,
|
||
"471": 2,
|
||
"472": 1,
|
||
"473": 15,
|
||
"474": 15,
|
||
"475": 9,
|
||
"476": 17,
|
||
"477": 1,
|
||
"478": 4,
|
||
"479": 9,
|
||
"480": 1,
|
||
"481": 5,
|
||
"482": 1,
|
||
"483": 1,
|
||
"484": 2,
|
||
"485": 20,
|
||
"486": 6,
|
||
"487": 4,
|
||
"488": 8,
|
||
"489": 2,
|
||
"490": 1,
|
||
"491": 1,
|
||
"492": 2,
|
||
"493": 2,
|
||
"494": 8,
|
||
"495": 3,
|
||
"496": 2,
|
||
"497": 2,
|
||
"498": 3,
|
||
"499": 6,
|
||
"500": 1,
|
||
"501": 17,
|
||
"502": 1,
|
||
"503": 36,
|
||
"504": 5,
|
||
"505": 3,
|
||
"506": 2,
|
||
"507": 2,
|
||
"508": 43,
|
||
"509": 3,
|
||
"510": 4,
|
||
"511": 11,
|
||
"512": 1,
|
||
"513": 3,
|
||
"514": 2,
|
||
"515": 1,
|
||
"516": 1,
|
||
"517": 4,
|
||
"518": 21,
|
||
"519": 23,
|
||
"520": 6,
|
||
"521": 5,
|
||
"522": 1,
|
||
"523": 1,
|
||
"524": 4,
|
||
"525": 4,
|
||
"526": 11,
|
||
"527": 4,
|
||
"528": 2,
|
||
"529": 1,
|
||
"530": 1,
|
||
"531": 1,
|
||
"532": 7,
|
||
"533": 3,
|
||
"534": 5,
|
||
"535": 3,
|
||
"536": 1,
|
||
"537": 16,
|
||
"538": 3,
|
||
"539": 1,
|
||
"540": 1,
|
||
"541": 8,
|
||
"542": 1,
|
||
"543": 1,
|
||
"544": 1,
|
||
"545": 2,
|
||
"546": 2,
|
||
"547": 8,
|
||
"548": 3,
|
||
"549": 3,
|
||
"550": 5,
|
||
"551": 2,
|
||
"552": 1,
|
||
"553": 5,
|
||
"554": 6,
|
||
"555": 1,
|
||
"556": 3,
|
||
"557": 5,
|
||
"558": 3,
|
||
"559": 1,
|
||
"560": 1,
|
||
"561": 9,
|
||
"562": 3,
|
||
"563": 1,
|
||
"564": 11,
|
||
"565": 1,
|
||
"566": 1,
|
||
"567": 2,
|
||
"568": 1,
|
||
"569": 2,
|
||
"570": 1,
|
||
"571": 3,
|
||
"572": 9,
|
||
"573": 1,
|
||
"574": 1,
|
||
"575": 1,
|
||
"576": 8,
|
||
"577": 10,
|
||
"578": 1,
|
||
"579": 5,
|
||
"580": 2,
|
||
"581": 4,
|
||
"582": 1,
|
||
"583": 1,
|
||
"584": 2,
|
||
"585": 1,
|
||
"586": 1,
|
||
"587": 8,
|
||
"588": 4,
|
||
"589": 5,
|
||
"590": 1,
|
||
"591": 2,
|
||
"592": 2,
|
||
"593": 3,
|
||
"594": 1,
|
||
"595": 1,
|
||
"596": 2,
|
||
"597": 2,
|
||
"598": 59,
|
||
"599": 2,
|
||
"600": 2,
|
||
"601": 12,
|
||
"602": 2,
|
||
"603": 2,
|
||
"604": 1,
|
||
"605": 2,
|
||
"606": 1,
|
||
"607": 3,
|
||
"608": 3,
|
||
"609": 3,
|
||
"610": 4,
|
||
"611": 1,
|
||
"612": 1,
|
||
"613": 1,
|
||
"614": 3,
|
||
"615": 8,
|
||
"616": 5,
|
||
"617": 1,
|
||
"618": 5,
|
||
"619": 2,
|
||
"620": 6,
|
||
"621": 4,
|
||
"622": 9,
|
||
"623": 5,
|
||
"624": 5,
|
||
"625": 5,
|
||
"626": 3,
|
||
"627": 2,
|
||
"628": 4,
|
||
"629": 4,
|
||
"630": 15,
|
||
"631": 4,
|
||
"632": 31,
|
||
"633": 2,
|
||
"634": 12,
|
||
"635": 2,
|
||
"636": 7,
|
||
"637": 1,
|
||
"638": 1,
|
||
"639": 3,
|
||
"640": 5,
|
||
"641": 1,
|
||
"642": 1,
|
||
"643": 1,
|
||
"644": 1,
|
||
"645": 1,
|
||
"646": 1,
|
||
"647": 1,
|
||
"648": 1,
|
||
"649": 1,
|
||
"650": 2,
|
||
"651": 1,
|
||
"652": 1,
|
||
"653": 27,
|
||
"654": 2,
|
||
"655": 14,
|
||
"656": 7,
|
||
"657": 1,
|
||
"658": 1,
|
||
"659": 4,
|
||
"660": 1,
|
||
"661": 8,
|
||
"662": 1,
|
||
"663": 1,
|
||
"664": 1,
|
||
"665": 2,
|
||
"666": 1,
|
||
"667": 2,
|
||
"668": 2,
|
||
"669": 1,
|
||
"670": 2,
|
||
"671": 1,
|
||
"672": 2,
|
||
"673": 1,
|
||
"674": 1,
|
||
"675": 2,
|
||
"676": 7,
|
||
"677": 1,
|
||
"678": 1,
|
||
"679": 1,
|
||
"680": 7,
|
||
"681": 18,
|
||
"682": 5,
|
||
"683": 1,
|
||
"684": 1,
|
||
"685": 4,
|
||
"686": 6,
|
||
"687": 4,
|
||
"688": 3,
|
||
"689": 4,
|
||
"690": 3,
|
||
"691": 4,
|
||
"692": 1,
|
||
"693": 11,
|
||
"694": 11,
|
||
"695": 2,
|
||
"696": 19,
|
||
"697": 3,
|
||
"698": 11,
|
||
"699": 2,
|
||
"700": 1,
|
||
"701": 5,
|
||
"702": 2,
|
||
"703": 2,
|
||
"704": 1,
|
||
"705": 11,
|
||
"706": 5,
|
||
"707": 4,
|
||
"708": 8,
|
||
"709": 1,
|
||
"710": 1,
|
||
"711": 1,
|
||
"712": 1,
|
||
"713": 1,
|
||
"714": 1,
|
||
"715": 1,
|
||
"716": 1,
|
||
"717": 5,
|
||
"718": 5,
|
||
"719": 1,
|
||
"720": 5,
|
||
"721": 1,
|
||
"722": 2,
|
||
"723": 3,
|
||
"724": 18,
|
||
"725": 4,
|
||
"726": 10,
|
||
"727": 2,
|
||
"728": 2,
|
||
"729": 40,
|
||
"730": 2,
|
||
"731": 1,
|
||
"732": 1,
|
||
"733": 2,
|
||
"734": 2,
|
||
"735": 3,
|
||
"736": 1,
|
||
"737": 1,
|
||
"738": 4,
|
||
"739": 2,
|
||
"740": 2,
|
||
"741": 1,
|
||
"742": 2,
|
||
"743": 4,
|
||
"744": 2,
|
||
"745": 7,
|
||
"746": 17,
|
||
"747": 11,
|
||
"748": 1,
|
||
"749": 1,
|
||
"750": 24,
|
||
"751": 1,
|
||
"752": 5,
|
||
"753": 1,
|
||
"754": 10,
|
||
"755": 12,
|
||
"756": 15,
|
||
"757": 2,
|
||
"758": 2,
|
||
"759": 5,
|
||
"760": 4,
|
||
"761": 1,
|
||
"762": 1,
|
||
"763": 9,
|
||
"764": 2,
|
||
"765": 1,
|
||
"766": 1,
|
||
"767": 1,
|
||
"768": 2,
|
||
"769": 1,
|
||
"770": 1,
|
||
"771": 15,
|
||
"772": 8,
|
||
"773": 5,
|
||
"774": 1,
|
||
"775": 1,
|
||
"776": 1,
|
||
"777": 8,
|
||
"778": 3,
|
||
"779": 12,
|
||
"780": 1,
|
||
"781": 1,
|
||
"782": 2,
|
||
"783": 20,
|
||
"784": 1,
|
||
"785": 3,
|
||
"786": 2,
|
||
"787": 3,
|
||
"788": 13,
|
||
"789": 2,
|
||
"790": 2,
|
||
"791": 1,
|
||
"792": 2,
|
||
"793": 1,
|
||
"794": 1,
|
||
"795": 4,
|
||
"796": 2,
|
||
"797": 1,
|
||
"798": 1,
|
||
"799": 1,
|
||
"800": 1,
|
||
"801": 1,
|
||
"802": 10,
|
||
"803": 6,
|
||
"804": 1,
|
||
"805": 2,
|
||
"806": 2,
|
||
"807": 1,
|
||
"808": 1,
|
||
"809": 3,
|
||
"810": 2,
|
||
"811": 2,
|
||
"812": 1,
|
||
"813": 1,
|
||
"814": 1,
|
||
"815": 3,
|
||
"816": 2,
|
||
"817": 1,
|
||
"818": 1,
|
||
"819": 21,
|
||
"820": 1,
|
||
"821": 1,
|
||
"822": 1,
|
||
"823": 1,
|
||
"824": 1,
|
||
"825": 2,
|
||
"826": 1,
|
||
"827": 1,
|
||
"828": 5,
|
||
"829": 7,
|
||
"830": 1,
|
||
"831": 5,
|
||
"832": 1,
|
||
"833": 4,
|
||
"834": 9,
|
||
"835": 8,
|
||
"836": 4,
|
||
"837": 8,
|
||
"838": 9,
|
||
"839": 1,
|
||
"840": 1,
|
||
"841": 1,
|
||
"842": 50,
|
||
"843": 2,
|
||
"844": 4,
|
||
"845": 1,
|
||
"846": 1,
|
||
"847": 1,
|
||
"848": 5,
|
||
"849": 1,
|
||
"850": 1,
|
||
"851": 2,
|
||
"852": 2,
|
||
"853": 1,
|
||
"854": 5,
|
||
"855": 1,
|
||
"856": 1,
|
||
"857": 11,
|
||
"858": 1,
|
||
"859": 3,
|
||
"860": 16,
|
||
"861": 1,
|
||
"862": 1,
|
||
"863": 2,
|
||
"864": 3,
|
||
"865": 3,
|
||
"866": 6,
|
||
"867": 1,
|
||
"868": 7,
|
||
"869": 1,
|
||
"870": 1,
|
||
"871": 1,
|
||
"872": 1,
|
||
"873": 12,
|
||
"874": 24,
|
||
"875": 8,
|
||
"876": 7,
|
||
"877": 19,
|
||
"878": 2,
|
||
"879": 3,
|
||
"880": 1,
|
||
"881": 1,
|
||
"882": 1,
|
||
"883": 1,
|
||
"884": 11,
|
||
"885": 5,
|
||
"886": 2,
|
||
"887": 5,
|
||
"888": 1,
|
||
"889": 1,
|
||
"890": 1,
|
||
"891": 1,
|
||
"892": 2,
|
||
"893": 1,
|
||
"894": 7,
|
||
"895": 3,
|
||
"896": 1,
|
||
"897": 4,
|
||
"898": 1,
|
||
"899": 1,
|
||
"900": 1,
|
||
"901": 1,
|
||
"902": 3,
|
||
"903": 2,
|
||
"904": 1,
|
||
"905": 6,
|
||
"906": 1,
|
||
"907": 1,
|
||
"908": 3,
|
||
"909": 7,
|
||
"910": 1,
|
||
"911": 1,
|
||
"912": 4,
|
||
"913": 3,
|
||
"914": 8,
|
||
"915": 1,
|
||
"916": 1,
|
||
"917": 1,
|
||
"918": 5,
|
||
"919": 3,
|
||
"920": 2,
|
||
"921": 1,
|
||
"922": 1,
|
||
"923": 1,
|
||
"924": 5,
|
||
"925": 1,
|
||
"926": 3,
|
||
"927": 8,
|
||
"928": 3,
|
||
"929": 1,
|
||
"930": 2,
|
||
"931": 1,
|
||
"932": 1,
|
||
"933": 1,
|
||
"934": 1,
|
||
"935": 2,
|
||
"936": 1,
|
||
"937": 2,
|
||
"938": 1,
|
||
"939": 1,
|
||
"940": 1,
|
||
"941": 6,
|
||
"942": 1,
|
||
"943": 1,
|
||
"944": 1,
|
||
"945": 1,
|
||
"946": 1,
|
||
"947": 1,
|
||
"948": 1,
|
||
"949": 5,
|
||
"950": 1,
|
||
"951": 2,
|
||
"952": 2,
|
||
"953": 1,
|
||
"954": 3,
|
||
"955": 1,
|
||
"956": 1,
|
||
"957": 1,
|
||
"958": 1,
|
||
"959": 1,
|
||
"960": 3,
|
||
"961": 1,
|
||
"962": 1,
|
||
"963": 1,
|
||
"964": 1,
|
||
"965": 4,
|
||
"966": 3,
|
||
"967": 1,
|
||
"968": 1,
|
||
"969": 1,
|
||
"970": 1,
|
||
"971": 2,
|
||
"972": 2,
|
||
"973": 3,
|
||
"974": 1,
|
||
"975": 1,
|
||
"976": 1,
|
||
"977": 2,
|
||
"978": 1,
|
||
"979": 1,
|
||
"980": 2,
|
||
"981": 3,
|
||
"982": 1,
|
||
"983": 1,
|
||
"984": 1,
|
||
"985": 2,
|
||
"986": 2,
|
||
"987": 6,
|
||
"988": 5,
|
||
"989": 1,
|
||
"990": 1,
|
||
"991": 1,
|
||
"992": 1,
|
||
"993": 1,
|
||
"994": 2,
|
||
"995": 1,
|
||
"996": 10,
|
||
"997": 1,
|
||
"998": 1,
|
||
"999": 1,
|
||
"1000": 4,
|
||
"1001": 2,
|
||
"1002": 1,
|
||
"1003": 1,
|
||
"1004": 1,
|
||
"1005": 1,
|
||
"1006": 1,
|
||
"1007": 1,
|
||
"1008": 1,
|
||
"1009": 1,
|
||
"1010": 3,
|
||
"1011": 1,
|
||
"1012": 4,
|
||
"1013": 2,
|
||
"1014": 1,
|
||
"1015": 1,
|
||
"1016": 1,
|
||
"1017": 1,
|
||
"1018": 1,
|
||
"1019": 1,
|
||
"1020": 1,
|
||
"1021": 1,
|
||
"1022": 1,
|
||
"1023": 1,
|
||
"1024": 2,
|
||
"1025": 5,
|
||
"1026": 17,
|
||
"1027": 8,
|
||
"1028": 3,
|
||
"1029": 5,
|
||
"1030": 1,
|
||
"1031": 1,
|
||
"1032": 4,
|
||
"1033": 5,
|
||
"1034": 2,
|
||
"1035": 1,
|
||
"1036": 1,
|
||
"1037": 2,
|
||
"1038": 5,
|
||
"1039": 1,
|
||
"1040": 1,
|
||
"1041": 17,
|
||
"1042": 1,
|
||
"1043": 2,
|
||
"1044": 1,
|
||
"1045": 2,
|
||
"1046": 3,
|
||
"1047": 2,
|
||
"1048": 3,
|
||
"1049": 1,
|
||
"1050": 1,
|
||
"1051": 1,
|
||
"1052": 2,
|
||
"1053": 1,
|
||
"1054": 1,
|
||
"1055": 5,
|
||
"1056": 1,
|
||
"1057": 1,
|
||
"1058": 1,
|
||
"1059": 1,
|
||
"1060": 1,
|
||
"1061": 2,
|
||
"1062": 2,
|
||
"1063": 1,
|
||
"1064": 1,
|
||
"1065": 1,
|
||
"1066": 6,
|
||
"1067": 1,
|
||
"1068": 2,
|
||
"1069": 1,
|
||
"1070": 9,
|
||
"1071": 3,
|
||
"1072": 6,
|
||
"1073": 1,
|
||
"1074": 11,
|
||
"1075": 6,
|
||
"1076": 1,
|
||
"1077": 1,
|
||
"1078": 1,
|
||
"1079": 1,
|
||
"1080": 2,
|
||
"1081": 6,
|
||
"1082": 3,
|
||
"1083": 1,
|
||
"1084": 5,
|
||
"1085": 1,
|
||
"1086": 1,
|
||
"1087": 1,
|
||
"1088": 4,
|
||
"1089": 20,
|
||
"1090": 5,
|
||
"1091": 1,
|
||
"1092": 1,
|
||
"1093": 2,
|
||
"1094": 1,
|
||
"1095": 1,
|
||
"1096": 1,
|
||
"1097": 4,
|
||
"1098": 1,
|
||
"1099": 1,
|
||
"1100": 1,
|
||
"1101": 2,
|
||
"1102": 1,
|
||
"1103": 1,
|
||
"1104": 4,
|
||
"1105": 5,
|
||
"1106": 1,
|
||
"1107": 1,
|
||
"1108": 2,
|
||
"1109": 3,
|
||
"1110": 1,
|
||
"1111": 1,
|
||
"1112": 2,
|
||
"1113": 2,
|
||
"1114": 2,
|
||
"1115": 1,
|
||
"1116": 1,
|
||
"1117": 1,
|
||
"1118": 1,
|
||
"1119": 6,
|
||
"1120": 1,
|
||
"1121": 3,
|
||
"1122": 6,
|
||
"1123": 1,
|
||
"1124": 6,
|
||
"1125": 1,
|
||
"1126": 1,
|
||
"1127": 3,
|
||
"1128": 1,
|
||
"1129": 1,
|
||
"1130": 1,
|
||
"1131": 2,
|
||
"1132": 1,
|
||
"1133": 3,
|
||
"1134": 2,
|
||
"1135": 2,
|
||
"1136": 23,
|
||
"1137": 4,
|
||
"1138": 1,
|
||
"1139": 1,
|
||
"1140": 1,
|
||
"1141": 1,
|
||
"1142": 1,
|
||
"1143": 1,
|
||
"1144": 1,
|
||
"1145": 4,
|
||
"1146": 1,
|
||
"1147": 3,
|
||
"1148": 5,
|
||
"1149": 1,
|
||
"1150": 1,
|
||
"1151": 1,
|
||
"1152": 1,
|
||
"1153": 3,
|
||
"1154": 2,
|
||
"1155": 1,
|
||
"1156": 1,
|
||
"1157": 3,
|
||
"1158": 8,
|
||
"1159": 2,
|
||
"1160": 1,
|
||
"1161": 1,
|
||
"1162": 1,
|
||
"1163": 1,
|
||
"1164": 1,
|
||
"1165": 7,
|
||
"1166": 1,
|
||
"1167": 1,
|
||
"1168": 1,
|
||
"1169": 2,
|
||
"1170": 1,
|
||
"1171": 2,
|
||
"1172": 2,
|
||
"1173": 2,
|
||
"1174": 1,
|
||
"1175": 1,
|
||
"1176": 1,
|
||
"1177": 1,
|
||
"1178": 1,
|
||
"1179": 1,
|
||
"1180": 6,
|
||
"1181": 4,
|
||
"1182": 1,
|
||
"1183": 1,
|
||
"1184": 2,
|
||
"1185": 1,
|
||
"1186": 1,
|
||
"1187": 1,
|
||
"1188": 1,
|
||
"1189": 1,
|
||
"1190": 1,
|
||
"1191": 2,
|
||
"1192": 2,
|
||
"1193": 3,
|
||
"1194": 1,
|
||
"1195": 3,
|
||
"1196": 2,
|
||
"1197": 4,
|
||
"1198": 3,
|
||
"1199": 5,
|
||
"1200": 5,
|
||
"1201": 3,
|
||
"1202": 3,
|
||
"1203": 2,
|
||
"1204": 3,
|
||
"1205": 1,
|
||
"1206": 1,
|
||
"1207": 1,
|
||
"1208": 3,
|
||
"1209": 1,
|
||
"1210": 2,
|
||
"1211": 10,
|
||
"1212": 2,
|
||
"1213": 1,
|
||
"1214": 2,
|
||
"1215": 5,
|
||
"1216": 3,
|
||
"1217": 3,
|
||
"1218": 3,
|
||
"1219": 1,
|
||
"1220": 1,
|
||
"1221": 1,
|
||
"1222": 10,
|
||
"1223": 1,
|
||
"1224": 1,
|
||
"1225": 1,
|
||
"1226": 1,
|
||
"1227": 1,
|
||
"1228": 1,
|
||
"1229": 2,
|
||
"1230": 1,
|
||
"1231": 1,
|
||
"1232": 4,
|
||
"1233": 1,
|
||
"1234": 1,
|
||
"1235": 7,
|
||
"1236": 1,
|
||
"1237": 1,
|
||
"1238": 1,
|
||
"1239": 1,
|
||
"1240": 3,
|
||
"1241": 1,
|
||
"1242": 1,
|
||
"1243": 9,
|
||
"1244": 1,
|
||
"1245": 1,
|
||
"1246": 1,
|
||
"1247": 2,
|
||
"1248": 1,
|
||
"1249": 4,
|
||
"1250": 2,
|
||
"1251": 1,
|
||
"1252": 3,
|
||
"1253": 1,
|
||
"1254": 1,
|
||
"1255": 2,
|
||
"1256": 1,
|
||
"1257": 1,
|
||
"1258": 2,
|
||
"1259": 2,
|
||
"1260": 1,
|
||
"1261": 1,
|
||
"1262": 1,
|
||
"1263": 1,
|
||
"1264": 1,
|
||
"1265": 1,
|
||
"1266": 1,
|
||
"1267": 4,
|
||
"1268": 1,
|
||
"1269": 1,
|
||
"1270": 1,
|
||
"1271": 3,
|
||
"1272": 2,
|
||
"1273": 5,
|
||
"1274": 1,
|
||
"1275": 2,
|
||
"1276": 1,
|
||
"1277": 1,
|
||
"1278": 4,
|
||
"1279": 1,
|
||
"1280": 3,
|
||
"1281": 12,
|
||
"1282": 1,
|
||
"1283": 1,
|
||
"1284": 1,
|
||
"1285": 1,
|
||
"1286": 1,
|
||
"1287": 1,
|
||
"1288": 1,
|
||
"1289": 1,
|
||
"1290": 1,
|
||
"1291": 1,
|
||
"1292": 5,
|
||
"1293": 2,
|
||
"1294": 5,
|
||
"1295": 3,
|
||
"1296": 1,
|
||
"1297": 1,
|
||
"1298": 2,
|
||
"1299": 2,
|
||
"1300": 1,
|
||
"1301": 4,
|
||
"1302": 1,
|
||
"1303": 1,
|
||
"1304": 1,
|
||
"1305": 1,
|
||
"1306": 1,
|
||
"1307": 1,
|
||
"1308": 1,
|
||
"1309": 1,
|
||
"1310": 1,
|
||
"1311": 6,
|
||
"1312": 1,
|
||
"1313": 1,
|
||
"1314": 3,
|
||
"1315": 1,
|
||
"1316": 2,
|
||
"1317": 2,
|
||
"1318": 1,
|
||
"1319": 1,
|
||
"1320": 1,
|
||
"1321": 2,
|
||
"1322": 1,
|
||
"1323": 1,
|
||
"1324": 4,
|
||
"1325": 1,
|
||
"1326": 1,
|
||
"1327": 2,
|
||
"1328": 1,
|
||
"1329": 3,
|
||
"1330": 1,
|
||
"1331": 3,
|
||
"1332": 1,
|
||
"1333": 1,
|
||
"1334": 1,
|
||
"1335": 1,
|
||
"1336": 5,
|
||
"1337": 5,
|
||
"1338": 2,
|
||
"1339": 5,
|
||
"1340": 1,
|
||
"1341": 2,
|
||
"1342": 3,
|
||
"1343": 1,
|
||
"1344": 3,
|
||
"1345": 1,
|
||
"1346": 1,
|
||
"1347": 1,
|
||
"1348": 1,
|
||
"1349": 1,
|
||
"1350": 1,
|
||
"1351": 3,
|
||
"1352": 2,
|
||
"1353": 7,
|
||
"1354": 2,
|
||
"1355": 2,
|
||
"1356": 2,
|
||
"1357": 4,
|
||
"1358": 1,
|
||
"1359": 1,
|
||
"1360": 1,
|
||
"1361": 3,
|
||
"1362": 5,
|
||
"1363": 4,
|
||
"1364": 6,
|
||
"1365": 2,
|
||
"1366": 1,
|
||
"1367": 1,
|
||
"1368": 1,
|
||
"1369": 6,
|
||
"1370": 3,
|
||
"1371": 1,
|
||
"1372": 6,
|
||
"1373": 5,
|
||
"1374": 3,
|
||
"1375": 1,
|
||
"1376": 2,
|
||
"1377": 1,
|
||
"1378": 1,
|
||
"1379": 2,
|
||
"1380": 2,
|
||
"1381": 6,
|
||
"1382": 6,
|
||
"1383": 2,
|
||
"1384": 3,
|
||
"1385": 3,
|
||
"1386": 6,
|
||
"1387": 2,
|
||
"1388": 6,
|
||
"1389": 3,
|
||
"1390": 3,
|
||
"1391": 1,
|
||
"1392": 2,
|
||
"1393": 3,
|
||
"1394": 3,
|
||
"1395": 3,
|
||
"1396": 11,
|
||
"1397": 4,
|
||
"1398": 2,
|
||
"1399": 2,
|
||
"1400": 15,
|
||
"1401": 1,
|
||
"1402": 1,
|
||
"1403": 1,
|
||
"1404": 1,
|
||
"1405": 13,
|
||
"1406": 6,
|
||
"1407": 3,
|
||
"1408": 1,
|
||
"1409": 1,
|
||
"1410": 15,
|
||
"1411": 2,
|
||
"1412": 2,
|
||
"1413": 8,
|
||
"1414": 6,
|
||
"1415": 2,
|
||
"1416": 2,
|
||
"1417": 21,
|
||
"1418": 2,
|
||
"1419": 3,
|
||
"1420": 10,
|
||
"1421": 3,
|
||
"1422": 2,
|
||
"1423": 4,
|
||
"1424": 1,
|
||
"1425": 1,
|
||
"1426": 13,
|
||
"1427": 3,
|
||
"1428": 4,
|
||
"1429": 3,
|
||
"1430": 1,
|
||
"1431": 1,
|
||
"1432": 2,
|
||
"1433": 1,
|
||
"1434": 1,
|
||
"1435": 7,
|
||
"1436": 4,
|
||
"1437": 3,
|
||
"1438": 3,
|
||
"1439": 1,
|
||
"1440": 1,
|
||
"1441": 2,
|
||
"1442": 16,
|
||
"1443": 3,
|
||
"1444": 1,
|
||
"1445": 4,
|
||
"1446": 8,
|
||
"1447": 5,
|
||
"1448": 6,
|
||
"1449": 1,
|
||
"1450": 2,
|
||
"1451": 1,
|
||
"1452": 6,
|
||
"1453": 2,
|
||
"1454": 1,
|
||
"1455": 4,
|
||
"1456": 1,
|
||
"1457": 6,
|
||
"1458": 1,
|
||
"1459": 9,
|
||
"1460": 1,
|
||
"1461": 8,
|
||
"1462": 1,
|
||
"1463": 1,
|
||
"1464": 1,
|
||
"1465": 3,
|
||
"1466": 2,
|
||
"1467": 6,
|
||
"1468": 13,
|
||
"1469": 1,
|
||
"1470": 19,
|
||
"1471": 4,
|
||
"1472": 5,
|
||
"1473": 1,
|
||
"1474": 3,
|
||
"1475": 1,
|
||
"1476": 5,
|
||
"1477": 1,
|
||
"1478": 3,
|
||
"1479": 3,
|
||
"1480": 3,
|
||
"1481": 3,
|
||
"1482": 1,
|
||
"1483": 2,
|
||
"1484": 7,
|
||
"1485": 13,
|
||
"1486": 3,
|
||
"1487": 1,
|
||
"1488": 2,
|
||
"1489": 1,
|
||
"1490": 2,
|
||
"1491": 6,
|
||
"1492": 2,
|
||
"1493": 1,
|
||
"1494": 1,
|
||
"1495": 1,
|
||
"1496": 3,
|
||
"1497": 7,
|
||
"1498": 4,
|
||
"1499": 4,
|
||
"1500": 2,
|
||
"1501": 1,
|
||
"1502": 1,
|
||
"1503": 10,
|
||
"1504": 5,
|
||
"1505": 1,
|
||
"1506": 1,
|
||
"1507": 3,
|
||
"1508": 2,
|
||
"1509": 3,
|
||
"1510": 1,
|
||
"1511": 4,
|
||
"1512": 1,
|
||
"1513": 1,
|
||
"1514": 1,
|
||
"1515": 2,
|
||
"1516": 6,
|
||
"1517": 2,
|
||
"1518": 5,
|
||
"1519": 1,
|
||
"1520": 1,
|
||
"1521": 1,
|
||
"1522": 1,
|
||
"1523": 1,
|
||
"1524": 1,
|
||
"1525": 1,
|
||
"1526": 2,
|
||
"1527": 3,
|
||
"1528": 2,
|
||
"1529": 1,
|
||
"1530": 8,
|
||
"1531": 2,
|
||
"1532": 5,
|
||
"1533": 9,
|
||
"1534": 5,
|
||
"1535": 4,
|
||
"1536": 1,
|
||
"1537": 1,
|
||
"1538": 1,
|
||
"1539": 2,
|
||
"1540": 2,
|
||
"1541": 2,
|
||
"1542": 1,
|
||
"1543": 2,
|
||
"1544": 12,
|
||
"1545": 4,
|
||
"1546": 1,
|
||
"1547": 4,
|
||
"1548": 7,
|
||
"1549": 21,
|
||
"1550": 5,
|
||
"1551": 1,
|
||
"1552": 6,
|
||
"1553": 1,
|
||
"1554": 4,
|
||
"1555": 3,
|
||
"1556": 1,
|
||
"1557": 1,
|
||
"1558": 1,
|
||
"1559": 2,
|
||
"1560": 1,
|
||
"1561": 4,
|
||
"1562": 2,
|
||
"1563": 2,
|
||
"1564": 2,
|
||
"1565": 9,
|
||
"1566": 3,
|
||
"1567": 1,
|
||
"1568": 4,
|
||
"1569": 7,
|
||
"1570": 2,
|
||
"1571": 2,
|
||
"1572": 7,
|
||
"1573": 1,
|
||
"1574": 1,
|
||
"1575": 7,
|
||
"1576": 1,
|
||
"1577": 1,
|
||
"1578": 2,
|
||
"1579": 7,
|
||
"1580": 1,
|
||
"1581": 1,
|
||
"1582": 3,
|
||
"1583": 1,
|
||
"1584": 2,
|
||
"1585": 1,
|
||
"1586": 1,
|
||
"1587": 3,
|
||
"1588": 1,
|
||
"1589": 2,
|
||
"1590": 3,
|
||
"1591": 5,
|
||
"1592": 9,
|
||
"1593": 1,
|
||
"1594": 6,
|
||
"1595": 2,
|
||
"1596": 4,
|
||
"1597": 1,
|
||
"1598": 10,
|
||
"1599": 4,
|
||
"1600": 4,
|
||
"1601": 1,
|
||
"1602": 3,
|
||
"1603": 2,
|
||
"1604": 1,
|
||
"1605": 2,
|
||
"1606": 1,
|
||
"1607": 3,
|
||
"1608": 1,
|
||
"1609": 1,
|
||
"1610": 1,
|
||
"1611": 1,
|
||
"1612": 2,
|
||
"1613": 4,
|
||
"1614": 1,
|
||
"1615": 2,
|
||
"1616": 10,
|
||
"1617": 1,
|
||
"1618": 1,
|
||
"1619": 3,
|
||
"1620": 4,
|
||
"1621": 2,
|
||
"1622": 1,
|
||
"1623": 1,
|
||
"1624": 3,
|
||
"1625": 1,
|
||
"1626": 1,
|
||
"1627": 5,
|
||
"1628": 4,
|
||
"1629": 1,
|
||
"1630": 2,
|
||
"1631": 1,
|
||
"1632": 3,
|
||
"1633": 1,
|
||
"1634": 3,
|
||
"1635": 1,
|
||
"1636": 1,
|
||
"1637": 1,
|
||
"1638": 3,
|
||
"1639": 4,
|
||
"1640": 1,
|
||
"1641": 1,
|
||
"1642": 2,
|
||
"1643": 7,
|
||
"1644": 2,
|
||
"1645": 2,
|
||
"1646": 1,
|
||
"1647": 1,
|
||
"1648": 1,
|
||
"1649": 1,
|
||
"1650": 5,
|
||
"1651": 1,
|
||
"1652": 1,
|
||
"1653": 3,
|
||
"1654": 2,
|
||
"1655": 1,
|
||
"1656": 2,
|
||
"1657": 1,
|
||
"1658": 1,
|
||
"1659": 1,
|
||
"1660": 1,
|
||
"1661": 1,
|
||
"1662": 1,
|
||
"1663": 1,
|
||
"1664": 1,
|
||
"1665": 3,
|
||
"1666": 2,
|
||
"1667": 1,
|
||
"1668": 1,
|
||
"1669": 3,
|
||
"1670": 1,
|
||
"1671": 1,
|
||
"1672": 2,
|
||
"1673": 1,
|
||
"1674": 1,
|
||
"1675": 1,
|
||
"1676": 1,
|
||
"1677": 1,
|
||
"1678": 1,
|
||
"1679": 1,
|
||
"1680": 6,
|
||
"1681": 1,
|
||
"1682": 1,
|
||
"1683": 6,
|
||
"1684": 2,
|
||
"1685": 10,
|
||
"1686": 5,
|
||
"1687": 6,
|
||
"1688": 6,
|
||
"1689": 3,
|
||
"1690": 2,
|
||
"1691": 2,
|
||
"1692": 2,
|
||
"1693": 1,
|
||
"1694": 2,
|
||
"1695": 5,
|
||
"1696": 1,
|
||
"1697": 1,
|
||
"1698": 6,
|
||
"1699": 1,
|
||
"1700": 1,
|
||
"1701": 2,
|
||
"1702": 9,
|
||
"1703": 4,
|
||
"1704": 2,
|
||
"1705": 3,
|
||
"1706": 1,
|
||
"1707": 1,
|
||
"1708": 1,
|
||
"1709": 1,
|
||
"1710": 7,
|
||
"1711": 1,
|
||
"1712": 1,
|
||
"1713": 1,
|
||
"1714": 1,
|
||
"1715": 1,
|
||
"1716": 1,
|
||
"1717": 17,
|
||
"1718": 2,
|
||
"1719": 1,
|
||
"1720": 1,
|
||
"1721": 1,
|
||
"1722": 1,
|
||
"1723": 1,
|
||
"1724": 1,
|
||
"1725": 1,
|
||
"1726": 1,
|
||
"1727": 1,
|
||
"1728": 1,
|
||
"1729": 1,
|
||
"1730": 1,
|
||
"1731": 1,
|
||
"1732": 1,
|
||
"1733": 4,
|
||
"1734": 3,
|
||
"1735": 1,
|
||
"1736": 1,
|
||
"1737": 1,
|
||
"1738": 1,
|
||
"1739": 1,
|
||
"1740": 2,
|
||
"1741": 1,
|
||
"1742": 1,
|
||
"1743": 1,
|
||
"1744": 1,
|
||
"1745": 1,
|
||
"1746": 1,
|
||
"1747": 1,
|
||
"1748": 10,
|
||
"1749": 1,
|
||
"1750": 2,
|
||
"1751": 3,
|
||
"1752": 1,
|
||
"1753": 2,
|
||
"1754": 2,
|
||
"1755": 2,
|
||
"1756": 4,
|
||
"1757": 1,
|
||
"1758": 2,
|
||
"1759": 3,
|
||
"1760": 7,
|
||
"1761": 9,
|
||
"1762": 2,
|
||
"1763": 8,
|
||
"1764": 1,
|
||
"1765": 2,
|
||
"1766": 2,
|
||
"1767": 2,
|
||
"1768": 3,
|
||
"1769": 3,
|
||
"1770": 5,
|
||
"1771": 8,
|
||
"1772": 1,
|
||
"1773": 1,
|
||
"1774": 1,
|
||
"1775": 1,
|
||
"1776": 1,
|
||
"1777": 1,
|
||
"1778": 1,
|
||
"1779": 7,
|
||
"1780": 1,
|
||
"1781": 2,
|
||
"1782": 2,
|
||
"1783": 1,
|
||
"1784": 1,
|
||
"1785": 2,
|
||
"1786": 2,
|
||
"1787": 1,
|
||
"1788": 1,
|
||
"1789": 4,
|
||
"1790": 4,
|
||
"1791": 3,
|
||
"1792": 2,
|
||
"1793": 1,
|
||
"1794": 4,
|
||
"1795": 1,
|
||
"1796": 1,
|
||
"1797": 2,
|
||
"1798": 1,
|
||
"1799": 1,
|
||
"1800": 2,
|
||
"1801": 1,
|
||
"1802": 3,
|
||
"1803": 3,
|
||
"1804": 2,
|
||
"1805": 1,
|
||
"1806": 1,
|
||
"1807": 1,
|
||
"1808": 6,
|
||
"1809": 1,
|
||
"1810": 2,
|
||
"1811": 1,
|
||
"1812": 2,
|
||
"1813": 1,
|
||
"1814": 2,
|
||
"1815": 1,
|
||
"1816": 2,
|
||
"1817": 2,
|
||
"1818": 2,
|
||
"1819": 3,
|
||
"1820": 2,
|
||
"1821": 2,
|
||
"1822": 3,
|
||
"1823": 4,
|
||
"1824": 1,
|
||
"1825": 1,
|
||
"1826": 5,
|
||
"1827": 1,
|
||
"1828": 1,
|
||
"1829": 1,
|
||
"1830": 1,
|
||
"1831": 2,
|
||
"1832": 2,
|
||
"1833": 1,
|
||
"1834": 1,
|
||
"1835": 3,
|
||
"1836": 1,
|
||
"1837": 1,
|
||
"1838": 1,
|
||
"1839": 1,
|
||
"1840": 1,
|
||
"1841": 1,
|
||
"1842": 2,
|
||
"1843": 2,
|
||
"1844": 1,
|
||
"1845": 2,
|
||
"1846": 8,
|
||
"1847": 1,
|
||
"1848": 2,
|
||
"1849": 1,
|
||
"1850": 1,
|
||
"1851": 2,
|
||
"1852": 1,
|
||
"1853": 1,
|
||
"1854": 4,
|
||
"1855": 2,
|
||
"1856": 3,
|
||
"1857": 6,
|
||
"1858": 1,
|
||
"1859": 1,
|
||
"1860": 1,
|
||
"1861": 1,
|
||
"1862": 3,
|
||
"1863": 1,
|
||
"1864": 1,
|
||
"1865": 1,
|
||
"1866": 5,
|
||
"1867": 1,
|
||
"1868": 2,
|
||
"1869": 2,
|
||
"1870": 10,
|
||
"1871": 1,
|
||
"1872": 1,
|
||
"1873": 1,
|
||
"1874": 3,
|
||
"1875": 2,
|
||
"1876": 1,
|
||
"1877": 1,
|
||
"1878": 1,
|
||
"1879": 1,
|
||
"1880": 2,
|
||
"1881": 2,
|
||
"1882": 2,
|
||
"1883": 1,
|
||
"1884": 1,
|
||
"1885": 1,
|
||
"1886": 2,
|
||
"1887": 2,
|
||
"1888": 2,
|
||
"1889": 3,
|
||
"1890": 1,
|
||
"1891": 5,
|
||
"1892": 1,
|
||
"1893": 2,
|
||
"1894": 3,
|
||
"1895": 2,
|
||
"1896": 1,
|
||
"1897": 2,
|
||
"1898": 1,
|
||
"1899": 1,
|
||
"1900": 1,
|
||
"1901": 2,
|
||
"1902": 1,
|
||
"1903": 1,
|
||
"1904": 1,
|
||
"1905": 1,
|
||
"1906": 1,
|
||
"1907": 1,
|
||
"1908": 1,
|
||
"1909": 1,
|
||
"1910": 1,
|
||
"1911": 2,
|
||
"1912": 1,
|
||
"1913": 1,
|
||
"1914": 4,
|
||
"1915": 2,
|
||
"1916": 2,
|
||
"1917": 1,
|
||
"1918": 3,
|
||
"1919": 6,
|
||
"1920": 6,
|
||
"1921": 2,
|
||
"1922": 2,
|
||
"1923": 3,
|
||
"1924": 2,
|
||
"1925": 2,
|
||
"1926": 1,
|
||
"1927": 2,
|
||
"1928": 2,
|
||
"1929": 3,
|
||
"1930": 5,
|
||
"1931": 1,
|
||
"1932": 1,
|
||
"1933": 1,
|
||
"1934": 1,
|
||
"1935": 1,
|
||
"1936": 1,
|
||
"1937": 1,
|
||
"1938": 1,
|
||
"1939": 2,
|
||
"1940": 1,
|
||
"1941": 3,
|
||
"1942": 1,
|
||
"1943": 1,
|
||
"1944": 1,
|
||
"1945": 1,
|
||
"1946": 1,
|
||
"1947": 2,
|
||
"1948": 2,
|
||
"1949": 1,
|
||
"1950": 1,
|
||
"1951": 2,
|
||
"1952": 1,
|
||
"1953": 1,
|
||
"1954": 1,
|
||
"1955": 1,
|
||
"1956": 2,
|
||
"1957": 3,
|
||
"1958": 3,
|
||
"1959": 1,
|
||
"1960": 3,
|
||
"1961": 2,
|
||
"1962": 1,
|
||
"1963": 1,
|
||
"1964": 1,
|
||
"1965": 1,
|
||
"1966": 1,
|
||
"1967": 1,
|
||
"1968": 2,
|
||
"1969": 1,
|
||
"1970": 1,
|
||
"1971": 1,
|
||
"1972": 1,
|
||
"1973": 1,
|
||
"1974": 2,
|
||
"1975": 2,
|
||
"1976": 1,
|
||
"1977": 1,
|
||
"1978": 1,
|
||
"1979": 1,
|
||
"1980": 3,
|
||
"1981": 1,
|
||
"1982": 2,
|
||
"1983": 1,
|
||
"1984": 1,
|
||
"1985": 2,
|
||
"1986": 1,
|
||
"1987": 1,
|
||
"1988": 1,
|
||
"1989": 2,
|
||
"1990": 1,
|
||
"1991": 1,
|
||
"1992": 1,
|
||
"1993": 1,
|
||
"1994": 1,
|
||
"1995": 1,
|
||
"1996": 1,
|
||
"1997": 1,
|
||
"1998": 9,
|
||
"1999": 1,
|
||
"2000": 2,
|
||
"2001": 4,
|
||
"2002": 2,
|
||
"2003": 2,
|
||
"2004": 5,
|
||
"2005": 2,
|
||
"2006": 1,
|
||
"2007": 1,
|
||
"2008": 2,
|
||
"2009": 1,
|
||
"2010": 1,
|
||
"2011": 2,
|
||
"2012": 2,
|
||
"2013": 3,
|
||
"2014": 1,
|
||
"2015": 2,
|
||
"2016": 2,
|
||
"2017": 3,
|
||
"2018": 1,
|
||
"2019": 1,
|
||
"2020": 1,
|
||
"2021": 1,
|
||
"2022": 1,
|
||
"2023": 3,
|
||
"2024": 1,
|
||
"2025": 1,
|
||
"2026": 1,
|
||
"2027": 1,
|
||
"2028": 1,
|
||
"2029": 4,
|
||
"2030": 1,
|
||
"2031": 2,
|
||
"2032": 3,
|
||
"2033": 1,
|
||
"2034": 1,
|
||
"2035": 1,
|
||
"2036": 1,
|
||
"2037": 1,
|
||
"2038": 1,
|
||
"2039": 3,
|
||
"2040": 2,
|
||
"2041": 9,
|
||
"2042": 1,
|
||
"2043": 1,
|
||
"2044": 3,
|
||
"2045": 3,
|
||
"2046": 2,
|
||
"2047": 1,
|
||
"2048": 1,
|
||
"2049": 2,
|
||
"2050": 1,
|
||
"2051": 1,
|
||
"2052": 9,
|
||
"2053": 3,
|
||
"2054": 2,
|
||
"2055": 1,
|
||
"2056": 1,
|
||
"2057": 1,
|
||
"2058": 1,
|
||
"2059": 2,
|
||
"2060": 2,
|
||
"2061": 2,
|
||
"2062": 3,
|
||
"2063": 1,
|
||
"2064": 1,
|
||
"2065": 1,
|
||
"2066": 3,
|
||
"2067": 3,
|
||
"2068": 5,
|
||
"2069": 1,
|
||
"2070": 2,
|
||
"2071": 1,
|
||
"2072": 1,
|
||
"2073": 1,
|
||
"2074": 2,
|
||
"2075": 4,
|
||
"2076": 2,
|
||
"2077": 1,
|
||
"2078": 1,
|
||
"2079": 2,
|
||
"2080": 1,
|
||
"2081": 2,
|
||
"2082": 3,
|
||
"2083": 1,
|
||
"2084": 1,
|
||
"2085": 1,
|
||
"2086": 1,
|
||
"2087": 1,
|
||
"2088": 1,
|
||
"2089": 2,
|
||
"2090": 1,
|
||
"2091": 1,
|
||
"2092": 1,
|
||
"2093": 1,
|
||
"2094": 1,
|
||
"2095": 1,
|
||
"2096": 1,
|
||
"2097": 1,
|
||
"2098": 1,
|
||
"2099": 1,
|
||
"2100": 1,
|
||
"2101": 2,
|
||
"2102": 1,
|
||
"2103": 1,
|
||
"2104": 8,
|
||
"2105": 1,
|
||
"2106": 3,
|
||
"2107": 1,
|
||
"2108": 2,
|
||
"2109": 1,
|
||
"2110": 3,
|
||
"2111": 1,
|
||
"2112": 1,
|
||
"2113": 1,
|
||
"2114": 2,
|
||
"2115": 1,
|
||
"2116": 2,
|
||
"2117": 1,
|
||
"2118": 1,
|
||
"2119": 1,
|
||
"2120": 1,
|
||
"2121": 1,
|
||
"2122": 1,
|
||
"2123": 2,
|
||
"2124": 1,
|
||
"2125": 1,
|
||
"2126": 1,
|
||
"2127": 3,
|
||
"2128": 7,
|
||
"2129": 3,
|
||
"2130": 1,
|
||
"2131": 1,
|
||
"2132": 1,
|
||
"2133": 1,
|
||
"2134": 1,
|
||
"2135": 1,
|
||
"2136": 2,
|
||
"2137": 1,
|
||
"2138": 1,
|
||
"2139": 1,
|
||
"2140": 1,
|
||
"2141": 1,
|
||
"2142": 1,
|
||
"2143": 1,
|
||
"2144": 2,
|
||
"2145": 1,
|
||
"2146": 1,
|
||
"2147": 2,
|
||
"2148": 1,
|
||
"2149": 1,
|
||
"2150": 1,
|
||
"2151": 1,
|
||
"2152": 1,
|
||
"2153": 1,
|
||
"2154": 5,
|
||
"2155": 3,
|
||
"2156": 1,
|
||
"2157": 1,
|
||
"2158": 1,
|
||
"2159": 4,
|
||
"2160": 1,
|
||
"2161": 1,
|
||
"2162": 1,
|
||
"2163": 2,
|
||
"2164": 2,
|
||
"2165": 1,
|
||
"2166": 1,
|
||
"2167": 1,
|
||
"2168": 2,
|
||
"2169": 1,
|
||
"2170": 1,
|
||
"2171": 3,
|
||
"2172": 2,
|
||
"2173": 1,
|
||
"2174": 7,
|
||
"2175": 1,
|
||
"2176": 1,
|
||
"2177": 1,
|
||
"2178": 2,
|
||
"2179": 1,
|
||
"2180": 7,
|
||
"2181": 1,
|
||
"2182": 1,
|
||
"2183": 2,
|
||
"2184": 1,
|
||
"2185": 1,
|
||
"2186": 3,
|
||
"2187": 2,
|
||
"2188": 2,
|
||
"2189": 4,
|
||
"2190": 2,
|
||
"2191": 1,
|
||
"2192": 1,
|
||
"2193": 1,
|
||
"2194": 1,
|
||
"2195": 1,
|
||
"2196": 1,
|
||
"2197": 2,
|
||
"2198": 1,
|
||
"2199": 1,
|
||
"2200": 1,
|
||
"2201": 5,
|
||
"2202": 1,
|
||
"2203": 2,
|
||
"2204": 1,
|
||
"2205": 2,
|
||
"2206": 4,
|
||
"2207": 3,
|
||
"2208": 1,
|
||
"2209": 1,
|
||
"2210": 1,
|
||
"2211": 2,
|
||
"2212": 2,
|
||
"2213": 1,
|
||
"2214": 1,
|
||
"2215": 3,
|
||
"2216": 1,
|
||
"2217": 3,
|
||
"2218": 1,
|
||
"2219": 3,
|
||
"2220": 2,
|
||
"2221": 1,
|
||
"2222": 1,
|
||
"2223": 1,
|
||
"2224": 1,
|
||
"2225": 1,
|
||
"2226": 1,
|
||
"2227": 1,
|
||
"2228": 1,
|
||
"2229": 1,
|
||
"2230": 3,
|
||
"2231": 2,
|
||
"2232": 1,
|
||
"2233": 1,
|
||
"2234": 1,
|
||
"2235": 1,
|
||
"2236": 1,
|
||
"2237": 2,
|
||
"2238": 1,
|
||
"2239": 5,
|
||
"2240": 1,
|
||
"2241": 1,
|
||
"2242": 1,
|
||
"2243": 2,
|
||
"2244": 1,
|
||
"2245": 4,
|
||
"2246": 1,
|
||
"2247": 3,
|
||
"2248": 1,
|
||
"2249": 2,
|
||
"2250": 1,
|
||
"2251": 3,
|
||
"2252": 1,
|
||
"2253": 3,
|
||
"2254": 1,
|
||
"2255": 1,
|
||
"2256": 2,
|
||
"2257": 2,
|
||
"2258": 1,
|
||
"2259": 1,
|
||
"2260": 1,
|
||
"2261": 2,
|
||
"2262": 1,
|
||
"2263": 1,
|
||
"2264": 1,
|
||
"2265": 2,
|
||
"2266": 1,
|
||
"2267": 1,
|
||
"2268": 1,
|
||
"2269": 1,
|
||
"2270": 1,
|
||
"2271": 1,
|
||
"2272": 1,
|
||
"2273": 1,
|
||
"2274": 1,
|
||
"2275": 2,
|
||
"2276": 2,
|
||
"2277": 1,
|
||
"2278": 1,
|
||
"2279": 1,
|
||
"2280": 2,
|
||
"2281": 1,
|
||
"2282": 2,
|
||
"2283": 4,
|
||
"2284": 1,
|
||
"2285": 1,
|
||
"2286": 1,
|
||
"2287": 1,
|
||
"2288": 3,
|
||
"2289": 1,
|
||
"2290": 6,
|
||
"2291": 2,
|
||
"2292": 1,
|
||
"2293": 1,
|
||
"2294": 1,
|
||
"2295": 3,
|
||
"2296": 1,
|
||
"2297": 1,
|
||
"2298": 2,
|
||
"2299": 1,
|
||
"2300": 1,
|
||
"2301": 1,
|
||
"2302": 1,
|
||
"2303": 3,
|
||
"2304": 2,
|
||
"2305": 1,
|
||
"2306": 1,
|
||
"2307": 2,
|
||
"2308": 1,
|
||
"2309": 3,
|
||
"2310": 1,
|
||
"2311": 3,
|
||
"2312": 2,
|
||
"2313": 1,
|
||
"2314": 1,
|
||
"2315": 2,
|
||
"2316": 1,
|
||
"2317": 1,
|
||
"2318": 5,
|
||
"2319": 2,
|
||
"2320": 1,
|
||
"2321": 1,
|
||
"2322": 1,
|
||
"2323": 1,
|
||
"2324": 1,
|
||
"2325": 2,
|
||
"2326": 1,
|
||
"2327": 1,
|
||
"2328": 1,
|
||
"2329": 1,
|
||
"2330": 1,
|
||
"2331": 1,
|
||
"2332": 1,
|
||
"2333": 2,
|
||
"2334": 1,
|
||
"2335": 1,
|
||
"2336": 1,
|
||
"2337": 2,
|
||
"2338": 1,
|
||
"2339": 1,
|
||
"2340": 2,
|
||
"2341": 3,
|
||
"2342": 1,
|
||
"2343": 1,
|
||
"2344": 4,
|
||
"2345": 1,
|
||
"2346": 4,
|
||
"2347": 1,
|
||
"2348": 1,
|
||
"2349": 2,
|
||
"2350": 1,
|
||
"2351": 1,
|
||
"2352": 1,
|
||
"2353": 1,
|
||
"2354": 1,
|
||
"2355": 1,
|
||
"2356": 1,
|
||
"2357": 1,
|
||
"2358": 1,
|
||
"2359": 1,
|
||
"2360": 1,
|
||
"2361": 1,
|
||
"2362": 1,
|
||
"2363": 1,
|
||
"2364": 1,
|
||
"2365": 1,
|
||
"2366": 1,
|
||
"2367": 1,
|
||
"2368": 1,
|
||
"2369": 1,
|
||
"2370": 4,
|
||
"2371": 1,
|
||
"2372": 1,
|
||
"2373": 2,
|
||
"2374": 2,
|
||
"2375": 1,
|
||
"2376": 1,
|
||
"2377": 6,
|
||
"2378": 1,
|
||
"2379": 1,
|
||
"2380": 2,
|
||
"2381": 1,
|
||
"2382": 1,
|
||
"2383": 1,
|
||
"2384": 1,
|
||
"2385": 1,
|
||
"2386": 1,
|
||
"2387": 1,
|
||
"2388": 1,
|
||
"2389": 1,
|
||
"2390": 2,
|
||
"2391": 1,
|
||
"2392": 2,
|
||
"2393": 1,
|
||
"2394": 3,
|
||
"2395": 1,
|
||
"2396": 2,
|
||
"2397": 2,
|
||
"2398": 1,
|
||
"2399": 1,
|
||
"2400": 1,
|
||
"2401": 1,
|
||
"2402": 1,
|
||
"2403": 1,
|
||
"2404": 1,
|
||
"2405": 1,
|
||
"2406": 1,
|
||
"2407": 3,
|
||
"2408": 1,
|
||
"2409": 2,
|
||
"2410": 2,
|
||
"2411": 1,
|
||
"2412": 1,
|
||
"2413": 1,
|
||
"2414": 1,
|
||
"2415": 2,
|
||
"2416": 1,
|
||
"2417": 1,
|
||
"2418": 1,
|
||
"2419": 1,
|
||
"2420": 1,
|
||
"2421": 1,
|
||
"2422": 1,
|
||
"2423": 2,
|
||
"2424": 2,
|
||
"2425": 1,
|
||
"2426": 1,
|
||
"2427": 1,
|
||
"2428": 1,
|
||
"2429": 2,
|
||
"2430": 1,
|
||
"2431": 3,
|
||
"2432": 4,
|
||
"2433": 1,
|
||
"2434": 1,
|
||
"2435": 1,
|
||
"2436": 2,
|
||
"2437": 9,
|
||
"2438": 1,
|
||
"2439": 1,
|
||
"2440": 5,
|
||
"2441": 1,
|
||
"2442": 3,
|
||
"2443": 2,
|
||
"2444": 1,
|
||
"2445": 1,
|
||
"2446": 1,
|
||
"2447": 1,
|
||
"2448": 2,
|
||
"2449": 1,
|
||
"2450": 2,
|
||
"2451": 2,
|
||
"2452": 1,
|
||
"2453": 1,
|
||
"2454": 1,
|
||
"2455": 1,
|
||
"2456": 4,
|
||
"2457": 1,
|
||
"2458": 1,
|
||
"2459": 1,
|
||
"2460": 2,
|
||
"2461": 1,
|
||
"2462": 1,
|
||
"2463": 2,
|
||
"2464": 1,
|
||
"2465": 1,
|
||
"2466": 2,
|
||
"2467": 1,
|
||
"2468": 1,
|
||
"2469": 1,
|
||
"2470": 2,
|
||
"2471": 2,
|
||
"2472": 1,
|
||
"2473": 1,
|
||
"2474": 1,
|
||
"2475": 1,
|
||
"2476": 1,
|
||
"2477": 2,
|
||
"2478": 1,
|
||
"2479": 1,
|
||
"2480": 1,
|
||
"2481": 1,
|
||
"2482": 7,
|
||
"2483": 2,
|
||
"2484": 1,
|
||
"2485": 2,
|
||
"2486": 1,
|
||
"2487": 1,
|
||
"2488": 1,
|
||
"2489": 1,
|
||
"2490": 1,
|
||
"2491": 1,
|
||
"2492": 1,
|
||
"2493": 2,
|
||
"2494": 1,
|
||
"2495": 4,
|
||
"2496": 1,
|
||
"2497": 3,
|
||
"2498": 2,
|
||
"2499": 2,
|
||
"2500": 1,
|
||
"2501": 1,
|
||
"2502": 6,
|
||
"2503": 1,
|
||
"2504": 2,
|
||
"2505": 2,
|
||
"2506": 1,
|
||
"2507": 2,
|
||
"2508": 1,
|
||
"2509": 2,
|
||
"2510": 1,
|
||
"2511": 2,
|
||
"2512": 1,
|
||
"2513": 1,
|
||
"2514": 2,
|
||
"2515": 1,
|
||
"2516": 1,
|
||
"2517": 2,
|
||
"2518": 4,
|
||
"2519": 1,
|
||
"2520": 1,
|
||
"2521": 3,
|
||
"2522": 1,
|
||
"2523": 5,
|
||
"2524": 1,
|
||
"2525": 2,
|
||
"2526": 1,
|
||
"2527": 1,
|
||
"2528": 3,
|
||
"2529": 1,
|
||
"2530": 1,
|
||
"2531": 1,
|
||
"2532": 1,
|
||
"2533": 1,
|
||
"2534": 1,
|
||
"2535": 3,
|
||
"2536": 2,
|
||
"2537": 2,
|
||
"2538": 1,
|
||
"2539": 2,
|
||
"2540": 1,
|
||
"2541": 2,
|
||
"2542": 1,
|
||
"2543": 1,
|
||
"2544": 2,
|
||
"2545": 1,
|
||
"2546": 1,
|
||
"2547": 1,
|
||
"2548": 1,
|
||
"2549": 3,
|
||
"2550": 2,
|
||
"2551": 1,
|
||
"2552": 1,
|
||
"2553": 1,
|
||
"2554": 1,
|
||
"2555": 1,
|
||
"2556": 1,
|
||
"2557": 1,
|
||
"2558": 1,
|
||
"2559": 1,
|
||
"2560": 1,
|
||
"2561": 1,
|
||
"2562": 1,
|
||
"2563": 1,
|
||
"2564": 1,
|
||
"2565": 1,
|
||
"2566": 2,
|
||
"2567": 1,
|
||
"2568": 1,
|
||
"2569": 1,
|
||
"2570": 1,
|
||
"2571": 1,
|
||
"2572": 1,
|
||
"2573": 1,
|
||
"2574": 1,
|
||
"2575": 1,
|
||
"2576": 1,
|
||
"2577": 1,
|
||
"2578": 1,
|
||
"2579": 1,
|
||
"2580": 1,
|
||
"2581": 1,
|
||
"2582": 1,
|
||
"2583": 1,
|
||
"2584": 1,
|
||
"2585": 1,
|
||
"2586": 1,
|
||
"2587": 1,
|
||
"2588": 1,
|
||
"2589": 1,
|
||
"2590": 2,
|
||
"2591": 1,
|
||
"2592": 1,
|
||
"2593": 4,
|
||
"2594": 1,
|
||
"2595": 1,
|
||
"2596": 2,
|
||
"2597": 1,
|
||
"2598": 1,
|
||
"2599": 2,
|
||
"2600": 1,
|
||
"2601": 3,
|
||
"2602": 4,
|
||
"2603": 1,
|
||
"2604": 1,
|
||
"2605": 1,
|
||
"2606": 1,
|
||
"2607": 2,
|
||
"2608": 4,
|
||
"2609": 1,
|
||
"2610": 1,
|
||
"2611": 1,
|
||
"2612": 1,
|
||
"2613": 4,
|
||
"2614": 1,
|
||
"2615": 1,
|
||
"2616": 1,
|
||
"2617": 2,
|
||
"2618": 1,
|
||
"2619": 2,
|
||
"2620": 1,
|
||
"2621": 1,
|
||
"2622": 2,
|
||
"2623": 1,
|
||
"2624": 2,
|
||
"2625": 2,
|
||
"2626": 3,
|
||
"2627": 2,
|
||
"2628": 1,
|
||
"2629": 1,
|
||
"2630": 3,
|
||
"2631": 1,
|
||
"2632": 3,
|
||
"2633": 1,
|
||
"2634": 2,
|
||
"2635": 1,
|
||
"2636": 1,
|
||
"2637": 1,
|
||
"2638": 1,
|
||
"2639": 1,
|
||
"2640": 1,
|
||
"2641": 3,
|
||
"2642": 3,
|
||
"2643": 1,
|
||
"2644": 1,
|
||
"2645": 1,
|
||
"2646": 3,
|
||
"2647": 1,
|
||
"2648": 1,
|
||
"2649": 1,
|
||
"2650": 2,
|
||
"2651": 2,
|
||
"2652": 3,
|
||
"2653": 1,
|
||
"2654": 1,
|
||
"2655": 1,
|
||
"2656": 1,
|
||
"2657": 2,
|
||
"2658": 1,
|
||
"2659": 1,
|
||
"2660": 1,
|
||
"2661": 1,
|
||
"2662": 1,
|
||
"2663": 1,
|
||
"2664": 1,
|
||
"2665": 1,
|
||
"2666": 1,
|
||
"2667": 1,
|
||
"2668": 1,
|
||
"2669": 4,
|
||
"2670": 1,
|
||
"2671": 5,
|
||
"2672": 1,
|
||
"2673": 1,
|
||
"2674": 1,
|
||
"2675": 4,
|
||
"2676": 1,
|
||
"2677": 1,
|
||
"2678": 4,
|
||
"2679": 3,
|
||
"2680": 2,
|
||
"2681": 1,
|
||
"2682": 1,
|
||
"2683": 1,
|
||
"2684": 1,
|
||
"2685": 1,
|
||
"2686": 2,
|
||
"2687": 1,
|
||
"2688": 1,
|
||
"2689": 1,
|
||
"2690": 1,
|
||
"2691": 1,
|
||
"2692": 1,
|
||
"2693": 1,
|
||
"2694": 1,
|
||
"2695": 2,
|
||
"2696": 5,
|
||
"2697": 1,
|
||
"2698": 1,
|
||
"2699": 1,
|
||
"2700": 1,
|
||
"2701": 1,
|
||
"2702": 1,
|
||
"2703": 1,
|
||
"2704": 1,
|
||
"2705": 1,
|
||
"2706": 1,
|
||
"2707": 1,
|
||
"2708": 1,
|
||
"2709": 1,
|
||
"2710": 1,
|
||
"2711": 1,
|
||
"2712": 1,
|
||
"2713": 7,
|
||
"2714": 1,
|
||
"2715": 1,
|
||
"2716": 1,
|
||
"2717": 2,
|
||
"2718": 1,
|
||
"2719": 1,
|
||
"2720": 2,
|
||
"2721": 1,
|
||
"2722": 1,
|
||
"2723": 1,
|
||
"2724": 1,
|
||
"2725": 1,
|
||
"2726": 1,
|
||
"2727": 1,
|
||
"2728": 3,
|
||
"2729": 1,
|
||
"2730": 1,
|
||
"2731": 1,
|
||
"2732": 1,
|
||
"2733": 1,
|
||
"2734": 1,
|
||
"2735": 1,
|
||
"2736": 1,
|
||
"2737": 1,
|
||
"2738": 1,
|
||
"2739": 2,
|
||
"2740": 1,
|
||
"2741": 1,
|
||
"2742": 1,
|
||
"2743": 4,
|
||
"2744": 1,
|
||
"2745": 1,
|
||
"2746": 1,
|
||
"2747": 1,
|
||
"2748": 3,
|
||
"2749": 3,
|
||
"2750": 1,
|
||
"2751": 1,
|
||
"2752": 1,
|
||
"2753": 1,
|
||
"2754": 1,
|
||
"2755": 1,
|
||
"2756": 2,
|
||
"2757": 1,
|
||
"2758": 5,
|
||
"2759": 1,
|
||
"2760": 1,
|
||
"2761": 1,
|
||
"2762": 1,
|
||
"2763": 3,
|
||
"2764": 1,
|
||
"2765": 1,
|
||
"2766": 1,
|
||
"2767": 1,
|
||
"2768": 1,
|
||
"2769": 1,
|
||
"2770": 1,
|
||
"2771": 2,
|
||
"2772": 1,
|
||
"2773": 1,
|
||
"2774": 1,
|
||
"2775": 1,
|
||
"2776": 1,
|
||
"2777": 1,
|
||
"2778": 1,
|
||
"2779": 1,
|
||
"2780": 1,
|
||
"2781": 1,
|
||
"2782": 1,
|
||
"2783": 2,
|
||
"2784": 1,
|
||
"2785": 1,
|
||
"2786": 1,
|
||
"2787": 1,
|
||
"2788": 1,
|
||
"2789": 1,
|
||
"2790": 1,
|
||
"2791": 1,
|
||
"2792": 1,
|
||
"2793": 1,
|
||
"2794": 1,
|
||
"2795": 1,
|
||
"2796": 1,
|
||
"2797": 1,
|
||
"2798": 1,
|
||
"2799": 1,
|
||
"2800": 1,
|
||
"2801": 1,
|
||
"2802": 1,
|
||
"2803": 2,
|
||
"2804": 1,
|
||
"2805": 1,
|
||
"2806": 1,
|
||
"2807": 1,
|
||
"2808": 1,
|
||
"2809": 1,
|
||
"2810": 1,
|
||
"2811": 1,
|
||
"2812": 1,
|
||
"2813": 1,
|
||
"2814": 1,
|
||
"2815": 1,
|
||
"2816": 1,
|
||
"2817": 1,
|
||
"2818": 1,
|
||
"2819": 1,
|
||
"2820": 1,
|
||
"2821": 1,
|
||
"2822": 1,
|
||
"2823": 3,
|
||
"2824": 1,
|
||
"2825": 1,
|
||
"2826": 1,
|
||
"2827": 1,
|
||
"2828": 1,
|
||
"2829": 2,
|
||
"2830": 1,
|
||
"2831": 1,
|
||
"2832": 1,
|
||
"2833": 1,
|
||
"2834": 1,
|
||
"2835": 1,
|
||
"2836": 1,
|
||
"2837": 1,
|
||
"2838": 1,
|
||
"2839": 1,
|
||
"2840": 1,
|
||
"2841": 1,
|
||
"2842": 1,
|
||
"2843": 1,
|
||
"2844": 1,
|
||
"2845": 1,
|
||
"2846": 5,
|
||
"2847": 1,
|
||
"2848": 1,
|
||
"2849": 1,
|
||
"2850": 1,
|
||
"2851": 1,
|
||
"2852": 1,
|
||
"2853": 1,
|
||
"2854": 1,
|
||
"2855": 1,
|
||
"2856": 1,
|
||
"2857": 3,
|
||
"2858": 2,
|
||
"2859": 9,
|
||
"2860": 17,
|
||
"2861": 1,
|
||
"2862": 2,
|
||
"2863": 1,
|
||
"2864": 1,
|
||
"2865": 2,
|
||
"2866": 1,
|
||
"2867": 1,
|
||
"2868": 1,
|
||
"2869": 1,
|
||
"2870": 1,
|
||
"2871": 1,
|
||
"2872": 1,
|
||
"2873": 1,
|
||
"2874": 1,
|
||
"2875": 1,
|
||
"2876": 1,
|
||
"2877": 1,
|
||
"2878": 1,
|
||
"2879": 1,
|
||
"2880": 1,
|
||
"2881": 1,
|
||
"2882": 1,
|
||
"2883": 1,
|
||
"2884": 1,
|
||
"2885": 1,
|
||
"2886": 1,
|
||
"2887": 1,
|
||
"2888": 1,
|
||
"2889": 1,
|
||
"2890": 1,
|
||
"2891": 1,
|
||
"2892": 1,
|
||
"2893": 3,
|
||
"2894": 1,
|
||
"2895": 1,
|
||
"2896": 3,
|
||
"2897": 1,
|
||
"2898": 1,
|
||
"2899": 1,
|
||
"2900": 1,
|
||
"2901": 1,
|
||
"2902": 1,
|
||
"2903": 1,
|
||
"2904": 1,
|
||
"2905": 1,
|
||
"2906": 1,
|
||
"2907": 1,
|
||
"2908": 1,
|
||
"2909": 1,
|
||
"2910": 2,
|
||
"2911": 1,
|
||
"2912": 1,
|
||
"2913": 2,
|
||
"2914": 2,
|
||
"2915": 1,
|
||
"2916": 1,
|
||
"2917": 2,
|
||
"2918": 1,
|
||
"2919": 1,
|
||
"2920": 1,
|
||
"2921": 10,
|
||
"2922": 3,
|
||
"2923": 4,
|
||
"2924": 5,
|
||
"2925": 1,
|
||
"2926": 1,
|
||
"2927": 1,
|
||
"2928": 1,
|
||
"2929": 4,
|
||
"2930": 1,
|
||
"2931": 1,
|
||
"2932": 1,
|
||
"2933": 1,
|
||
"2934": 1,
|
||
"2935": 1,
|
||
"2936": 1,
|
||
"2937": 1,
|
||
"2938": 1,
|
||
"2939": 1,
|
||
"2940": 1,
|
||
"2941": 1,
|
||
"2942": 1,
|
||
"2943": 1,
|
||
"2944": 1,
|
||
"2945": 1,
|
||
"2946": 1,
|
||
"2947": 1,
|
||
"2948": 1,
|
||
"2949": 1,
|
||
"2950": 1,
|
||
"2951": 1,
|
||
"2952": 1,
|
||
"2953": 1,
|
||
"2954": 1,
|
||
"2955": 1,
|
||
"2956": 1,
|
||
"2957": 1,
|
||
"2958": 4,
|
||
"2959": 3,
|
||
"2960": 3,
|
||
"2961": 2,
|
||
"2962": 1,
|
||
"2963": 1,
|
||
"2964": 4,
|
||
"2965": 1,
|
||
"2966": 1,
|
||
"2967": 1,
|
||
"2968": 2,
|
||
"2969": 3,
|
||
"2970": 1,
|
||
"2971": 2,
|
||
"2972": 2,
|
||
"2973": 2,
|
||
"2974": 2,
|
||
"2975": 9,
|
||
"2976": 2,
|
||
"2977": 1,
|
||
"2978": 1,
|
||
"2979": 1,
|
||
"2980": 1,
|
||
"2981": 1,
|
||
"2982": 1,
|
||
"2983": 15,
|
||
"2984": 1,
|
||
"2985": 1,
|
||
"2986": 1,
|
||
"2987": 1,
|
||
"2988": 1,
|
||
"2989": 1,
|
||
"2990": 1,
|
||
"2991": 1,
|
||
"2992": 1,
|
||
"2993": 5,
|
||
"2994": 1,
|
||
"2995": 1,
|
||
"2996": 1,
|
||
"2997": 1,
|
||
"2998": 1,
|
||
"2999": 1,
|
||
"3000": 3,
|
||
"3001": 5,
|
||
"3002": 2,
|
||
"3003": 1,
|
||
"3004": 1,
|
||
"3005": 2,
|
||
"3006": 1,
|
||
"3007": 1,
|
||
"3008": 2,
|
||
"3009": 1,
|
||
"3010": 1,
|
||
"3011": 1,
|
||
"3012": 3,
|
||
"3013": 5,
|
||
"3014": 2,
|
||
"3015": 4,
|
||
"3016": 1,
|
||
"3017": 1,
|
||
"3018": 1,
|
||
"3019": 1,
|
||
"3020": 2,
|
||
"3021": 3,
|
||
"3022": 1,
|
||
"3023": 1,
|
||
"3024": 1,
|
||
"3025": 3,
|
||
"3026": 1,
|
||
"3027": 1,
|
||
"3028": 3,
|
||
"3029": 4,
|
||
"3030": 1,
|
||
"3031": 5,
|
||
"3032": 1,
|
||
"3033": 1,
|
||
"3034": 1,
|
||
"3035": 1,
|
||
"3036": 5,
|
||
"3037": 3,
|
||
"3038": 5,
|
||
"3039": 4,
|
||
"3040": 1,
|
||
"3041": 5,
|
||
"3042": 1,
|
||
"3043": 1,
|
||
"3044": 1,
|
||
"3045": 1,
|
||
"3046": 2,
|
||
"3047": 1,
|
||
"3048": 3,
|
||
"3049": 1,
|
||
"3050": 5,
|
||
"3051": 1,
|
||
"3052": 1,
|
||
"3053": 5,
|
||
"3054": 1,
|
||
"3055": 3,
|
||
"3056": 1,
|
||
"3057": 1,
|
||
"3058": 1,
|
||
"3059": 2,
|
||
"3060": 1,
|
||
"3061": 1,
|
||
"3062": 1,
|
||
"3063": 4,
|
||
"3064": 1,
|
||
"3065": 2,
|
||
"3066": 1,
|
||
"3067": 1,
|
||
"3068": 2,
|
||
"3069": 1,
|
||
"3070": 1,
|
||
"3071": 1,
|
||
"3072": 1,
|
||
"3073": 1,
|
||
"3074": 1,
|
||
"3075": 1,
|
||
"3076": 1,
|
||
"3077": 1,
|
||
"3078": 1,
|
||
"3079": 9,
|
||
"3080": 1,
|
||
"3081": 3,
|
||
"3082": 1,
|
||
"3083": 2,
|
||
"3084": 1,
|
||
"3085": 1,
|
||
"3086": 1,
|
||
"3087": 1,
|
||
"3088": 1,
|
||
"3089": 1,
|
||
"3090": 1,
|
||
"3091": 1,
|
||
"3092": 3,
|
||
"3093": 1,
|
||
"3094": 1,
|
||
"3095": 1,
|
||
"3096": 1,
|
||
"3097": 1,
|
||
"3098": 1,
|
||
"3099": 1,
|
||
"3100": 1,
|
||
"3101": 4,
|
||
"3102": 3,
|
||
"3103": 4,
|
||
"3104": 1,
|
||
"3105": 1,
|
||
"3106": 1,
|
||
"3107": 1,
|
||
"3108": 1,
|
||
"3109": 1,
|
||
"3110": 2,
|
||
"3111": 1,
|
||
"3112": 1,
|
||
"3113": 1,
|
||
"3114": 1,
|
||
"3115": 1,
|
||
"3116": 1,
|
||
"3117": 3,
|
||
"3118": 1,
|
||
"3119": 2,
|
||
"3120": 1,
|
||
"3121": 1,
|
||
"3122": 1,
|
||
"3123": 1,
|
||
"3124": 1,
|
||
"3125": 1,
|
||
"3126": 1,
|
||
"3127": 1,
|
||
"3128": 1,
|
||
"3129": 1,
|
||
"3130": 2,
|
||
"3131": 1,
|
||
"3132": 2,
|
||
"3133": 1,
|
||
"3134": 2,
|
||
"3135": 2,
|
||
"3136": 1,
|
||
"3137": 1,
|
||
"3138": 3,
|
||
"3139": 2,
|
||
"3140": 1,
|
||
"3141": 4,
|
||
"3142": 1,
|
||
"3143": 1,
|
||
"3144": 1,
|
||
"3145": 1,
|
||
"3146": 1,
|
||
"3147": 1,
|
||
"3148": 1,
|
||
"3149": 1,
|
||
"3150": 1,
|
||
"3151": 1,
|
||
"3152": 1,
|
||
"3153": 1,
|
||
"3154": 1,
|
||
"3155": 1,
|
||
"3156": 1,
|
||
"3157": 1,
|
||
"3158": 1,
|
||
"3159": 1,
|
||
"3160": 1,
|
||
"3161": 1,
|
||
"3162": 1,
|
||
"3163": 1,
|
||
"3164": 1,
|
||
"3165": 1,
|
||
"3166": 1,
|
||
"3167": 1,
|
||
"3168": 1,
|
||
"3169": 1,
|
||
"3170": 1,
|
||
"3171": 1,
|
||
"3172": 1,
|
||
"3173": 1,
|
||
"3174": 1,
|
||
"3175": 1,
|
||
"3176": 1,
|
||
"3177": 1,
|
||
"3178": 1,
|
||
"3179": 1,
|
||
"3180": 1,
|
||
"3181": 1,
|
||
"3182": 1,
|
||
"3183": 1,
|
||
"3184": 1,
|
||
"3185": 1,
|
||
"3186": 1,
|
||
"3187": 1,
|
||
"3188": 1,
|
||
"3189": 1,
|
||
"3190": 1,
|
||
"3191": 2,
|
||
"3192": 2,
|
||
"3193": 2,
|
||
"3194": 1,
|
||
"3195": 1,
|
||
"3196": 1,
|
||
"3197": 1,
|
||
"3198": 1,
|
||
"3199": 1,
|
||
"3200": 1,
|
||
"3201": 1,
|
||
"3202": 1,
|
||
"3203": 1,
|
||
"3204": 1,
|
||
"3205": 1,
|
||
"3206": 1,
|
||
"3207": 1,
|
||
"3208": 1,
|
||
"3209": 1,
|
||
"3210": 2,
|
||
"3211": 2,
|
||
"3212": 2,
|
||
"3213": 3,
|
||
"3214": 1,
|
||
"3215": 1,
|
||
"3216": 1,
|
||
"3217": 1,
|
||
"3218": 1,
|
||
"3219": 3,
|
||
"3220": 3,
|
||
"3221": 3,
|
||
"3222": 1,
|
||
"3223": 1,
|
||
"3224": 1,
|
||
"3225": 1,
|
||
"3226": 3,
|
||
"3227": 1,
|
||
"3228": 1,
|
||
"3229": 1,
|
||
"3230": 1,
|
||
"3231": 1,
|
||
"3232": 1,
|
||
"3233": 1,
|
||
"3234": 1,
|
||
"3235": 1,
|
||
"3236": 1,
|
||
"3237": 1,
|
||
"3238": 1,
|
||
"3239": 1,
|
||
"3240": 1,
|
||
"3241": 1,
|
||
"3242": 1,
|
||
"3243": 1,
|
||
"3244": 1,
|
||
"3245": 1,
|
||
"3246": 1,
|
||
"3247": 1,
|
||
"3248": 1,
|
||
"3249": 1,
|
||
"3250": 1,
|
||
"3251": 1,
|
||
"3252": 1,
|
||
"3253": 1,
|
||
"3254": 1,
|
||
"3255": 1,
|
||
"3256": 1,
|
||
"3257": 1,
|
||
"3258": 1,
|
||
"3259": 1,
|
||
"3260": 1,
|
||
"3261": 1,
|
||
"3262": 1,
|
||
"3263": 1,
|
||
"3264": 1,
|
||
"3265": 1,
|
||
"3266": 1,
|
||
"3267": 1,
|
||
"3268": 1,
|
||
"3269": 1,
|
||
"3270": 1,
|
||
"3271": 1,
|
||
"3272": 1,
|
||
"3273": 1,
|
||
"3274": 1,
|
||
"3275": 1,
|
||
"3276": 1,
|
||
"3277": 1,
|
||
"3278": 1,
|
||
"3279": 1
|
||
},
|
||
"pos": {
|
||
"0": 2203,
|
||
"1": 390,
|
||
"2": 899,
|
||
"3": 225,
|
||
"4": 2642,
|
||
"5": 1199,
|
||
"6": 1143,
|
||
"7": 156,
|
||
"8": 450,
|
||
"9": 229,
|
||
"10": 1451,
|
||
"11": 489,
|
||
"12": 1298,
|
||
"13": 2776,
|
||
"14": 124,
|
||
"15": 757,
|
||
"16": 507,
|
||
"17": 1191,
|
||
"18": 716,
|
||
"19": 57,
|
||
"20": 309,
|
||
"21": 34,
|
||
"22": 288,
|
||
"23": 69,
|
||
"24": 189,
|
||
"25": 199,
|
||
"26": 15,
|
||
"27": 47,
|
||
"28": 106,
|
||
"29": 78,
|
||
"30": 78,
|
||
"31": 108,
|
||
"32": 46,
|
||
"33": 32,
|
||
"34": 19,
|
||
"35": 35,
|
||
"36": 15,
|
||
"37": 19,
|
||
"38": 21,
|
||
"39": 99,
|
||
"40": 2,
|
||
"41": 10,
|
||
"42": 7,
|
||
"43": 1,
|
||
"44": 2
|
||
},
|
||
"simple_pos": {
|
||
"0": 2153,
|
||
"1": 400,
|
||
"2": 2869,
|
||
"3": 2053,
|
||
"4": 2313,
|
||
"5": 2135,
|
||
"6": 1113,
|
||
"7": 965,
|
||
"8": 356,
|
||
"9": 1529,
|
||
"10": 3459,
|
||
"11": 757,
|
||
"12": 34,
|
||
"13": 474,
|
||
"14": 108,
|
||
"15": 11,
|
||
"16": 1
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"values": []
|
||
},
|
||
"text": {
|
||
"lexicon": {
|
||
"0": {
|
||
"bounds": [
|
||
0,
|
||
5159
|
||
],
|
||
"counts": {
|
||
"s": 5160,
|
||
"ent": 191,
|
||
"token": 5160
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 1167,
|
||
"1": 2379,
|
||
"2": 632,
|
||
"3": 303,
|
||
"4": 159,
|
||
"5": 100,
|
||
"6": 70,
|
||
"7": 46,
|
||
"8": 40,
|
||
"9": 32,
|
||
"10": 27,
|
||
"11": 24,
|
||
"12": 13,
|
||
"13": 9,
|
||
"14": 10,
|
||
"15": 14,
|
||
"16": 4,
|
||
"17": 10,
|
||
"18": 7,
|
||
"19": 7,
|
||
"20": 6,
|
||
"21": 6,
|
||
"22": 5,
|
||
"24": 6,
|
||
"25": 2,
|
||
"26": 4,
|
||
"27": 2,
|
||
"28": 1,
|
||
"29": 4,
|
||
"30": 2,
|
||
"31": 1,
|
||
"32": 1,
|
||
"34": 4,
|
||
"35": 2,
|
||
"36": 2,
|
||
"37": 1,
|
||
"38": 1,
|
||
"40": 1,
|
||
"42": 1,
|
||
"43": 1,
|
||
"44": 1,
|
||
"45": 2,
|
||
"46": 3,
|
||
"47": 1,
|
||
"50": 2,
|
||
"51": 1,
|
||
"52": 1,
|
||
"60": 1,
|
||
"61": 1,
|
||
"63": 2,
|
||
"69": 2,
|
||
"72": 1,
|
||
"75": 1,
|
||
"80": 1,
|
||
"81": 1,
|
||
"82": 1,
|
||
"85": 1,
|
||
"90": 1,
|
||
"91": 1,
|
||
"93": 1,
|
||
"99": 2,
|
||
"102": 1,
|
||
"104": 1,
|
||
"109": 1,
|
||
"110": 1,
|
||
"112": 1,
|
||
"127": 1,
|
||
"133": 1,
|
||
"135": 1,
|
||
"148": 1,
|
||
"159": 1,
|
||
"165": 1,
|
||
"185": 1,
|
||
"188": 1,
|
||
"197": 1,
|
||
"201": 1,
|
||
"202": 1,
|
||
"226": 1,
|
||
"319": 1,
|
||
"376": 1,
|
||
"457": 1,
|
||
"461": 1,
|
||
"541": 1,
|
||
"732": 1,
|
||
"770": 1,
|
||
"1179": 1,
|
||
"1297": 1
|
||
},
|
||
"lemma": {
|
||
"0": 1880,
|
||
"1": 1810,
|
||
"2": 514,
|
||
"3": 275,
|
||
"4": 145,
|
||
"5": 116,
|
||
"6": 66,
|
||
"7": 49,
|
||
"8": 37,
|
||
"9": 37,
|
||
"10": 24,
|
||
"11": 21,
|
||
"12": 16,
|
||
"13": 11,
|
||
"14": 6,
|
||
"15": 12,
|
||
"16": 7,
|
||
"17": 12,
|
||
"18": 7,
|
||
"19": 7,
|
||
"20": 7,
|
||
"21": 4,
|
||
"22": 6,
|
||
"23": 5,
|
||
"24": 6,
|
||
"25": 1,
|
||
"26": 3,
|
||
"27": 3,
|
||
"28": 1,
|
||
"29": 2,
|
||
"30": 3,
|
||
"31": 2,
|
||
"33": 1,
|
||
"34": 2,
|
||
"35": 1,
|
||
"36": 2,
|
||
"37": 1,
|
||
"39": 1,
|
||
"40": 2,
|
||
"42": 2,
|
||
"43": 2,
|
||
"44": 1,
|
||
"45": 3,
|
||
"46": 2,
|
||
"47": 1,
|
||
"49": 1,
|
||
"50": 1,
|
||
"53": 1,
|
||
"59": 1,
|
||
"60": 2,
|
||
"62": 2,
|
||
"63": 1,
|
||
"67": 1,
|
||
"69": 1,
|
||
"75": 1,
|
||
"83": 1,
|
||
"87": 1,
|
||
"99": 1,
|
||
"102": 1,
|
||
"105": 1,
|
||
"106": 1,
|
||
"107": 1,
|
||
"115": 1,
|
||
"123": 2,
|
||
"127": 1,
|
||
"133": 1,
|
||
"137": 1,
|
||
"148": 1,
|
||
"169": 1,
|
||
"172": 1,
|
||
"193": 1,
|
||
"201": 1,
|
||
"217": 1,
|
||
"226": 1,
|
||
"231": 1,
|
||
"279": 1,
|
||
"349": 1,
|
||
"387": 1,
|
||
"470": 1,
|
||
"563": 1,
|
||
"567": 1,
|
||
"577": 1,
|
||
"732": 1,
|
||
"776": 1,
|
||
"1275": 1,
|
||
"1297": 1
|
||
},
|
||
"pos": {
|
||
"0": 5115,
|
||
"1": 1,
|
||
"2": 2,
|
||
"7": 1,
|
||
"10": 1,
|
||
"15": 2,
|
||
"19": 2,
|
||
"21": 1,
|
||
"32": 1,
|
||
"34": 1,
|
||
"35": 1,
|
||
"46": 1,
|
||
"47": 1,
|
||
"57": 1,
|
||
"69": 1,
|
||
"78": 2,
|
||
"99": 1,
|
||
"106": 1,
|
||
"108": 1,
|
||
"124": 1,
|
||
"156": 1,
|
||
"189": 1,
|
||
"199": 1,
|
||
"225": 1,
|
||
"229": 1,
|
||
"288": 1,
|
||
"309": 1,
|
||
"390": 1,
|
||
"450": 1,
|
||
"489": 1,
|
||
"507": 1,
|
||
"716": 1,
|
||
"757": 1,
|
||
"899": 1,
|
||
"1143": 1,
|
||
"1191": 1,
|
||
"1199": 1,
|
||
"1298": 1,
|
||
"1451": 1,
|
||
"2203": 1,
|
||
"2642": 1,
|
||
"2776": 1
|
||
},
|
||
"simple_pos": {
|
||
"0": 5143,
|
||
"1": 1,
|
||
"11": 1,
|
||
"34": 1,
|
||
"108": 1,
|
||
"356": 1,
|
||
"400": 1,
|
||
"474": 1,
|
||
"757": 1,
|
||
"965": 1,
|
||
"1113": 1,
|
||
"1529": 1,
|
||
"2053": 1,
|
||
"2135": 1,
|
||
"2153": 1,
|
||
"2313": 1,
|
||
"2869": 1,
|
||
"3459": 1
|
||
}
|
||
}
|
||
},
|
||
"1": {
|
||
"bounds": [
|
||
5160,
|
||
7644
|
||
],
|
||
"counts": {
|
||
"s": 2485,
|
||
"ent": 47,
|
||
"token": 2485
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 2485
|
||
},
|
||
"lemma": {
|
||
"0": 2485
|
||
},
|
||
"pos": {
|
||
"0": 2485
|
||
},
|
||
"simple_pos": {
|
||
"0": 2485
|
||
}
|
||
}
|
||
},
|
||
"2": {
|
||
"bounds": [
|
||
7645,
|
||
12392
|
||
],
|
||
"counts": {
|
||
"s": 4748,
|
||
"ent": 172,
|
||
"token": 4748
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 4748
|
||
},
|
||
"lemma": {
|
||
"0": 4748
|
||
},
|
||
"pos": {
|
||
"0": 4748
|
||
},
|
||
"simple_pos": {
|
||
"0": 4748
|
||
}
|
||
}
|
||
},
|
||
"3": {
|
||
"bounds": [
|
||
12393,
|
||
16865
|
||
],
|
||
"counts": {
|
||
"s": 4473,
|
||
"ent": 69,
|
||
"token": 4473
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 4473
|
||
},
|
||
"lemma": {
|
||
"0": 4473
|
||
},
|
||
"pos": {
|
||
"0": 4473
|
||
},
|
||
"simple_pos": {
|
||
"0": 4473
|
||
}
|
||
}
|
||
},
|
||
"4": {
|
||
"bounds": [
|
||
16866,
|
||
20729
|
||
],
|
||
"counts": {
|
||
"s": 3864,
|
||
"ent": 177,
|
||
"token": 3864
|
||
},
|
||
"freqs": {
|
||
"word": {
|
||
"0": 3864
|
||
},
|
||
"lemma": {
|
||
"0": 3864
|
||
},
|
||
"pos": {
|
||
"0": 3864
|
||
},
|
||
"simple_pos": {
|
||
"0": 3864
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"values": [
|
||
"address",
|
||
"author",
|
||
"booktitle",
|
||
"chapter",
|
||
"editor",
|
||
"institution",
|
||
"journal",
|
||
"pages",
|
||
"publisher",
|
||
"publishing_year",
|
||
"school",
|
||
"title"
|
||
]
|
||
},
|
||
"s": {
|
||
"lexicon": {
|
||
"0": {},
|
||
"1": {},
|
||
"2": {},
|
||
"3": {},
|
||
"4": {},
|
||
"5": {},
|
||
"6": {},
|
||
"7": {},
|
||
"8": {},
|
||
"9": {},
|
||
"10": {},
|
||
"11": {},
|
||
"12": {},
|
||
"13": {},
|
||
"14": {},
|
||
"15": {},
|
||
"16": {},
|
||
"17": {},
|
||
"18": {},
|
||
"19": {},
|
||
"20": {},
|
||
"21": {},
|
||
"22": {},
|
||
"23": {},
|
||
"24": {},
|
||
"25": {},
|
||
"26": {},
|
||
"27": {},
|
||
"28": {},
|
||
"29": {},
|
||
"30": {},
|
||
"31": {},
|
||
"32": {},
|
||
"33": {},
|
||
"34": {},
|
||
"35": {},
|
||
"36": {},
|
||
"37": {},
|
||
"38": {},
|
||
"39": {},
|
||
"40": {},
|
||
"41": {},
|
||
"42": {},
|
||
"43": {},
|
||
"44": {},
|
||
"45": {},
|
||
"46": {},
|
||
"47": {},
|
||
"48": {},
|
||
"49": {},
|
||
"50": {},
|
||
"51": {},
|
||
"52": {},
|
||
"53": {},
|
||
"54": {},
|
||
"55": {},
|
||
"56": {},
|
||
"57": {},
|
||
"58": {},
|
||
"59": {},
|
||
"60": {},
|
||
"61": {},
|
||
"62": {},
|
||
"63": {},
|
||
"64": {},
|
||
"65": {},
|
||
"66": {},
|
||
"67": {},
|
||
"68": {},
|
||
"69": {},
|
||
"70": {},
|
||
"71": {},
|
||
"72": {},
|
||
"73": {},
|
||
"74": {},
|
||
"75": {},
|
||
"76": {},
|
||
"77": {},
|
||
"78": {},
|
||
"79": {},
|
||
"80": {},
|
||
"81": {},
|
||
"82": {},
|
||
"83": {},
|
||
"84": {},
|
||
"85": {},
|
||
"86": {},
|
||
"87": {},
|
||
"88": {},
|
||
"89": {},
|
||
"90": {},
|
||
"91": {},
|
||
"92": {},
|
||
"93": {},
|
||
"94": {},
|
||
"95": {},
|
||
"96": {},
|
||
"97": {},
|
||
"98": {},
|
||
"99": {},
|
||
"100": {},
|
||
"101": {},
|
||
"102": {},
|
||
"103": {},
|
||
"104": {},
|
||
"105": {},
|
||
"106": {},
|
||
"107": {},
|
||
"108": {},
|
||
"109": {},
|
||
"110": {},
|
||
"111": {},
|
||
"112": {},
|
||
"113": {},
|
||
"114": {},
|
||
"115": {},
|
||
"116": {},
|
||
"117": {},
|
||
"118": {},
|
||
"119": {},
|
||
"120": {},
|
||
"121": {},
|
||
"122": {},
|
||
"123": {},
|
||
"124": {},
|
||
"125": {},
|
||
"126": {},
|
||
"127": {},
|
||
"128": {},
|
||
"129": {},
|
||
"130": {},
|
||
"131": {},
|
||
"132": {},
|
||
"133": {},
|
||
"134": {},
|
||
"135": {},
|
||
"136": {},
|
||
"137": {},
|
||
"138": {},
|
||
"139": {},
|
||
"140": {},
|
||
"141": {},
|
||
"142": {},
|
||
"143": {},
|
||
"144": {},
|
||
"145": {},
|
||
"146": {},
|
||
"147": {},
|
||
"148": {},
|
||
"149": {},
|
||
"150": {},
|
||
"151": {},
|
||
"152": {},
|
||
"153": {},
|
||
"154": {},
|
||
"155": {},
|
||
"156": {},
|
||
"157": {},
|
||
"158": {},
|
||
"159": {},
|
||
"160": {},
|
||
"161": {},
|
||
"162": {},
|
||
"163": {},
|
||
"164": {},
|
||
"165": {},
|
||
"166": {},
|
||
"167": {},
|
||
"168": {},
|
||
"169": {},
|
||
"170": {},
|
||
"171": {},
|
||
"172": {},
|
||
"173": {},
|
||
"174": {},
|
||
"175": {},
|
||
"176": {},
|
||
"177": {},
|
||
"178": {},
|
||
"179": {},
|
||
"180": {},
|
||
"181": {},
|
||
"182": {},
|
||
"183": {},
|
||
"184": {},
|
||
"185": {},
|
||
"186": {},
|
||
"187": {},
|
||
"188": {},
|
||
"189": {},
|
||
"190": {},
|
||
"191": {},
|
||
"192": {},
|
||
"193": {},
|
||
"194": {},
|
||
"195": {},
|
||
"196": {},
|
||
"197": {},
|
||
"198": {},
|
||
"199": {},
|
||
"200": {},
|
||
"201": {},
|
||
"202": {},
|
||
"203": {},
|
||
"204": {},
|
||
"205": {},
|
||
"206": {},
|
||
"207": {},
|
||
"208": {},
|
||
"209": {},
|
||
"210": {},
|
||
"211": {},
|
||
"212": {},
|
||
"213": {},
|
||
"214": {},
|
||
"215": {},
|
||
"216": {},
|
||
"217": {},
|
||
"218": {},
|
||
"219": {},
|
||
"220": {},
|
||
"221": {},
|
||
"222": {},
|
||
"223": {},
|
||
"224": {},
|
||
"225": {},
|
||
"226": {},
|
||
"227": {},
|
||
"228": {},
|
||
"229": {},
|
||
"230": {},
|
||
"231": {},
|
||
"232": {},
|
||
"233": {},
|
||
"234": {},
|
||
"235": {},
|
||
"236": {},
|
||
"237": {},
|
||
"238": {},
|
||
"239": {},
|
||
"240": {},
|
||
"241": {},
|
||
"242": {},
|
||
"243": {},
|
||
"244": {},
|
||
"245": {},
|
||
"246": {},
|
||
"247": {},
|
||
"248": {},
|
||
"249": {},
|
||
"250": {},
|
||
"251": {},
|
||
"252": {},
|
||
"253": {},
|
||
"254": {},
|
||
"255": {},
|
||
"256": {},
|
||
"257": {},
|
||
"258": {},
|
||
"259": {},
|
||
"260": {},
|
||
"261": {},
|
||
"262": {},
|
||
"263": {},
|
||
"264": {},
|
||
"265": {},
|
||
"266": {},
|
||
"267": {},
|
||
"268": {},
|
||
"269": {},
|
||
"270": {},
|
||
"271": {},
|
||
"272": {},
|
||
"273": {},
|
||
"274": {},
|
||
"275": {},
|
||
"276": {},
|
||
"277": {},
|
||
"278": {},
|
||
"279": {},
|
||
"280": {},
|
||
"281": {},
|
||
"282": {},
|
||
"283": {},
|
||
"284": {},
|
||
"285": {},
|
||
"286": {},
|
||
"287": {},
|
||
"288": {},
|
||
"289": {},
|
||
"290": {},
|
||
"291": {},
|
||
"292": {},
|
||
"293": {},
|
||
"294": {},
|
||
"295": {},
|
||
"296": {},
|
||
"297": {},
|
||
"298": {},
|
||
"299": {},
|
||
"300": {},
|
||
"301": {},
|
||
"302": {},
|
||
"303": {},
|
||
"304": {},
|
||
"305": {},
|
||
"306": {},
|
||
"307": {},
|
||
"308": {},
|
||
"309": {},
|
||
"310": {},
|
||
"311": {},
|
||
"312": {},
|
||
"313": {},
|
||
"314": {},
|
||
"315": {},
|
||
"316": {},
|
||
"317": {},
|
||
"318": {},
|
||
"319": {},
|
||
"320": {},
|
||
"321": {},
|
||
"322": {},
|
||
"323": {},
|
||
"324": {},
|
||
"325": {},
|
||
"326": {},
|
||
"327": {},
|
||
"328": {},
|
||
"329": {},
|
||
"330": {},
|
||
"331": {},
|
||
"332": {},
|
||
"333": {},
|
||
"334": {},
|
||
"335": {},
|
||
"336": {},
|
||
"337": {},
|
||
"338": {},
|
||
"339": {},
|
||
"340": {},
|
||
"341": {},
|
||
"342": {},
|
||
"343": {},
|
||
"344": {},
|
||
"345": {},
|
||
"346": {},
|
||
"347": {},
|
||
"348": {},
|
||
"349": {},
|
||
"350": {},
|
||
"351": {},
|
||
"352": {},
|
||
"353": {},
|
||
"354": {},
|
||
"355": {},
|
||
"356": {},
|
||
"357": {},
|
||
"358": {},
|
||
"359": {},
|
||
"360": {},
|
||
"361": {},
|
||
"362": {},
|
||
"363": {},
|
||
"364": {},
|
||
"365": {},
|
||
"366": {},
|
||
"367": {},
|
||
"368": {},
|
||
"369": {},
|
||
"370": {},
|
||
"371": {},
|
||
"372": {},
|
||
"373": {},
|
||
"374": {},
|
||
"375": {},
|
||
"376": {},
|
||
"377": {},
|
||
"378": {},
|
||
"379": {},
|
||
"380": {},
|
||
"381": {},
|
||
"382": {},
|
||
"383": {},
|
||
"384": {},
|
||
"385": {},
|
||
"386": {},
|
||
"387": {},
|
||
"388": {},
|
||
"389": {},
|
||
"390": {},
|
||
"391": {},
|
||
"392": {},
|
||
"393": {},
|
||
"394": {},
|
||
"395": {},
|
||
"396": {},
|
||
"397": {},
|
||
"398": {},
|
||
"399": {},
|
||
"400": {},
|
||
"401": {},
|
||
"402": {},
|
||
"403": {},
|
||
"404": {},
|
||
"405": {},
|
||
"406": {},
|
||
"407": {},
|
||
"408": {},
|
||
"409": {},
|
||
"410": {},
|
||
"411": {},
|
||
"412": {},
|
||
"413": {},
|
||
"414": {},
|
||
"415": {},
|
||
"416": {},
|
||
"417": {},
|
||
"418": {},
|
||
"419": {},
|
||
"420": {},
|
||
"421": {},
|
||
"422": {},
|
||
"423": {},
|
||
"424": {},
|
||
"425": {},
|
||
"426": {},
|
||
"427": {},
|
||
"428": {},
|
||
"429": {},
|
||
"430": {},
|
||
"431": {},
|
||
"432": {},
|
||
"433": {},
|
||
"434": {},
|
||
"435": {},
|
||
"436": {},
|
||
"437": {},
|
||
"438": {},
|
||
"439": {},
|
||
"440": {},
|
||
"441": {},
|
||
"442": {},
|
||
"443": {},
|
||
"444": {},
|
||
"445": {},
|
||
"446": {},
|
||
"447": {},
|
||
"448": {},
|
||
"449": {},
|
||
"450": {},
|
||
"451": {},
|
||
"452": {},
|
||
"453": {},
|
||
"454": {},
|
||
"455": {},
|
||
"456": {},
|
||
"457": {},
|
||
"458": {},
|
||
"459": {},
|
||
"460": {},
|
||
"461": {},
|
||
"462": {},
|
||
"463": {},
|
||
"464": {},
|
||
"465": {},
|
||
"466": {},
|
||
"467": {},
|
||
"468": {},
|
||
"469": {},
|
||
"470": {},
|
||
"471": {},
|
||
"472": {},
|
||
"473": {},
|
||
"474": {},
|
||
"475": {},
|
||
"476": {},
|
||
"477": {},
|
||
"478": {},
|
||
"479": {},
|
||
"480": {},
|
||
"481": {},
|
||
"482": {},
|
||
"483": {},
|
||
"484": {},
|
||
"485": {},
|
||
"486": {},
|
||
"487": {},
|
||
"488": {},
|
||
"489": {},
|
||
"490": {},
|
||
"491": {},
|
||
"492": {},
|
||
"493": {},
|
||
"494": {},
|
||
"495": {},
|
||
"496": {},
|
||
"497": {},
|
||
"498": {},
|
||
"499": {},
|
||
"500": {},
|
||
"501": {},
|
||
"502": {},
|
||
"503": {},
|
||
"504": {},
|
||
"505": {},
|
||
"506": {},
|
||
"507": {},
|
||
"508": {},
|
||
"509": {},
|
||
"510": {},
|
||
"511": {},
|
||
"512": {},
|
||
"513": {},
|
||
"514": {},
|
||
"515": {},
|
||
"516": {},
|
||
"517": {},
|
||
"518": {},
|
||
"519": {},
|
||
"520": {},
|
||
"521": {},
|
||
"522": {},
|
||
"523": {},
|
||
"524": {},
|
||
"525": {},
|
||
"526": {},
|
||
"527": {},
|
||
"528": {},
|
||
"529": {},
|
||
"530": {},
|
||
"531": {},
|
||
"532": {},
|
||
"533": {},
|
||
"534": {},
|
||
"535": {},
|
||
"536": {},
|
||
"537": {},
|
||
"538": {},
|
||
"539": {},
|
||
"540": {},
|
||
"541": {},
|
||
"542": {},
|
||
"543": {},
|
||
"544": {},
|
||
"545": {},
|
||
"546": {},
|
||
"547": {},
|
||
"548": {},
|
||
"549": {},
|
||
"550": {},
|
||
"551": {},
|
||
"552": {},
|
||
"553": {},
|
||
"554": {},
|
||
"555": {},
|
||
"556": {},
|
||
"557": {},
|
||
"558": {},
|
||
"559": {},
|
||
"560": {},
|
||
"561": {},
|
||
"562": {},
|
||
"563": {},
|
||
"564": {},
|
||
"565": {},
|
||
"566": {},
|
||
"567": {},
|
||
"568": {},
|
||
"569": {},
|
||
"570": {},
|
||
"571": {},
|
||
"572": {},
|
||
"573": {},
|
||
"574": {},
|
||
"575": {},
|
||
"576": {},
|
||
"577": {},
|
||
"578": {},
|
||
"579": {},
|
||
"580": {},
|
||
"581": {},
|
||
"582": {},
|
||
"583": {},
|
||
"584": {},
|
||
"585": {},
|
||
"586": {},
|
||
"587": {},
|
||
"588": {},
|
||
"589": {},
|
||
"590": {},
|
||
"591": {},
|
||
"592": {},
|
||
"593": {},
|
||
"594": {},
|
||
"595": {},
|
||
"596": {},
|
||
"597": {},
|
||
"598": {},
|
||
"599": {},
|
||
"600": {},
|
||
"601": {},
|
||
"602": {},
|
||
"603": {},
|
||
"604": {},
|
||
"605": {},
|
||
"606": {},
|
||
"607": {},
|
||
"608": {},
|
||
"609": {},
|
||
"610": {},
|
||
"611": {},
|
||
"612": {},
|
||
"613": {},
|
||
"614": {},
|
||
"615": {},
|
||
"616": {},
|
||
"617": {},
|
||
"618": {},
|
||
"619": {},
|
||
"620": {},
|
||
"621": {},
|
||
"622": {},
|
||
"623": {},
|
||
"624": {},
|
||
"625": {},
|
||
"626": {},
|
||
"627": {},
|
||
"628": {},
|
||
"629": {},
|
||
"630": {},
|
||
"631": {},
|
||
"632": {},
|
||
"633": {},
|
||
"634": {},
|
||
"635": {},
|
||
"636": {},
|
||
"637": {},
|
||
"638": {},
|
||
"639": {},
|
||
"640": {},
|
||
"641": {},
|
||
"642": {},
|
||
"643": {},
|
||
"644": {},
|
||
"645": {},
|
||
"646": {},
|
||
"647": {},
|
||
"648": {},
|
||
"649": {},
|
||
"650": {},
|
||
"651": {},
|
||
"652": {},
|
||
"653": {},
|
||
"654": {},
|
||
"655": {},
|
||
"656": {},
|
||
"657": {},
|
||
"658": {},
|
||
"659": {},
|
||
"660": {},
|
||
"661": {},
|
||
"662": {},
|
||
"663": {},
|
||
"664": {},
|
||
"665": {},
|
||
"666": {},
|
||
"667": {},
|
||
"668": {},
|
||
"669": {},
|
||
"670": {},
|
||
"671": {},
|
||
"672": {},
|
||
"673": {},
|
||
"674": {},
|
||
"675": {},
|
||
"676": {},
|
||
"677": {},
|
||
"678": {},
|
||
"679": {},
|
||
"680": {},
|
||
"681": {},
|
||
"682": {},
|
||
"683": {},
|
||
"684": {},
|
||
"685": {},
|
||
"686": {},
|
||
"687": {},
|
||
"688": {},
|
||
"689": {},
|
||
"690": {},
|
||
"691": {},
|
||
"692": {},
|
||
"693": {},
|
||
"694": {},
|
||
"695": {},
|
||
"696": {},
|
||
"697": {},
|
||
"698": {},
|
||
"699": {},
|
||
"700": {},
|
||
"701": {},
|
||
"702": {},
|
||
"703": {},
|
||
"704": {},
|
||
"705": {},
|
||
"706": {},
|
||
"707": {},
|
||
"708": {},
|
||
"709": {},
|
||
"710": {},
|
||
"711": {},
|
||
"712": {},
|
||
"713": {},
|
||
"714": {},
|
||
"715": {},
|
||
"716": {},
|
||
"717": {},
|
||
"718": {},
|
||
"719": {},
|
||
"720": {},
|
||
"721": {},
|
||
"722": {},
|
||
"723": {},
|
||
"724": {},
|
||
"725": {},
|
||
"726": {},
|
||
"727": {},
|
||
"728": {},
|
||
"729": {},
|
||
"730": {},
|
||
"731": {},
|
||
"732": {},
|
||
"733": {},
|
||
"734": {},
|
||
"735": {},
|
||
"736": {},
|
||
"737": {},
|
||
"738": {},
|
||
"739": {},
|
||
"740": {},
|
||
"741": {},
|
||
"742": {},
|
||
"743": {},
|
||
"744": {},
|
||
"745": {},
|
||
"746": {},
|
||
"747": {},
|
||
"748": {},
|
||
"749": {},
|
||
"750": {},
|
||
"751": {},
|
||
"752": {},
|
||
"753": {},
|
||
"754": {},
|
||
"755": {},
|
||
"756": {},
|
||
"757": {},
|
||
"758": {},
|
||
"759": {},
|
||
"760": {},
|
||
"761": {},
|
||
"762": {},
|
||
"763": {},
|
||
"764": {},
|
||
"765": {},
|
||
"766": {},
|
||
"767": {},
|
||
"768": {},
|
||
"769": {},
|
||
"770": {},
|
||
"771": {},
|
||
"772": {},
|
||
"773": {},
|
||
"774": {},
|
||
"775": {},
|
||
"776": {},
|
||
"777": {},
|
||
"778": {},
|
||
"779": {},
|
||
"780": {},
|
||
"781": {},
|
||
"782": {},
|
||
"783": {},
|
||
"784": {},
|
||
"785": {},
|
||
"786": {},
|
||
"787": {},
|
||
"788": {},
|
||
"789": {},
|
||
"790": {},
|
||
"791": {},
|
||
"792": {},
|
||
"793": {},
|
||
"794": {},
|
||
"795": {},
|
||
"796": {},
|
||
"797": {},
|
||
"798": {},
|
||
"799": {},
|
||
"800": {},
|
||
"801": {},
|
||
"802": {},
|
||
"803": {},
|
||
"804": {},
|
||
"805": {},
|
||
"806": {},
|
||
"807": {},
|
||
"808": {},
|
||
"809": {},
|
||
"810": {},
|
||
"811": {},
|
||
"812": {},
|
||
"813": {},
|
||
"814": {},
|
||
"815": {},
|
||
"816": {},
|
||
"817": {},
|
||
"818": {},
|
||
"819": {},
|
||
"820": {},
|
||
"821": {},
|
||
"822": {},
|
||
"823": {},
|
||
"824": {},
|
||
"825": {},
|
||
"826": {},
|
||
"827": {},
|
||
"828": {},
|
||
"829": {},
|
||
"830": {},
|
||
"831": {},
|
||
"832": {},
|
||
"833": {},
|
||
"834": {},
|
||
"835": {},
|
||
"836": {},
|
||
"837": {},
|
||
"838": {},
|
||
"839": {},
|
||
"840": {},
|
||
"841": {},
|
||
"842": {},
|
||
"843": {},
|
||
"844": {},
|
||
"845": {},
|
||
"846": {},
|
||
"847": {},
|
||
"848": {},
|
||
"849": {},
|
||
"850": {},
|
||
"851": {},
|
||
"852": {},
|
||
"853": {},
|
||
"854": {},
|
||
"855": {},
|
||
"856": {},
|
||
"857": {},
|
||
"858": {},
|
||
"859": {},
|
||
"860": {},
|
||
"861": {},
|
||
"862": {},
|
||
"863": {}
|
||
},
|
||
"values": []
|
||
},
|
||
"ent": {
|
||
"lexicon": {
|
||
"0": {},
|
||
"1": {},
|
||
"2": {},
|
||
"3": {},
|
||
"4": {},
|
||
"5": {},
|
||
"6": {},
|
||
"7": {},
|
||
"8": {},
|
||
"9": {},
|
||
"10": {},
|
||
"11": {},
|
||
"12": {},
|
||
"13": {},
|
||
"14": {},
|
||
"15": {},
|
||
"16": {},
|
||
"17": {},
|
||
"18": {},
|
||
"19": {},
|
||
"20": {},
|
||
"21": {},
|
||
"22": {},
|
||
"23": {},
|
||
"24": {},
|
||
"25": {},
|
||
"26": {},
|
||
"27": {},
|
||
"28": {},
|
||
"29": {},
|
||
"30": {},
|
||
"31": {},
|
||
"32": {},
|
||
"33": {},
|
||
"34": {},
|
||
"35": {},
|
||
"36": {},
|
||
"37": {},
|
||
"38": {},
|
||
"39": {},
|
||
"40": {},
|
||
"41": {},
|
||
"42": {},
|
||
"43": {},
|
||
"44": {},
|
||
"45": {},
|
||
"46": {},
|
||
"47": {},
|
||
"48": {},
|
||
"49": {},
|
||
"50": {},
|
||
"51": {},
|
||
"52": {},
|
||
"53": {},
|
||
"54": {},
|
||
"55": {},
|
||
"56": {},
|
||
"57": {},
|
||
"58": {},
|
||
"59": {},
|
||
"60": {},
|
||
"61": {},
|
||
"62": {},
|
||
"63": {},
|
||
"64": {},
|
||
"65": {},
|
||
"66": {},
|
||
"67": {},
|
||
"68": {},
|
||
"69": {},
|
||
"70": {},
|
||
"71": {},
|
||
"72": {},
|
||
"73": {},
|
||
"74": {},
|
||
"75": {},
|
||
"76": {},
|
||
"77": {},
|
||
"78": {},
|
||
"79": {},
|
||
"80": {},
|
||
"81": {},
|
||
"82": {},
|
||
"83": {},
|
||
"84": {},
|
||
"85": {},
|
||
"86": {},
|
||
"87": {},
|
||
"88": {},
|
||
"89": {},
|
||
"90": {},
|
||
"91": {},
|
||
"92": {},
|
||
"93": {},
|
||
"94": {},
|
||
"95": {},
|
||
"96": {},
|
||
"97": {},
|
||
"98": {},
|
||
"99": {},
|
||
"100": {},
|
||
"101": {},
|
||
"102": {},
|
||
"103": {},
|
||
"104": {},
|
||
"105": {},
|
||
"106": {},
|
||
"107": {},
|
||
"108": {},
|
||
"109": {},
|
||
"110": {},
|
||
"111": {},
|
||
"112": {},
|
||
"113": {},
|
||
"114": {},
|
||
"115": {},
|
||
"116": {},
|
||
"117": {},
|
||
"118": {},
|
||
"119": {},
|
||
"120": {},
|
||
"121": {},
|
||
"122": {},
|
||
"123": {},
|
||
"124": {},
|
||
"125": {},
|
||
"126": {},
|
||
"127": {},
|
||
"128": {},
|
||
"129": {},
|
||
"130": {},
|
||
"131": {},
|
||
"132": {},
|
||
"133": {},
|
||
"134": {},
|
||
"135": {},
|
||
"136": {},
|
||
"137": {},
|
||
"138": {},
|
||
"139": {},
|
||
"140": {},
|
||
"141": {},
|
||
"142": {},
|
||
"143": {},
|
||
"144": {},
|
||
"145": {},
|
||
"146": {},
|
||
"147": {},
|
||
"148": {},
|
||
"149": {},
|
||
"150": {},
|
||
"151": {},
|
||
"152": {},
|
||
"153": {},
|
||
"154": {},
|
||
"155": {},
|
||
"156": {},
|
||
"157": {},
|
||
"158": {},
|
||
"159": {},
|
||
"160": {},
|
||
"161": {},
|
||
"162": {},
|
||
"163": {},
|
||
"164": {},
|
||
"165": {},
|
||
"166": {},
|
||
"167": {},
|
||
"168": {},
|
||
"169": {},
|
||
"170": {},
|
||
"171": {},
|
||
"172": {},
|
||
"173": {},
|
||
"174": {},
|
||
"175": {},
|
||
"176": {},
|
||
"177": {},
|
||
"178": {},
|
||
"179": {},
|
||
"180": {},
|
||
"181": {},
|
||
"182": {},
|
||
"183": {},
|
||
"184": {},
|
||
"185": {},
|
||
"186": {},
|
||
"187": {},
|
||
"188": {},
|
||
"189": {},
|
||
"190": {},
|
||
"191": {},
|
||
"192": {},
|
||
"193": {},
|
||
"194": {},
|
||
"195": {},
|
||
"196": {},
|
||
"197": {},
|
||
"198": {},
|
||
"199": {},
|
||
"200": {},
|
||
"201": {},
|
||
"202": {},
|
||
"203": {},
|
||
"204": {},
|
||
"205": {},
|
||
"206": {},
|
||
"207": {},
|
||
"208": {},
|
||
"209": {},
|
||
"210": {},
|
||
"211": {},
|
||
"212": {},
|
||
"213": {},
|
||
"214": {},
|
||
"215": {},
|
||
"216": {},
|
||
"217": {},
|
||
"218": {},
|
||
"219": {},
|
||
"220": {},
|
||
"221": {},
|
||
"222": {},
|
||
"223": {},
|
||
"224": {},
|
||
"225": {},
|
||
"226": {},
|
||
"227": {},
|
||
"228": {},
|
||
"229": {},
|
||
"230": {},
|
||
"231": {},
|
||
"232": {},
|
||
"233": {},
|
||
"234": {},
|
||
"235": {},
|
||
"236": {},
|
||
"237": {},
|
||
"238": {},
|
||
"239": {},
|
||
"240": {},
|
||
"241": {},
|
||
"242": {},
|
||
"243": {},
|
||
"244": {},
|
||
"245": {},
|
||
"246": {},
|
||
"247": {},
|
||
"248": {},
|
||
"249": {},
|
||
"250": {},
|
||
"251": {},
|
||
"252": {},
|
||
"253": {},
|
||
"254": {},
|
||
"255": {},
|
||
"256": {},
|
||
"257": {},
|
||
"258": {},
|
||
"259": {},
|
||
"260": {},
|
||
"261": {},
|
||
"262": {},
|
||
"263": {},
|
||
"264": {},
|
||
"265": {},
|
||
"266": {},
|
||
"267": {},
|
||
"268": {},
|
||
"269": {},
|
||
"270": {},
|
||
"271": {},
|
||
"272": {},
|
||
"273": {},
|
||
"274": {},
|
||
"275": {},
|
||
"276": {},
|
||
"277": {},
|
||
"278": {},
|
||
"279": {},
|
||
"280": {},
|
||
"281": {},
|
||
"282": {},
|
||
"283": {},
|
||
"284": {},
|
||
"285": {},
|
||
"286": {},
|
||
"287": {},
|
||
"288": {},
|
||
"289": {},
|
||
"290": {},
|
||
"291": {},
|
||
"292": {},
|
||
"293": {},
|
||
"294": {},
|
||
"295": {},
|
||
"296": {},
|
||
"297": {},
|
||
"298": {},
|
||
"299": {},
|
||
"300": {},
|
||
"301": {},
|
||
"302": {},
|
||
"303": {},
|
||
"304": {},
|
||
"305": {},
|
||
"306": {},
|
||
"307": {},
|
||
"308": {},
|
||
"309": {},
|
||
"310": {},
|
||
"311": {},
|
||
"312": {},
|
||
"313": {},
|
||
"314": {},
|
||
"315": {},
|
||
"316": {},
|
||
"317": {},
|
||
"318": {},
|
||
"319": {},
|
||
"320": {},
|
||
"321": {},
|
||
"322": {},
|
||
"323": {},
|
||
"324": {},
|
||
"325": {},
|
||
"326": {},
|
||
"327": {},
|
||
"328": {},
|
||
"329": {},
|
||
"330": {},
|
||
"331": {},
|
||
"332": {},
|
||
"333": {},
|
||
"334": {},
|
||
"335": {},
|
||
"336": {},
|
||
"337": {},
|
||
"338": {},
|
||
"339": {},
|
||
"340": {},
|
||
"341": {},
|
||
"342": {},
|
||
"343": {},
|
||
"344": {},
|
||
"345": {},
|
||
"346": {},
|
||
"347": {},
|
||
"348": {},
|
||
"349": {},
|
||
"350": {},
|
||
"351": {},
|
||
"352": {},
|
||
"353": {},
|
||
"354": {},
|
||
"355": {},
|
||
"356": {},
|
||
"357": {},
|
||
"358": {},
|
||
"359": {},
|
||
"360": {},
|
||
"361": {},
|
||
"362": {},
|
||
"363": {},
|
||
"364": {},
|
||
"365": {},
|
||
"366": {},
|
||
"367": {},
|
||
"368": {},
|
||
"369": {},
|
||
"370": {},
|
||
"371": {},
|
||
"372": {},
|
||
"373": {},
|
||
"374": {},
|
||
"375": {},
|
||
"376": {},
|
||
"377": {},
|
||
"378": {},
|
||
"379": {},
|
||
"380": {},
|
||
"381": {},
|
||
"382": {},
|
||
"383": {},
|
||
"384": {},
|
||
"385": {},
|
||
"386": {},
|
||
"387": {},
|
||
"388": {},
|
||
"389": {},
|
||
"390": {},
|
||
"391": {},
|
||
"392": {},
|
||
"393": {},
|
||
"394": {},
|
||
"395": {},
|
||
"396": {},
|
||
"397": {},
|
||
"398": {},
|
||
"399": {},
|
||
"400": {},
|
||
"401": {},
|
||
"402": {},
|
||
"403": {},
|
||
"404": {},
|
||
"405": {},
|
||
"406": {},
|
||
"407": {},
|
||
"408": {},
|
||
"409": {},
|
||
"410": {}
|
||
},
|
||
"values": [
|
||
"type"
|
||
]
|
||
},
|
||
"lookups": {
|
||
"corpus": {},
|
||
"text": {
|
||
"0": {
|
||
"address": "NULL",
|
||
"author": "Edgar Allan Poe",
|
||
"booktitle": "NULL",
|
||
"chapter": "NULL",
|
||
"editor": "NULL",
|
||
"institution": "NULL",
|
||
"journal": "NULL",
|
||
"pages": "NULL",
|
||
"publisher": "NULL",
|
||
"publishing_year": "1834",
|
||
"school": "NULL",
|
||
"title": "The Assignation"
|
||
},
|
||
"1": {
|
||
"address": "NULL",
|
||
"author": "Edgar Allan Poe",
|
||
"booktitle": "NULL",
|
||
"chapter": "NULL",
|
||
"editor": "NULL",
|
||
"institution": "NULL",
|
||
"journal": "NULL",
|
||
"pages": "NULL",
|
||
"publisher": "NULL",
|
||
"publishing_year": "1843",
|
||
"school": "NULL",
|
||
"title": "The Tell-Tale Heart"
|
||
},
|
||
"2": {
|
||
"address": "NULL",
|
||
"author": "Edgar Allan Poe",
|
||
"booktitle": "NULL",
|
||
"chapter": "NULL",
|
||
"editor": "NULL",
|
||
"institution": "NULL",
|
||
"journal": "NULL",
|
||
"pages": "NULL",
|
||
"publisher": "NULL",
|
||
"publishing_year": "1844",
|
||
"school": "NULL",
|
||
"title": "A Tale of the Ragged Mountains"
|
||
},
|
||
"3": {
|
||
"address": "NULL",
|
||
"author": "Edgar Allan Poe",
|
||
"booktitle": "NULL",
|
||
"chapter": "NULL",
|
||
"editor": "NULL",
|
||
"institution": "NULL",
|
||
"journal": "NULL",
|
||
"pages": "NULL",
|
||
"publisher": "NULL",
|
||
"publishing_year": "1843",
|
||
"school": "NULL",
|
||
"title": "The Black Cat"
|
||
},
|
||
"4": {
|
||
"address": "NULL",
|
||
"author": "Edgar Allan Poe",
|
||
"booktitle": "NULL",
|
||
"chapter": "NULL",
|
||
"editor": "NULL",
|
||
"institution": "NULL",
|
||
"journal": "NULL",
|
||
"pages": "NULL",
|
||
"publisher": "NULL",
|
||
"publishing_year": "1839",
|
||
"school": "NULL",
|
||
"title": "The Devil in the Belfry"
|
||
}
|
||
},
|
||
"s": {},
|
||
"ent": {
|
||
"0": {
|
||
"type": "ORG"
|
||
},
|
||
"1": {
|
||
"type": "PERSON"
|
||
},
|
||
"2": {
|
||
"type": "GPE"
|
||
},
|
||
"3": {
|
||
"type": "GPE"
|
||
},
|
||
"4": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"5": {
|
||
"type": "ORG"
|
||
},
|
||
"6": {
|
||
"type": "GPE"
|
||
},
|
||
"7": {
|
||
"type": "FAC"
|
||
},
|
||
"8": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"9": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"10": {
|
||
"type": "TIME"
|
||
},
|
||
"11": {
|
||
"type": "ORG"
|
||
},
|
||
"12": {
|
||
"type": "TIME"
|
||
},
|
||
"13": {
|
||
"type": "NORP"
|
||
},
|
||
"14": {
|
||
"type": "TIME"
|
||
},
|
||
"15": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"16": {
|
||
"type": "FAC"
|
||
},
|
||
"17": {
|
||
"type": "PERSON"
|
||
},
|
||
"18": {
|
||
"type": "FAC"
|
||
},
|
||
"19": {
|
||
"type": "GPE"
|
||
},
|
||
"20": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"21": {
|
||
"type": "FAC"
|
||
},
|
||
"22": {
|
||
"type": "FAC"
|
||
},
|
||
"23": {
|
||
"type": "PERSON"
|
||
},
|
||
"24": {
|
||
"type": "GPE"
|
||
},
|
||
"25": {
|
||
"type": "PERSON"
|
||
},
|
||
"26": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"27": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"28": {
|
||
"type": "TIME"
|
||
},
|
||
"29": {
|
||
"type": "ORG"
|
||
},
|
||
"30": {
|
||
"type": "GPE"
|
||
},
|
||
"31": {
|
||
"type": "GPE"
|
||
},
|
||
"32": {
|
||
"type": "ORG"
|
||
},
|
||
"33": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"34": {
|
||
"type": "ORG"
|
||
},
|
||
"35": {
|
||
"type": "ORG"
|
||
},
|
||
"36": {
|
||
"type": "PERSON"
|
||
},
|
||
"37": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"38": {
|
||
"type": "NORP"
|
||
},
|
||
"39": {
|
||
"type": "ORG"
|
||
},
|
||
"40": {
|
||
"type": "ORG"
|
||
},
|
||
"41": {
|
||
"type": "LOC"
|
||
},
|
||
"42": {
|
||
"type": "ORG"
|
||
},
|
||
"43": {
|
||
"type": "GPE"
|
||
},
|
||
"44": {
|
||
"type": "NORP"
|
||
},
|
||
"45": {
|
||
"type": "ORG"
|
||
},
|
||
"46": {
|
||
"type": "TIME"
|
||
},
|
||
"47": {
|
||
"type": "FAC"
|
||
},
|
||
"48": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"49": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"50": {
|
||
"type": "GPE"
|
||
},
|
||
"51": {
|
||
"type": "FAC"
|
||
},
|
||
"52": {
|
||
"type": "GPE"
|
||
},
|
||
"53": {
|
||
"type": "LOC"
|
||
},
|
||
"54": {
|
||
"type": "TIME"
|
||
},
|
||
"55": {
|
||
"type": "NORP"
|
||
},
|
||
"56": {
|
||
"type": "GPE"
|
||
},
|
||
"57": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"58": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"59": {
|
||
"type": "PERSON"
|
||
},
|
||
"60": {
|
||
"type": "PERSON"
|
||
},
|
||
"61": {
|
||
"type": "PERSON"
|
||
},
|
||
"62": {
|
||
"type": "ORG"
|
||
},
|
||
"63": {
|
||
"type": "GPE"
|
||
},
|
||
"64": {
|
||
"type": "PERSON"
|
||
},
|
||
"65": {
|
||
"type": "GPE"
|
||
},
|
||
"66": {
|
||
"type": "GPE"
|
||
},
|
||
"67": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"68": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"69": {
|
||
"type": "LOC"
|
||
},
|
||
"70": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"71": {
|
||
"type": "LANGUAGE"
|
||
},
|
||
"72": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"73": {
|
||
"type": "PERSON"
|
||
},
|
||
"74": {
|
||
"type": "TIME"
|
||
},
|
||
"75": {
|
||
"type": "ORG"
|
||
},
|
||
"76": {
|
||
"type": "DATE"
|
||
},
|
||
"77": {
|
||
"type": "PERSON"
|
||
},
|
||
"78": {
|
||
"type": "PERSON"
|
||
},
|
||
"79": {
|
||
"type": "LOC"
|
||
},
|
||
"80": {
|
||
"type": "ORG"
|
||
},
|
||
"81": {
|
||
"type": "FAC"
|
||
},
|
||
"82": {
|
||
"type": "ORG"
|
||
},
|
||
"83": {
|
||
"type": "ORG"
|
||
},
|
||
"84": {
|
||
"type": "ORG"
|
||
},
|
||
"85": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"86": {
|
||
"type": "PERSON"
|
||
},
|
||
"87": {
|
||
"type": "PERSON"
|
||
},
|
||
"88": {
|
||
"type": "ORG"
|
||
},
|
||
"89": {
|
||
"type": "TIME"
|
||
},
|
||
"90": {
|
||
"type": "NORP"
|
||
},
|
||
"91": {
|
||
"type": "PERSON"
|
||
},
|
||
"92": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"93": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"94": {
|
||
"type": "NORP"
|
||
},
|
||
"95": {
|
||
"type": "DATE"
|
||
},
|
||
"96": {
|
||
"type": "NORP"
|
||
},
|
||
"97": {
|
||
"type": "ORG"
|
||
},
|
||
"98": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"99": {
|
||
"type": "TIME"
|
||
},
|
||
"100": {
|
||
"type": "NORP"
|
||
},
|
||
"101": {
|
||
"type": "LANGUAGE"
|
||
},
|
||
"102": {
|
||
"type": "GPE"
|
||
},
|
||
"103": {
|
||
"type": "GPE"
|
||
},
|
||
"104": {
|
||
"type": "DATE"
|
||
},
|
||
"105": {
|
||
"type": "GPE"
|
||
},
|
||
"106": {
|
||
"type": "NORP"
|
||
},
|
||
"107": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"108": {
|
||
"type": "FAC"
|
||
},
|
||
"109": {
|
||
"type": "FAC"
|
||
},
|
||
"110": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"111": {
|
||
"type": "PERSON"
|
||
},
|
||
"112": {
|
||
"type": "PERSON"
|
||
},
|
||
"113": {
|
||
"type": "PERSON"
|
||
},
|
||
"114": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"115": {
|
||
"type": "NORP"
|
||
},
|
||
"116": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"117": {
|
||
"type": "TIME"
|
||
},
|
||
"118": {
|
||
"type": "GPE"
|
||
},
|
||
"119": {
|
||
"type": "GPE"
|
||
},
|
||
"120": {
|
||
"type": "GPE"
|
||
},
|
||
"121": {
|
||
"type": "GPE"
|
||
},
|
||
"122": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"123": {
|
||
"type": "ORG"
|
||
},
|
||
"124": {
|
||
"type": "ORG"
|
||
},
|
||
"125": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"126": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"127": {
|
||
"type": "DATE"
|
||
},
|
||
"128": {
|
||
"type": "TIME"
|
||
},
|
||
"129": {
|
||
"type": "TIME"
|
||
},
|
||
"130": {
|
||
"type": "TIME"
|
||
},
|
||
"131": {
|
||
"type": "TIME"
|
||
},
|
||
"132": {
|
||
"type": "TIME"
|
||
},
|
||
"133": {
|
||
"type": "TIME"
|
||
},
|
||
"134": {
|
||
"type": "DATE"
|
||
},
|
||
"135": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"136": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"137": {
|
||
"type": "TIME"
|
||
},
|
||
"138": {
|
||
"type": "TIME"
|
||
},
|
||
"139": {
|
||
"type": "TIME"
|
||
},
|
||
"140": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"141": {
|
||
"type": "TIME"
|
||
},
|
||
"142": {
|
||
"type": "TIME"
|
||
},
|
||
"143": {
|
||
"type": "TIME"
|
||
},
|
||
"144": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"145": {
|
||
"type": "TIME"
|
||
},
|
||
"146": {
|
||
"type": "TIME"
|
||
},
|
||
"147": {
|
||
"type": "TIME"
|
||
},
|
||
"148": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"149": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"150": {
|
||
"type": "DATE"
|
||
},
|
||
"151": {
|
||
"type": "GPE"
|
||
},
|
||
"152": {
|
||
"type": "GPE"
|
||
},
|
||
"153": {
|
||
"type": "PERSON"
|
||
},
|
||
"154": {
|
||
"type": "DATE"
|
||
},
|
||
"155": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"156": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"157": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"158": {
|
||
"type": "DATE"
|
||
},
|
||
"159": {
|
||
"type": "PERSON"
|
||
},
|
||
"160": {
|
||
"type": "DATE"
|
||
},
|
||
"161": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"162": {
|
||
"type": "GPE"
|
||
},
|
||
"163": {
|
||
"type": "PERSON"
|
||
},
|
||
"164": {
|
||
"type": "PERSON"
|
||
},
|
||
"165": {
|
||
"type": "DATE"
|
||
},
|
||
"166": {
|
||
"type": "PERSON"
|
||
},
|
||
"167": {
|
||
"type": "DATE"
|
||
},
|
||
"168": {
|
||
"type": "GPE"
|
||
},
|
||
"169": {
|
||
"type": "ORG"
|
||
},
|
||
"170": {
|
||
"type": "DATE"
|
||
},
|
||
"171": {
|
||
"type": "GPE"
|
||
},
|
||
"172": {
|
||
"type": "PERSON"
|
||
},
|
||
"173": {
|
||
"type": "PERSON"
|
||
},
|
||
"174": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"175": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"176": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"177": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"178": {
|
||
"type": "DATE"
|
||
},
|
||
"179": {
|
||
"type": "DATE"
|
||
},
|
||
"180": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"181": {
|
||
"type": "PERSON"
|
||
},
|
||
"182": {
|
||
"type": "TIME"
|
||
},
|
||
"183": {
|
||
"type": "TIME"
|
||
},
|
||
"184": {
|
||
"type": "GPE"
|
||
},
|
||
"185": {
|
||
"type": "LOC"
|
||
},
|
||
"186": {
|
||
"type": "DATE"
|
||
},
|
||
"187": {
|
||
"type": "DATE"
|
||
},
|
||
"188": {
|
||
"type": "GPE"
|
||
},
|
||
"189": {
|
||
"type": "EVENT"
|
||
},
|
||
"190": {
|
||
"type": "PERSON"
|
||
},
|
||
"191": {
|
||
"type": "TIME"
|
||
},
|
||
"192": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"193": {
|
||
"type": "GPE"
|
||
},
|
||
"194": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"195": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"196": {
|
||
"type": "EVENT"
|
||
},
|
||
"197": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"198": {
|
||
"type": "TIME"
|
||
},
|
||
"199": {
|
||
"type": "GPE"
|
||
},
|
||
"200": {
|
||
"type": "GPE"
|
||
},
|
||
"201": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"202": {
|
||
"type": "TIME"
|
||
},
|
||
"203": {
|
||
"type": "ORG"
|
||
},
|
||
"204": {
|
||
"type": "ORG"
|
||
},
|
||
"205": {
|
||
"type": "EVENT"
|
||
},
|
||
"206": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"207": {
|
||
"type": "PERSON"
|
||
},
|
||
"208": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"209": {
|
||
"type": "NORP"
|
||
},
|
||
"210": {
|
||
"type": "PERSON"
|
||
},
|
||
"211": {
|
||
"type": "PERSON"
|
||
},
|
||
"212": {
|
||
"type": "NORP"
|
||
},
|
||
"213": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"214": {
|
||
"type": "NORP"
|
||
},
|
||
"215": {
|
||
"type": "NORP"
|
||
},
|
||
"216": {
|
||
"type": "PERSON"
|
||
},
|
||
"217": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"218": {
|
||
"type": "NORP"
|
||
},
|
||
"219": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"220": {
|
||
"type": "PERSON"
|
||
},
|
||
"221": {
|
||
"type": "GPE"
|
||
},
|
||
"222": {
|
||
"type": "PERSON"
|
||
},
|
||
"223": {
|
||
"type": "TIME"
|
||
},
|
||
"224": {
|
||
"type": "PERSON"
|
||
},
|
||
"225": {
|
||
"type": "PERSON"
|
||
},
|
||
"226": {
|
||
"type": "PERSON"
|
||
},
|
||
"227": {
|
||
"type": "DATE"
|
||
},
|
||
"228": {
|
||
"type": "PERSON"
|
||
},
|
||
"229": {
|
||
"type": "GPE"
|
||
},
|
||
"230": {
|
||
"type": "PERSON"
|
||
},
|
||
"231": {
|
||
"type": "DATE"
|
||
},
|
||
"232": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"233": {
|
||
"type": "PERSON"
|
||
},
|
||
"234": {
|
||
"type": "GPE"
|
||
},
|
||
"235": {
|
||
"type": "NORP"
|
||
},
|
||
"236": {
|
||
"type": "PERSON"
|
||
},
|
||
"237": {
|
||
"type": "DATE"
|
||
},
|
||
"238": {
|
||
"type": "PERSON"
|
||
},
|
||
"239": {
|
||
"type": "PERSON"
|
||
},
|
||
"240": {
|
||
"type": "NORP"
|
||
},
|
||
"241": {
|
||
"type": "PERSON"
|
||
},
|
||
"242": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"243": {
|
||
"type": "DATE"
|
||
},
|
||
"244": {
|
||
"type": "GPE"
|
||
},
|
||
"245": {
|
||
"type": "PERSON"
|
||
},
|
||
"246": {
|
||
"type": "GPE"
|
||
},
|
||
"247": {
|
||
"type": "PERSON"
|
||
},
|
||
"248": {
|
||
"type": "DATE"
|
||
},
|
||
"249": {
|
||
"type": "LOC"
|
||
},
|
||
"250": {
|
||
"type": "DATE"
|
||
},
|
||
"251": {
|
||
"type": "PERSON"
|
||
},
|
||
"252": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"253": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"254": {
|
||
"type": "GPE"
|
||
},
|
||
"255": {
|
||
"type": "ORG"
|
||
},
|
||
"256": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"257": {
|
||
"type": "ORG"
|
||
},
|
||
"258": {
|
||
"type": "ORG"
|
||
},
|
||
"259": {
|
||
"type": "PERSON"
|
||
},
|
||
"260": {
|
||
"type": "ORG"
|
||
},
|
||
"261": {
|
||
"type": "DATE"
|
||
},
|
||
"262": {
|
||
"type": "ORG"
|
||
},
|
||
"263": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"264": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"265": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"266": {
|
||
"type": "TIME"
|
||
},
|
||
"267": {
|
||
"type": "TIME"
|
||
},
|
||
"268": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"269": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"270": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"271": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"272": {
|
||
"type": "TIME"
|
||
},
|
||
"273": {
|
||
"type": "TIME"
|
||
},
|
||
"274": {
|
||
"type": "DATE"
|
||
},
|
||
"275": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"276": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"277": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"278": {
|
||
"type": "DATE"
|
||
},
|
||
"279": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"280": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"281": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"282": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"283": {
|
||
"type": "TIME"
|
||
},
|
||
"284": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"285": {
|
||
"type": "PRODUCT"
|
||
},
|
||
"286": {
|
||
"type": "PERSON"
|
||
},
|
||
"287": {
|
||
"type": "DATE"
|
||
},
|
||
"288": {
|
||
"type": "TIME"
|
||
},
|
||
"289": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"290": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"291": {
|
||
"type": "TIME"
|
||
},
|
||
"292": {
|
||
"type": "DATE"
|
||
},
|
||
"293": {
|
||
"type": "TIME"
|
||
},
|
||
"294": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"295": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"296": {
|
||
"type": "TIME"
|
||
},
|
||
"297": {
|
||
"type": "TIME"
|
||
},
|
||
"298": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"299": {
|
||
"type": "DATE"
|
||
},
|
||
"300": {
|
||
"type": "DATE"
|
||
},
|
||
"301": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"302": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"303": {
|
||
"type": "NORP"
|
||
},
|
||
"304": {
|
||
"type": "ORDINAL"
|
||
},
|
||
"305": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"306": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"307": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"308": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"309": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"310": {
|
||
"type": "PERSON"
|
||
},
|
||
"311": {
|
||
"type": "NORP"
|
||
},
|
||
"312": {
|
||
"type": "GPE"
|
||
},
|
||
"313": {
|
||
"type": "GPE"
|
||
},
|
||
"314": {
|
||
"type": "PERSON"
|
||
},
|
||
"315": {
|
||
"type": "PERSON"
|
||
},
|
||
"316": {
|
||
"type": "PERSON"
|
||
},
|
||
"317": {
|
||
"type": "PERSON"
|
||
},
|
||
"318": {
|
||
"type": "PERSON"
|
||
},
|
||
"319": {
|
||
"type": "PERSON"
|
||
},
|
||
"320": {
|
||
"type": "ORG"
|
||
},
|
||
"321": {
|
||
"type": "FAC"
|
||
},
|
||
"322": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"323": {
|
||
"type": "PERSON"
|
||
},
|
||
"324": {
|
||
"type": "ORG"
|
||
},
|
||
"325": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"326": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"327": {
|
||
"type": "NORP"
|
||
},
|
||
"328": {
|
||
"type": "PERSON"
|
||
},
|
||
"329": {
|
||
"type": "PERSON"
|
||
},
|
||
"330": {
|
||
"type": "ORG"
|
||
},
|
||
"331": {
|
||
"type": "PERSON"
|
||
},
|
||
"332": {
|
||
"type": "ORG"
|
||
},
|
||
"333": {
|
||
"type": "DATE"
|
||
},
|
||
"334": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"335": {
|
||
"type": "QUANTITY"
|
||
},
|
||
"336": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"337": {
|
||
"type": "PERSON"
|
||
},
|
||
"338": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"339": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"340": {
|
||
"type": "GPE"
|
||
},
|
||
"341": {
|
||
"type": "PERSON"
|
||
},
|
||
"342": {
|
||
"type": "NORP"
|
||
},
|
||
"343": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"344": {
|
||
"type": "QUANTITY"
|
||
},
|
||
"345": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"346": {
|
||
"type": "FAC"
|
||
},
|
||
"347": {
|
||
"type": "ORG"
|
||
},
|
||
"348": {
|
||
"type": "GPE"
|
||
},
|
||
"349": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"350": {
|
||
"type": "PERSON"
|
||
},
|
||
"351": {
|
||
"type": "ORG"
|
||
},
|
||
"352": {
|
||
"type": "GPE"
|
||
},
|
||
"353": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"354": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"355": {
|
||
"type": "DATE"
|
||
},
|
||
"356": {
|
||
"type": "PERSON"
|
||
},
|
||
"357": {
|
||
"type": "TIME"
|
||
},
|
||
"358": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"359": {
|
||
"type": "PERSON"
|
||
},
|
||
"360": {
|
||
"type": "PERSON"
|
||
},
|
||
"361": {
|
||
"type": "TIME"
|
||
},
|
||
"362": {
|
||
"type": "DATE"
|
||
},
|
||
"363": {
|
||
"type": "DATE"
|
||
},
|
||
"364": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"365": {
|
||
"type": "TIME"
|
||
},
|
||
"366": {
|
||
"type": "GPE"
|
||
},
|
||
"367": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"368": {
|
||
"type": "ORG"
|
||
},
|
||
"369": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"370": {
|
||
"type": "GPE"
|
||
},
|
||
"371": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"372": {
|
||
"type": "TIME"
|
||
},
|
||
"373": {
|
||
"type": "ORG"
|
||
},
|
||
"374": {
|
||
"type": "FAC"
|
||
},
|
||
"375": {
|
||
"type": "ORG"
|
||
},
|
||
"376": {
|
||
"type": "GPE"
|
||
},
|
||
"377": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"378": {
|
||
"type": "TIME"
|
||
},
|
||
"379": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"380": {
|
||
"type": "GPE"
|
||
},
|
||
"381": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"382": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"383": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"384": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"385": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"386": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"387": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"388": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"389": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"390": {
|
||
"type": "ORG"
|
||
},
|
||
"391": {
|
||
"type": "PERSON"
|
||
},
|
||
"392": {
|
||
"type": "ORG"
|
||
},
|
||
"393": {
|
||
"type": "PERSON"
|
||
},
|
||
"394": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"395": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"396": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"397": {
|
||
"type": "PERSON"
|
||
},
|
||
"398": {
|
||
"type": "PERSON"
|
||
},
|
||
"399": {
|
||
"type": "WORK_OF_ART"
|
||
},
|
||
"400": {
|
||
"type": "PERSON"
|
||
},
|
||
"401": {
|
||
"type": "TIME"
|
||
},
|
||
"402": {
|
||
"type": "PERSON"
|
||
},
|
||
"403": {
|
||
"type": "ORG"
|
||
},
|
||
"404": {
|
||
"type": "ORG"
|
||
},
|
||
"405": {
|
||
"type": "ORG"
|
||
},
|
||
"406": {
|
||
"type": "PERSON"
|
||
},
|
||
"407": {
|
||
"type": "CARDINAL"
|
||
},
|
||
"408": {
|
||
"type": "PERSON"
|
||
},
|
||
"409": {
|
||
"type": "PERSON"
|
||
},
|
||
"410": {
|
||
"type": "GPE"
|
||
}
|
||
},
|
||
"word": {
|
||
"0": "THE",
|
||
"1": "ASSIGNATION",
|
||
"2": ".",
|
||
"3": "Stay",
|
||
"4": "for",
|
||
"5": "me",
|
||
"6": "there",
|
||
"7": "!",
|
||
"8": "I",
|
||
"9": "will",
|
||
"10": "not",
|
||
"11": "fail",
|
||
"12": "To",
|
||
"13": "meet",
|
||
"14": "thee",
|
||
"15": "in",
|
||
"16": "that",
|
||
"17": "hollow",
|
||
"18": "vale",
|
||
"19": "Exequy",
|
||
"20": "on",
|
||
"21": "the",
|
||
"22": "Death",
|
||
"23": "of",
|
||
"24": "his",
|
||
"25": "Wife",
|
||
"26": ",",
|
||
"27": "by",
|
||
"28": "Henry",
|
||
"29": "King",
|
||
"30": "Bishop",
|
||
"31": "Chichester",
|
||
"32": "Ill",
|
||
"33": "-",
|
||
"34": "fated",
|
||
"35": "and",
|
||
"36": "mysterious",
|
||
"37": "man!—bewildered",
|
||
"38": "brilliancy",
|
||
"39": "thine",
|
||
"40": "own",
|
||
"41": "imagination",
|
||
"42": "fallen",
|
||
"43": "flames",
|
||
"44": "youth",
|
||
"45": "Again",
|
||
"46": "fancy",
|
||
"47": "behold",
|
||
"48": "Once",
|
||
"49": "more",
|
||
"50": "thy",
|
||
"51": "form",
|
||
"52": "hath",
|
||
"53": "risen",
|
||
"54": "before",
|
||
"55": "me!—not",
|
||
"56": "—",
|
||
"57": "oh",
|
||
"58": "as",
|
||
"59": "thou",
|
||
"60": "art",
|
||
"61": "cold",
|
||
"62": "valley",
|
||
"63": "shadow",
|
||
"64": "but",
|
||
"65": "shouldst",
|
||
"66": "be",
|
||
"67": "squandering",
|
||
"68": "away",
|
||
"69": "a",
|
||
"70": "life",
|
||
"71": "magnificent",
|
||
"72": "meditation",
|
||
"73": "city",
|
||
"74": "dim",
|
||
"75": "visions",
|
||
"76": "Venice",
|
||
"77": "which",
|
||
"78": "is",
|
||
"79": "star",
|
||
"80": "beloved",
|
||
"81": "Elysium",
|
||
"82": "sea",
|
||
"83": "wide",
|
||
"84": "windows",
|
||
"85": "whose",
|
||
"86": "Palladian",
|
||
"87": "palaces",
|
||
"88": "look",
|
||
"89": "down",
|
||
"90": "with",
|
||
"91": "deep",
|
||
"92": "bitter",
|
||
"93": "meaning",
|
||
"94": "upon",
|
||
"95": "secrets",
|
||
"96": "her",
|
||
"97": "silent",
|
||
"98": "waters",
|
||
"99": "Yes",
|
||
"100": "repeat",
|
||
"101": "it",
|
||
"102": "There",
|
||
"103": "are",
|
||
"104": "surely",
|
||
"105": "other",
|
||
"106": "worlds",
|
||
"107": "than",
|
||
"108": "this",
|
||
"109": "thoughts",
|
||
"110": "multitude",
|
||
"111": "speculations",
|
||
"112": "sophist",
|
||
"113": "\"",
|
||
"114": "Who",
|
||
"115": "then",
|
||
"116": "shall",
|
||
"117": "call",
|
||
"118": "conduct",
|
||
"119": "into",
|
||
"120": "question",
|
||
"121": "?",
|
||
"122": "who",
|
||
"123": "blame",
|
||
"124": "visionary",
|
||
"125": "hours",
|
||
"126": "or",
|
||
"127": "denounce",
|
||
"128": "those",
|
||
"129": "occupations",
|
||
"130": "wasting",
|
||
"131": "were",
|
||
"132": "overflowings",
|
||
"133": "everlasting",
|
||
"134": "energies",
|
||
"135": "It",
|
||
"136": "was",
|
||
"137": "at",
|
||
"138": "beneath",
|
||
"139": "covered",
|
||
"140": "archway",
|
||
"141": "called",
|
||
"142": "Ponte",
|
||
"143": "di",
|
||
"144": "Sospiri",
|
||
"145": "met",
|
||
"146": "third",
|
||
"147": "fourth",
|
||
"148": "time",
|
||
"149": "person",
|
||
"150": "whom",
|
||
"151": "speak",
|
||
"152": "confused",
|
||
"153": "recollection",
|
||
"154": "bring",
|
||
"155": "to",
|
||
"156": "mind",
|
||
"157": "circumstances",
|
||
"158": "meeting",
|
||
"159": "Yet",
|
||
"160": "remember",
|
||
"161": "ah",
|
||
"162": "how",
|
||
"163": "should",
|
||
"164": "forget?—the",
|
||
"165": "midnight",
|
||
"166": "Bridge",
|
||
"167": "Sighs",
|
||
"168": "beauty",
|
||
"169": "woman",
|
||
"170": "Genius",
|
||
"171": "Romance",
|
||
"172": "stalked",
|
||
"173": "up",
|
||
"174": "narrow",
|
||
"175": "canal",
|
||
"176": "night",
|
||
"177": "unusual",
|
||
"178": "gloom",
|
||
"179": "The",
|
||
"180": "great",
|
||
"181": "clock",
|
||
"182": "Piazza",
|
||
"183": "had",
|
||
"184": "sounded",
|
||
"185": "fifth",
|
||
"186": "hour",
|
||
"187": "Italian",
|
||
"188": "evening",
|
||
"189": "square",
|
||
"190": "Campanile",
|
||
"191": "lay",
|
||
"192": "deserted",
|
||
"193": "lights",
|
||
"194": "old",
|
||
"195": "Ducal",
|
||
"196": "Palace",
|
||
"197": "dying",
|
||
"198": "fast",
|
||
"199": "returning",
|
||
"200": "home",
|
||
"201": "from",
|
||
"202": "Piazetta",
|
||
"203": "way",
|
||
"204": "Grand",
|
||
"205": "Canal",
|
||
"206": "But",
|
||
"207": "my",
|
||
"208": "gondola",
|
||
"209": "arrived",
|
||
"210": "opposite",
|
||
"211": "mouth",
|
||
"212": "San",
|
||
"213": "Marco",
|
||
"214": "female",
|
||
"215": "voice",
|
||
"216": "its",
|
||
"217": "recesses",
|
||
"218": "broke",
|
||
"219": "suddenly",
|
||
"220": "one",
|
||
"221": "wild",
|
||
"222": "hysterical",
|
||
"223": "long",
|
||
"224": "continued",
|
||
"225": "shriek",
|
||
"226": "Startled",
|
||
"227": "sound",
|
||
"228": "sprang",
|
||
"229": "feet",
|
||
"230": ";",
|
||
"231": "while",
|
||
"232": "gondolier",
|
||
"233": "letting",
|
||
"234": "slip",
|
||
"235": "single",
|
||
"236": "oar",
|
||
"237": "lost",
|
||
"238": "pitchy",
|
||
"239": "darkness",
|
||
"240": "beyond",
|
||
"241": "chance",
|
||
"242": "recovery",
|
||
"243": "we",
|
||
"244": "consequently",
|
||
"245": "left",
|
||
"246": "guidance",
|
||
"247": "current",
|
||
"248": "here",
|
||
"249": "sets",
|
||
"250": "greater",
|
||
"251": "smaller",
|
||
"252": "channel",
|
||
"253": "Like",
|
||
"254": "some",
|
||
"255": "huge",
|
||
"256": "sable",
|
||
"257": "feathered",
|
||
"258": "condor",
|
||
"259": "slowly",
|
||
"260": "drifting",
|
||
"261": "towards",
|
||
"262": "when",
|
||
"263": "thousand",
|
||
"264": "flambeaux",
|
||
"265": "flashing",
|
||
"266": "staircases",
|
||
"267": "turned",
|
||
"268": "all",
|
||
"269": "once",
|
||
"270": "livid",
|
||
"271": "preternatural",
|
||
"272": "day",
|
||
"273": "A",
|
||
"274": "child",
|
||
"275": "slipping",
|
||
"276": "arms",
|
||
"277": "mother",
|
||
"278": "an",
|
||
"279": "upper",
|
||
"280": "window",
|
||
"281": "lofty",
|
||
"282": "structure",
|
||
"283": "quiet",
|
||
"284": "closed",
|
||
"285": "placidly",
|
||
"286": "over",
|
||
"287": "their",
|
||
"288": "victim",
|
||
"289": "although",
|
||
"290": "only",
|
||
"291": "sight",
|
||
"292": "many",
|
||
"293": "stout",
|
||
"294": "swimmer",
|
||
"295": "already",
|
||
"296": "stream",
|
||
"297": "seeking",
|
||
"298": "vain",
|
||
"299": "surface",
|
||
"300": "treasure",
|
||
"301": "found",
|
||
"302": "alas",
|
||
"303": "within",
|
||
"304": "abyss",
|
||
"305": "Upon",
|
||
"306": "broad",
|
||
"307": "black",
|
||
"308": "marble",
|
||
"309": "flagstones",
|
||
"310": "entrance",
|
||
"311": "palace",
|
||
"312": "few",
|
||
"313": "steps",
|
||
"314": "above",
|
||
"315": "water",
|
||
"316": "stood",
|
||
"317": "figure",
|
||
"318": "none",
|
||
"319": "saw",
|
||
"320": "can",
|
||
"321": "have",
|
||
"322": "ever",
|
||
"323": "since",
|
||
"324": "forgotten",
|
||
"325": "Marchesa",
|
||
"326": "Aphrodite",
|
||
"327": "adoration",
|
||
"328": "gayest",
|
||
"329": "gay",
|
||
"330": "most",
|
||
"331": "lovely",
|
||
"332": "where",
|
||
"333": "beautiful",
|
||
"334": "still",
|
||
"335": "young",
|
||
"336": "wife",
|
||
"337": "intriguing",
|
||
"338": "Mentoni",
|
||
"339": "fair",
|
||
"340": "first",
|
||
"341": "now",
|
||
"342": "murky",
|
||
"343": "thinking",
|
||
"344": "bitterness",
|
||
"345": "heart",
|
||
"346": "sweet",
|
||
"347": "caresses",
|
||
"348": "exhausting",
|
||
"349": "little",
|
||
"350": "struggles",
|
||
"351": "name",
|
||
"352": "She",
|
||
"353": "alone",
|
||
"354": "Her",
|
||
"355": "small",
|
||
"356": "bare",
|
||
"357": "silvery",
|
||
"358": "gleamed",
|
||
"359": "hair",
|
||
"360": "yet",
|
||
"361": "half",
|
||
"362": "loosened",
|
||
"363": "ballroom",
|
||
"364": "array",
|
||
"365": "clustered",
|
||
"366": "amid",
|
||
"367": "shower",
|
||
"368": "diamonds",
|
||
"369": "round",
|
||
"370": "classical",
|
||
"371": "head",
|
||
"372": "curls",
|
||
"373": "like",
|
||
"374": "hyacinth",
|
||
"375": "snowy",
|
||
"376": "white",
|
||
"377": "gauze",
|
||
"378": "drapery",
|
||
"379": "seemed",
|
||
"380": "nearly",
|
||
"381": "sole",
|
||
"382": "covering",
|
||
"383": "delicate",
|
||
"384": "midsummer",
|
||
"385": "air",
|
||
"386": "hot",
|
||
"387": "sullen",
|
||
"388": "no",
|
||
"389": "motion",
|
||
"390": "statue",
|
||
"391": "itself",
|
||
"392": "stirred",
|
||
"393": "even",
|
||
"394": "folds",
|
||
"395": "raiment",
|
||
"396": "very",
|
||
"397": "vapor",
|
||
"398": "hung",
|
||
"399": "around",
|
||
"400": "heavy",
|
||
"401": "hangs",
|
||
"402": "Niobe",
|
||
"403": "strange",
|
||
"404": "say!—her",
|
||
"405": "large",
|
||
"406": "lustrous",
|
||
"407": "eyes",
|
||
"408": "downwards",
|
||
"409": "grave",
|
||
"410": "wherein",
|
||
"411": "brightest",
|
||
"412": "hope",
|
||
"413": "buried",
|
||
"414": "riveted",
|
||
"415": "widely",
|
||
"416": "different",
|
||
"417": "direction",
|
||
"418": "prison",
|
||
"419": "Old",
|
||
"420": "Republic",
|
||
"421": "think",
|
||
"422": "stateliest",
|
||
"423": "building",
|
||
"424": "could",
|
||
"425": "lady",
|
||
"426": "gaze",
|
||
"427": "so",
|
||
"428": "fixedly",
|
||
"429": "stifling",
|
||
"430": "Yon",
|
||
"431": "dark",
|
||
"432": "gloomy",
|
||
"433": "niche",
|
||
"434": "too",
|
||
"435": "yawns",
|
||
"436": "right",
|
||
"437": "chamber",
|
||
"438": "what",
|
||
"439": "shadows",
|
||
"440": "architecture",
|
||
"441": "ivy",
|
||
"442": "wreathed",
|
||
"443": "solemn",
|
||
"444": "cornices",
|
||
"445": "wondered",
|
||
"446": "times",
|
||
"447": "Nonsense!—Who",
|
||
"448": "does",
|
||
"449": "such",
|
||
"450": "eye",
|
||
"451": "shattered",
|
||
"452": "mirror",
|
||
"453": "multiplies",
|
||
"454": "images",
|
||
"455": "sorrow",
|
||
"456": "sees",
|
||
"457": "innumerable",
|
||
"458": "far",
|
||
"459": "off",
|
||
"460": "places",
|
||
"461": "woe",
|
||
"462": "close",
|
||
"463": "hand",
|
||
"464": "Many",
|
||
"465": "arch",
|
||
"466": "gate",
|
||
"467": "full",
|
||
"468": "dress",
|
||
"469": "Satyr",
|
||
"470": "himself",
|
||
"471": "He",
|
||
"472": "occasionally",
|
||
"473": "occupied",
|
||
"474": "thrumming",
|
||
"475": "guitar",
|
||
"476": "ennuyé",
|
||
"477": "death",
|
||
"478": "intervals",
|
||
"479": "he",
|
||
"480": "gave",
|
||
"481": "directions",
|
||
"482": "Stupefied",
|
||
"483": "aghast",
|
||
"484": "myself",
|
||
"485": "power",
|
||
"486": "move",
|
||
"487": "upright",
|
||
"488": "position",
|
||
"489": "assumed",
|
||
"490": "hearing",
|
||
"491": "must",
|
||
"492": "presented",
|
||
"493": "agitated",
|
||
"494": "group",
|
||
"495": "spectral",
|
||
"496": "ominous",
|
||
"497": "appearance",
|
||
"498": "pale",
|
||
"499": "countenance",
|
||
"500": "rigid",
|
||
"501": "limbs",
|
||
"502": "floated",
|
||
"503": "among",
|
||
"504": "them",
|
||
"505": "funereal",
|
||
"506": "All",
|
||
"507": "efforts",
|
||
"508": "proved",
|
||
"509": "energetic",
|
||
"510": "search",
|
||
"511": "relaxing",
|
||
"512": "exertions",
|
||
"513": "yielding",
|
||
"514": "(",
|
||
"515": "much",
|
||
"516": "less",
|
||
"517": ")",
|
||
"518": "interior",
|
||
"519": "has",
|
||
"520": "been",
|
||
"521": "mentioned",
|
||
"522": "forming",
|
||
"523": "part",
|
||
"524": "Republican",
|
||
"525": "fronting",
|
||
"526": "lattice",
|
||
"527": "muffled",
|
||
"528": "cloak",
|
||
"529": "stepped",
|
||
"530": "out",
|
||
"531": "reach",
|
||
"532": "light",
|
||
"533": "pausing",
|
||
"534": "moment",
|
||
"535": "verge",
|
||
"536": "giddy",
|
||
"537": "descent",
|
||
"538": "plunged",
|
||
"539": "headlong",
|
||
"540": "As",
|
||
"541": "instant",
|
||
"542": "afterwards",
|
||
"543": "living",
|
||
"544": "breathing",
|
||
"545": "grasp",
|
||
"546": "side",
|
||
"547": "drenching",
|
||
"548": "became",
|
||
"549": "unfastened",
|
||
"550": "falling",
|
||
"551": "about",
|
||
"552": "discovered",
|
||
"553": "wonder",
|
||
"554": "stricken",
|
||
"555": "spectators",
|
||
"556": "graceful",
|
||
"557": "man",
|
||
"558": "Europe",
|
||
"559": "ringing",
|
||
"560": "No",
|
||
"561": "word",
|
||
"562": "spoke",
|
||
"563": "deliverer",
|
||
"564": "receive",
|
||
"565": "she",
|
||
"566": "press",
|
||
"567": "cling",
|
||
"568": "smother",
|
||
"569": "Alas",
|
||
"570": "another",
|
||
"571": "'s",
|
||
"572": "taken",
|
||
"573": "stranger",
|
||
"574": "borne",
|
||
"575": "afar",
|
||
"576": "unnoticed",
|
||
"577": "And",
|
||
"578": "lip",
|
||
"579": "trembles",
|
||
"580": ":",
|
||
"581": "tears",
|
||
"582": "gathering",
|
||
"583": "Pliny",
|
||
"584": "acanthus",
|
||
"585": "soft",
|
||
"586": "almost",
|
||
"587": "liquid",
|
||
"588": "see",
|
||
"589": "entire",
|
||
"590": "thrills",
|
||
"591": "thoughout",
|
||
"592": "soul",
|
||
"593": "started",
|
||
"594": "pallor",
|
||
"595": "swelling",
|
||
"596": "bosom",
|
||
"597": "purity",
|
||
"598": "flushed",
|
||
"599": "tide",
|
||
"600": "ungovernable",
|
||
"601": "crimson",
|
||
"602": "slight",
|
||
"603": "shudder",
|
||
"604": "quivers",
|
||
"605": "frame",
|
||
"606": "gentle",
|
||
"607": "Napoli",
|
||
"608": "rich",
|
||
"609": "silver",
|
||
"610": "lilies",
|
||
"611": "grass",
|
||
"612": "Why",
|
||
"613": "blush",
|
||
"614": "demand",
|
||
"615": "answer,—except",
|
||
"616": "having",
|
||
"617": "eager",
|
||
"618": "haste",
|
||
"619": "terror",
|
||
"620": "privacy",
|
||
"621": "boudoir",
|
||
"622": "neglected",
|
||
"623": "enthral",
|
||
"624": "tiny",
|
||
"625": "slippers",
|
||
"626": "utterly",
|
||
"627": "throw",
|
||
"628": "Venetian",
|
||
"629": "shoulders",
|
||
"630": "due",
|
||
"631": "What",
|
||
"632": "possible",
|
||
"633": "reason",
|
||
"634": "blushing?—for",
|
||
"635": "glance",
|
||
"636": "appealing",
|
||
"637": "tumult",
|
||
"638": "throbbing",
|
||
"639": "convulsive",
|
||
"640": "pressure",
|
||
"641": "trembling",
|
||
"642": "hand?—that",
|
||
"643": "fell",
|
||
"644": "accidentally",
|
||
"645": "low",
|
||
"646": "singularly",
|
||
"647": "tone",
|
||
"648": "unmeaning",
|
||
"649": "words",
|
||
"650": "uttered",
|
||
"651": "hurriedly",
|
||
"652": "bidding",
|
||
"653": "him",
|
||
"654": "adieu",
|
||
"655": "Thou",
|
||
"656": "hast",
|
||
"657": "conquered",
|
||
"658": "said",
|
||
"659": "murmurs",
|
||
"660": "deceived",
|
||
"661": "after",
|
||
"662": "sunrise",
|
||
"663": "let",
|
||
"664": "******",
|
||
"665": "subsided",
|
||
"666": "died",
|
||
"667": "recognized",
|
||
"668": "flags",
|
||
"669": "shook",
|
||
"670": "inconceivable",
|
||
"671": "agitation",
|
||
"672": "glanced",
|
||
"673": "do",
|
||
"674": "offer",
|
||
"675": "service",
|
||
"676": "accepted",
|
||
"677": "civility",
|
||
"678": "Having",
|
||
"679": "obtained",
|
||
"680": "proceeded",
|
||
"681": "together",
|
||
"682": "residence",
|
||
"683": "rapidly",
|
||
"684": "recovered",
|
||
"685": "self",
|
||
"686": "possession",
|
||
"687": "our",
|
||
"688": "former",
|
||
"689": "acquaintance",
|
||
"690": "terms",
|
||
"691": "apparent",
|
||
"692": "cordiality",
|
||
"693": "subjects",
|
||
"694": "take",
|
||
"695": "pleasure",
|
||
"696": "being",
|
||
"697": "minute",
|
||
"698": "title",
|
||
"699": "world",
|
||
"700": "these",
|
||
"701": "In",
|
||
"702": "height",
|
||
"703": "might",
|
||
"704": "below",
|
||
"705": "rather",
|
||
"706": "medium",
|
||
"707": "size",
|
||
"708": "moments",
|
||
"709": "intense",
|
||
"710": "passion",
|
||
"711": "actually",
|
||
"712": "expanded",
|
||
"713": "belied",
|
||
"714": "assertion",
|
||
"715": "slender",
|
||
"716": "symmetry",
|
||
"717": "promised",
|
||
"718": "ready",
|
||
"719": "activity",
|
||
"720": "evinced",
|
||
"721": "Herculean",
|
||
"722": "strength",
|
||
"723": "known",
|
||
"724": "wield",
|
||
"725": "without",
|
||
"726": "effort",
|
||
"727": "occasions",
|
||
"728": "dangerous",
|
||
"729": "emergency",
|
||
"730": "With",
|
||
"731": "chin",
|
||
"732": "deity",
|
||
"733": "singular",
|
||
"734": "varied",
|
||
"735": "pure",
|
||
"736": "hazel",
|
||
"737": "brilliant",
|
||
"738": "jet",
|
||
"739": "profusion",
|
||
"740": "curling",
|
||
"741": "forehead",
|
||
"742": "breadth",
|
||
"743": "forth",
|
||
"744": "ivory",
|
||
"745": "features",
|
||
"746": "seen",
|
||
"747": "classically",
|
||
"748": "regular",
|
||
"749": "except",
|
||
"750": "perhaps",
|
||
"751": "ones",
|
||
"752": "Emperor",
|
||
"753": "Commodus",
|
||
"754": "nevertheless",
|
||
"755": "men",
|
||
"756": "period",
|
||
"757": "lives",
|
||
"758": "never",
|
||
"759": "again",
|
||
"760": "peculiar",
|
||
"761": "settled",
|
||
"762": "predominant",
|
||
"763": "expression",
|
||
"764": "fastened",
|
||
"765": "memory",
|
||
"766": "instantly",
|
||
"767": "vague",
|
||
"768": "ceasing",
|
||
"769": "desire",
|
||
"770": "recalling",
|
||
"771": "Not",
|
||
"772": "spirit",
|
||
"773": "each",
|
||
"774": "rapid",
|
||
"775": "failed",
|
||
"776": "any",
|
||
"777": "distinct",
|
||
"778": "image",
|
||
"779": "face",
|
||
"780": "retained",
|
||
"781": "vestige",
|
||
"782": "departed",
|
||
"783": "leaving",
|
||
"784": "adventure",
|
||
"785": "solicited",
|
||
"786": "thought",
|
||
"787": "urgent",
|
||
"788": "manner",
|
||
"789": "early",
|
||
"790": "next",
|
||
"791": "morning",
|
||
"792": "Shortly",
|
||
"793": "accordingly",
|
||
"794": "Palazzo",
|
||
"795": "structures",
|
||
"796": "fantastic",
|
||
"797": "pomp",
|
||
"798": "tower",
|
||
"799": "vicinity",
|
||
"800": "Rialto",
|
||
"801": "shown",
|
||
"802": "winding",
|
||
"803": "staircase",
|
||
"804": "mosaics",
|
||
"805": "apartment",
|
||
"806": "unparalleled",
|
||
"807": "splendor",
|
||
"808": "burst",
|
||
"809": "through",
|
||
"810": "opening",
|
||
"811": "door",
|
||
"812": "actual",
|
||
"813": "glare",
|
||
"814": "making",
|
||
"815": "blind",
|
||
"816": "dizzy",
|
||
"817": "luxuriousness",
|
||
"818": "knew",
|
||
"819": "wealthy",
|
||
"820": "Report",
|
||
"821": "spoken",
|
||
"822": "possessions",
|
||
"823": "ventured",
|
||
"824": "ridiculous",
|
||
"825": "exaggeration",
|
||
"826": "gazed",
|
||
"827": "believe",
|
||
"828": "wealth",
|
||
"829": "subject",
|
||
"830": "supplied",
|
||
"831": "princely",
|
||
"832": "magnificence",
|
||
"833": "burned",
|
||
"834": "blazed",
|
||
"835": "Although",
|
||
"836": "say",
|
||
"837": "sun",
|
||
"838": "arisen",
|
||
"839": "room",
|
||
"840": "brilliantly",
|
||
"841": "lighted",
|
||
"842": "judge",
|
||
"843": "circumstance",
|
||
"844": "well",
|
||
"845": "exhaustion",
|
||
"846": "friend",
|
||
"847": "retired",
|
||
"848": "bed",
|
||
"849": "during",
|
||
"850": "whole",
|
||
"851": "preceding",
|
||
"852": "embellishments",
|
||
"853": "evident",
|
||
"854": "design",
|
||
"855": "dazzle",
|
||
"856": "astound",
|
||
"857": "Little",
|
||
"858": "attention",
|
||
"859": "paid",
|
||
"860": "decora",
|
||
"861": "technically",
|
||
"862": "keeping",
|
||
"863": "proprieties",
|
||
"864": "nationality",
|
||
"865": "wandered",
|
||
"866": "object",
|
||
"867": "rested",
|
||
"868": "neither",
|
||
"869": "grotesques",
|
||
"870": "Greek",
|
||
"871": "painters",
|
||
"872": "nor",
|
||
"873": "sculptures",
|
||
"874": "best",
|
||
"875": "days",
|
||
"876": "carvings",
|
||
"877": "untutored",
|
||
"878": "Egypt",
|
||
"879": "Rich",
|
||
"880": "draperies",
|
||
"881": "every",
|
||
"882": "trembled",
|
||
"883": "vibration",
|
||
"884": "melancholy",
|
||
"885": "music",
|
||
"886": "origin",
|
||
"887": "senses",
|
||
"888": "oppressed",
|
||
"889": "mingled",
|
||
"890": "conflicting",
|
||
"891": "perfumes",
|
||
"892": "reeking",
|
||
"893": "convolute",
|
||
"894": "censers",
|
||
"895": "multitudinous",
|
||
"896": "flaring",
|
||
"897": "flickering",
|
||
"898": "tongues",
|
||
"899": "emerald",
|
||
"900": "violet",
|
||
"901": "fire",
|
||
"902": "rays",
|
||
"903": "newly",
|
||
"904": "poured",
|
||
"905": "formed",
|
||
"906": "pane",
|
||
"907": "tinted",
|
||
"908": "glass",
|
||
"909": "Glancing",
|
||
"910": "fro",
|
||
"911": "reflections",
|
||
"912": "curtains",
|
||
"913": "rolled",
|
||
"914": "cataracts",
|
||
"915": "molten",
|
||
"916": "beams",
|
||
"917": "natural",
|
||
"918": "glory",
|
||
"919": "length",
|
||
"920": "fitfully",
|
||
"921": "artificial",
|
||
"922": "weltering",
|
||
"923": "subdued",
|
||
"924": "masses",
|
||
"925": "carpet",
|
||
"926": "looking",
|
||
"927": "cloth",
|
||
"928": "Chili",
|
||
"929": "gold",
|
||
"930": "Ha",
|
||
"931": "ha",
|
||
"932": "ha!—ha",
|
||
"933": "laughed",
|
||
"934": "proprietor",
|
||
"935": "motioning",
|
||
"936": "seat",
|
||
"937": "entered",
|
||
"938": "throwing",
|
||
"939": "back",
|
||
"940": "ottoman",
|
||
"941": "perceiving",
|
||
"942": "immediately",
|
||
"943": "reconcile",
|
||
"944": "bienseance",
|
||
"945": "welcome—\"I",
|
||
"946": "you",
|
||
"947": "astonished",
|
||
"948": "statues",
|
||
"949": "pictures",
|
||
"950": "originality",
|
||
"951": "conception",
|
||
"952": "upholstery",
|
||
"953": "absolutely",
|
||
"954": "drunk",
|
||
"955": "eh",
|
||
"956": "pardon",
|
||
"957": "dear",
|
||
"958": "sir",
|
||
"959": "dropped",
|
||
"960": "uncharitable",
|
||
"961": "laughter",
|
||
"962": "You",
|
||
"963": "appeared",
|
||
"964": "Besides",
|
||
"965": "things",
|
||
"966": "completely",
|
||
"967": "ludicrous",
|
||
"968": "laugh",
|
||
"969": "die",
|
||
"970": "laughing",
|
||
"971": "glorious",
|
||
"972": "deaths",
|
||
"973": "Sir",
|
||
"974": "Thomas",
|
||
"975": "More",
|
||
"976": "fine",
|
||
"977": "Also",
|
||
"978": "Absurdities",
|
||
"979": "Ravisius",
|
||
"980": "Textor",
|
||
"981": "list",
|
||
"982": "characters",
|
||
"983": "came",
|
||
"984": "same",
|
||
"985": "end",
|
||
"986": "Do",
|
||
"987": "know",
|
||
"988": "however",
|
||
"989": "musingly",
|
||
"990": "Sparta",
|
||
"991": "Palæochori",
|
||
"992": "west",
|
||
"993": "citadel",
|
||
"994": "chaos",
|
||
"995": "scarcely",
|
||
"996": "visible",
|
||
"997": "ruins",
|
||
"998": "kind",
|
||
"999": "socle",
|
||
"1000": "legible",
|
||
"1001": "letters",
|
||
"1002": "ΑΑΞΜ",
|
||
"1003": "They",
|
||
"1004": "undoubtedly",
|
||
"1005": "ΓΕΑΑΞΜΑ",
|
||
"1006": "Now",
|
||
"1007": "temples",
|
||
"1008": "shrines",
|
||
"1009": "divinities",
|
||
"1010": "How",
|
||
"1011": "exceedingly",
|
||
"1012": "altar",
|
||
"1013": "Laughter",
|
||
"1014": "survived",
|
||
"1015": "others",
|
||
"1016": "present",
|
||
"1017": "instance",
|
||
"1018": "resumed",
|
||
"1019": "alteration",
|
||
"1020": "merry",
|
||
"1021": "your",
|
||
"1022": "expense",
|
||
"1023": "amazed",
|
||
"1024": "produce",
|
||
"1025": "anything",
|
||
"1026": "regal",
|
||
"1027": "cabinet",
|
||
"1028": "My",
|
||
"1029": "apartments",
|
||
"1030": "means",
|
||
"1031": "order",
|
||
"1032": "mere",
|
||
"1033": "ultras",
|
||
"1034": "fashionable",
|
||
"1035": "insipidity",
|
||
"1036": "This",
|
||
"1037": "better",
|
||
"1038": "fashion",
|
||
"1039": "become",
|
||
"1040": "rage",
|
||
"1041": "afford",
|
||
"1042": "cost",
|
||
"1043": "patrimony",
|
||
"1044": "guarded",
|
||
"1045": "against",
|
||
"1046": "profanation",
|
||
"1047": "exception",
|
||
"1048": "human",
|
||
"1049": "besides",
|
||
"1050": "valet",
|
||
"1051": "admitted",
|
||
"1052": "mysteries",
|
||
"1053": "imperial",
|
||
"1054": "precincts",
|
||
"1055": "they",
|
||
"1056": "bedizened",
|
||
"1057": "bowed",
|
||
"1058": "acknowledgment",
|
||
"1059": "overpowering",
|
||
"1060": "sense",
|
||
"1061": "perfume",
|
||
"1062": "unexpected",
|
||
"1063": "eccentricity",
|
||
"1064": "address",
|
||
"1065": "prevented",
|
||
"1066": "expressing",
|
||
"1067": "appreciation",
|
||
"1068": "construed",
|
||
"1069": "compliment",
|
||
"1070": "Here",
|
||
"1071": "arising",
|
||
"1072": "leaning",
|
||
"1073": "arm",
|
||
"1074": "sauntered",
|
||
"1075": "apartment—\"here",
|
||
"1076": "paintings",
|
||
"1077": "Greeks",
|
||
"1078": "Cimabue",
|
||
"1079": "chosen",
|
||
"1080": "deference",
|
||
"1081": "opinions",
|
||
"1082": "Virtu",
|
||
"1083": "fitting",
|
||
"1084": "tapestry",
|
||
"1085": "chef",
|
||
"1086": "d'œuvres",
|
||
"1087": "unknown",
|
||
"1088": "unfinished",
|
||
"1089": "designs",
|
||
"1090": "celebrated",
|
||
"1091": "names",
|
||
"1092": "perspicacity",
|
||
"1093": "academies",
|
||
"1094": "silence",
|
||
"1095": "turning",
|
||
"1096": "abruptly",
|
||
"1097": "spoke—\"what",
|
||
"1098": "Madonna",
|
||
"1099": "della",
|
||
"1100": "Pieta",
|
||
"1101": "Guido",
|
||
"1102": "enthusiasm",
|
||
"1103": "nature",
|
||
"1104": "poring",
|
||
"1105": "intently",
|
||
"1106": "surpassing",
|
||
"1107": "loveliness",
|
||
"1108": "own!—how",
|
||
"1109": "it?—she",
|
||
"1110": "painting",
|
||
"1111": "Venus",
|
||
"1112": "sculpture",
|
||
"1113": "thoughtfully",
|
||
"1114": "Venus?—the",
|
||
"1115": "Medici?—she",
|
||
"1116": "diminutive",
|
||
"1117": "gilded",
|
||
"1118": "Part",
|
||
"1119": "heard",
|
||
"1120": "difficulty",
|
||
"1121": "restorations",
|
||
"1122": "coquetry",
|
||
"1123": "lies",
|
||
"1124": "quintessence",
|
||
"1125": "affectation",
|
||
"1126": "Give",
|
||
"1127": "Canova",
|
||
"1128": "Apollo",
|
||
"1129": "copy",
|
||
"1130": "doubt",
|
||
"1131": "fool",
|
||
"1132": "am",
|
||
"1133": "boasted",
|
||
"1134": "inspiration",
|
||
"1135": "help",
|
||
"1136": "pity",
|
||
"1137": "me!—I",
|
||
"1138": "preferring",
|
||
"1139": "Antinous",
|
||
"1140": "Was",
|
||
"1141": "Socrates",
|
||
"1142": "statuary",
|
||
"1143": "block",
|
||
"1144": "Then",
|
||
"1145": "Michael",
|
||
"1146": "Angelo",
|
||
"1147": "original",
|
||
"1148": "couplet",
|
||
"1149": "'",
|
||
"1150": "Non",
|
||
"1151": "l'ottimo",
|
||
"1152": "artista",
|
||
"1153": "alcun",
|
||
"1154": "concetto",
|
||
"1155": "Che",
|
||
"1156": "un",
|
||
"1157": "marmo",
|
||
"1158": "solo",
|
||
"1159": "se",
|
||
"1160": "non",
|
||
"1161": "circonscriva",
|
||
"1162": "remarked",
|
||
"1163": "true",
|
||
"1164": "gentleman",
|
||
"1165": "always",
|
||
"1166": "aware",
|
||
"1167": "difference",
|
||
"1168": "bearing",
|
||
"1169": "vulgar",
|
||
"1170": "precisely",
|
||
"1171": "able",
|
||
"1172": "determine",
|
||
"1173": "consists",
|
||
"1174": "Allowing",
|
||
"1175": "remark",
|
||
"1176": "applied",
|
||
"1177": "force",
|
||
"1178": "outward",
|
||
"1179": "demeanor",
|
||
"1180": "felt",
|
||
"1181": "eventful",
|
||
"1182": "fully",
|
||
"1183": "applicable",
|
||
"1184": "moral",
|
||
"1185": "temperament",
|
||
"1186": "character",
|
||
"1187": "Nor",
|
||
"1188": "define",
|
||
"1189": "peculiarity",
|
||
"1190": "place",
|
||
"1191": "essentially",
|
||
"1192": "apart",
|
||
"1193": "beings",
|
||
"1194": "calling",
|
||
"1195": "habit",
|
||
"1196": "continual",
|
||
"1197": "pervading",
|
||
"1198": "trivial",
|
||
"1199": "actions",
|
||
"1200": "intruding",
|
||
"1201": "dalliance",
|
||
"1202": "interweaving",
|
||
"1203": "flashes",
|
||
"1204": "merriment",
|
||
"1205": "adders",
|
||
"1206": "writhe",
|
||
"1207": "grinning",
|
||
"1208": "masks",
|
||
"1209": "Persepolis",
|
||
"1210": "repeatedly",
|
||
"1211": "observing",
|
||
"1212": "levity",
|
||
"1213": "solemnity",
|
||
"1214": "descanted",
|
||
"1215": "matters",
|
||
"1216": "importance",
|
||
"1217": "certain",
|
||
"1218": "trepidation",
|
||
"1219": "degree",
|
||
"1220": "nervous",
|
||
"1221": "unction",
|
||
"1222": "action",
|
||
"1223": "speech",
|
||
"1224": "unquiet",
|
||
"1225": "excitability",
|
||
"1226": "unaccountable",
|
||
"1227": "filled",
|
||
"1228": "alarm",
|
||
"1229": "Frequently",
|
||
"1230": "middle",
|
||
"1231": "sentence",
|
||
"1232": "commencement",
|
||
"1233": "apparently",
|
||
"1234": "listening",
|
||
"1235": "deepest",
|
||
"1236": "if",
|
||
"1237": "either",
|
||
"1238": "momentary",
|
||
"1239": "expectation",
|
||
"1240": "visitor",
|
||
"1241": "sounds",
|
||
"1242": "existence",
|
||
"1243": "reveries",
|
||
"1244": "pauses",
|
||
"1245": "abstraction",
|
||
"1246": "page",
|
||
"1247": "poet",
|
||
"1248": "scholar",
|
||
"1249": "Politian",
|
||
"1250": "tragedy",
|
||
"1251": "Orfeo",
|
||
"1252": "native",
|
||
"1253": "near",
|
||
"1254": "passage",
|
||
"1255": "underlined",
|
||
"1256": "pencil",
|
||
"1257": "act",
|
||
"1258": "stirring",
|
||
"1259": "excitement",
|
||
"1260": "tainted",
|
||
"1261": "impurity",
|
||
"1262": "read",
|
||
"1263": "thrill",
|
||
"1264": "novel",
|
||
"1265": "emotion",
|
||
"1266": "sigh",
|
||
"1267": "blotted",
|
||
"1268": "fresh",
|
||
"1269": "interleaf",
|
||
"1270": "following",
|
||
"1271": "English",
|
||
"1272": "lines",
|
||
"1273": "written",
|
||
"1274": "recognizing",
|
||
"1275": "wast",
|
||
"1276": "love",
|
||
"1277": "For",
|
||
"1278": "did",
|
||
"1279": "pine",
|
||
"1280": "green",
|
||
"1281": "isle",
|
||
"1282": "A",
|
||
"1283": "fountain",
|
||
"1284": "shrine",
|
||
"1285": "fairy",
|
||
"1286": "fruits",
|
||
"1287": "flowers",
|
||
"1288": "And",
|
||
"1289": "mine",
|
||
"1290": "Ah",
|
||
"1291": "dream",
|
||
"1292": "bright",
|
||
"1293": "last",
|
||
"1294": "Ah",
|
||
"1295": "starry",
|
||
"1296": "Hope",
|
||
"1297": "didst",
|
||
"1298": "arise",
|
||
"1299": "overcast",
|
||
"1300": "Future",
|
||
"1301": "cries",
|
||
"1302": "Onward!\"—but",
|
||
"1303": "o'er",
|
||
"1304": "past",
|
||
"1305": "(Dim",
|
||
"1306": "gulf",
|
||
"1307": "hovering",
|
||
"1308": "Mute",
|
||
"1309": "motionless",
|
||
"1310": "For",
|
||
"1311": "The",
|
||
"1312": "(Such",
|
||
"1313": "language",
|
||
"1314": "holds",
|
||
"1315": "sands",
|
||
"1316": "shore",
|
||
"1317": "Shall",
|
||
"1318": "bloom",
|
||
"1319": "thunder",
|
||
"1320": "blasted",
|
||
"1321": "tree",
|
||
"1322": "Or",
|
||
"1323": "eagle",
|
||
"1324": "soar",
|
||
"1325": "trances",
|
||
"1326": "nightly",
|
||
"1327": "dreams",
|
||
"1328": "Are",
|
||
"1329": "glances",
|
||
"1330": "footstep",
|
||
"1331": "gleams",
|
||
"1332": "ethereal",
|
||
"1333": "dances",
|
||
"1334": "By",
|
||
"1335": "streams",
|
||
"1336": "accursed",
|
||
"1337": "They",
|
||
"1338": "bore",
|
||
"1339": "billow",
|
||
"1340": "Prom",
|
||
"1341": "Love",
|
||
"1342": "titled",
|
||
"1343": "age",
|
||
"1344": "crime",
|
||
"1345": "unholy",
|
||
"1346": "pillow",
|
||
"1347": "From",
|
||
"1348": "misty",
|
||
"1349": "clime",
|
||
"1350": "Where",
|
||
"1351": "weeps",
|
||
"1352": "willow",
|
||
"1353": "That",
|
||
"1354": "believed",
|
||
"1355": "author",
|
||
"1356": "acquainted",
|
||
"1357": "afforded",
|
||
"1358": "matter",
|
||
"1359": "surprise",
|
||
"1360": "extent",
|
||
"1361": "acquirements",
|
||
"1362": "took",
|
||
"1363": "concealing",
|
||
"1364": "observation",
|
||
"1365": "similar",
|
||
"1366": "discovery",
|
||
"1367": "date",
|
||
"1368": "confess",
|
||
"1369": "occasioned",
|
||
"1370": "amazement",
|
||
"1371": "originally",
|
||
"1372": "London",
|
||
"1373": "carefully",
|
||
"1374": "overscored",
|
||
"1375": "effectually",
|
||
"1376": "conceal",
|
||
"1377": "scrutinizing",
|
||
"1378": "conversation",
|
||
"1379": "particularly",
|
||
"1380": "inquired",
|
||
"1381": "years",
|
||
"1382": "previous",
|
||
"1383": "marriage",
|
||
"1384": "resided",
|
||
"1385": "answer",
|
||
"1386": "mistake",
|
||
"1387": "understand",
|
||
"1388": "visited",
|
||
"1389": "metropolis",
|
||
"1390": "Great",
|
||
"1391": "Britain",
|
||
"1392": "mention",
|
||
"1393": "course",
|
||
"1394": "giving",
|
||
"1395": "credit",
|
||
"1396": "report",
|
||
"1397": "involving",
|
||
"1398": "improbabilities",
|
||
"1399": "birth",
|
||
"1400": "education",
|
||
"1401": "Englishman",
|
||
"1402": "notice",
|
||
"1403": "tragedy—\"there",
|
||
"1404": "aside",
|
||
"1405": "portrait",
|
||
"1406": "Human",
|
||
"1407": "done",
|
||
"1408": "delineation",
|
||
"1409": "superhuman",
|
||
"1410": "beaming",
|
||
"1411": "smiles",
|
||
"1412": "lurked",
|
||
"1413": "incomprehensible",
|
||
"1414": "anomaly",
|
||
"1415": "fitful",
|
||
"1416": "stain",
|
||
"1417": "inseparable",
|
||
"1418": "perfection",
|
||
"1419": "folded",
|
||
"1420": "pointed",
|
||
"1421": "downward",
|
||
"1422": "curiously",
|
||
"1423": "fashioned",
|
||
"1424": "vase",
|
||
"1425": "One",
|
||
"1426": "foot",
|
||
"1427": "barely",
|
||
"1428": "touched",
|
||
"1429": "earth",
|
||
"1430": "discernible",
|
||
"1431": "atmosphere",
|
||
"1432": "encircle",
|
||
"1433": "enshrine",
|
||
"1434": "pair",
|
||
"1435": "delicately",
|
||
"1436": "imagined",
|
||
"1437": "wings",
|
||
"1438": "vigorous",
|
||
"1439": "Chapman",
|
||
"1440": "Bussy",
|
||
"1441": "D'Ambois",
|
||
"1442": "quivered",
|
||
"1443": "instinctively",
|
||
"1444": "lips",
|
||
"1445": "\"He",
|
||
"1446": "Roman",
|
||
"1447": "stand",
|
||
"1448": "Till",
|
||
"1449": "made",
|
||
"1450": "Come",
|
||
"1451": "table",
|
||
"1452": "richly",
|
||
"1453": "enameled",
|
||
"1454": "massive",
|
||
"1455": "goblets",
|
||
"1456": "fantastically",
|
||
"1457": "stained",
|
||
"1458": "two",
|
||
"1459": "Etruscan",
|
||
"1460": "vases",
|
||
"1461": "extraordinary",
|
||
"1462": "model",
|
||
"1463": "foreground",
|
||
"1464": "supposed",
|
||
"1465": "Johannisberger",
|
||
"1466": "us",
|
||
"1467": "drink",
|
||
"1468": "indeed",
|
||
"1469": "cherub",
|
||
"1470": "golden",
|
||
"1471": "hammer",
|
||
"1472": "ring",
|
||
"1473": "sunrise—\"it",
|
||
"1474": "Let",
|
||
"1475": "pour",
|
||
"1476": "offering",
|
||
"1477": "yon",
|
||
"1478": "gaudy",
|
||
"1479": "lamps",
|
||
"1480": "subdue",
|
||
"1481": "pledge",
|
||
"1482": "bumper",
|
||
"1483": "swallowed",
|
||
"1484": "succession",
|
||
"1485": "several",
|
||
"1486": "wine",
|
||
"1487": "resuming",
|
||
"1488": "desultory",
|
||
"1489": "held",
|
||
"1490": "censer",
|
||
"1491": "vases—\"to",
|
||
"1492": "business",
|
||
"1493": "therefore",
|
||
"1494": "framed",
|
||
"1495": "bower",
|
||
"1496": "erected",
|
||
"1497": "medley",
|
||
"1498": "architectural",
|
||
"1499": "chastity",
|
||
"1500": "Ionia",
|
||
"1501": "offended",
|
||
"1502": "antediluvian",
|
||
"1503": "devices",
|
||
"1504": "sphynxes",
|
||
"1505": "outstretched",
|
||
"1506": "carpets",
|
||
"1507": "effect",
|
||
"1508": "incongruous",
|
||
"1509": "timid",
|
||
"1510": "Proprieties",
|
||
"1511": "especially",
|
||
"1512": "bugbears",
|
||
"1513": "terrify",
|
||
"1514": "mankind",
|
||
"1515": "contemplation",
|
||
"1516": "decorist",
|
||
"1517": "sublimation",
|
||
"1518": "folly",
|
||
"1519": "palled",
|
||
"1520": "fitter",
|
||
"1521": "purpose",
|
||
"1522": "arabesque",
|
||
"1523": "writhing",
|
||
"1524": "delirium",
|
||
"1525": "scene",
|
||
"1526": "fashioning",
|
||
"1527": "wilder",
|
||
"1528": "land",
|
||
"1529": "real",
|
||
"1530": "whither",
|
||
"1531": "departing",
|
||
"1532": "paused",
|
||
"1533": "bent",
|
||
"1534": "listen",
|
||
"1535": "hear",
|
||
"1536": "At",
|
||
"1537": "erecting",
|
||
"1538": "looked",
|
||
"1539": "upwards",
|
||
"1540": "ejaculated",
|
||
"1541": "Bishop",
|
||
"1542": "To",
|
||
"1543": "confessing",
|
||
"1544": "threw",
|
||
"1545": "quick",
|
||
"1546": "step",
|
||
"1547": "loud",
|
||
"1548": "knock",
|
||
"1549": "succeeded",
|
||
"1550": "hastening",
|
||
"1551": "anticipate",
|
||
"1552": "second",
|
||
"1553": "disturbance",
|
||
"1554": "household",
|
||
"1555": "faltered",
|
||
"1556": "choking",
|
||
"1557": "incoherent",
|
||
"1558": "mistress!—my",
|
||
"1559": "mistress!—Poisoned!—poisoned",
|
||
"1560": "Oh",
|
||
"1561": "Bewildered",
|
||
"1562": "flew",
|
||
"1563": "endeavored",
|
||
"1564": "arouse",
|
||
"1565": "sleeper",
|
||
"1566": "startling",
|
||
"1567": "intelligence",
|
||
"1568": "lately",
|
||
"1569": "stagered",
|
||
"1570": "cracked",
|
||
"1571": "blackened",
|
||
"1572": "goblet",
|
||
"1573": "consciousness",
|
||
"1574": "terrible",
|
||
"1575": "truth",
|
||
"1576": "flashed",
|
||
"1577": "TELL",
|
||
"1578": "TALE",
|
||
"1579": "HEART",
|
||
"1580": "True",
|
||
"1581": "dreadfully",
|
||
"1582": "why",
|
||
"1583": "mad",
|
||
"1584": "disease",
|
||
"1585": "sharpened",
|
||
"1586": "destroyed",
|
||
"1587": "dulled",
|
||
"1588": "Above",
|
||
"1589": "acute",
|
||
"1590": "heaven",
|
||
"1591": "hell",
|
||
"1592": "Hearken",
|
||
"1593": "observe",
|
||
"1594": "healthily",
|
||
"1595": "calmly",
|
||
"1596": "tell",
|
||
"1597": "story",
|
||
"1598": "impossible",
|
||
"1599": "idea",
|
||
"1600": "brain",
|
||
"1601": "conceived",
|
||
"1602": "haunted",
|
||
"1603": "Object",
|
||
"1604": "Passion",
|
||
"1605": "loved",
|
||
"1606": "wronged",
|
||
"1607": "given",
|
||
"1608": "insult",
|
||
"1609": "resembled",
|
||
"1610": "vulture",
|
||
"1611": "blue",
|
||
"1612": "film",
|
||
"1613": "Whenever",
|
||
"1614": "blood",
|
||
"1615": "ran",
|
||
"1616": "degrees",
|
||
"1617": "gradually",
|
||
"1618": "thus",
|
||
"1619": "rid",
|
||
"1620": "forever",
|
||
"1621": "point",
|
||
"1622": "Madmen",
|
||
"1623": "nothing",
|
||
"1624": "wisely",
|
||
"1625": "caution",
|
||
"1626": "foresight",
|
||
"1627": "dissimulation",
|
||
"1628": "went",
|
||
"1629": "work",
|
||
"1630": "kinder",
|
||
"1631": "week",
|
||
"1632": "killed",
|
||
"1633": "latch",
|
||
"1634": "opened",
|
||
"1635": "gently",
|
||
"1636": "sufficient",
|
||
"1637": "put",
|
||
"1638": "lantern",
|
||
"1639": "shone",
|
||
"1640": "thrust",
|
||
"1641": "would",
|
||
"1642": "cunningly",
|
||
"1643": "moved",
|
||
"1644": "disturb",
|
||
"1645": "sleep",
|
||
"1646": "madman",
|
||
"1647": "wise",
|
||
"1648": "undid",
|
||
"1649": "cautiously",
|
||
"1650": "hinges",
|
||
"1651": "creaked",
|
||
"1652": "just",
|
||
"1653": "thin",
|
||
"1654": "ray",
|
||
"1655": "seven",
|
||
"1656": "nights",
|
||
"1657": "vexed",
|
||
"1658": "Evil",
|
||
"1659": "Eye",
|
||
"1660": "boldly",
|
||
"1661": "courageously",
|
||
"1662": "hearty",
|
||
"1663": "inquiring",
|
||
"1664": "passed",
|
||
"1665": "So",
|
||
"1666": "profound",
|
||
"1667": "suspect",
|
||
"1668": "twelve",
|
||
"1669": "slept",
|
||
"1670": "eighth",
|
||
"1671": "usually",
|
||
"1672": "cautious",
|
||
"1673": "watch",
|
||
"1674": "moves",
|
||
"1675": "quickly",
|
||
"1676": "Never",
|
||
"1677": "powers",
|
||
"1678": "sagacity",
|
||
"1679": "contain",
|
||
"1680": "feelings",
|
||
"1681": "triumph",
|
||
"1682": "secret",
|
||
"1683": "deeds",
|
||
"1684": "fairly",
|
||
"1685": "chuckled",
|
||
"1686": "startled",
|
||
"1687": "may",
|
||
"1688": "drew",
|
||
"1689": "His",
|
||
"1690": "pitch",
|
||
"1691": "thick",
|
||
"1692": "shutters",
|
||
"1693": "fear",
|
||
"1694": "robbers",
|
||
"1695": "kept",
|
||
"1696": "pushing",
|
||
"1697": "steadily",
|
||
"1698": "open",
|
||
"1699": "thumb",
|
||
"1700": "slipped",
|
||
"1701": "tin",
|
||
"1702": "fastening",
|
||
"1703": "crying",
|
||
"1704": "quite",
|
||
"1705": "muscle",
|
||
"1706": "meantime",
|
||
"1707": "lie",
|
||
"1708": "sitting",
|
||
"1709": "hearkening",
|
||
"1710": "watches",
|
||
"1711": "wall",
|
||
"1712": "Presently",
|
||
"1713": "groan",
|
||
"1714": "mortal",
|
||
"1715": "pain",
|
||
"1716": "grief",
|
||
"1717": "stifled",
|
||
"1718": "arises",
|
||
"1719": "bottom",
|
||
"1720": "overcharged",
|
||
"1721": "awe",
|
||
"1722": "welled",
|
||
"1723": "deepening",
|
||
"1724": "dreadful",
|
||
"1725": "echo",
|
||
"1726": "terrors",
|
||
"1727": "distracted",
|
||
"1728": "pitied",
|
||
"1729": "lying",
|
||
"1730": "awake",
|
||
"1731": "noise",
|
||
"1732": "fears",
|
||
"1733": "growing",
|
||
"1734": "trying",
|
||
"1735": "causeless",
|
||
"1736": "saying",
|
||
"1737": "wind",
|
||
"1738": "chimney",
|
||
"1739": "mouse",
|
||
"1740": "crossing",
|
||
"1741": "floor",
|
||
"1742": "merely",
|
||
"1743": "cricket",
|
||
"1744": "chirp",
|
||
"1745": "comfort",
|
||
"1746": "suppositions",
|
||
"1747": "because",
|
||
"1748": "approaching",
|
||
"1749": "enveloped",
|
||
"1750": "mournful",
|
||
"1751": "influence",
|
||
"1752": "unperceived",
|
||
"1753": "caused",
|
||
"1754": "feel",
|
||
"1755": "presence",
|
||
"1756": "When",
|
||
"1757": "waited",
|
||
"1758": "patiently",
|
||
"1759": "resolved",
|
||
"1760": "crevice",
|
||
"1761": "imagine",
|
||
"1762": "stealthily",
|
||
"1763": "until",
|
||
"1764": "thread",
|
||
"1765": "spider",
|
||
"1766": "shot",
|
||
"1767": "grew",
|
||
"1768": "furious",
|
||
"1769": "perfect",
|
||
"1770": "distinctness",
|
||
"1771": "dull",
|
||
"1772": "hideous",
|
||
"1773": "veil",
|
||
"1774": "chilled",
|
||
"1775": "marrow",
|
||
"1776": "bones",
|
||
"1777": "else",
|
||
"1778": "directed",
|
||
"1779": "instinct",
|
||
"1780": "damned",
|
||
"1781": "spot",
|
||
"1782": "told",
|
||
"1783": "madness",
|
||
"1784": "acuteness",
|
||
"1785": "ears",
|
||
"1786": "makes",
|
||
"1787": "cotton",
|
||
"1788": "beating",
|
||
"1789": "increased",
|
||
"1790": "fury",
|
||
"1791": "drum",
|
||
"1792": "stimulates",
|
||
"1793": "soldier",
|
||
"1794": "courage",
|
||
"1795": "refrained",
|
||
"1796": "breathed",
|
||
"1797": "tried",
|
||
"1798": "maintain",
|
||
"1799": "Meantime",
|
||
"1800": "hellish",
|
||
"1801": "tattoo",
|
||
"1802": "quicker",
|
||
"1803": "louder",
|
||
"1804": "extreme",
|
||
"1805": "moment!—do",
|
||
"1806": "mark",
|
||
"1807": "dead",
|
||
"1808": "house",
|
||
"1809": "excited",
|
||
"1810": "uncontrollable",
|
||
"1811": "minutes",
|
||
"1812": "longer",
|
||
"1813": "new",
|
||
"1814": "anxiety",
|
||
"1815": "seized",
|
||
"1816": "neighbor",
|
||
"1817": "come",
|
||
"1818": "yell",
|
||
"1819": "leaped",
|
||
"1820": "shrieked",
|
||
"1821": "dragged",
|
||
"1822": "pulled",
|
||
"1823": "smiled",
|
||
"1824": "gaily",
|
||
"1825": "find",
|
||
"1826": "deed",
|
||
"1827": "beat",
|
||
"1828": "vex",
|
||
"1829": "ceased",
|
||
"1830": "removed",
|
||
"1831": "examined",
|
||
"1832": "corpse",
|
||
"1833": "stone",
|
||
"1834": "placed",
|
||
"1835": "pulsation",
|
||
"1836": "trouble",
|
||
"1837": "If",
|
||
"1838": "describe",
|
||
"1839": "precautions",
|
||
"1840": "concealment",
|
||
"1841": "body",
|
||
"1842": "waned",
|
||
"1843": "worked",
|
||
"1844": "hastily",
|
||
"1845": "three",
|
||
"1846": "planks",
|
||
"1847": "flooring",
|
||
"1848": "deposited",
|
||
"1849": "between",
|
||
"1850": "scantlings",
|
||
"1851": "replaced",
|
||
"1852": "boards",
|
||
"1853": "cleverly",
|
||
"1854": "detected",
|
||
"1855": "wrong",
|
||
"1856": "wash",
|
||
"1857": "bloodspot",
|
||
"1858": "whatever",
|
||
"1859": "wary",
|
||
"1860": "labors",
|
||
"1861": "four",
|
||
"1862": "o'clock",
|
||
"1863": "bell",
|
||
"1864": "knocking",
|
||
"1865": "street",
|
||
"1866": "introduced",
|
||
"1867": "themselves",
|
||
"1868": "suavity",
|
||
"1869": "officers",
|
||
"1870": "police",
|
||
"1871": "suspicion",
|
||
"1872": "foul",
|
||
"1873": "play",
|
||
"1874": "aroused",
|
||
"1875": "information",
|
||
"1876": "lodged",
|
||
"1877": "office",
|
||
"1878": "deputed",
|
||
"1879": "premises",
|
||
"1880": "bade",
|
||
"1881": "gentlemen",
|
||
"1882": "welcome",
|
||
"1883": "absent",
|
||
"1884": "country",
|
||
"1885": "visitors",
|
||
"1886": "led",
|
||
"1887": "showed",
|
||
"1888": "treasures",
|
||
"1889": "secure",
|
||
"1890": "undisturbed",
|
||
"1891": "confidence",
|
||
"1892": "brought",
|
||
"1893": "chairs",
|
||
"1894": "desired",
|
||
"1895": "rest",
|
||
"1896": "fatigues",
|
||
"1897": "audacity",
|
||
"1898": "reposed",
|
||
"1899": "satisfied",
|
||
"1900": "convinced",
|
||
"1901": "ease",
|
||
"1902": "sat",
|
||
"1903": "answered",
|
||
"1904": "cheerily",
|
||
"1905": "chatted",
|
||
"1906": "familiar",
|
||
"1907": "ere",
|
||
"1908": "getting",
|
||
"1909": "wished",
|
||
"1910": "gone",
|
||
"1911": "ached",
|
||
"1912": "fancied",
|
||
"1913": "distinct;—it",
|
||
"1914": "talked",
|
||
"1915": "freely",
|
||
"1916": "get",
|
||
"1917": "feeling",
|
||
"1918": "gained",
|
||
"1919": "definitiveness",
|
||
"1920": "fluently",
|
||
"1921": "heightened",
|
||
"1922": "gasped",
|
||
"1923": "breath",
|
||
"1924": "vehemently",
|
||
"1925": "arose",
|
||
"1926": "argued",
|
||
"1927": "trifles",
|
||
"1928": "high",
|
||
"1929": "key",
|
||
"1930": "violent",
|
||
"1931": "gesticulations",
|
||
"1932": "paced",
|
||
"1933": "strides",
|
||
"1934": "observations",
|
||
"1935": "O",
|
||
"1936": "God",
|
||
"1937": "foamed",
|
||
"1938": "raved",
|
||
"1939": "swore",
|
||
"1940": "swung",
|
||
"1941": "chair",
|
||
"1942": "grated",
|
||
"1943": "continually",
|
||
"1944": "pleasantly",
|
||
"1945": "Almighty",
|
||
"1946": "God!—no",
|
||
"1947": "heard!—they",
|
||
"1948": "suspected!—they",
|
||
"1949": "knew!—they",
|
||
"1950": "mockery",
|
||
"1951": "horror!—this",
|
||
"1952": "agony",
|
||
"1953": "Anything",
|
||
"1954": "tolerable",
|
||
"1955": "derision",
|
||
"1956": "bear",
|
||
"1957": "hypocritical",
|
||
"1958": "scream",
|
||
"1959": "die!—and",
|
||
"1960": "again!—hark",
|
||
"1961": "Villains",
|
||
"1962": "dissemble",
|
||
"1963": "admit",
|
||
"1964": "deed!—tear",
|
||
"1965": "planks!—here",
|
||
"1966": "here!—it",
|
||
"1967": "OF",
|
||
"1968": "RAGGED",
|
||
"1969": "MOUNTAINS",
|
||
"1970": "During",
|
||
"1971": "fall",
|
||
"1972": "year",
|
||
"1973": "1827",
|
||
"1974": "residing",
|
||
"1975": "Charlottesville",
|
||
"1976": "Virginia",
|
||
"1977": "casually",
|
||
"1978": "Mr.",
|
||
"1979": "Augustus",
|
||
"1980": "Bedloe",
|
||
"1981": "remarkable",
|
||
"1982": "respect",
|
||
"1983": "interest",
|
||
"1984": "curiosity",
|
||
"1985": "comprehend",
|
||
"1986": "physical",
|
||
"1987": "relations",
|
||
"1988": "Of",
|
||
"1989": "family",
|
||
"1990": "obtain",
|
||
"1991": "satisfactory",
|
||
"1992": "account",
|
||
"1993": "Whence",
|
||
"1994": "ascertained",
|
||
"1995": "Even",
|
||
"1996": "something",
|
||
"1997": "perplexed",
|
||
"1998": "certainly",
|
||
"1999": "speaking",
|
||
"2000": "imagining",
|
||
"2001": "hundred",
|
||
"2002": "regard",
|
||
"2003": "personal",
|
||
"2004": "tall",
|
||
"2005": "stooped",
|
||
"2006": "emaciated",
|
||
"2007": "complexion",
|
||
"2008": "bloodless",
|
||
"2009": "flexible",
|
||
"2010": "teeth",
|
||
"2011": "uneven",
|
||
"2012": "smile",
|
||
"2013": "unpleasing",
|
||
"2014": "variation",
|
||
"2015": "phaseless",
|
||
"2016": "unceasing",
|
||
"2017": "abnormally",
|
||
"2018": "cat",
|
||
"2019": "pupils",
|
||
"2020": "accession",
|
||
"2021": "dimunition",
|
||
"2022": "underwent",
|
||
"2023": "contraction",
|
||
"2024": "dilation",
|
||
"2025": "observed",
|
||
"2026": "feline",
|
||
"2027": "tribe",
|
||
"2028": "orbs",
|
||
"2029": "seeming",
|
||
"2030": "emit",
|
||
"2031": "luminous",
|
||
"2032": "reflected",
|
||
"2033": "intrinsic",
|
||
"2034": "lustre",
|
||
"2035": "candle",
|
||
"2036": "ordinary",
|
||
"2037": "condition",
|
||
"2038": "totally",
|
||
"2039": "vapid",
|
||
"2040": "filmy",
|
||
"2041": "convey",
|
||
"2042": "interred",
|
||
"2043": "These",
|
||
"2044": "peculiarities",
|
||
"2045": "cause",
|
||
"2046": "annoyance",
|
||
"2047": "alluding",
|
||
"2048": "sort",
|
||
"2049": "explanatory",
|
||
"2050": "apologetic",
|
||
"2051": "strain",
|
||
"2052": "impressed",
|
||
"2053": "painfully",
|
||
"2054": "soon",
|
||
"2055": "accustomed",
|
||
"2056": "uneasiness",
|
||
"2057": "wore",
|
||
"2058": "insinuate",
|
||
"2059": "directly",
|
||
"2060": "assert",
|
||
"2061": "physically",
|
||
"2062": "series",
|
||
"2063": "neuralgic",
|
||
"2064": "attacks",
|
||
"2065": "reduced",
|
||
"2066": "usual",
|
||
"2067": "attended",
|
||
"2068": "physician",
|
||
"2069": "named",
|
||
"2070": "Templeton",
|
||
"2071": "seventy",
|
||
"2072": "encountered",
|
||
"2073": "Saratoga",
|
||
"2074": "received",
|
||
"2075": "benefit",
|
||
"2076": "result",
|
||
"2077": "arrangement",
|
||
"2078": "Doctor",
|
||
"2079": "latter",
|
||
"2080": "consideration",
|
||
"2081": "liberal",
|
||
"2082": "annual",
|
||
"2083": "allowance",
|
||
"2084": "consented",
|
||
"2085": "devote",
|
||
"2086": "medical",
|
||
"2087": "experience",
|
||
"2088": "exclusively",
|
||
"2089": "care",
|
||
"2090": "invalid",
|
||
"2091": "traveller",
|
||
"2092": "younger",
|
||
"2093": "Paris",
|
||
"2094": "convert",
|
||
"2095": "measure",
|
||
"2096": "doctrines",
|
||
"2097": "Mesmer",
|
||
"2098": "altogether",
|
||
"2099": "magnetic",
|
||
"2100": "remedies",
|
||
"2101": "alleviating",
|
||
"2102": "pains",
|
||
"2103": "patient",
|
||
"2104": "success",
|
||
"2105": "naturally",
|
||
"2106": "inspired",
|
||
"2107": "educed",
|
||
"2108": "enthusiasts",
|
||
"2109": "struggled",
|
||
"2110": "hard",
|
||
"2111": "make",
|
||
"2112": "thorough",
|
||
"2113": "pupil",
|
||
"2114": "finally",
|
||
"2115": "induce",
|
||
"2116": "sufferer",
|
||
"2117": "submit",
|
||
"2118": "numerous",
|
||
"2119": "experiments.—By",
|
||
"2120": "frequent",
|
||
"2121": "repetition",
|
||
"2122": "late",
|
||
"2123": "common",
|
||
"2124": "attract",
|
||
"2125": "write",
|
||
"2126": "rarely",
|
||
"2127": "America",
|
||
"2128": "mean",
|
||
"2129": "grown",
|
||
"2130": "strongly",
|
||
"2131": "marked",
|
||
"2132": "rapport",
|
||
"2133": "relation",
|
||
"2134": "prepared",
|
||
"2135": "extended",
|
||
"2136": "limits",
|
||
"2137": "simple",
|
||
"2138": "producing",
|
||
"2139": "attained",
|
||
"2140": "intensity",
|
||
"2141": "attempt",
|
||
"2142": "somnolency",
|
||
"2143": "mesmerist",
|
||
"2144": "entirely",
|
||
"2145": "fift",
|
||
"2146": "sixth",
|
||
"2147": "partially",
|
||
"2148": "Only",
|
||
"2149": "twelfth",
|
||
"2150": "complete",
|
||
"2151": "After",
|
||
"2152": "succumbed",
|
||
"2153": "instantaneously",
|
||
"2154": "volition",
|
||
"2155": "operator",
|
||
"2156": "unaware",
|
||
"2157": "1845",
|
||
"2158": "miracles",
|
||
"2159": "witnessed",
|
||
"2160": "daily",
|
||
"2161": "thousands",
|
||
"2162": "dare",
|
||
"2163": "venture",
|
||
"2164": "record",
|
||
"2165": "impossibility",
|
||
"2166": "serious",
|
||
"2167": "fact",
|
||
"2168": "highest",
|
||
"2169": "sensitive",
|
||
"2170": "excitable",
|
||
"2171": "enthusiastic",
|
||
"2172": "creative",
|
||
"2173": "derived",
|
||
"2174": "additional",
|
||
"2175": "habitual",
|
||
"2176": "use",
|
||
"2177": "morphine",
|
||
"2178": "quantity",
|
||
"2179": "exist",
|
||
"2180": "practice",
|
||
"2181": "dose",
|
||
"2182": "breakfast",
|
||
"2183": "cup",
|
||
"2184": "strong",
|
||
"2185": "coffee",
|
||
"2186": "ate",
|
||
"2187": "forenoon",
|
||
"2188": "set",
|
||
"2189": "dog",
|
||
"2190": "ramble",
|
||
"2191": "chain",
|
||
"2192": "dreary",
|
||
"2193": "hills",
|
||
"2194": "westward",
|
||
"2195": "southward",
|
||
"2196": "dignified",
|
||
"2197": "Ragged",
|
||
"2198": "Mountains",
|
||
"2199": "warm",
|
||
"2200": "November",
|
||
"2201": "interregnum",
|
||
"2202": "seasons",
|
||
"2203": "termed",
|
||
"2204": "Indian",
|
||
"2205": "Summer",
|
||
"2206": "return",
|
||
"2207": "About",
|
||
"2208": "eight",
|
||
"2209": "seriously",
|
||
"2210": "alarmed",
|
||
"2211": "protracted",
|
||
"2212": "absence",
|
||
"2213": "setting",
|
||
"2214": "unexpectedly",
|
||
"2215": "health",
|
||
"2216": "worse",
|
||
"2217": "spirits",
|
||
"2218": "expedition",
|
||
"2219": "events",
|
||
"2220": "detained",
|
||
"2221": "nine",
|
||
"2222": "mountains",
|
||
"2223": "ten",
|
||
"2224": "gorge",
|
||
"2225": "followed",
|
||
"2226": "windings",
|
||
"2227": "pass",
|
||
"2228": "scenery",
|
||
"2229": "sides",
|
||
"2230": "entitled",
|
||
"2231": "grand",
|
||
"2232": "indescribable",
|
||
"2233": "delicious",
|
||
"2234": "aspect",
|
||
"2235": "desolation",
|
||
"2236": "solitude",
|
||
"2237": "virgin",
|
||
"2238": "believing",
|
||
"2239": "sods",
|
||
"2240": "grey",
|
||
"2241": "rocks",
|
||
"2242": "trod",
|
||
"2243": "trodden",
|
||
"2244": "secluded",
|
||
"2245": "inaccessible",
|
||
"2246": "accidents",
|
||
"2247": "ravine",
|
||
"2248": "adventurer",
|
||
"2249": "penetrated",
|
||
"2250": "mist",
|
||
"2251": "smoke",
|
||
"2252": "distinguishes",
|
||
"2253": "heavily",
|
||
"2254": "objects",
|
||
"2255": "served",
|
||
"2256": "deepen",
|
||
"2257": "impressions",
|
||
"2258": "created",
|
||
"2259": "dense",
|
||
"2260": "pleasant",
|
||
"2261": "fog",
|
||
"2262": "dozen",
|
||
"2263": "yards",
|
||
"2264": "path",
|
||
"2265": "excessively",
|
||
"2266": "sinuous",
|
||
"2267": "journeyed",
|
||
"2268": "customary",
|
||
"2269": "enduing",
|
||
"2270": "external",
|
||
"2271": "quivering",
|
||
"2272": "leaf",
|
||
"2273": "hue",
|
||
"2274": "blade",
|
||
"2275": "shape",
|
||
"2276": "trefoil",
|
||
"2277": "humming",
|
||
"2278": "bee",
|
||
"2279": "gleaming",
|
||
"2280": "dew",
|
||
"2281": "drop",
|
||
"2282": "faint",
|
||
"2283": "odours",
|
||
"2284": "forest",
|
||
"2285": "universe",
|
||
"2286": "suggestion",
|
||
"2287": "motley",
|
||
"2288": "train",
|
||
"2289": "rhapsodical",
|
||
"2290": "immethodical",
|
||
"2291": "Busied",
|
||
"2292": "walked",
|
||
"2293": "deepened",
|
||
"2294": "absolute",
|
||
"2295": "groping",
|
||
"2296": "possessed",
|
||
"2297": "species",
|
||
"2298": "hesitation",
|
||
"2299": "tremor,—I",
|
||
"2300": "feared",
|
||
"2301": "tread",
|
||
"2302": "lest",
|
||
"2303": "precipitated",
|
||
"2304": "remembered",
|
||
"2305": "stories",
|
||
"2306": "Hills",
|
||
"2307": "uncouth",
|
||
"2308": "fierce",
|
||
"2309": "races",
|
||
"2310": "tenanted",
|
||
"2311": "groves",
|
||
"2312": "caverns",
|
||
"2313": "fancies",
|
||
"2314": "disconcerted",
|
||
"2315": "distressing",
|
||
"2316": "Very",
|
||
"2317": "arrested",
|
||
"2318": "thing",
|
||
"2319": "surprised",
|
||
"2320": "trump",
|
||
"2321": "Archangel",
|
||
"2322": "astounding",
|
||
"2323": "source",
|
||
"2324": "perplexity",
|
||
"2325": "rattling",
|
||
"2326": "jingling",
|
||
"2327": "bunch",
|
||
"2328": "keys",
|
||
"2329": "dusky",
|
||
"2330": "visaged",
|
||
"2331": "naked",
|
||
"2332": "rushed",
|
||
"2333": "instrument",
|
||
"2334": "composed",
|
||
"2335": "assemblage",
|
||
"2336": "steel",
|
||
"2337": "rings",
|
||
"2338": "vigorously",
|
||
"2339": "Scarcely",
|
||
"2340": "disappeared",
|
||
"2341": "panting",
|
||
"2342": "glaring",
|
||
"2343": "darted",
|
||
"2344": "beast",
|
||
"2345": "mistaken",
|
||
"2346": "hyena",
|
||
"2347": "monster",
|
||
"2348": "relieved",
|
||
"2349": "sure",
|
||
"2350": "dreamed",
|
||
"2351": "waking",
|
||
"2352": "briskly",
|
||
"2353": "forward",
|
||
"2354": "rubbed",
|
||
"2355": "aloud",
|
||
"2356": "pinched",
|
||
"2357": "spring",
|
||
"2358": "view",
|
||
"2359": "stooping",
|
||
"2360": "bathed",
|
||
"2361": "hands",
|
||
"2362": "neck",
|
||
"2363": "dissipate",
|
||
"2364": "equivocal",
|
||
"2365": "sensations",
|
||
"2366": "hitherto",
|
||
"2367": "annoyed",
|
||
"2368": "complacently",
|
||
"2369": "overcome",
|
||
"2370": "exertion",
|
||
"2371": "oppressive",
|
||
"2372": "closeness",
|
||
"2373": "seated",
|
||
"2374": "feeble",
|
||
"2375": "gleam",
|
||
"2376": "sunshine",
|
||
"2377": "leaves",
|
||
"2378": "faintly",
|
||
"2379": "definitely",
|
||
"2380": "wonderingly",
|
||
"2381": "Its",
|
||
"2382": "stupefied",
|
||
"2383": "astonishment",
|
||
"2384": "upward",
|
||
"2385": "palm",
|
||
"2386": "state",
|
||
"2387": "fearful",
|
||
"2388": "serve",
|
||
"2389": "command",
|
||
"2390": "sensation",
|
||
"2391": "heat",
|
||
"2392": "intolerable",
|
||
"2393": "odour",
|
||
"2394": "loaded",
|
||
"2395": "breeze.—A",
|
||
"2396": "continuous",
|
||
"2397": "murmur",
|
||
"2398": "flowing",
|
||
"2399": "river",
|
||
"2400": "intermingled",
|
||
"2401": "hum",
|
||
"2402": "voices",
|
||
"2403": "While",
|
||
"2404": "listened",
|
||
"2405": "extremity",
|
||
"2406": "need",
|
||
"2407": "brief",
|
||
"2408": "gust",
|
||
"2409": "incumbent",
|
||
"2410": "wand",
|
||
"2411": "enchanter",
|
||
"2412": "mountain",
|
||
"2413": "vast",
|
||
"2414": "plain",
|
||
"2415": "wound",
|
||
"2416": "majestic",
|
||
"2417": "On",
|
||
"2418": "margin",
|
||
"2419": "Eastern",
|
||
"2420": "Arabian",
|
||
"2421": "Tales",
|
||
"2422": "described",
|
||
"2423": "level",
|
||
"2424": "town",
|
||
"2425": "perceive",
|
||
"2426": "nook",
|
||
"2427": "corner",
|
||
"2428": "delineated",
|
||
"2429": "map",
|
||
"2430": "streets",
|
||
"2431": "crossed",
|
||
"2432": "irregularly",
|
||
"2433": "alleys",
|
||
"2434": "swarmed",
|
||
"2435": "inhabitants",
|
||
"2436": "houses",
|
||
"2437": "wildly",
|
||
"2438": "picturesque",
|
||
"2439": "wilderness",
|
||
"2440": "balconies",
|
||
"2441": "verandahs",
|
||
"2442": "minarets",
|
||
"2443": "carved",
|
||
"2444": "oriels",
|
||
"2445": "Bazaars",
|
||
"2446": "abounded",
|
||
"2447": "displayed",
|
||
"2448": "wares",
|
||
"2449": "infinite",
|
||
"2450": "variety",
|
||
"2451": "silks",
|
||
"2452": "muslins",
|
||
"2453": "dazzling",
|
||
"2454": "cutlery",
|
||
"2455": "jewels",
|
||
"2456": "gems",
|
||
"2457": "banners",
|
||
"2458": "palanquins",
|
||
"2459": "litters",
|
||
"2460": "stately",
|
||
"2461": "dames",
|
||
"2462": "veiled",
|
||
"2463": "elephants",
|
||
"2464": "gorgeously",
|
||
"2465": "caparisoned",
|
||
"2466": "idols",
|
||
"2467": "grotesquely",
|
||
"2468": "hewn",
|
||
"2469": "drums",
|
||
"2470": "gongs",
|
||
"2471": "spears",
|
||
"2472": "maces",
|
||
"2473": "crowd",
|
||
"2474": "clamour",
|
||
"2475": "general",
|
||
"2476": "intricacy",
|
||
"2477": "confusion",
|
||
"2478": "million",
|
||
"2479": "yellow",
|
||
"2480": "turbaned",
|
||
"2481": "robed",
|
||
"2482": "beard",
|
||
"2483": "roamed",
|
||
"2484": "countless",
|
||
"2485": "holy",
|
||
"2486": "filleted",
|
||
"2487": "bulls",
|
||
"2488": "legions",
|
||
"2489": "filthy",
|
||
"2490": "sacred",
|
||
"2491": "ape",
|
||
"2492": "clambered",
|
||
"2493": "chattering",
|
||
"2494": "shrieking",
|
||
"2495": "mosques",
|
||
"2496": "clung",
|
||
"2497": "swarming",
|
||
"2498": "banks",
|
||
"2499": "descended",
|
||
"2500": "flights",
|
||
"2501": "leading",
|
||
"2502": "bathing",
|
||
"2503": "fleets",
|
||
"2504": "deeply",
|
||
"2505": "burthened",
|
||
"2506": "ships",
|
||
"2507": "encumbered",
|
||
"2508": "Beyond",
|
||
"2509": "groups",
|
||
"2510": "cocoa",
|
||
"2511": "gigantic",
|
||
"2512": "weird",
|
||
"2513": "trees",
|
||
"2514": "field",
|
||
"2515": "rice",
|
||
"2516": "thatched",
|
||
"2517": "hut",
|
||
"2518": "peasant",
|
||
"2519": "tank",
|
||
"2520": "stray",
|
||
"2521": "temple",
|
||
"2522": "gipsy",
|
||
"2523": "camp",
|
||
"2524": "solitary",
|
||
"2525": "maiden",
|
||
"2526": "taking",
|
||
"2527": "pitcher",
|
||
"2528": "unmistakeable",
|
||
"2529": "idiosyncrasy",
|
||
"2530": "rigorously",
|
||
"2531": "consistent",
|
||
"2532": "doubting",
|
||
"2533": "really",
|
||
"2534": "tests",
|
||
"2535": "suspects",
|
||
"2536": "fails",
|
||
"2537": "confirm",
|
||
"2538": "Thus",
|
||
"2539": "Novalis",
|
||
"2540": "errs",
|
||
"2541": "Had",
|
||
"2542": "vision",
|
||
"2543": "occurred",
|
||
"2544": "suspecting",
|
||
"2545": "occurring",
|
||
"2546": "suspected",
|
||
"2547": "tested",
|
||
"2548": "forced",
|
||
"2549": "class",
|
||
"2550": "phenomena",
|
||
"2551": "Dr.",
|
||
"2552": "proceed",
|
||
"2553": "regarding",
|
||
"2554": "immense",
|
||
"2555": "populace",
|
||
"2556": "crowding",
|
||
"2557": "avenue",
|
||
"2558": "exhibiting",
|
||
"2559": "wildest",
|
||
"2560": "impulse",
|
||
"2561": "intensely",
|
||
"2562": "imbued",
|
||
"2563": "going",
|
||
"2564": "important",
|
||
"2565": "exactly",
|
||
"2566": "understanding",
|
||
"2567": "Against",
|
||
"2568": "environed",
|
||
"2569": "experienced",
|
||
"2570": "sentiment",
|
||
"2571": "animosity",
|
||
"2572": "shrank",
|
||
"2573": "swiftly",
|
||
"2574": "circuitous",
|
||
"2575": "reached",
|
||
"2576": "contention",
|
||
"2577": "party",
|
||
"2578": "clad",
|
||
"2579": "garments",
|
||
"2580": "European",
|
||
"2581": "officered",
|
||
"2582": "uniform",
|
||
"2583": "partly",
|
||
"2584": "British",
|
||
"2585": "engaged",
|
||
"2586": "odds",
|
||
"2587": "rabble",
|
||
"2588": "joined",
|
||
"2589": "weaker",
|
||
"2590": "arming",
|
||
"2591": "weapons",
|
||
"2592": "officer",
|
||
"2593": "fighting",
|
||
"2594": "ferocity",
|
||
"2595": "despair",
|
||
"2596": "We",
|
||
"2597": "overpowered",
|
||
"2598": "numbers",
|
||
"2599": "driven",
|
||
"2600": "seek",
|
||
"2601": "refuge",
|
||
"2602": "kiosk",
|
||
"2603": "barricaded",
|
||
"2604": "ourselves",
|
||
"2605": "loop",
|
||
"2606": "hole",
|
||
"2607": "summit",
|
||
"2608": "perceived",
|
||
"2609": "surrounding",
|
||
"2610": "assaulting",
|
||
"2611": "overhung",
|
||
"2612": "effeminate",
|
||
"2613": "string",
|
||
"2614": "turbans",
|
||
"2615": "attendants",
|
||
"2616": "boat",
|
||
"2617": "escaped",
|
||
"2618": "bank",
|
||
"2619": "hurried",
|
||
"2620": "companions",
|
||
"2621": "gaining",
|
||
"2622": "frantic",
|
||
"2623": "sally",
|
||
"2624": "surrounded",
|
||
"2625": "retreated",
|
||
"2626": "rallied",
|
||
"2627": "fought",
|
||
"2628": "madly",
|
||
"2629": "bewildered",
|
||
"2630": "entangled",
|
||
"2631": "overhanging",
|
||
"2632": "shine",
|
||
"2633": "pressed",
|
||
"2634": "impetuously",
|
||
"2635": "harassing",
|
||
"2636": "overwhelming",
|
||
"2637": "arrows",
|
||
"2638": "respects",
|
||
"2639": "creese",
|
||
"2640": "Malay",
|
||
"2641": "imitate",
|
||
"2642": "creeping",
|
||
"2643": "serpent",
|
||
"2644": "poisoned",
|
||
"2645": "barb",
|
||
"2646": "struck",
|
||
"2647": "reeled",
|
||
"2648": "An",
|
||
"2649": "instantaneous",
|
||
"2650": "sickness",
|
||
"2651": "hardly",
|
||
"2652": "persist",
|
||
"2653": "smiling",
|
||
"2654": "expected",
|
||
"2655": "lively",
|
||
"2656": "reply",
|
||
"2657": "hesitated",
|
||
"2658": "fearfully",
|
||
"2659": "pallid",
|
||
"2660": "remained",
|
||
"2661": "erect",
|
||
"2662": "chattered",
|
||
"2663": "starting",
|
||
"2664": "sockets",
|
||
"2665": "Proceed",
|
||
"2666": "hoarsely",
|
||
"2667": "nonentity",
|
||
"2668": "sudden",
|
||
"2669": "shock",
|
||
"2670": "electricity",
|
||
"2671": "elasticity",
|
||
"2672": "rise",
|
||
"2673": "ground",
|
||
"2674": "bodily",
|
||
"2675": "audible",
|
||
"2676": "palpable",
|
||
"2677": "comparative",
|
||
"2678": "repose",
|
||
"2679": "Beneath",
|
||
"2680": "arrow",
|
||
"2681": "greatly",
|
||
"2682": "swollen",
|
||
"2683": "disfigured",
|
||
"2684": "concern",
|
||
"2685": "Volition",
|
||
"2686": "impelled",
|
||
"2687": "flitted",
|
||
"2688": "buoyantly",
|
||
"2689": "retracing",
|
||
"2690": "galvanic",
|
||
"2691": "battery",
|
||
"2692": "weight",
|
||
"2693": "substance",
|
||
"2694": "returned",
|
||
"2695": "eagerly",
|
||
"2696": "homewards",
|
||
"2697": "vividness",
|
||
"2698": "compel",
|
||
"2699": "difficult",
|
||
"2700": "otherwise",
|
||
"2701": "suppose",
|
||
"2702": "stupendous",
|
||
"2703": "psychal",
|
||
"2704": "discoveries",
|
||
"2705": "content",
|
||
"2706": "supposition",
|
||
"2707": "explanation",
|
||
"2708": "colour",
|
||
"2709": "drawing",
|
||
"2710": "horror",
|
||
"2711": "showing",
|
||
"2712": "picture",
|
||
"2713": "prodigious",
|
||
"2714": "fainted",
|
||
"2715": "miniature",
|
||
"2716": "miraculously",
|
||
"2717": "accurate",
|
||
"2718": "least",
|
||
"2719": "regarded",
|
||
"2720": "corner—1780",
|
||
"2721": "likeness",
|
||
"2722": "Oldeb",
|
||
"2723": "attached",
|
||
"2724": "Calcutta",
|
||
"2725": "administration",
|
||
"2726": "Warren",
|
||
"2727": "Hastings",
|
||
"2728": "twenty",
|
||
"2729": "miraculous",
|
||
"2730": "similarity",
|
||
"2731": "existed",
|
||
"2732": "yourself",
|
||
"2733": "induced",
|
||
"2734": "accost",
|
||
"2735": "friendship",
|
||
"2736": "arrangements",
|
||
"2737": "resulted",
|
||
"2738": "becoming",
|
||
"2739": "constant",
|
||
"2740": "companion",
|
||
"2741": "accomplishing",
|
||
"2742": "urged",
|
||
"2743": "principally",
|
||
"2744": "regretful",
|
||
"2745": "deceased",
|
||
"2746": "also",
|
||
"2747": "uneasy",
|
||
"2748": "horrorless",
|
||
"2749": "respecting",
|
||
"2750": "detail",
|
||
"2751": "minutest",
|
||
"2752": "accuracy",
|
||
"2753": "Benares",
|
||
"2754": "riots",
|
||
"2755": "combats",
|
||
"2756": "massacre",
|
||
"2757": "insurrection",
|
||
"2758": "Cheyte",
|
||
"2759": "Sing",
|
||
"2760": "1780",
|
||
"2761": "imminent",
|
||
"2762": "peril",
|
||
"2763": "escaping",
|
||
"2764": "sepoys",
|
||
"2765": "headed",
|
||
"2766": "prevent",
|
||
"2767": "rash",
|
||
"2768": "fatal",
|
||
"2769": "crowded",
|
||
"2770": "Bengalee",
|
||
"2771": "dearest",
|
||
"2772": "manuscripts",
|
||
"2773": "speaker",
|
||
"2774": "produced",
|
||
"2775": "notebook",
|
||
"2776": "pages",
|
||
"2777": "freshly",
|
||
"2778": "detailing",
|
||
"2779": "paper",
|
||
"2780": "paragraphs",
|
||
"2781": "painful",
|
||
"2782": "duty",
|
||
"2783": "announcing",
|
||
"2784": "Bedlo",
|
||
"2785": "amiable",
|
||
"2786": "manners",
|
||
"2787": "virtues",
|
||
"2788": "endeared",
|
||
"2789": "citizens",
|
||
"2790": "B.",
|
||
"2791": "neuralgia",
|
||
"2792": "often",
|
||
"2793": "threatened",
|
||
"2794": "terminate",
|
||
"2795": "fatally",
|
||
"2796": "mediate",
|
||
"2797": "decease",
|
||
"2798": "approximate",
|
||
"2799": "especial",
|
||
"2800": "singularity",
|
||
"2801": "excursion",
|
||
"2802": "fever",
|
||
"2803": "contracted",
|
||
"2804": "determination",
|
||
"2805": "relieve",
|
||
"2806": "Tempieton",
|
||
"2807": "resorted",
|
||
"2808": "topical",
|
||
"2809": "bleeding",
|
||
"2810": "Leeches",
|
||
"2811": "jar",
|
||
"2812": "containing",
|
||
"2813": "leeches",
|
||
"2814": "accident",
|
||
"2815": "venomous",
|
||
"2816": "vermicular",
|
||
"2817": "sangsues",
|
||
"2818": "neighbouring",
|
||
"2819": "ponds",
|
||
"2820": "creature",
|
||
"2821": "artery",
|
||
"2822": "resemblance",
|
||
"2823": "medicinal",
|
||
"2824": "leech",
|
||
"2825": "overlooked",
|
||
"2826": "N.",
|
||
"2827": "B.—The",
|
||
"2828": "poisonous",
|
||
"2829": "sangsue",
|
||
"2830": "distinguished",
|
||
"2831": "blackness",
|
||
"2832": "motions",
|
||
"2833": "resembles",
|
||
"2834": "snake",
|
||
"2835": "editor",
|
||
"2836": "topic",
|
||
"2837": "ask",
|
||
"2838": "happened",
|
||
"2839": "presume",
|
||
"2840": "authority",
|
||
"2841": "spelling",
|
||
"2842": "e",
|
||
"2843": "Authority?—no",
|
||
"2844": "replied",
|
||
"2845": "typographical",
|
||
"2846": "error",
|
||
"2847": "spelt",
|
||
"2848": "mutteringly",
|
||
"2849": "heel",
|
||
"2850": "fiction",
|
||
"2851": "conversed",
|
||
"2852": "tells",
|
||
"2853": "BLACK",
|
||
"2854": "CAT",
|
||
"2855": "homely",
|
||
"2856": "narrative",
|
||
"2857": "pen",
|
||
"2858": "expect",
|
||
"2859": "solicit",
|
||
"2860": "belief",
|
||
"2861": "Mad",
|
||
"2862": "case",
|
||
"2863": "reject",
|
||
"2864": "evidence",
|
||
"2865": "morrow",
|
||
"2866": "unburthen",
|
||
"2867": "immediate",
|
||
"2868": "plainly",
|
||
"2869": "succinctly",
|
||
"2870": "comment",
|
||
"2871": "consequences",
|
||
"2872": "terrified",
|
||
"2873": "tortured",
|
||
"2874": "expound",
|
||
"2875": "seem",
|
||
"2876": "baroques",
|
||
"2877": "Hereafter",
|
||
"2878": "intellect",
|
||
"2879": "reduce",
|
||
"2880": "phantasm",
|
||
"2881": "commonplace",
|
||
"2882": "calm",
|
||
"2883": "logical",
|
||
"2884": "causes",
|
||
"2885": "effects",
|
||
"2886": "infancy",
|
||
"2887": "noted",
|
||
"2888": "docility",
|
||
"2889": "humanity",
|
||
"2890": "disposition",
|
||
"2891": "tenderness",
|
||
"2892": "conspicuous",
|
||
"2893": "jest",
|
||
"2894": "fond",
|
||
"2895": "animals",
|
||
"2896": "indulged",
|
||
"2897": "parents",
|
||
"2898": "pets",
|
||
"2899": "spent",
|
||
"2900": "happy",
|
||
"2901": "feeding",
|
||
"2902": "caressing",
|
||
"2903": "growth",
|
||
"2904": "manhood",
|
||
"2905": "principal",
|
||
"2906": "sources",
|
||
"2907": "cherished",
|
||
"2908": "affection",
|
||
"2909": "faithful",
|
||
"2910": "sagacious",
|
||
"2911": "explaining",
|
||
"2912": "gratification",
|
||
"2913": "derivable",
|
||
"2914": "unselfish",
|
||
"2915": "sacrificing",
|
||
"2916": "brute",
|
||
"2917": "goes",
|
||
"2918": "occasion",
|
||
"2919": "test",
|
||
"2920": "paltry",
|
||
"2921": "gossamer",
|
||
"2922": "fidelity",
|
||
"2923": "Man",
|
||
"2924": "married",
|
||
"2925": "uncongenial",
|
||
"2926": "Observing",
|
||
"2927": "partiality",
|
||
"2928": "domestic",
|
||
"2929": "opportunity",
|
||
"2930": "procuring",
|
||
"2931": "agreeable",
|
||
"2932": "birds",
|
||
"2933": "fish",
|
||
"2934": "rabbits",
|
||
"2935": "monkey",
|
||
"2936": "remarkably",
|
||
"2937": "animal",
|
||
"2938": "astonishing",
|
||
"2939": "tinctured",
|
||
"2940": "superstition",
|
||
"2941": "allusion",
|
||
"2942": "ancient",
|
||
"2943": "popular",
|
||
"2944": "notion",
|
||
"2945": "cats",
|
||
"2946": "witches",
|
||
"2947": "disguise",
|
||
"2948": "happens",
|
||
"2949": "Pluto",
|
||
"2950": "favorite",
|
||
"2951": "pet",
|
||
"2952": "playmate",
|
||
"2953": "fed",
|
||
"2954": "wherever",
|
||
"2955": "Our",
|
||
"2956": "lasted",
|
||
"2957": "instrumentality",
|
||
"2958": "Fiend",
|
||
"2959": "Intemperance",
|
||
"2960": "radical",
|
||
"2961": "moody",
|
||
"2962": "irritable",
|
||
"2963": "regardless",
|
||
"2964": "suffered",
|
||
"2965": "intemperate",
|
||
"2966": "offered",
|
||
"2967": "violence",
|
||
"2968": "change",
|
||
"2969": "ill",
|
||
"2970": "used",
|
||
"2971": "restrain",
|
||
"2972": "maltreating",
|
||
"2973": "scruple",
|
||
"2974": "Alcohol!—and",
|
||
"2975": "somewhat",
|
||
"2976": "peevish",
|
||
"2977": "began",
|
||
"2978": "temper",
|
||
"2979": "intoxicated",
|
||
"2980": "haunts",
|
||
"2981": "avoided",
|
||
"2982": "fright",
|
||
"2983": "inflicted",
|
||
"2984": "demon",
|
||
"2985": "flight",
|
||
"2986": "fiendish",
|
||
"2987": "malevolence",
|
||
"2988": "gin",
|
||
"2989": "nurtured",
|
||
"2990": "thrilled",
|
||
"2991": "fiber",
|
||
"2992": "waistcoat",
|
||
"2993": "pocket",
|
||
"2994": "knife",
|
||
"2995": "grasped",
|
||
"2996": "poor",
|
||
"2997": "throat",
|
||
"2998": "deliberately",
|
||
"2999": "cut",
|
||
"3000": "socket",
|
||
"3001": "burn",
|
||
"3002": "damnable",
|
||
"3003": "atrocity",
|
||
"3004": "fumes",
|
||
"3005": "debauch",
|
||
"3006": "remorse",
|
||
"3007": "guilty",
|
||
"3008": "untouched",
|
||
"3009": "excess",
|
||
"3010": "drowned",
|
||
"3011": "frightful",
|
||
"3012": "suffer",
|
||
"3013": "fled",
|
||
"3014": "approach",
|
||
"3015": "grieved",
|
||
"3016": "dislike",
|
||
"3017": "irritation",
|
||
"3018": "final",
|
||
"3019": "irrevocable",
|
||
"3020": "overthrow",
|
||
"3021": "Perverseness",
|
||
"3022": "philosophy",
|
||
"3023": "takes",
|
||
"3024": "perverseness",
|
||
"3025": "primitive",
|
||
"3026": "impulses",
|
||
"3027": "indivisible",
|
||
"3028": "primary",
|
||
"3029": "faculties",
|
||
"3030": "sentiments",
|
||
"3031": "give",
|
||
"3032": "committing",
|
||
"3033": "vile",
|
||
"3034": "silly",
|
||
"3035": "knows",
|
||
"3036": "Have",
|
||
"3037": "perpetual",
|
||
"3038": "inclination",
|
||
"3039": "judgment",
|
||
"3040": "violate",
|
||
"3041": "Law",
|
||
"3042": "unfathomable",
|
||
"3043": "longing",
|
||
"3044": "sake",
|
||
"3045": "continue",
|
||
"3046": "consummate",
|
||
"3047": "injury",
|
||
"3048": "unoffending",
|
||
"3049": "cool",
|
||
"3050": "noose",
|
||
"3051": "limb",
|
||
"3052": "streaming",
|
||
"3053": "bitterest",
|
||
"3054": "offense",
|
||
"3055": "doing",
|
||
"3056": "sin",
|
||
"3057": "deadly",
|
||
"3058": "jeopardize",
|
||
"3059": "immortal",
|
||
"3060": "mercy",
|
||
"3061": "Most",
|
||
"3062": "Merciful",
|
||
"3063": "Terrible",
|
||
"3064": "cruel",
|
||
"3065": "cry",
|
||
"3066": "blazing",
|
||
"3067": "servant",
|
||
"3068": "escape",
|
||
"3069": "conflagration",
|
||
"3070": "destruction",
|
||
"3071": "worldly",
|
||
"3072": "resigned",
|
||
"3073": "thenceforward",
|
||
"3074": "weakness",
|
||
"3075": "establish",
|
||
"3076": "sequence",
|
||
"3077": "disaster",
|
||
"3078": "facts",
|
||
"3079": "wish",
|
||
"3080": "leave",
|
||
"3081": "link",
|
||
"3082": "imperfect",
|
||
"3083": "succeeding",
|
||
"3084": "walls",
|
||
"3085": "compartment",
|
||
"3086": "plastering",
|
||
"3087": "resisted",
|
||
"3088": "attributed",
|
||
"3089": "recently",
|
||
"3090": "spread",
|
||
"3091": "collected",
|
||
"3092": "persons",
|
||
"3093": "examining",
|
||
"3094": "particular",
|
||
"3095": "portion",
|
||
"3096": "Strange",
|
||
"3097": "Singular",
|
||
"3098": "expressions",
|
||
"3099": "approached",
|
||
"3100": "graven",
|
||
"3101": "bas",
|
||
"3102": "relief",
|
||
"3103": "impression",
|
||
"3104": "truly",
|
||
"3105": "marvelous",
|
||
"3106": "rope",
|
||
"3107": "beheld",
|
||
"3108": "apparition",
|
||
"3109": "reflection",
|
||
"3110": "aid",
|
||
"3111": "garden",
|
||
"3112": "adjacent",
|
||
"3113": "thrown",
|
||
"3114": "probably",
|
||
"3115": "arousing",
|
||
"3116": "compressed",
|
||
"3117": "cruelty",
|
||
"3118": "plaster",
|
||
"3119": "lime",
|
||
"3120": "ammonia",
|
||
"3121": "carcass",
|
||
"3122": "accomplished",
|
||
"3123": "portraiture",
|
||
"3124": "readily",
|
||
"3125": "accounted",
|
||
"3126": "conscience",
|
||
"3127": "detailed",
|
||
"3128": "months",
|
||
"3129": "regret",
|
||
"3130": "loss",
|
||
"3131": "habitually",
|
||
"3132": "frequented",
|
||
"3133": "supply",
|
||
"3134": "den",
|
||
"3135": "infamy",
|
||
"3136": "drawn",
|
||
"3137": "reposing",
|
||
"3138": "hogsheads",
|
||
"3139": "rum",
|
||
"3140": "constituted",
|
||
"3141": "chief",
|
||
"3142": "furniture",
|
||
"3143": "top",
|
||
"3144": "hogshead",
|
||
"3145": "sooner",
|
||
"3146": "thereupon",
|
||
"3147": "closely",
|
||
"3148": "resembling",
|
||
"3149": "indefinite",
|
||
"3150": "splotch",
|
||
"3151": "region",
|
||
"3152": "breast",
|
||
"3153": "touching",
|
||
"3154": "purred",
|
||
"3155": "loudly",
|
||
"3156": "delighted",
|
||
"3157": "purchase",
|
||
"3158": "landlord",
|
||
"3159": "claim",
|
||
"3160": "go",
|
||
"3161": "accompany",
|
||
"3162": "permitted",
|
||
"3163": "patting",
|
||
"3164": "domesticated",
|
||
"3165": "reverse",
|
||
"3166": "anticipated",
|
||
"3167": "fondness",
|
||
"3168": "disgusted",
|
||
"3169": "By",
|
||
"3170": "slow",
|
||
"3171": "disgust",
|
||
"3172": "rose",
|
||
"3173": "hatred",
|
||
"3174": "shame",
|
||
"3175": "remembrance",
|
||
"3176": "preventing",
|
||
"3177": "abusing",
|
||
"3178": "weeks",
|
||
"3179": "strike",
|
||
"3180": "violently",
|
||
"3181": "unutterable",
|
||
"3182": "loathing",
|
||
"3183": "flee",
|
||
"3184": "silently",
|
||
"3185": "odious",
|
||
"3186": "pestilence",
|
||
"3187": "added",
|
||
"3188": "deprived",
|
||
"3189": "distinguishing",
|
||
"3190": "trait",
|
||
"3191": "simplest",
|
||
"3192": "purest",
|
||
"3193": "pleasures",
|
||
"3194": "aversion",
|
||
"3195": "increase",
|
||
"3196": "footsteps",
|
||
"3197": "pertinacity",
|
||
"3198": "tho",
|
||
"3199": "reader",
|
||
"3200": "crouch",
|
||
"3201": "knees",
|
||
"3202": "loathsome",
|
||
"3203": "walk",
|
||
"3204": "sharp",
|
||
"3205": "claws",
|
||
"3206": "clamber",
|
||
"3207": "longed",
|
||
"3208": "destroy",
|
||
"3209": "blow",
|
||
"3210": "withheld",
|
||
"3211": "chiefly",
|
||
"3212": "dread",
|
||
"3213": "evil",
|
||
"3214": "ashamed",
|
||
"3215": "yes",
|
||
"3216": "felon",
|
||
"3217": "cell",
|
||
"3218": "merest",
|
||
"3219": "chimeras",
|
||
"3220": "conceive",
|
||
"3221": "imperceptible",
|
||
"3222": "fanciful",
|
||
"3223": "rigorous",
|
||
"3224": "outline",
|
||
"3225": "representation",
|
||
"3226": "loathed",
|
||
"3227": "dreaded",
|
||
"3228": "dared",
|
||
"3229": "ghastly",
|
||
"3230": "Gallows!—O",
|
||
"3231": "engine",
|
||
"3232": "wretched",
|
||
"3233": "wretchedness",
|
||
"3234": "fellow",
|
||
"3235": "contemptuously",
|
||
"3236": "High",
|
||
"3237": "insufferable",
|
||
"3238": "blessing",
|
||
"3239": "hourly",
|
||
"3240": "incarnate",
|
||
"3241": "nightmare",
|
||
"3242": "shake",
|
||
"3243": "eternally",
|
||
"3244": "torments",
|
||
"3245": "remnant",
|
||
"3246": "good",
|
||
"3247": "intimates",
|
||
"3248": "darkest",
|
||
"3249": "moodiness",
|
||
"3250": "outbursts",
|
||
"3251": "blindly",
|
||
"3252": "abandoned",
|
||
"3253": "uncomplaining",
|
||
"3254": "sufferers",
|
||
"3255": "accompanied",
|
||
"3256": "errand",
|
||
"3257": "cellar",
|
||
"3258": "poverty",
|
||
"3259": "compelled",
|
||
"3260": "inhabit",
|
||
"3261": "steep",
|
||
"3262": "stairs",
|
||
"3263": "exasperated",
|
||
"3264": "Uplifting",
|
||
"3265": "ax",
|
||
"3266": "forgetting",
|
||
"3267": "wrath",
|
||
"3268": "childish",
|
||
"3269": "stayed",
|
||
"3270": "aimed",
|
||
"3271": "Goaded",
|
||
"3272": "interference",
|
||
"3273": "demoniacal",
|
||
"3274": "withdrew",
|
||
"3275": "murder",
|
||
"3276": "forthwith",
|
||
"3277": "deliberation",
|
||
"3278": "task",
|
||
"3279": "remove",
|
||
"3280": "risk",
|
||
"3281": "neighbors",
|
||
"3282": "projects",
|
||
"3283": "cutting",
|
||
"3284": "fragments",
|
||
"3285": "destroying",
|
||
"3286": "dig",
|
||
"3287": "deliberated",
|
||
"3288": "casting",
|
||
"3289": "yard",
|
||
"3290": "packing",
|
||
"3291": "box",
|
||
"3292": "merchandise",
|
||
"3293": "porter",
|
||
"3294": "Finally",
|
||
"3295": "hit",
|
||
"3296": "considered",
|
||
"3297": "expedient",
|
||
"3298": "determined",
|
||
"3299": "monks",
|
||
"3300": "ages",
|
||
"3301": "recorded",
|
||
"3302": "walled",
|
||
"3303": "victims",
|
||
"3304": "adapted",
|
||
"3305": "loosely",
|
||
"3306": "constructed",
|
||
"3307": "plastered",
|
||
"3308": "throughout",
|
||
"3309": "rough",
|
||
"3310": "dampness",
|
||
"3311": "hardening",
|
||
"3312": "Moreover",
|
||
"3313": "projection",
|
||
"3314": "false",
|
||
"3315": "fireplace",
|
||
"3316": "resemble",
|
||
"3317": "displace",
|
||
"3318": "bricks",
|
||
"3319": "insert",
|
||
"3320": "detect",
|
||
"3321": "suspicious",
|
||
"3322": "calculation",
|
||
"3323": "crowbar",
|
||
"3324": "easily",
|
||
"3325": "dislodged",
|
||
"3326": "inner",
|
||
"3327": "propped",
|
||
"3328": "relaid",
|
||
"3329": "procured",
|
||
"3330": "mortar",
|
||
"3331": "sand",
|
||
"3332": "precaution",
|
||
"3333": "brick",
|
||
"3334": "finished",
|
||
"3335": "slightest",
|
||
"3336": "disturbed",
|
||
"3337": "rubbish",
|
||
"3338": "picked",
|
||
"3339": "triumphantly",
|
||
"3340": "myself—\"Here",
|
||
"3341": "labor",
|
||
"3342": "firmly",
|
||
"3343": "fate",
|
||
"3344": "crafty",
|
||
"3345": "anger",
|
||
"3346": "forbore",
|
||
"3347": "mood",
|
||
"3348": "blissful",
|
||
"3349": "detested",
|
||
"3350": "introduction",
|
||
"3351": "soundly",
|
||
"3352": "tranquilly",
|
||
"3353": "aye",
|
||
"3354": "burden",
|
||
"3355": "tormentor",
|
||
"3356": "freeman",
|
||
"3357": "happiness",
|
||
"3358": "supreme",
|
||
"3359": "guilt",
|
||
"3360": "Some",
|
||
"3361": "inquiries",
|
||
"3362": "instituted",
|
||
"3363": "future",
|
||
"3364": "felicity",
|
||
"3365": "secured",
|
||
"3366": "assassination",
|
||
"3367": "investigation",
|
||
"3368": "Secure",
|
||
"3369": "inscrutability",
|
||
"3370": "embarrassment",
|
||
"3371": "unexplored",
|
||
"3372": "slumbers",
|
||
"3373": "innocence",
|
||
"3374": "thoroughly",
|
||
"3375": "depart",
|
||
"3376": "glee",
|
||
"3377": "restrained",
|
||
"3378": "render",
|
||
"3379": "doubly",
|
||
"3380": "assurance",
|
||
"3381": "guiltlessness",
|
||
"3382": "Gentlemen",
|
||
"3383": "ascended",
|
||
"3384": "delight",
|
||
"3385": "allayed",
|
||
"3386": "suspicions",
|
||
"3387": "courtesy",
|
||
"3388": "[",
|
||
"3389": "rabid",
|
||
"3390": "]",
|
||
"3391": "excellently",
|
||
"3392": "gentlemen?—these",
|
||
"3393": "solidly",
|
||
"3394": "frenzy",
|
||
"3395": "bravado",
|
||
"3396": "rapped",
|
||
"3397": "cane",
|
||
"3398": "behind",
|
||
"3399": "shield",
|
||
"3400": "deliver",
|
||
"3401": "fangs",
|
||
"3402": "fiend",
|
||
"3403": "reverberation",
|
||
"3404": "blows",
|
||
"3405": "sunk",
|
||
"3406": "tomb!—by",
|
||
"3407": "broken",
|
||
"3408": "sobbing",
|
||
"3409": "anomalous",
|
||
"3410": "inhuman",
|
||
"3411": "howl",
|
||
"3412": "wailing",
|
||
"3413": "conjointly",
|
||
"3414": "throats",
|
||
"3415": "demons",
|
||
"3416": "exult",
|
||
"3417": "damnation",
|
||
"3418": "Swooning",
|
||
"3419": "staggered",
|
||
"3420": "toiling",
|
||
"3421": "decayed",
|
||
"3422": "clotted",
|
||
"3423": "gore",
|
||
"3424": "red",
|
||
"3425": "craft",
|
||
"3426": "seduced",
|
||
"3427": "informing",
|
||
"3428": "consigned",
|
||
"3429": "hangman",
|
||
"3430": "tomb",
|
||
"3431": "DEVIL",
|
||
"3432": "IN",
|
||
"3433": "BELFRY",
|
||
"3434": "it?—Old",
|
||
"3435": "Saying",
|
||
"3436": "Everybody",
|
||
"3437": "finest",
|
||
"3438": "Dutch",
|
||
"3439": "borough",
|
||
"3440": "Vondervotteimittiss",
|
||
"3441": "distance",
|
||
"3442": "main",
|
||
"3443": "roads",
|
||
"3444": "situation",
|
||
"3445": "readers",
|
||
"3446": "visit",
|
||
"3447": "proper",
|
||
"3448": "enter",
|
||
"3449": "necessary",
|
||
"3450": "enlisting",
|
||
"3451": "public",
|
||
"3452": "sympathy",
|
||
"3453": "behalf",
|
||
"3454": "history",
|
||
"3455": "calamitous",
|
||
"3456": "imposed",
|
||
"3457": "executed",
|
||
"3458": "ability",
|
||
"3459": "impartiality",
|
||
"3460": "examination",
|
||
"3461": "diligent",
|
||
"3462": "collation",
|
||
"3463": "authorities",
|
||
"3464": "distinguish",
|
||
"3465": "aspires",
|
||
"3466": "historian",
|
||
"3467": "united",
|
||
"3468": "medals",
|
||
"3469": "inscriptions",
|
||
"3470": "enabled",
|
||
"3471": "positively",
|
||
"3472": "preserves",
|
||
"3473": "grieve",
|
||
"3474": "definiteness",
|
||
"3475": "mathematicians",
|
||
"3476": "algebraic",
|
||
"3477": "formulæ",
|
||
"3478": "remoteness",
|
||
"3479": "antiquity",
|
||
"3480": "assignable",
|
||
"3481": "whatsoever",
|
||
"3482": "Touching",
|
||
"3483": "derivation",
|
||
"3484": "equally",
|
||
"3485": "fault",
|
||
"3486": "Among",
|
||
"3487": "learned",
|
||
"3488": "sufficiently",
|
||
"3489": "select",
|
||
"3490": "ought",
|
||
"3491": "Perhaps",
|
||
"3492": "Grogswigg",
|
||
"3493": "coincident",
|
||
"3494": "Kroutaplenttey",
|
||
"3495": "preferred:—It",
|
||
"3496": "runs:—\"Vondervotteimittiss",
|
||
"3497": "Vonder",
|
||
"3498": "lege",
|
||
"3499": "Donder",
|
||
"3500": "Votteimittiss",
|
||
"3501": "quasi",
|
||
"3502": "und",
|
||
"3503": "Bleitziz",
|
||
"3504": "obsol",
|
||
"3505": "pro",
|
||
"3506": "Blitzen",
|
||
"3507": "countenanced",
|
||
"3508": "traces",
|
||
"3509": "electric",
|
||
"3510": "fluid",
|
||
"3511": "steeple",
|
||
"3512": "House",
|
||
"3513": "Town",
|
||
"3514": "Council",
|
||
"3515": "choose",
|
||
"3516": "commit",
|
||
"3517": "theme",
|
||
"3518": "refer",
|
||
"3519": "desirous",
|
||
"3520": "Oratiunculœ",
|
||
"3521": "de",
|
||
"3522": "Rebus",
|
||
"3523": "Prœteritis",
|
||
"3524": "Dundergutz",
|
||
"3525": "See",
|
||
"3526": "Blunderbuzzard",
|
||
"3527": "De",
|
||
"3528": "Derivationibus",
|
||
"3529": "pp",
|
||
"3530": "27",
|
||
"3531": "5010",
|
||
"3532": "Folio",
|
||
"3533": "Gothic",
|
||
"3534": "edit",
|
||
"3535": "Red",
|
||
"3536": "Black",
|
||
"3537": "Catchword",
|
||
"3538": "Cypher;—wherein",
|
||
"3539": "consult",
|
||
"3540": "marginal",
|
||
"3541": "notes",
|
||
"3542": "autograph",
|
||
"3543": "Stuffundpuff",
|
||
"3544": "Sub",
|
||
"3545": "Commentaries",
|
||
"3546": "Gruntundguzzel",
|
||
"3547": "Notwithstanding",
|
||
"3548": "obscurity",
|
||
"3549": "envelops",
|
||
"3550": "foundation",
|
||
"3551": "epoch",
|
||
"3552": "oldest",
|
||
"3553": "possibility",
|
||
"3554": "site",
|
||
"3555": "village",
|
||
"3556": "perfectly",
|
||
"3557": "circular",
|
||
"3558": "quarter",
|
||
"3559": "mile",
|
||
"3560": "circumference",
|
||
"3561": "people",
|
||
"3562": "assign",
|
||
"3563": "Round",
|
||
"3564": "skirts",
|
||
"3565": "paved",
|
||
"3566": "flat",
|
||
"3567": "tiles",
|
||
"3568": "extends",
|
||
"3569": "row",
|
||
"3570": "sixty",
|
||
"3571": "backs",
|
||
"3572": "centre",
|
||
"3573": "front",
|
||
"3574": "dwelling",
|
||
"3575": "Every",
|
||
"3576": "dial",
|
||
"3577": "cabbages",
|
||
"3578": "buildings",
|
||
"3579": "alike",
|
||
"3580": "Owing",
|
||
"3581": "style",
|
||
"3582": "odd",
|
||
"3583": "strikingly",
|
||
"3584": "ends",
|
||
"3585": "chess",
|
||
"3586": "board",
|
||
"3587": "scale",
|
||
"3588": "gables",
|
||
"3589": "big",
|
||
"3590": "eaves",
|
||
"3591": "doors",
|
||
"3592": "panes",
|
||
"3593": "deal",
|
||
"3594": "sash",
|
||
"3595": "roof",
|
||
"3596": "curly",
|
||
"3597": "woodwork",
|
||
"3598": "carving",
|
||
"3599": "trifling",
|
||
"3600": "pattern",
|
||
"3601": "carvers",
|
||
"3602": "carve",
|
||
"3603": "piece",
|
||
"3604": "cabbage",
|
||
"3605": "intersperse",
|
||
"3606": "ingenuity",
|
||
"3607": "chisel",
|
||
"3608": "dwellings",
|
||
"3609": "inside",
|
||
"3610": "plan",
|
||
"3611": "floors",
|
||
"3612": "tables",
|
||
"3613": "wood",
|
||
"3614": "crooked",
|
||
"3615": "legs",
|
||
"3616": "puppy",
|
||
"3617": "mantel",
|
||
"3618": "pieces",
|
||
"3619": "sculptured",
|
||
"3620": "ticking",
|
||
"3621": "flower",
|
||
"3622": "pot",
|
||
"3623": "standing",
|
||
"3624": "outrider",
|
||
"3625": "Between",
|
||
"3626": "China",
|
||
"3627": "stomach",
|
||
"3628": "plate",
|
||
"3629": "fireplaces",
|
||
"3630": "dogs",
|
||
"3631": "constantly",
|
||
"3632": "rousing",
|
||
"3633": "sauer",
|
||
"3634": "kraut",
|
||
"3635": "pork",
|
||
"3636": "busy",
|
||
"3637": "attending",
|
||
"3638": "fat",
|
||
"3639": "wears",
|
||
"3640": "cap",
|
||
"3641": "sugar",
|
||
"3642": "loaf",
|
||
"3643": "ornamented",
|
||
"3644": "purple",
|
||
"3645": "ribbons",
|
||
"3646": "orange",
|
||
"3647": "coloured",
|
||
"3648": "linsey",
|
||
"3649": "woolsey",
|
||
"3650": "short",
|
||
"3651": "waist",
|
||
"3652": "reaching",
|
||
"3653": "leg",
|
||
"3654": "ankles",
|
||
"3655": "stockings",
|
||
"3656": "cover",
|
||
"3657": "shoes",
|
||
"3658": "pink",
|
||
"3659": "leather",
|
||
"3660": "puckered",
|
||
"3661": "wields",
|
||
"3662": "ladle",
|
||
"3663": "stands",
|
||
"3664": "tabby",
|
||
"3665": "gilt",
|
||
"3666": "toy",
|
||
"3667": "repeater",
|
||
"3668": "tied",
|
||
"3669": "tail",
|
||
"3670": "boys",
|
||
"3671": "quiz",
|
||
"3672": "pig",
|
||
"3673": "cornered",
|
||
"3674": "cocked",
|
||
"3675": "hats",
|
||
"3676": "waistcoats",
|
||
"3677": "thighs",
|
||
"3678": "buckskin",
|
||
"3679": "knee",
|
||
"3680": "breeches",
|
||
"3681": "woollen",
|
||
"3682": "buckles",
|
||
"3683": "surtout",
|
||
"3684": "coats",
|
||
"3685": "buttons",
|
||
"3686": "pearl",
|
||
"3687": "Each",
|
||
"3688": "pipe",
|
||
"3689": "dumpy",
|
||
"3690": "puff",
|
||
"3691": "corpulent",
|
||
"3692": "lazy",
|
||
"3693": "picking",
|
||
"3694": "kick",
|
||
"3695": "urchins",
|
||
"3696": "handsome",
|
||
"3697": "Right",
|
||
"3698": "backed",
|
||
"3699": "bottomed",
|
||
"3700": "puffy",
|
||
"3701": "double",
|
||
"3702": "farther",
|
||
"3703": "bigger",
|
||
"3704": "theirs",
|
||
"3705": "carries",
|
||
"3706": "attend",
|
||
"3707": "presently",
|
||
"3708": "explain",
|
||
"3709": "sits",
|
||
"3710": "keeps",
|
||
"3711": "resolutely",
|
||
"3712": "situated",
|
||
"3713": "oily",
|
||
"3714": "intelligent",
|
||
"3715": "saucer",
|
||
"3716": "chins",
|
||
"3717": "shoe",
|
||
"3718": "Since",
|
||
"3719": "sojourn",
|
||
"3720": "special",
|
||
"3721": "meetings",
|
||
"3722": "adopted",
|
||
"3723": "resolutions",
|
||
"3724": "alter",
|
||
"3725": "stick",
|
||
"3726": "clocks",
|
||
"3727": "session",
|
||
"3728": "belfry",
|
||
"3729": "exists",
|
||
"3730": "pride",
|
||
"3731": "sit",
|
||
"3732": "faces",
|
||
"3733": "quarters",
|
||
"3734": "sinecures",
|
||
"3735": "Until",
|
||
"3736": "heretical",
|
||
"3737": "remotest",
|
||
"3738": "archives",
|
||
"3739": "reference",
|
||
"3740": "regularly",
|
||
"3741": "clapper",
|
||
"3742": "Twelve",
|
||
"3743": "obedient",
|
||
"3744": "followers",
|
||
"3745": "simultaneously",
|
||
"3746": "responded",
|
||
"3747": "burghers",
|
||
"3748": "proud",
|
||
"3749": "hold",
|
||
"3750": "sinecure",
|
||
"3751": "offices",
|
||
"3752": "respected",
|
||
"3753": "dignitary",
|
||
"3754": "pigs",
|
||
"3755": "reverence",
|
||
"3756": "coat",
|
||
"3757": "triple",
|
||
"3758": "painted",
|
||
"3759": "estate",
|
||
"3760": "wisest",
|
||
"3761": "prophecy",
|
||
"3762": "wanted",
|
||
"3763": "five",
|
||
"3764": "noon",
|
||
"3765": "yesterday",
|
||
"3766": "ridge",
|
||
"3767": "eastward",
|
||
"3768": "Such",
|
||
"3769": "occurrence",
|
||
"3770": "attracted",
|
||
"3771": "universal",
|
||
"3772": "stare",
|
||
"3773": "dismay",
|
||
"3774": "phenomenon",
|
||
"3775": "droll",
|
||
"3776": "foreign",
|
||
"3777": "rate",
|
||
"3778": "everybody",
|
||
"3779": "finnicky",
|
||
"3780": "personage",
|
||
"3781": "snuff",
|
||
"3782": "hooked",
|
||
"3783": "nose",
|
||
"3784": "pea",
|
||
"3785": "excellent",
|
||
"3786": "anxious",
|
||
"3787": "displaying",
|
||
"3788": "ear",
|
||
"3789": "mustachios",
|
||
"3790": "whiskers",
|
||
"3791": "uncovered",
|
||
"3792": "neatly",
|
||
"3793": "papillotes",
|
||
"3794": "tight",
|
||
"3795": "swallow",
|
||
"3796": "tailed",
|
||
"3797": "pockets",
|
||
"3798": "dangled",
|
||
"3799": "handkerchief",
|
||
"3800": "kerseymere",
|
||
"3801": "stumpy",
|
||
"3802": "pumps",
|
||
"3803": "bunches",
|
||
"3804": "satin",
|
||
"3805": "ribbon",
|
||
"3806": "bows",
|
||
"3807": "Under",
|
||
"3808": "carried",
|
||
"3809": "chapeau",
|
||
"3810": "bras",
|
||
"3811": "under",
|
||
"3812": "fiddle",
|
||
"3813": "capered",
|
||
"3814": "hill",
|
||
"3815": "fantastical",
|
||
"3816": "incessantly",
|
||
"3817": "greatest",
|
||
"3818": "satisfaction",
|
||
"3819": "bless",
|
||
"3820": "me!—here",
|
||
"3821": "honest",
|
||
"3822": "spite",
|
||
"3823": "audacious",
|
||
"3824": "sinister",
|
||
"3825": "curvetted",
|
||
"3826": "burgher",
|
||
"3827": "trifle",
|
||
"3828": "peep",
|
||
"3829": "cambric",
|
||
"3830": "obtrusively",
|
||
"3831": "mainly",
|
||
"3832": "righteous",
|
||
"3833": "indignation",
|
||
"3834": "scoundrelly",
|
||
"3835": "popinjay",
|
||
"3836": "fandango",
|
||
"3837": "whirligig",
|
||
"3838": "rascal",
|
||
"3839": "bounced",
|
||
"3840": "midst",
|
||
"3841": "chassez",
|
||
"3842": "balancez",
|
||
"3843": "pirouette",
|
||
"3844": "pas",
|
||
"3845": "zéphyr",
|
||
"3846": "pigeon",
|
||
"3847": "winged",
|
||
"3848": "smoking",
|
||
"3849": "dignity",
|
||
"3850": "chap",
|
||
"3851": "swing",
|
||
"3852": "pull",
|
||
"3853": "clapped",
|
||
"3854": "knocked",
|
||
"3855": "lifting",
|
||
"3856": "sworn",
|
||
"3857": "regiment",
|
||
"3858": "bass",
|
||
"3859": "drummers",
|
||
"3860": "devil",
|
||
"3861": "knowing",
|
||
"3862": "desperate",
|
||
"3863": "vengeance",
|
||
"3864": "unprincipled",
|
||
"3865": "attack",
|
||
"3866": "preeminent",
|
||
"3867": "necessity",
|
||
"3868": "nobody",
|
||
"3869": "manœuvres",
|
||
"3870": "count",
|
||
"3871": "strokes",
|
||
"3872": "Von",
|
||
"3873": "echoed",
|
||
"3874": "von",
|
||
"3875": "vrow",
|
||
"3876": "repeaters",
|
||
"3877": "tails",
|
||
"3878": "Two",
|
||
"3879": "Doo",
|
||
"3880": "repeated",
|
||
"3881": "Three",
|
||
"3882": "Four",
|
||
"3883": "Five",
|
||
"3884": "Six",
|
||
"3885": "Seven",
|
||
"3886": "Eight",
|
||
"3887": "Nine",
|
||
"3888": "Ten",
|
||
"3889": "Dree",
|
||
"3890": "Vour",
|
||
"3891": "Fibe",
|
||
"3892": "Sax",
|
||
"3893": "Seben",
|
||
"3894": "Aight",
|
||
"3895": "Noin",
|
||
"3896": "Den",
|
||
"3897": "Eleven",
|
||
"3898": "Eleben",
|
||
"3899": "assented",
|
||
"3900": "fellows",
|
||
"3901": "Dvelf",
|
||
"3902": "dropping",
|
||
"3903": "Und",
|
||
"3904": "dvelf",
|
||
"3905": "iss",
|
||
"3906": "putting",
|
||
"3907": "Thirteen",
|
||
"3908": "Der",
|
||
"3909": "Teufel",
|
||
"3910": "pipes",
|
||
"3911": "groaned",
|
||
"3912": "Dirteen",
|
||
"3913": "Mein",
|
||
"3914": "Gott",
|
||
"3915": "ensued",
|
||
"3916": "lamentable",
|
||
"3917": "uproar",
|
||
"3918": "Vot",
|
||
"3919": "cum'd",
|
||
"3920": "mein",
|
||
"3921": "pelly",
|
||
"3922": "roared",
|
||
"3923": "boys,—\"I've",
|
||
"3924": "ongry",
|
||
"3925": "dis",
|
||
"3926": "screamed",
|
||
"3927": "vrows",
|
||
"3928": "rags",
|
||
"3929": "smoked",
|
||
"3930": "hour!\"—and",
|
||
"3931": "sinking",
|
||
"3932": "puffed",
|
||
"3933": "fiercely",
|
||
"3934": "impenetrable",
|
||
"3935": "Nick",
|
||
"3936": "everything",
|
||
"3937": "timepiece",
|
||
"3938": "dancing",
|
||
"3939": "bewitched",
|
||
"3940": "mantelpieces",
|
||
"3941": "striking",
|
||
"3942": "thirteen",
|
||
"3943": "frisking",
|
||
"3944": "wriggling",
|
||
"3945": "pendulums",
|
||
"3946": "horrible",
|
||
"3947": "behaviour",
|
||
"3948": "resented",
|
||
"3949": "scampering",
|
||
"3950": "scratching",
|
||
"3951": "poking",
|
||
"3952": "squeaking",
|
||
"3953": "screeching",
|
||
"3954": "caterwauling",
|
||
"3955": "squalling",
|
||
"3956": "flying",
|
||
"3957": "running",
|
||
"3958": "petticoats",
|
||
"3959": "creating",
|
||
"3960": "abominable",
|
||
"3961": "din",
|
||
"3962": "reasonable",
|
||
"3963": "rascally",
|
||
"3964": "scapegrace",
|
||
"3965": "evidently",
|
||
"3966": "exerting",
|
||
"3967": "utmost",
|
||
"3968": "catch",
|
||
"3969": "glimpse",
|
||
"3970": "scoundrel",
|
||
"3971": "villain",
|
||
"3972": "jerking",
|
||
"3973": "raising",
|
||
"3974": "clatter",
|
||
"3975": "lap",
|
||
"3976": "scraping",
|
||
"3977": "tune",
|
||
"3978": "both",
|
||
"3979": "show",
|
||
"3980": "nincompoop",
|
||
"3981": "playing",
|
||
"3982": "Judy",
|
||
"3983": "O'Flannagan",
|
||
"3984": "Paddy",
|
||
"3985": "O'Rafferty",
|
||
"3986": "Affairs",
|
||
"3987": "miserably",
|
||
"3988": "appeal",
|
||
"3989": "lovers",
|
||
"3990": "correct",
|
||
"3991": "restore",
|
||
"3992": "ejecting"
|
||
},
|
||
"lemma": {
|
||
"0": "the",
|
||
"1": "ASSIGNATION",
|
||
"2": ".",
|
||
"3": "stay",
|
||
"4": "for",
|
||
"5": "I",
|
||
"6": "there",
|
||
"7": "!",
|
||
"8": "will",
|
||
"9": "not",
|
||
"10": "fail",
|
||
"11": "to",
|
||
"12": "meet",
|
||
"13": "thee",
|
||
"14": "in",
|
||
"15": "that",
|
||
"16": "hollow",
|
||
"17": "vale",
|
||
"18": "Exequy",
|
||
"19": "on",
|
||
"20": "Death",
|
||
"21": "of",
|
||
"22": "his",
|
||
"23": "Wife",
|
||
"24": ",",
|
||
"25": "by",
|
||
"26": "Henry",
|
||
"27": "King",
|
||
"28": "bishop",
|
||
"29": "Chichester",
|
||
"30": "Ill",
|
||
"31": "-",
|
||
"32": "fated",
|
||
"33": "and",
|
||
"34": "mysterious",
|
||
"35": "man!—bewildere",
|
||
"36": "brilliancy",
|
||
"37": "thine",
|
||
"38": "own",
|
||
"39": "imagination",
|
||
"40": "fall",
|
||
"41": "flame",
|
||
"42": "youth",
|
||
"43": "again",
|
||
"44": "fancy",
|
||
"45": "behold",
|
||
"46": "once",
|
||
"47": "more",
|
||
"48": "thy",
|
||
"49": "form",
|
||
"50": "hath",
|
||
"51": "rise",
|
||
"52": "before",
|
||
"53": "me!—not",
|
||
"54": "—",
|
||
"55": "oh",
|
||
"56": "as",
|
||
"57": "thou",
|
||
"58": "art",
|
||
"59": "cold",
|
||
"60": "valley",
|
||
"61": "shadow",
|
||
"62": "but",
|
||
"63": "shouldst",
|
||
"64": "be",
|
||
"65": "squander",
|
||
"66": "away",
|
||
"67": "a",
|
||
"68": "life",
|
||
"69": "magnificent",
|
||
"70": "meditation",
|
||
"71": "city",
|
||
"72": "dim",
|
||
"73": "vision",
|
||
"74": "Venice",
|
||
"75": "which",
|
||
"76": "star",
|
||
"77": "beloved",
|
||
"78": "Elysium",
|
||
"79": "sea",
|
||
"80": "wide",
|
||
"81": "window",
|
||
"82": "whose",
|
||
"83": "palladian",
|
||
"84": "palace",
|
||
"85": "look",
|
||
"86": "down",
|
||
"87": "with",
|
||
"88": "deep",
|
||
"89": "bitter",
|
||
"90": "meaning",
|
||
"91": "upon",
|
||
"92": "secret",
|
||
"93": "her",
|
||
"94": "silent",
|
||
"95": "water",
|
||
"96": "yes",
|
||
"97": "repeat",
|
||
"98": "it",
|
||
"99": "surely",
|
||
"100": "other",
|
||
"101": "world",
|
||
"102": "than",
|
||
"103": "this",
|
||
"104": "thought",
|
||
"105": "multitude",
|
||
"106": "speculation",
|
||
"107": "sophist",
|
||
"108": "\"",
|
||
"109": "who",
|
||
"110": "then",
|
||
"111": "shall",
|
||
"112": "call",
|
||
"113": "conduct",
|
||
"114": "into",
|
||
"115": "question",
|
||
"116": "?",
|
||
"117": "blame",
|
||
"118": "visionary",
|
||
"119": "hour",
|
||
"120": "or",
|
||
"121": "denounce",
|
||
"122": "those",
|
||
"123": "occupation",
|
||
"124": "wasting",
|
||
"125": "overflowing",
|
||
"126": "everlasting",
|
||
"127": "energy",
|
||
"128": "at",
|
||
"129": "beneath",
|
||
"130": "covered",
|
||
"131": "archway",
|
||
"132": "Ponte",
|
||
"133": "di",
|
||
"134": "Sospiri",
|
||
"135": "third",
|
||
"136": "fourth",
|
||
"137": "time",
|
||
"138": "person",
|
||
"139": "whom",
|
||
"140": "speak",
|
||
"141": "confused",
|
||
"142": "recollection",
|
||
"143": "bring",
|
||
"144": "mind",
|
||
"145": "circumstance",
|
||
"146": "meeting",
|
||
"147": "yet",
|
||
"148": "remember",
|
||
"149": "ah",
|
||
"150": "how",
|
||
"151": "should",
|
||
"152": "forget?—the",
|
||
"153": "midnight",
|
||
"154": "Bridge",
|
||
"155": "Sighs",
|
||
"156": "beauty",
|
||
"157": "woman",
|
||
"158": "Genius",
|
||
"159": "Romance",
|
||
"160": "stalk",
|
||
"161": "up",
|
||
"162": "narrow",
|
||
"163": "canal",
|
||
"164": "night",
|
||
"165": "unusual",
|
||
"166": "gloom",
|
||
"167": "great",
|
||
"168": "clock",
|
||
"169": "Piazza",
|
||
"170": "have",
|
||
"171": "sound",
|
||
"172": "fifth",
|
||
"173": "italian",
|
||
"174": "evening",
|
||
"175": "square",
|
||
"176": "Campanile",
|
||
"177": "lie",
|
||
"178": "deserted",
|
||
"179": "light",
|
||
"180": "old",
|
||
"181": "Ducal",
|
||
"182": "Palace",
|
||
"183": "die",
|
||
"184": "fast",
|
||
"185": "return",
|
||
"186": "home",
|
||
"187": "from",
|
||
"188": "Piazetta",
|
||
"189": "way",
|
||
"190": "Grand",
|
||
"191": "Canal",
|
||
"192": "my",
|
||
"193": "gondola",
|
||
"194": "arrive",
|
||
"195": "opposite",
|
||
"196": "mouth",
|
||
"197": "San",
|
||
"198": "Marco",
|
||
"199": "female",
|
||
"200": "voice",
|
||
"201": "its",
|
||
"202": "recess",
|
||
"203": "break",
|
||
"204": "suddenly",
|
||
"205": "one",
|
||
"206": "wild",
|
||
"207": "hysterical",
|
||
"208": "long",
|
||
"209": "continue",
|
||
"210": "shriek",
|
||
"211": "startle",
|
||
"212": "spring",
|
||
"213": "foot",
|
||
"214": ";",
|
||
"215": "while",
|
||
"216": "gondolier",
|
||
"217": "let",
|
||
"218": "slip",
|
||
"219": "single",
|
||
"220": "oar",
|
||
"221": "lose",
|
||
"222": "pitchy",
|
||
"223": "darkness",
|
||
"224": "beyond",
|
||
"225": "chance",
|
||
"226": "recovery",
|
||
"227": "we",
|
||
"228": "consequently",
|
||
"229": "leave",
|
||
"230": "guidance",
|
||
"231": "current",
|
||
"232": "here",
|
||
"233": "set",
|
||
"234": "small",
|
||
"235": "channel",
|
||
"236": "like",
|
||
"237": "some",
|
||
"238": "huge",
|
||
"239": "sable",
|
||
"240": "feather",
|
||
"241": "condor",
|
||
"242": "slowly",
|
||
"243": "drift",
|
||
"244": "towards",
|
||
"245": "when",
|
||
"246": "thousand",
|
||
"247": "flambeaux",
|
||
"248": "flash",
|
||
"249": "staircase",
|
||
"250": "turn",
|
||
"251": "all",
|
||
"252": "livid",
|
||
"253": "preternatural",
|
||
"254": "day",
|
||
"255": "child",
|
||
"256": "arm",
|
||
"257": "mother",
|
||
"258": "an",
|
||
"259": "upper",
|
||
"260": "lofty",
|
||
"261": "structure",
|
||
"262": "quiet",
|
||
"263": "close",
|
||
"264": "placidly",
|
||
"265": "over",
|
||
"266": "their",
|
||
"267": "victim",
|
||
"268": "although",
|
||
"269": "only",
|
||
"270": "sight",
|
||
"271": "many",
|
||
"272": "stout",
|
||
"273": "swimmer",
|
||
"274": "already",
|
||
"275": "stream",
|
||
"276": "seek",
|
||
"277": "vain",
|
||
"278": "surface",
|
||
"279": "treasure",
|
||
"280": "find",
|
||
"281": "alas",
|
||
"282": "within",
|
||
"283": "abyss",
|
||
"284": "broad",
|
||
"285": "black",
|
||
"286": "marble",
|
||
"287": "flagstone",
|
||
"288": "entrance",
|
||
"289": "few",
|
||
"290": "step",
|
||
"291": "above",
|
||
"292": "stand",
|
||
"293": "figure",
|
||
"294": "none",
|
||
"295": "see",
|
||
"296": "can",
|
||
"297": "ever",
|
||
"298": "since",
|
||
"299": "forget",
|
||
"300": "Marchesa",
|
||
"301": "Aphrodite",
|
||
"302": "adoration",
|
||
"303": "gay",
|
||
"304": "most",
|
||
"305": "lovely",
|
||
"306": "where",
|
||
"307": "beautiful",
|
||
"308": "still",
|
||
"309": "young",
|
||
"310": "wife",
|
||
"311": "intriguing",
|
||
"312": "Mentoni",
|
||
"313": "fair",
|
||
"314": "first",
|
||
"315": "now",
|
||
"316": "murky",
|
||
"317": "think",
|
||
"318": "bitterness",
|
||
"319": "heart",
|
||
"320": "sweet",
|
||
"321": "caress",
|
||
"322": "exhaust",
|
||
"323": "little",
|
||
"324": "struggle",
|
||
"325": "name",
|
||
"326": "she",
|
||
"327": "alone",
|
||
"328": "bare",
|
||
"329": "silvery",
|
||
"330": "gleam",
|
||
"331": "hair",
|
||
"332": "half",
|
||
"333": "loosen",
|
||
"334": "ballroom",
|
||
"335": "array",
|
||
"336": "cluster",
|
||
"337": "amid",
|
||
"338": "shower",
|
||
"339": "diamond",
|
||
"340": "round",
|
||
"341": "classical",
|
||
"342": "head",
|
||
"343": "curl",
|
||
"344": "hyacinth",
|
||
"345": "snowy",
|
||
"346": "white",
|
||
"347": "gauze",
|
||
"348": "drapery",
|
||
"349": "seem",
|
||
"350": "nearly",
|
||
"351": "sole",
|
||
"352": "covering",
|
||
"353": "delicate",
|
||
"354": "midsummer",
|
||
"355": "air",
|
||
"356": "hot",
|
||
"357": "sullen",
|
||
"358": "no",
|
||
"359": "motion",
|
||
"360": "statue",
|
||
"361": "itself",
|
||
"362": "stir",
|
||
"363": "even",
|
||
"364": "fold",
|
||
"365": "raiment",
|
||
"366": "very",
|
||
"367": "vapor",
|
||
"368": "hang",
|
||
"369": "around",
|
||
"370": "heavy",
|
||
"371": "Niobe",
|
||
"372": "strange",
|
||
"373": "say!—her",
|
||
"374": "large",
|
||
"375": "lustrous",
|
||
"376": "eye",
|
||
"377": "downwards",
|
||
"378": "grave",
|
||
"379": "wherein",
|
||
"380": "bright",
|
||
"381": "hope",
|
||
"382": "bury",
|
||
"383": "rivet",
|
||
"384": "widely",
|
||
"385": "different",
|
||
"386": "direction",
|
||
"387": "prison",
|
||
"388": "Old",
|
||
"389": "Republic",
|
||
"390": "stately",
|
||
"391": "building",
|
||
"392": "could",
|
||
"393": "lady",
|
||
"394": "gaze",
|
||
"395": "so",
|
||
"396": "fixedly",
|
||
"397": "stifle",
|
||
"398": "yon",
|
||
"399": "dark",
|
||
"400": "gloomy",
|
||
"401": "niche",
|
||
"402": "too",
|
||
"403": "yawn",
|
||
"404": "right",
|
||
"405": "chamber",
|
||
"406": "what",
|
||
"407": "architecture",
|
||
"408": "ivy",
|
||
"409": "wreathe",
|
||
"410": "solemn",
|
||
"411": "cornice",
|
||
"412": "wonder",
|
||
"413": "Nonsense!—Who",
|
||
"414": "do",
|
||
"415": "such",
|
||
"416": "shattered",
|
||
"417": "mirror",
|
||
"418": "multiply",
|
||
"419": "image",
|
||
"420": "sorrow",
|
||
"421": "innumerable",
|
||
"422": "far",
|
||
"423": "off",
|
||
"424": "place",
|
||
"425": "woe",
|
||
"426": "hand",
|
||
"427": "arch",
|
||
"428": "gate",
|
||
"429": "full",
|
||
"430": "dress",
|
||
"431": "satyr",
|
||
"432": "himself",
|
||
"433": "he",
|
||
"434": "occasionally",
|
||
"435": "occupy",
|
||
"436": "thrum",
|
||
"437": "guitar",
|
||
"438": "ennuyé",
|
||
"439": "death",
|
||
"440": "interval",
|
||
"441": "give",
|
||
"442": "stupefied",
|
||
"443": "aghast",
|
||
"444": "myself",
|
||
"445": "power",
|
||
"446": "move",
|
||
"447": "upright",
|
||
"448": "position",
|
||
"449": "assume",
|
||
"450": "hear",
|
||
"451": "must",
|
||
"452": "present",
|
||
"453": "agitated",
|
||
"454": "group",
|
||
"455": "spectral",
|
||
"456": "ominous",
|
||
"457": "appearance",
|
||
"458": "pale",
|
||
"459": "countenance",
|
||
"460": "rigid",
|
||
"461": "limb",
|
||
"462": "float",
|
||
"463": "among",
|
||
"464": "they",
|
||
"465": "funereal",
|
||
"466": "effort",
|
||
"467": "prove",
|
||
"468": "energetic",
|
||
"469": "search",
|
||
"470": "relax",
|
||
"471": "exertion",
|
||
"472": "yield",
|
||
"473": "(",
|
||
"474": "much",
|
||
"475": "less",
|
||
"476": ")",
|
||
"477": "interior",
|
||
"478": "mention",
|
||
"479": "part",
|
||
"480": "republican",
|
||
"481": "front",
|
||
"482": "lattice",
|
||
"483": "muffle",
|
||
"484": "cloak",
|
||
"485": "out",
|
||
"486": "reach",
|
||
"487": "pause",
|
||
"488": "moment",
|
||
"489": "verge",
|
||
"490": "giddy",
|
||
"491": "descent",
|
||
"492": "plunge",
|
||
"493": "headlong",
|
||
"494": "instant",
|
||
"495": "afterwards",
|
||
"496": "live",
|
||
"497": "breathing",
|
||
"498": "grasp",
|
||
"499": "side",
|
||
"500": "drench",
|
||
"501": "become",
|
||
"502": "unfastened",
|
||
"503": "about",
|
||
"504": "discover",
|
||
"505": "stricken",
|
||
"506": "spectator",
|
||
"507": "graceful",
|
||
"508": "man",
|
||
"509": "Europe",
|
||
"510": "ring",
|
||
"511": "word",
|
||
"512": "deliverer",
|
||
"513": "receive",
|
||
"514": "press",
|
||
"515": "cling",
|
||
"516": "smother",
|
||
"517": "another",
|
||
"518": "'s",
|
||
"519": "take",
|
||
"520": "stranger",
|
||
"521": "bear",
|
||
"522": "afar",
|
||
"523": "unnoticed",
|
||
"524": "lip",
|
||
"525": "tremble",
|
||
"526": ":",
|
||
"527": "tear",
|
||
"528": "gather",
|
||
"529": "Pliny",
|
||
"530": "acanthu",
|
||
"531": "soft",
|
||
"532": "almost",
|
||
"533": "liquid",
|
||
"534": "entire",
|
||
"535": "thrill",
|
||
"536": "thoughout",
|
||
"537": "soul",
|
||
"538": "start",
|
||
"539": "pallor",
|
||
"540": "swelling",
|
||
"541": "bosom",
|
||
"542": "purity",
|
||
"543": "flush",
|
||
"544": "tide",
|
||
"545": "ungovernable",
|
||
"546": "crimson",
|
||
"547": "slight",
|
||
"548": "shudder",
|
||
"549": "quiver",
|
||
"550": "frame",
|
||
"551": "gentle",
|
||
"552": "Napoli",
|
||
"553": "rich",
|
||
"554": "silver",
|
||
"555": "lily",
|
||
"556": "grass",
|
||
"557": "why",
|
||
"558": "blush",
|
||
"559": "demand",
|
||
"560": "answer,—except",
|
||
"561": "having",
|
||
"562": "eager",
|
||
"563": "haste",
|
||
"564": "terror",
|
||
"565": "privacy",
|
||
"566": "boudoir",
|
||
"567": "neglect",
|
||
"568": "enthral",
|
||
"569": "tiny",
|
||
"570": "slipper",
|
||
"571": "utterly",
|
||
"572": "throw",
|
||
"573": "venetian",
|
||
"574": "shoulder",
|
||
"575": "due",
|
||
"576": "possible",
|
||
"577": "reason",
|
||
"578": "blushing?—for",
|
||
"579": "glance",
|
||
"580": "appeal",
|
||
"581": "tumult",
|
||
"582": "throb",
|
||
"583": "convulsive",
|
||
"584": "pressure",
|
||
"585": "hand?—that",
|
||
"586": "accidentally",
|
||
"587": "low",
|
||
"588": "singularly",
|
||
"589": "tone",
|
||
"590": "unmeaning",
|
||
"591": "utter",
|
||
"592": "hurriedly",
|
||
"593": "bid",
|
||
"594": "adieu",
|
||
"595": "Thou",
|
||
"596": "hast",
|
||
"597": "conquer",
|
||
"598": "say",
|
||
"599": "murmur",
|
||
"600": "deceive",
|
||
"601": "after",
|
||
"602": "sunrise",
|
||
"603": "******",
|
||
"604": "subside",
|
||
"605": "recognize",
|
||
"606": "flag",
|
||
"607": "shake",
|
||
"608": "inconceivable",
|
||
"609": "agitation",
|
||
"610": "offer",
|
||
"611": "service",
|
||
"612": "accept",
|
||
"613": "civility",
|
||
"614": "obtain",
|
||
"615": "proceed",
|
||
"616": "together",
|
||
"617": "residence",
|
||
"618": "rapidly",
|
||
"619": "recover",
|
||
"620": "self",
|
||
"621": "possession",
|
||
"622": "our",
|
||
"623": "former",
|
||
"624": "acquaintance",
|
||
"625": "term",
|
||
"626": "apparent",
|
||
"627": "cordiality",
|
||
"628": "subject",
|
||
"629": "pleasure",
|
||
"630": "minute",
|
||
"631": "title",
|
||
"632": "these",
|
||
"633": "height",
|
||
"634": "might",
|
||
"635": "below",
|
||
"636": "rather",
|
||
"637": "medium",
|
||
"638": "size",
|
||
"639": "intense",
|
||
"640": "passion",
|
||
"641": "actually",
|
||
"642": "expand",
|
||
"643": "belie",
|
||
"644": "assertion",
|
||
"645": "slender",
|
||
"646": "symmetry",
|
||
"647": "promise",
|
||
"648": "ready",
|
||
"649": "activity",
|
||
"650": "evince",
|
||
"651": "herculean",
|
||
"652": "strength",
|
||
"653": "know",
|
||
"654": "wield",
|
||
"655": "without",
|
||
"656": "occasion",
|
||
"657": "dangerous",
|
||
"658": "emergency",
|
||
"659": "chin",
|
||
"660": "deity",
|
||
"661": "singular",
|
||
"662": "vary",
|
||
"663": "pure",
|
||
"664": "hazel",
|
||
"665": "brilliant",
|
||
"666": "jet",
|
||
"667": "profusion",
|
||
"668": "forehead",
|
||
"669": "breadth",
|
||
"670": "forth",
|
||
"671": "ivory",
|
||
"672": "feature",
|
||
"673": "classically",
|
||
"674": "regular",
|
||
"675": "except",
|
||
"676": "perhaps",
|
||
"677": "Emperor",
|
||
"678": "Commodus",
|
||
"679": "nevertheless",
|
||
"680": "period",
|
||
"681": "never",
|
||
"682": "peculiar",
|
||
"683": "settle",
|
||
"684": "predominant",
|
||
"685": "expression",
|
||
"686": "fasten",
|
||
"687": "memory",
|
||
"688": "instantly",
|
||
"689": "vague",
|
||
"690": "cease",
|
||
"691": "desire",
|
||
"692": "recall",
|
||
"693": "spirit",
|
||
"694": "each",
|
||
"695": "rapid",
|
||
"696": "any",
|
||
"697": "distinct",
|
||
"698": "face",
|
||
"699": "retain",
|
||
"700": "vestige",
|
||
"701": "depart",
|
||
"702": "adventure",
|
||
"703": "solicit",
|
||
"704": "urgent",
|
||
"705": "manner",
|
||
"706": "early",
|
||
"707": "next",
|
||
"708": "morning",
|
||
"709": "shortly",
|
||
"710": "accordingly",
|
||
"711": "Palazzo",
|
||
"712": "fantastic",
|
||
"713": "pomp",
|
||
"714": "tower",
|
||
"715": "vicinity",
|
||
"716": "Rialto",
|
||
"717": "show",
|
||
"718": "wind",
|
||
"719": "mosaic",
|
||
"720": "apartment",
|
||
"721": "unparalleled",
|
||
"722": "splendor",
|
||
"723": "burst",
|
||
"724": "through",
|
||
"725": "opening",
|
||
"726": "door",
|
||
"727": "actual",
|
||
"728": "glare",
|
||
"729": "make",
|
||
"730": "blind",
|
||
"731": "dizzy",
|
||
"732": "luxuriousness",
|
||
"733": "wealthy",
|
||
"734": "report",
|
||
"735": "venture",
|
||
"736": "ridiculous",
|
||
"737": "exaggeration",
|
||
"738": "believe",
|
||
"739": "wealth",
|
||
"740": "supply",
|
||
"741": "princely",
|
||
"742": "magnificence",
|
||
"743": "burn",
|
||
"744": "blaze",
|
||
"745": "sun",
|
||
"746": "arise",
|
||
"747": "room",
|
||
"748": "brilliantly",
|
||
"749": "judge",
|
||
"750": "well",
|
||
"751": "exhaustion",
|
||
"752": "friend",
|
||
"753": "retire",
|
||
"754": "bed",
|
||
"755": "during",
|
||
"756": "whole",
|
||
"757": "precede",
|
||
"758": "embellishment",
|
||
"759": "evident",
|
||
"760": "design",
|
||
"761": "dazzle",
|
||
"762": "astound",
|
||
"763": "attention",
|
||
"764": "pay",
|
||
"765": "decora",
|
||
"766": "technically",
|
||
"767": "keeping",
|
||
"768": "propriety",
|
||
"769": "nationality",
|
||
"770": "wander",
|
||
"771": "object",
|
||
"772": "rest",
|
||
"773": "neither",
|
||
"774": "grotesque",
|
||
"775": "greek",
|
||
"776": "painter",
|
||
"777": "nor",
|
||
"778": "sculpture",
|
||
"779": "good",
|
||
"780": "carving",
|
||
"781": "untutored",
|
||
"782": "Egypt",
|
||
"783": "every",
|
||
"784": "vibration",
|
||
"785": "melancholy",
|
||
"786": "music",
|
||
"787": "origin",
|
||
"788": "sense",
|
||
"789": "oppress",
|
||
"790": "mingled",
|
||
"791": "conflict",
|
||
"792": "perfume",
|
||
"793": "reek",
|
||
"794": "convolute",
|
||
"795": "censer",
|
||
"796": "multitudinous",
|
||
"797": "flaring",
|
||
"798": "flicker",
|
||
"799": "tongue",
|
||
"800": "emerald",
|
||
"801": "violet",
|
||
"802": "fire",
|
||
"803": "ray",
|
||
"804": "newly",
|
||
"805": "pour",
|
||
"806": "pane",
|
||
"807": "tint",
|
||
"808": "glass",
|
||
"809": "fro",
|
||
"810": "reflection",
|
||
"811": "curtain",
|
||
"812": "roll",
|
||
"813": "cataract",
|
||
"814": "molten",
|
||
"815": "beam",
|
||
"816": "natural",
|
||
"817": "glory",
|
||
"818": "mingle",
|
||
"819": "length",
|
||
"820": "fitfully",
|
||
"821": "artificial",
|
||
"822": "welter",
|
||
"823": "subdued",
|
||
"824": "masse",
|
||
"825": "carpet",
|
||
"826": "cloth",
|
||
"827": "Chili",
|
||
"828": "gold",
|
||
"829": "ha",
|
||
"830": "ha!—ha",
|
||
"831": "laugh",
|
||
"832": "proprietor",
|
||
"833": "seat",
|
||
"834": "enter",
|
||
"835": "back",
|
||
"836": "ottoman",
|
||
"837": "perceive",
|
||
"838": "immediately",
|
||
"839": "reconcile",
|
||
"840": "bienseance",
|
||
"841": "welcome—\"i",
|
||
"842": "you",
|
||
"843": "astonish",
|
||
"844": "picture",
|
||
"845": "originality",
|
||
"846": "conception",
|
||
"847": "upholstery",
|
||
"848": "absolutely",
|
||
"849": "drunk",
|
||
"850": "eh",
|
||
"851": "pardon",
|
||
"852": "dear",
|
||
"853": "sir",
|
||
"854": "drop",
|
||
"855": "uncharitable",
|
||
"856": "laughter",
|
||
"857": "appear",
|
||
"858": "astonished",
|
||
"859": "besides",
|
||
"860": "thing",
|
||
"861": "completely",
|
||
"862": "ludicrous",
|
||
"863": "glorious",
|
||
"864": "Sir",
|
||
"865": "Thomas",
|
||
"866": "fine",
|
||
"867": "died",
|
||
"868": "also",
|
||
"869": "Absurdities",
|
||
"870": "Ravisius",
|
||
"871": "Textor",
|
||
"872": "list",
|
||
"873": "character",
|
||
"874": "come",
|
||
"875": "same",
|
||
"876": "end",
|
||
"877": "however",
|
||
"878": "musingly",
|
||
"879": "Sparta",
|
||
"880": "Palæochori",
|
||
"881": "west",
|
||
"882": "citadel",
|
||
"883": "chaos",
|
||
"884": "scarcely",
|
||
"885": "visible",
|
||
"886": "ruin",
|
||
"887": "kind",
|
||
"888": "socle",
|
||
"889": "legible",
|
||
"890": "letter",
|
||
"891": "ΑΑΞΜ",
|
||
"892": "undoubtedly",
|
||
"893": "ΓΕΑΑΞΜΑ",
|
||
"894": "temple",
|
||
"895": "shrine",
|
||
"896": "divinity",
|
||
"897": "exceedingly",
|
||
"898": "altar",
|
||
"899": "Laughter",
|
||
"900": "survive",
|
||
"901": "instance",
|
||
"902": "resume",
|
||
"903": "alteration",
|
||
"904": "merry",
|
||
"905": "your",
|
||
"906": "expense",
|
||
"907": "amazed",
|
||
"908": "produce",
|
||
"909": "anything",
|
||
"910": "regal",
|
||
"911": "cabinet",
|
||
"912": "means",
|
||
"913": "order",
|
||
"914": "mere",
|
||
"915": "ultra",
|
||
"916": "fashionable",
|
||
"917": "insipidity",
|
||
"918": "fashion",
|
||
"919": "rage",
|
||
"920": "afford",
|
||
"921": "cost",
|
||
"922": "patrimony",
|
||
"923": "guard",
|
||
"924": "against",
|
||
"925": "profanation",
|
||
"926": "exception",
|
||
"927": "human",
|
||
"928": "being",
|
||
"929": "valet",
|
||
"930": "admit",
|
||
"931": "mystery",
|
||
"932": "imperial",
|
||
"933": "precinct",
|
||
"934": "bedizen",
|
||
"935": "bow",
|
||
"936": "acknowledgment",
|
||
"937": "overpower",
|
||
"938": "unexpected",
|
||
"939": "eccentricity",
|
||
"940": "address",
|
||
"941": "prevent",
|
||
"942": "express",
|
||
"943": "appreciation",
|
||
"944": "construe",
|
||
"945": "compliment",
|
||
"946": "lean",
|
||
"947": "saunter",
|
||
"948": "apartment—\"here",
|
||
"949": "painting",
|
||
"950": "Greeks",
|
||
"951": "Cimabue",
|
||
"952": "choose",
|
||
"953": "deference",
|
||
"954": "opinion",
|
||
"955": "Virtu",
|
||
"956": "fit",
|
||
"957": "tapestry",
|
||
"958": "chef",
|
||
"959": "d'œuvre",
|
||
"960": "unknown",
|
||
"961": "unfinished",
|
||
"962": "celebrate",
|
||
"963": "perspicacity",
|
||
"964": "academy",
|
||
"965": "silence",
|
||
"966": "abruptly",
|
||
"967": "spoke—\"what",
|
||
"968": "Madonna",
|
||
"969": "della",
|
||
"970": "Pieta",
|
||
"971": "Guido",
|
||
"972": "enthusiasm",
|
||
"973": "nature",
|
||
"974": "pore",
|
||
"975": "intently",
|
||
"976": "surpass",
|
||
"977": "loveliness",
|
||
"978": "own!—how",
|
||
"979": "it?—she",
|
||
"980": "paint",
|
||
"981": "Venus",
|
||
"982": "thoughtfully",
|
||
"983": "Venus?—the",
|
||
"984": "Medici?—she",
|
||
"985": "diminutive",
|
||
"986": "gild",
|
||
"987": "left",
|
||
"988": "difficulty",
|
||
"989": "restoration",
|
||
"990": "coquetry",
|
||
"991": "quintessence",
|
||
"992": "affectation",
|
||
"993": "Canova",
|
||
"994": "Apollo",
|
||
"995": "copy",
|
||
"996": "doubt",
|
||
"997": "fool",
|
||
"998": "boast",
|
||
"999": "inspiration",
|
||
"1000": "help",
|
||
"1001": "pity",
|
||
"1002": "me!—I",
|
||
"1003": "prefer",
|
||
"1004": "Antinous",
|
||
"1005": "Socrates",
|
||
"1006": "statuary",
|
||
"1007": "block",
|
||
"1008": "Michael",
|
||
"1009": "Angelo",
|
||
"1010": "original",
|
||
"1011": "couplet",
|
||
"1012": "'",
|
||
"1013": "non",
|
||
"1014": "l'ottimo",
|
||
"1015": "artista",
|
||
"1016": "alcun",
|
||
"1017": "concetto",
|
||
"1018": "che",
|
||
"1019": "un",
|
||
"1020": "marmo",
|
||
"1021": "solo",
|
||
"1022": "se",
|
||
"1023": "circonscriva",
|
||
"1024": "remark",
|
||
"1025": "true",
|
||
"1026": "gentleman",
|
||
"1027": "always",
|
||
"1028": "aware",
|
||
"1029": "difference",
|
||
"1030": "bearing",
|
||
"1031": "vulgar",
|
||
"1032": "precisely",
|
||
"1033": "able",
|
||
"1034": "determine",
|
||
"1035": "consist",
|
||
"1036": "allow",
|
||
"1037": "apply",
|
||
"1038": "force",
|
||
"1039": "outward",
|
||
"1040": "demeanor",
|
||
"1041": "feel",
|
||
"1042": "eventful",
|
||
"1043": "fully",
|
||
"1044": "applicable",
|
||
"1045": "moral",
|
||
"1046": "temperament",
|
||
"1047": "define",
|
||
"1048": "peculiarity",
|
||
"1049": "essentially",
|
||
"1050": "apart",
|
||
"1051": "habit",
|
||
"1052": "continual",
|
||
"1053": "pervade",
|
||
"1054": "trivial",
|
||
"1055": "action",
|
||
"1056": "intrude",
|
||
"1057": "dalliance",
|
||
"1058": "interweave",
|
||
"1059": "merriment",
|
||
"1060": "adder",
|
||
"1061": "writhe",
|
||
"1062": "grin",
|
||
"1063": "mask",
|
||
"1064": "Persepolis",
|
||
"1065": "repeatedly",
|
||
"1066": "observe",
|
||
"1067": "levity",
|
||
"1068": "solemnity",
|
||
"1069": "descant",
|
||
"1070": "matter",
|
||
"1071": "importance",
|
||
"1072": "certain",
|
||
"1073": "trepidation",
|
||
"1074": "degree",
|
||
"1075": "nervous",
|
||
"1076": "unction",
|
||
"1077": "speech",
|
||
"1078": "unquiet",
|
||
"1079": "excitability",
|
||
"1080": "unaccountable",
|
||
"1081": "fill",
|
||
"1082": "alarm",
|
||
"1083": "frequently",
|
||
"1084": "middle",
|
||
"1085": "sentence",
|
||
"1086": "commencement",
|
||
"1087": "apparently",
|
||
"1088": "listen",
|
||
"1089": "if",
|
||
"1090": "either",
|
||
"1091": "momentary",
|
||
"1092": "expectation",
|
||
"1093": "visitor",
|
||
"1094": "existence",
|
||
"1095": "reverie",
|
||
"1096": "abstraction",
|
||
"1097": "page",
|
||
"1098": "poet",
|
||
"1099": "scholar",
|
||
"1100": "Politian",
|
||
"1101": "tragedy",
|
||
"1102": "Orfeo",
|
||
"1103": "native",
|
||
"1104": "near",
|
||
"1105": "passage",
|
||
"1106": "underline",
|
||
"1107": "pencil",
|
||
"1108": "act",
|
||
"1109": "excitement",
|
||
"1110": "taint",
|
||
"1111": "impurity",
|
||
"1112": "read",
|
||
"1113": "novel",
|
||
"1114": "emotion",
|
||
"1115": "sigh",
|
||
"1116": "blot",
|
||
"1117": "fresh",
|
||
"1118": "interleaf",
|
||
"1119": "follow",
|
||
"1120": "english",
|
||
"1121": "line",
|
||
"1122": "write",
|
||
"1123": "wast",
|
||
"1124": "love",
|
||
"1125": "For",
|
||
"1126": "pine",
|
||
"1127": "green",
|
||
"1128": "isle",
|
||
"1129": "a",
|
||
"1130": "fountain",
|
||
"1131": "fairy",
|
||
"1132": "fruit",
|
||
"1133": "flower",
|
||
"1134": "And",
|
||
"1135": "mine",
|
||
"1136": "dream",
|
||
"1137": "last",
|
||
"1138": "ah",
|
||
"1139": "starry",
|
||
"1140": "Hope",
|
||
"1141": "didst",
|
||
"1142": "overcast",
|
||
"1143": "A",
|
||
"1144": "Future",
|
||
"1145": "cry",
|
||
"1146": "onward!\"—but",
|
||
"1147": "o'er",
|
||
"1148": "past",
|
||
"1149": "(Dim",
|
||
"1150": "gulf",
|
||
"1151": "hover",
|
||
"1152": "Mute",
|
||
"1153": "motionless",
|
||
"1154": "ala",
|
||
"1155": "The",
|
||
"1156": "(Such",
|
||
"1157": "language",
|
||
"1158": "hold",
|
||
"1159": "sand",
|
||
"1160": "shore",
|
||
"1161": "shall",
|
||
"1162": "bloom",
|
||
"1163": "thunder",
|
||
"1164": "blast",
|
||
"1165": "tree",
|
||
"1166": "eagle",
|
||
"1167": "soar",
|
||
"1168": "trance",
|
||
"1169": "and",
|
||
"1170": "nightly",
|
||
"1171": "footstep",
|
||
"1172": "ethereal",
|
||
"1173": "dance",
|
||
"1174": "by",
|
||
"1175": "accurse",
|
||
"1176": "they",
|
||
"1177": "billow",
|
||
"1178": "Prom",
|
||
"1179": "Love",
|
||
"1180": "age",
|
||
"1181": "crime",
|
||
"1182": "unholy",
|
||
"1183": "pillow",
|
||
"1184": "misty",
|
||
"1185": "clime",
|
||
"1186": "where",
|
||
"1187": "weep",
|
||
"1188": "willow",
|
||
"1189": "English",
|
||
"1190": "author",
|
||
"1191": "acquaint",
|
||
"1192": "surprise",
|
||
"1193": "extent",
|
||
"1194": "acquirement",
|
||
"1195": "conceal",
|
||
"1196": "observation",
|
||
"1197": "similar",
|
||
"1198": "discovery",
|
||
"1199": "date",
|
||
"1200": "confess",
|
||
"1201": "amazement",
|
||
"1202": "originally",
|
||
"1203": "London",
|
||
"1204": "carefully",
|
||
"1205": "overscore",
|
||
"1206": "effectually",
|
||
"1207": "scrutinize",
|
||
"1208": "conversation",
|
||
"1209": "particularly",
|
||
"1210": "inquire",
|
||
"1211": "year",
|
||
"1212": "previous",
|
||
"1213": "marriage",
|
||
"1214": "reside",
|
||
"1215": "answer",
|
||
"1216": "mistake",
|
||
"1217": "understand",
|
||
"1218": "visit",
|
||
"1219": "metropolis",
|
||
"1220": "Great",
|
||
"1221": "Britain",
|
||
"1222": "course",
|
||
"1223": "credit",
|
||
"1224": "involve",
|
||
"1225": "improbability",
|
||
"1226": "birth",
|
||
"1227": "education",
|
||
"1228": "Englishman",
|
||
"1229": "notice",
|
||
"1230": "tragedy—\"there",
|
||
"1231": "aside",
|
||
"1232": "portrait",
|
||
"1233": "delineation",
|
||
"1234": "superhuman",
|
||
"1235": "smile",
|
||
"1236": "lurk",
|
||
"1237": "incomprehensible",
|
||
"1238": "anomaly",
|
||
"1239": "fitful",
|
||
"1240": "stain",
|
||
"1241": "inseparable",
|
||
"1242": "perfection",
|
||
"1243": "point",
|
||
"1244": "downward",
|
||
"1245": "curiously",
|
||
"1246": "fashioned",
|
||
"1247": "vase",
|
||
"1248": "barely",
|
||
"1249": "touch",
|
||
"1250": "earth",
|
||
"1251": "discernible",
|
||
"1252": "atmosphere",
|
||
"1253": "encircle",
|
||
"1254": "enshrine",
|
||
"1255": "pair",
|
||
"1256": "delicately",
|
||
"1257": "imagined",
|
||
"1258": "wing",
|
||
"1259": "vigorous",
|
||
"1260": "Chapman",
|
||
"1261": "Bussy",
|
||
"1262": "D'Ambois",
|
||
"1263": "instinctively",
|
||
"1264": "\"He",
|
||
"1265": "roman",
|
||
"1266": "till",
|
||
"1267": "table",
|
||
"1268": "richly",
|
||
"1269": "enamel",
|
||
"1270": "massive",
|
||
"1271": "goblet",
|
||
"1272": "fantastically",
|
||
"1273": "two",
|
||
"1274": "etruscan",
|
||
"1275": "extraordinary",
|
||
"1276": "model",
|
||
"1277": "foreground",
|
||
"1278": "suppose",
|
||
"1279": "Johannisberger",
|
||
"1280": "drink",
|
||
"1281": "indeed",
|
||
"1282": "cherub",
|
||
"1283": "golden",
|
||
"1284": "hammer",
|
||
"1285": "sunrise—\"it",
|
||
"1286": "offering",
|
||
"1287": "gaudy",
|
||
"1288": "lamp",
|
||
"1289": "subdue",
|
||
"1290": "pledge",
|
||
"1291": "bumper",
|
||
"1292": "swallow",
|
||
"1293": "succession",
|
||
"1294": "several",
|
||
"1295": "wine",
|
||
"1296": "desultory",
|
||
"1297": "vases—\"to",
|
||
"1298": "business",
|
||
"1299": "therefore",
|
||
"1300": "bower",
|
||
"1301": "erect",
|
||
"1302": "medley",
|
||
"1303": "architectural",
|
||
"1304": "chastity",
|
||
"1305": "Ionia",
|
||
"1306": "offend",
|
||
"1307": "antediluvian",
|
||
"1308": "device",
|
||
"1309": "sphynxe",
|
||
"1310": "outstretche",
|
||
"1311": "effect",
|
||
"1312": "incongruous",
|
||
"1313": "timid",
|
||
"1314": "especially",
|
||
"1315": "bugbear",
|
||
"1316": "terrify",
|
||
"1317": "mankind",
|
||
"1318": "contemplation",
|
||
"1319": "decorist",
|
||
"1320": "sublimation",
|
||
"1321": "folly",
|
||
"1322": "pal",
|
||
"1323": "fitter",
|
||
"1324": "purpose",
|
||
"1325": "arabesque",
|
||
"1326": "delirium",
|
||
"1327": "scene",
|
||
"1328": "land",
|
||
"1329": "real",
|
||
"1330": "whither",
|
||
"1331": "bend",
|
||
"1332": "upwards",
|
||
"1333": "ejaculate",
|
||
"1334": "Bishop",
|
||
"1335": "to",
|
||
"1336": "quick",
|
||
"1337": "loud",
|
||
"1338": "knock",
|
||
"1339": "succeed",
|
||
"1340": "hasten",
|
||
"1341": "anticipate",
|
||
"1342": "second",
|
||
"1343": "disturbance",
|
||
"1344": "household",
|
||
"1345": "falter",
|
||
"1346": "choke",
|
||
"1347": "incoherent",
|
||
"1348": "mistress!—my",
|
||
"1349": "mistress!—poisoned!—poisone",
|
||
"1350": "Bewildered",
|
||
"1351": "fly",
|
||
"1352": "endeavor",
|
||
"1353": "arouse",
|
||
"1354": "sleeper",
|
||
"1355": "startling",
|
||
"1356": "intelligence",
|
||
"1357": "lately",
|
||
"1358": "stagere",
|
||
"1359": "cracked",
|
||
"1360": "blacken",
|
||
"1361": "consciousness",
|
||
"1362": "terrible",
|
||
"1363": "truth",
|
||
"1364": "tell",
|
||
"1365": "TALE",
|
||
"1366": "HEART",
|
||
"1367": "dreadfully",
|
||
"1368": "am",
|
||
"1369": "mad",
|
||
"1370": "disease",
|
||
"1371": "sharpen",
|
||
"1372": "destroy",
|
||
"1373": "dull",
|
||
"1374": "acute",
|
||
"1375": "heaven",
|
||
"1376": "hell",
|
||
"1377": "Hearken",
|
||
"1378": "healthily",
|
||
"1379": "calmly",
|
||
"1380": "story",
|
||
"1381": "impossible",
|
||
"1382": "idea",
|
||
"1383": "brain",
|
||
"1384": "conceive",
|
||
"1385": "haunt",
|
||
"1386": "wrong",
|
||
"1387": "insult",
|
||
"1388": "resemble",
|
||
"1389": "vulture",
|
||
"1390": "blue",
|
||
"1391": "film",
|
||
"1392": "whenever",
|
||
"1393": "blood",
|
||
"1394": "run",
|
||
"1395": "gradually",
|
||
"1396": "thus",
|
||
"1397": "rid",
|
||
"1398": "forever",
|
||
"1399": "madman",
|
||
"1400": "nothing",
|
||
"1401": "wisely",
|
||
"1402": "caution",
|
||
"1403": "foresight",
|
||
"1404": "dissimulation",
|
||
"1405": "go",
|
||
"1406": "work",
|
||
"1407": "week",
|
||
"1408": "kill",
|
||
"1409": "latch",
|
||
"1410": "open",
|
||
"1411": "gently",
|
||
"1412": "sufficient",
|
||
"1413": "put",
|
||
"1414": "lantern",
|
||
"1415": "shine",
|
||
"1416": "thrust",
|
||
"1417": "would",
|
||
"1418": "cunningly",
|
||
"1419": "disturb",
|
||
"1420": "sleep",
|
||
"1421": "wise",
|
||
"1422": "undo",
|
||
"1423": "cautiously",
|
||
"1424": "hinge",
|
||
"1425": "creak",
|
||
"1426": "just",
|
||
"1427": "thin",
|
||
"1428": "seven",
|
||
"1429": "vex",
|
||
"1430": "Evil",
|
||
"1431": "Eye",
|
||
"1432": "boldly",
|
||
"1433": "courageously",
|
||
"1434": "hearty",
|
||
"1435": "pass",
|
||
"1436": "profound",
|
||
"1437": "suspect",
|
||
"1438": "twelve",
|
||
"1439": "eighth",
|
||
"1440": "usually",
|
||
"1441": "cautious",
|
||
"1442": "watch",
|
||
"1443": "quickly",
|
||
"1444": "sagacity",
|
||
"1445": "contain",
|
||
"1446": "feeling",
|
||
"1447": "triumph",
|
||
"1448": "deed",
|
||
"1449": "fairly",
|
||
"1450": "chuckle",
|
||
"1451": "startled",
|
||
"1452": "may",
|
||
"1453": "draw",
|
||
"1454": "pitch",
|
||
"1455": "thick",
|
||
"1456": "shutter",
|
||
"1457": "fear",
|
||
"1458": "robber",
|
||
"1459": "keep",
|
||
"1460": "push",
|
||
"1461": "steadily",
|
||
"1462": "thumb",
|
||
"1463": "tin",
|
||
"1464": "fastening",
|
||
"1465": "quite",
|
||
"1466": "muscle",
|
||
"1467": "meantime",
|
||
"1468": "sit",
|
||
"1469": "hearken",
|
||
"1470": "wall",
|
||
"1471": "presently",
|
||
"1472": "groan",
|
||
"1473": "mortal",
|
||
"1474": "pain",
|
||
"1475": "grief",
|
||
"1476": "bottom",
|
||
"1477": "overcharge",
|
||
"1478": "awe",
|
||
"1479": "deepen",
|
||
"1480": "dreadful",
|
||
"1481": "echo",
|
||
"1482": "distract",
|
||
"1483": "awake",
|
||
"1484": "noise",
|
||
"1485": "grow",
|
||
"1486": "try",
|
||
"1487": "causeless",
|
||
"1488": "chimney",
|
||
"1489": "mouse",
|
||
"1490": "cross",
|
||
"1491": "floor",
|
||
"1492": "merely",
|
||
"1493": "cricket",
|
||
"1494": "chirp",
|
||
"1495": "comfort",
|
||
"1496": "supposition",
|
||
"1497": "because",
|
||
"1498": "approach",
|
||
"1499": "envelop",
|
||
"1500": "mournful",
|
||
"1501": "influence",
|
||
"1502": "unperceived",
|
||
"1503": "cause",
|
||
"1504": "presence",
|
||
"1505": "wait",
|
||
"1506": "patiently",
|
||
"1507": "resolve",
|
||
"1508": "crevice",
|
||
"1509": "imagine",
|
||
"1510": "stealthily",
|
||
"1511": "until",
|
||
"1512": "thread",
|
||
"1513": "spider",
|
||
"1514": "shoot",
|
||
"1515": "furious",
|
||
"1516": "perfect",
|
||
"1517": "distinctness",
|
||
"1518": "hideous",
|
||
"1519": "veil",
|
||
"1520": "chill",
|
||
"1521": "marrow",
|
||
"1522": "bone",
|
||
"1523": "else",
|
||
"1524": "direct",
|
||
"1525": "instinct",
|
||
"1526": "damned",
|
||
"1527": "spot",
|
||
"1528": "madness",
|
||
"1529": "acuteness",
|
||
"1530": "ear",
|
||
"1531": "cotton",
|
||
"1532": "beating",
|
||
"1533": "increase",
|
||
"1534": "fury",
|
||
"1535": "drum",
|
||
"1536": "stimulate",
|
||
"1537": "soldier",
|
||
"1538": "courage",
|
||
"1539": "refrain",
|
||
"1540": "breathe",
|
||
"1541": "maintain",
|
||
"1542": "hellish",
|
||
"1543": "tattoo",
|
||
"1544": "louder",
|
||
"1545": "extreme",
|
||
"1546": "moment!—do",
|
||
"1547": "mark",
|
||
"1548": "dead",
|
||
"1549": "house",
|
||
"1550": "excite",
|
||
"1551": "uncontrollable",
|
||
"1552": "new",
|
||
"1553": "anxiety",
|
||
"1554": "seize",
|
||
"1555": "neighbor",
|
||
"1556": "yell",
|
||
"1557": "leap",
|
||
"1558": "drag",
|
||
"1559": "pull",
|
||
"1560": "gaily",
|
||
"1561": "beat",
|
||
"1562": "muffled",
|
||
"1563": "remove",
|
||
"1564": "examine",
|
||
"1565": "corpse",
|
||
"1566": "stone",
|
||
"1567": "pulsation",
|
||
"1568": "trouble",
|
||
"1569": "describe",
|
||
"1570": "precaution",
|
||
"1571": "concealment",
|
||
"1572": "body",
|
||
"1573": "wane",
|
||
"1574": "hastily",
|
||
"1575": "three",
|
||
"1576": "plank",
|
||
"1577": "flooring",
|
||
"1578": "deposit",
|
||
"1579": "between",
|
||
"1580": "scantling",
|
||
"1581": "replace",
|
||
"1582": "board",
|
||
"1583": "cleverly",
|
||
"1584": "detect",
|
||
"1585": "wash",
|
||
"1586": "bloodspot",
|
||
"1587": "whatever",
|
||
"1588": "wary",
|
||
"1589": "labor",
|
||
"1590": "four",
|
||
"1591": "o'clock",
|
||
"1592": "bell",
|
||
"1593": "knocking",
|
||
"1594": "street",
|
||
"1595": "introduce",
|
||
"1596": "themselves",
|
||
"1597": "suavity",
|
||
"1598": "officer",
|
||
"1599": "police",
|
||
"1600": "suspicion",
|
||
"1601": "foul",
|
||
"1602": "play",
|
||
"1603": "information",
|
||
"1604": "lodge",
|
||
"1605": "office",
|
||
"1606": "depute",
|
||
"1607": "premise",
|
||
"1608": "welcome",
|
||
"1609": "absent",
|
||
"1610": "country",
|
||
"1611": "bade",
|
||
"1612": "lead",
|
||
"1613": "secure",
|
||
"1614": "undisturbed",
|
||
"1615": "confidence",
|
||
"1616": "chair",
|
||
"1617": "fatigue",
|
||
"1618": "audacity",
|
||
"1619": "repose",
|
||
"1620": "satisfied",
|
||
"1621": "convince",
|
||
"1622": "ease",
|
||
"1623": "cheerily",
|
||
"1624": "chat",
|
||
"1625": "familiar",
|
||
"1626": "ere",
|
||
"1627": "get",
|
||
"1628": "wish",
|
||
"1629": "ached",
|
||
"1630": "ringing",
|
||
"1631": "distinct;—it",
|
||
"1632": "talk",
|
||
"1633": "freely",
|
||
"1634": "gain",
|
||
"1635": "definitiveness",
|
||
"1636": "fluently",
|
||
"1637": "heightened",
|
||
"1638": "gasp",
|
||
"1639": "breath",
|
||
"1640": "vehemently",
|
||
"1641": "argue",
|
||
"1642": "trifle",
|
||
"1643": "high",
|
||
"1644": "key",
|
||
"1645": "violent",
|
||
"1646": "gesticulation",
|
||
"1647": "pace",
|
||
"1648": "stride",
|
||
"1649": "o",
|
||
"1650": "God",
|
||
"1651": "foam",
|
||
"1652": "rave",
|
||
"1653": "swear",
|
||
"1654": "swing",
|
||
"1655": "grate",
|
||
"1656": "continually",
|
||
"1657": "pleasantly",
|
||
"1658": "Almighty",
|
||
"1659": "god!—no",
|
||
"1660": "heard!—they",
|
||
"1661": "suspected!—they",
|
||
"1662": "knew!—they",
|
||
"1663": "mockery",
|
||
"1664": "horror!—this",
|
||
"1665": "agony",
|
||
"1666": "tolerable",
|
||
"1667": "derision",
|
||
"1668": "hypocritical",
|
||
"1669": "scream",
|
||
"1670": "die!—and",
|
||
"1671": "again!—hark",
|
||
"1672": "villain",
|
||
"1673": "dissemble",
|
||
"1674": "deed!—tear",
|
||
"1675": "planks!—here",
|
||
"1676": "here!—it",
|
||
"1677": "RAGGED",
|
||
"1678": "MOUNTAINS",
|
||
"1679": "1827",
|
||
"1680": "Charlottesville",
|
||
"1681": "Virginia",
|
||
"1682": "casually",
|
||
"1683": "Mr.",
|
||
"1684": "Augustus",
|
||
"1685": "Bedloe",
|
||
"1686": "remarkable",
|
||
"1687": "respect",
|
||
"1688": "interest",
|
||
"1689": "curiosity",
|
||
"1690": "comprehend",
|
||
"1691": "physical",
|
||
"1692": "relation",
|
||
"1693": "family",
|
||
"1694": "satisfactory",
|
||
"1695": "account",
|
||
"1696": "whence",
|
||
"1697": "ascertain",
|
||
"1698": "something",
|
||
"1699": "perplex",
|
||
"1700": "certainly",
|
||
"1701": "hundred",
|
||
"1702": "regard",
|
||
"1703": "personal",
|
||
"1704": "tall",
|
||
"1705": "stoop",
|
||
"1706": "emaciated",
|
||
"1707": "complexion",
|
||
"1708": "bloodless",
|
||
"1709": "flexible",
|
||
"1710": "tooth",
|
||
"1711": "uneven",
|
||
"1712": "unpleasing",
|
||
"1713": "variation",
|
||
"1714": "phaseless",
|
||
"1715": "uncease",
|
||
"1716": "abnormally",
|
||
"1717": "cat",
|
||
"1718": "pupil",
|
||
"1719": "accession",
|
||
"1720": "dimunition",
|
||
"1721": "undergo",
|
||
"1722": "contraction",
|
||
"1723": "dilation",
|
||
"1724": "feline",
|
||
"1725": "tribe",
|
||
"1726": "orb",
|
||
"1727": "emit",
|
||
"1728": "luminous",
|
||
"1729": "reflect",
|
||
"1730": "intrinsic",
|
||
"1731": "lustre",
|
||
"1732": "candle",
|
||
"1733": "ordinary",
|
||
"1734": "condition",
|
||
"1735": "totally",
|
||
"1736": "vapid",
|
||
"1737": "filmy",
|
||
"1738": "convey",
|
||
"1739": "inter",
|
||
"1740": "annoyance",
|
||
"1741": "allude",
|
||
"1742": "sort",
|
||
"1743": "explanatory",
|
||
"1744": "apologetic",
|
||
"1745": "strain",
|
||
"1746": "impress",
|
||
"1747": "painfully",
|
||
"1748": "soon",
|
||
"1749": "accustomed",
|
||
"1750": "uneasiness",
|
||
"1751": "wear",
|
||
"1752": "insinuate",
|
||
"1753": "directly",
|
||
"1754": "assert",
|
||
"1755": "physically",
|
||
"1756": "series",
|
||
"1757": "neuralgic",
|
||
"1758": "attack",
|
||
"1759": "reduce",
|
||
"1760": "usual",
|
||
"1761": "attend",
|
||
"1762": "physician",
|
||
"1763": "Templeton",
|
||
"1764": "seventy",
|
||
"1765": "encounter",
|
||
"1766": "Saratoga",
|
||
"1767": "benefit",
|
||
"1768": "result",
|
||
"1769": "arrangement",
|
||
"1770": "Doctor",
|
||
"1771": "latter",
|
||
"1772": "consideration",
|
||
"1773": "liberal",
|
||
"1774": "annual",
|
||
"1775": "allowance",
|
||
"1776": "consent",
|
||
"1777": "devote",
|
||
"1778": "medical",
|
||
"1779": "experience",
|
||
"1780": "exclusively",
|
||
"1781": "care",
|
||
"1782": "invalid",
|
||
"1783": "traveller",
|
||
"1784": "Paris",
|
||
"1785": "convert",
|
||
"1786": "measure",
|
||
"1787": "doctrine",
|
||
"1788": "Mesmer",
|
||
"1789": "altogether",
|
||
"1790": "mean",
|
||
"1791": "magnetic",
|
||
"1792": "remedy",
|
||
"1793": "alleviate",
|
||
"1794": "patient",
|
||
"1795": "success",
|
||
"1796": "naturally",
|
||
"1797": "inspire",
|
||
"1798": "educe",
|
||
"1799": "enthusiast",
|
||
"1800": "hard",
|
||
"1801": "thorough",
|
||
"1802": "finally",
|
||
"1803": "induce",
|
||
"1804": "sufferer",
|
||
"1805": "submit",
|
||
"1806": "numerous",
|
||
"1807": "experiments.—by",
|
||
"1808": "frequent",
|
||
"1809": "repetition",
|
||
"1810": "late",
|
||
"1811": "common",
|
||
"1812": "attract",
|
||
"1813": "rarely",
|
||
"1814": "America",
|
||
"1815": "strongly",
|
||
"1816": "rapport",
|
||
"1817": "prepared",
|
||
"1818": "extend",
|
||
"1819": "limit",
|
||
"1820": "simple",
|
||
"1821": "attain",
|
||
"1822": "intensity",
|
||
"1823": "attempt",
|
||
"1824": "somnolency",
|
||
"1825": "mesmerist",
|
||
"1826": "entirely",
|
||
"1827": "fift",
|
||
"1828": "sixth",
|
||
"1829": "partially",
|
||
"1830": "twelfth",
|
||
"1831": "complete",
|
||
"1832": "succumb",
|
||
"1833": "became",
|
||
"1834": "instantaneously",
|
||
"1835": "volition",
|
||
"1836": "operator",
|
||
"1837": "unaware",
|
||
"1838": "1845",
|
||
"1839": "miracle",
|
||
"1840": "witness",
|
||
"1841": "daily",
|
||
"1842": "dare",
|
||
"1843": "record",
|
||
"1844": "impossibility",
|
||
"1845": "serious",
|
||
"1846": "fact",
|
||
"1847": "sensitive",
|
||
"1848": "excitable",
|
||
"1849": "enthusiastic",
|
||
"1850": "creative",
|
||
"1851": "derive",
|
||
"1852": "additional",
|
||
"1853": "habitual",
|
||
"1854": "use",
|
||
"1855": "morphine",
|
||
"1856": "quantity",
|
||
"1857": "exist",
|
||
"1858": "practice",
|
||
"1859": "dose",
|
||
"1860": "breakfast",
|
||
"1861": "cup",
|
||
"1862": "strong",
|
||
"1863": "coffee",
|
||
"1864": "eat",
|
||
"1865": "forenoon",
|
||
"1866": "dog",
|
||
"1867": "ramble",
|
||
"1868": "chain",
|
||
"1869": "dreary",
|
||
"1870": "hill",
|
||
"1871": "westward",
|
||
"1872": "southward",
|
||
"1873": "dignify",
|
||
"1874": "Ragged",
|
||
"1875": "Mountains",
|
||
"1876": "warm",
|
||
"1877": "November",
|
||
"1878": "interregnum",
|
||
"1879": "season",
|
||
"1880": "Indian",
|
||
"1881": "Summer",
|
||
"1882": "eight",
|
||
"1883": "seriously",
|
||
"1884": "alarmed",
|
||
"1885": "protracted",
|
||
"1886": "absence",
|
||
"1887": "unexpectedly",
|
||
"1888": "health",
|
||
"1889": "bad",
|
||
"1890": "expedition",
|
||
"1891": "event",
|
||
"1892": "detain",
|
||
"1893": "nine",
|
||
"1894": "mountain",
|
||
"1895": "ten",
|
||
"1896": "gorge",
|
||
"1897": "winding",
|
||
"1898": "scenery",
|
||
"1899": "entitle",
|
||
"1900": "grand",
|
||
"1901": "indescribable",
|
||
"1902": "delicious",
|
||
"1903": "aspect",
|
||
"1904": "desolation",
|
||
"1905": "solitude",
|
||
"1906": "virgin",
|
||
"1907": "sod",
|
||
"1908": "grey",
|
||
"1909": "rock",
|
||
"1910": "trod",
|
||
"1911": "tread",
|
||
"1912": "seclude",
|
||
"1913": "inaccessible",
|
||
"1914": "accident",
|
||
"1915": "ravine",
|
||
"1916": "adventurer",
|
||
"1917": "penetrate",
|
||
"1918": "mist",
|
||
"1919": "smoke",
|
||
"1920": "distinguish",
|
||
"1921": "heavily",
|
||
"1922": "serve",
|
||
"1923": "impression",
|
||
"1924": "create",
|
||
"1925": "dense",
|
||
"1926": "pleasant",
|
||
"1927": "fog",
|
||
"1928": "dozen",
|
||
"1929": "yard",
|
||
"1930": "path",
|
||
"1931": "excessively",
|
||
"1932": "sinuous",
|
||
"1933": "journey",
|
||
"1934": "customary",
|
||
"1935": "endue",
|
||
"1936": "external",
|
||
"1937": "quivering",
|
||
"1938": "leaf",
|
||
"1939": "hue",
|
||
"1940": "blade",
|
||
"1941": "shape",
|
||
"1942": "trefoil",
|
||
"1943": "humming",
|
||
"1944": "bee",
|
||
"1945": "gleaming",
|
||
"1946": "dew",
|
||
"1947": "faint",
|
||
"1948": "odour",
|
||
"1949": "forest",
|
||
"1950": "universe",
|
||
"1951": "suggestion",
|
||
"1952": "motley",
|
||
"1953": "train",
|
||
"1954": "rhapsodical",
|
||
"1955": "immethodical",
|
||
"1956": "busy",
|
||
"1957": "walk",
|
||
"1958": "absolute",
|
||
"1959": "groping",
|
||
"1960": "possess",
|
||
"1961": "species",
|
||
"1962": "hesitation",
|
||
"1963": "tremor,—I",
|
||
"1964": "lest",
|
||
"1965": "precipitate",
|
||
"1966": "Hills",
|
||
"1967": "uncouth",
|
||
"1968": "fierce",
|
||
"1969": "race",
|
||
"1970": "tenant",
|
||
"1971": "grove",
|
||
"1972": "cavern",
|
||
"1973": "disconcert",
|
||
"1974": "distressing",
|
||
"1975": "arrest",
|
||
"1976": "surprised",
|
||
"1977": "trump",
|
||
"1978": "Archangel",
|
||
"1979": "astounding",
|
||
"1980": "source",
|
||
"1981": "perplexity",
|
||
"1982": "arose",
|
||
"1983": "rattling",
|
||
"1984": "jingle",
|
||
"1985": "bunch",
|
||
"1986": "dusky",
|
||
"1987": "visaged",
|
||
"1988": "naked",
|
||
"1989": "rush",
|
||
"1990": "instrument",
|
||
"1991": "compose",
|
||
"1992": "assemblage",
|
||
"1993": "steel",
|
||
"1994": "vigorously",
|
||
"1995": "disappear",
|
||
"1996": "pant",
|
||
"1997": "dart",
|
||
"1998": "beast",
|
||
"1999": "mistaken",
|
||
"2000": "hyena",
|
||
"2001": "monster",
|
||
"2002": "relieve",
|
||
"2003": "heighten",
|
||
"2004": "sure",
|
||
"2005": "wake",
|
||
"2006": "briskly",
|
||
"2007": "forward",
|
||
"2008": "rub",
|
||
"2009": "aloud",
|
||
"2010": "pinch",
|
||
"2011": "view",
|
||
"2012": "bathe",
|
||
"2013": "neck",
|
||
"2014": "dissipate",
|
||
"2015": "equivocal",
|
||
"2016": "sensation",
|
||
"2017": "hitherto",
|
||
"2018": "annoy",
|
||
"2019": "complacently",
|
||
"2020": "overcome",
|
||
"2021": "oppressive",
|
||
"2022": "closeness",
|
||
"2023": "feeble",
|
||
"2024": "sunshine",
|
||
"2025": "faintly",
|
||
"2026": "definitely",
|
||
"2027": "wonderingly",
|
||
"2028": "stupefy",
|
||
"2029": "astonishment",
|
||
"2030": "upward",
|
||
"2031": "palm",
|
||
"2032": "state",
|
||
"2033": "fearful",
|
||
"2034": "command",
|
||
"2035": "heat",
|
||
"2036": "intolerable",
|
||
"2037": "load",
|
||
"2038": "breeze.—A",
|
||
"2039": "continuous",
|
||
"2040": "flow",
|
||
"2041": "river",
|
||
"2042": "intermingle",
|
||
"2043": "hum",
|
||
"2044": "extremity",
|
||
"2045": "need",
|
||
"2046": "brief",
|
||
"2047": "gust",
|
||
"2048": "bore",
|
||
"2049": "incumbent",
|
||
"2050": "wand",
|
||
"2051": "enchanter",
|
||
"2052": "vast",
|
||
"2053": "plain",
|
||
"2054": "majestic",
|
||
"2055": "margin",
|
||
"2056": "Eastern",
|
||
"2057": "Arabian",
|
||
"2058": "Tales",
|
||
"2059": "level",
|
||
"2060": "town",
|
||
"2061": "nook",
|
||
"2062": "corner",
|
||
"2063": "delineate",
|
||
"2064": "map",
|
||
"2065": "irregularly",
|
||
"2066": "alley",
|
||
"2067": "swarm",
|
||
"2068": "inhabitant",
|
||
"2069": "wildly",
|
||
"2070": "picturesque",
|
||
"2071": "wilderness",
|
||
"2072": "balcony",
|
||
"2073": "verandah",
|
||
"2074": "minaret",
|
||
"2075": "carve",
|
||
"2076": "oriel",
|
||
"2077": "bazaar",
|
||
"2078": "abound",
|
||
"2079": "display",
|
||
"2080": "ware",
|
||
"2081": "infinite",
|
||
"2082": "variety",
|
||
"2083": "silk",
|
||
"2084": "muslin",
|
||
"2085": "dazzling",
|
||
"2086": "cutlery",
|
||
"2087": "jewel",
|
||
"2088": "gem",
|
||
"2089": "banner",
|
||
"2090": "palanquin",
|
||
"2091": "litter",
|
||
"2092": "dame",
|
||
"2093": "veiled",
|
||
"2094": "elephant",
|
||
"2095": "gorgeously",
|
||
"2096": "caparison",
|
||
"2097": "idol",
|
||
"2098": "grotesquely",
|
||
"2099": "hewn",
|
||
"2100": "gong",
|
||
"2101": "spear",
|
||
"2102": "gilded",
|
||
"2103": "mace",
|
||
"2104": "crowd",
|
||
"2105": "clamour",
|
||
"2106": "general",
|
||
"2107": "intricacy",
|
||
"2108": "confusion",
|
||
"2109": "million",
|
||
"2110": "yellow",
|
||
"2111": "turbaned",
|
||
"2112": "robed",
|
||
"2113": "beard",
|
||
"2114": "roam",
|
||
"2115": "countless",
|
||
"2116": "holy",
|
||
"2117": "filleted",
|
||
"2118": "bull",
|
||
"2119": "legion",
|
||
"2120": "filthy",
|
||
"2121": "sacred",
|
||
"2122": "ape",
|
||
"2123": "clamber",
|
||
"2124": "chattering",
|
||
"2125": "mosque",
|
||
"2126": "clung",
|
||
"2127": "bank",
|
||
"2128": "descend",
|
||
"2129": "flight",
|
||
"2130": "fleet",
|
||
"2131": "deeply",
|
||
"2132": "burthen",
|
||
"2133": "ship",
|
||
"2134": "encumber",
|
||
"2135": "cocoa",
|
||
"2136": "gigantic",
|
||
"2137": "weird",
|
||
"2138": "field",
|
||
"2139": "rice",
|
||
"2140": "thatched",
|
||
"2141": "hut",
|
||
"2142": "peasant",
|
||
"2143": "tank",
|
||
"2144": "stray",
|
||
"2145": "gipsy",
|
||
"2146": "camp",
|
||
"2147": "solitary",
|
||
"2148": "maiden",
|
||
"2149": "pitcher",
|
||
"2150": "unmistakeable",
|
||
"2151": "idiosyncrasy",
|
||
"2152": "rigorously",
|
||
"2153": "consistent",
|
||
"2154": "really",
|
||
"2155": "test",
|
||
"2156": "confirm",
|
||
"2157": "Novalis",
|
||
"2158": "err",
|
||
"2159": "occur",
|
||
"2160": "suspecting",
|
||
"2161": "class",
|
||
"2162": "phenomena",
|
||
"2163": "Dr.",
|
||
"2164": "immense",
|
||
"2165": "populace",
|
||
"2166": "avenue",
|
||
"2167": "exhibit",
|
||
"2168": "impulse",
|
||
"2169": "intensely",
|
||
"2170": "imbued",
|
||
"2171": "important",
|
||
"2172": "exactly",
|
||
"2173": "environ",
|
||
"2174": "sentiment",
|
||
"2175": "animosity",
|
||
"2176": "shrink",
|
||
"2177": "swiftly",
|
||
"2178": "circuitous",
|
||
"2179": "contention",
|
||
"2180": "party",
|
||
"2181": "clothe",
|
||
"2182": "garment",
|
||
"2183": "indian",
|
||
"2184": "european",
|
||
"2185": "uniform",
|
||
"2186": "partly",
|
||
"2187": "british",
|
||
"2188": "engage",
|
||
"2189": "odd",
|
||
"2190": "rabble",
|
||
"2191": "join",
|
||
"2192": "weak",
|
||
"2193": "weapon",
|
||
"2194": "fallen",
|
||
"2195": "fighting",
|
||
"2196": "ferocity",
|
||
"2197": "despair",
|
||
"2198": "number",
|
||
"2199": "drive",
|
||
"2200": "refuge",
|
||
"2201": "kiosk",
|
||
"2202": "barricade",
|
||
"2203": "ourselves",
|
||
"2204": "loop",
|
||
"2205": "hole",
|
||
"2206": "summit",
|
||
"2207": "surround",
|
||
"2208": "assault",
|
||
"2209": "overhang",
|
||
"2210": "effeminate",
|
||
"2211": "string",
|
||
"2212": "turban",
|
||
"2213": "attendant",
|
||
"2214": "boat",
|
||
"2215": "escape",
|
||
"2216": "hurried",
|
||
"2217": "companion",
|
||
"2218": "frantic",
|
||
"2219": "sally",
|
||
"2220": "retreat",
|
||
"2221": "rally",
|
||
"2222": "fight",
|
||
"2223": "madly",
|
||
"2224": "bewildered",
|
||
"2225": "entangle",
|
||
"2226": "overhanging",
|
||
"2227": "impetuously",
|
||
"2228": "harass",
|
||
"2229": "overwhelm",
|
||
"2230": "arrow",
|
||
"2231": "writhing",
|
||
"2232": "creese",
|
||
"2233": "Malay",
|
||
"2234": "imitate",
|
||
"2235": "creep",
|
||
"2236": "serpent",
|
||
"2237": "poison",
|
||
"2238": "barb",
|
||
"2239": "strike",
|
||
"2240": "reel",
|
||
"2241": "instantaneous",
|
||
"2242": "sickness",
|
||
"2243": "hardly",
|
||
"2244": "persist",
|
||
"2245": "expect",
|
||
"2246": "lively",
|
||
"2247": "reply",
|
||
"2248": "hesitate",
|
||
"2249": "fearfully",
|
||
"2250": "pallid",
|
||
"2251": "remain",
|
||
"2252": "chatter",
|
||
"2253": "socket",
|
||
"2254": "hoarsely",
|
||
"2255": "nonentity",
|
||
"2256": "sudden",
|
||
"2257": "shock",
|
||
"2258": "electricity",
|
||
"2259": "elasticity",
|
||
"2260": "ground",
|
||
"2261": "bodily",
|
||
"2262": "audible",
|
||
"2263": "palpable",
|
||
"2264": "comparative",
|
||
"2265": "greatly",
|
||
"2266": "swollen",
|
||
"2267": "disfigured",
|
||
"2268": "concern",
|
||
"2269": "impel",
|
||
"2270": "flit",
|
||
"2271": "buoyantly",
|
||
"2272": "retrace",
|
||
"2273": "galvanic",
|
||
"2274": "battery",
|
||
"2275": "weight",
|
||
"2276": "substance",
|
||
"2277": "eagerly",
|
||
"2278": "homeward",
|
||
"2279": "vividness",
|
||
"2280": "compel",
|
||
"2281": "understanding",
|
||
"2282": "difficult",
|
||
"2283": "otherwise",
|
||
"2284": "stupendous",
|
||
"2285": "psychal",
|
||
"2286": "content",
|
||
"2287": "explanation",
|
||
"2288": "colour",
|
||
"2289": "drawing",
|
||
"2290": "horror",
|
||
"2291": "prodigious",
|
||
"2292": "miniature",
|
||
"2293": "miraculously",
|
||
"2294": "accurate",
|
||
"2295": "least",
|
||
"2296": "corner—1780",
|
||
"2297": "likeness",
|
||
"2298": "Oldeb",
|
||
"2299": "attach",
|
||
"2300": "Calcutta",
|
||
"2301": "administration",
|
||
"2302": "Warren",
|
||
"2303": "Hastings",
|
||
"2304": "twenty",
|
||
"2305": "miraculous",
|
||
"2306": "similarity",
|
||
"2307": "yourself",
|
||
"2308": "accost",
|
||
"2309": "friendship",
|
||
"2310": "constant",
|
||
"2311": "accomplish",
|
||
"2312": "urge",
|
||
"2313": "principally",
|
||
"2314": "regretful",
|
||
"2315": "deceased",
|
||
"2316": "uneasy",
|
||
"2317": "horrorless",
|
||
"2318": "detail",
|
||
"2319": "accuracy",
|
||
"2320": "Benares",
|
||
"2321": "riot",
|
||
"2322": "combat",
|
||
"2323": "massacre",
|
||
"2324": "insurrection",
|
||
"2325": "Cheyte",
|
||
"2326": "Sing",
|
||
"2327": "1780",
|
||
"2328": "imminent",
|
||
"2329": "peril",
|
||
"2330": "sing",
|
||
"2331": "sepoy",
|
||
"2332": "rash",
|
||
"2333": "fatal",
|
||
"2334": "crowded",
|
||
"2335": "Bengalee",
|
||
"2336": "oldeb",
|
||
"2337": "manuscript",
|
||
"2338": "speaker",
|
||
"2339": "notebook",
|
||
"2340": "freshly",
|
||
"2341": "paper",
|
||
"2342": "paragraph",
|
||
"2343": "painful",
|
||
"2344": "duty",
|
||
"2345": "announce",
|
||
"2346": "Bedlo",
|
||
"2347": "amiable",
|
||
"2348": "virtue",
|
||
"2349": "endear",
|
||
"2350": "citizen",
|
||
"2351": "B.",
|
||
"2352": "neuralgia",
|
||
"2353": "often",
|
||
"2354": "threaten",
|
||
"2355": "terminate",
|
||
"2356": "fatally",
|
||
"2357": "mediate",
|
||
"2358": "decease",
|
||
"2359": "approximate",
|
||
"2360": "especial",
|
||
"2361": "singularity",
|
||
"2362": "excursion",
|
||
"2363": "fever",
|
||
"2364": "contract",
|
||
"2365": "determination",
|
||
"2366": "Tempieton",
|
||
"2367": "resort",
|
||
"2368": "topical",
|
||
"2369": "bleeding",
|
||
"2370": "leech",
|
||
"2371": "jar",
|
||
"2372": "venomous",
|
||
"2373": "vermicular",
|
||
"2374": "sangsue",
|
||
"2375": "neighbouring",
|
||
"2376": "pond",
|
||
"2377": "creature",
|
||
"2378": "artery",
|
||
"2379": "resemblance",
|
||
"2380": "medicinal",
|
||
"2381": "overlook",
|
||
"2382": "n.",
|
||
"2383": "b.—the",
|
||
"2384": "poisonous",
|
||
"2385": "blackness",
|
||
"2386": "snake",
|
||
"2387": "editor",
|
||
"2388": "topic",
|
||
"2389": "ask",
|
||
"2390": "happen",
|
||
"2391": "presume",
|
||
"2392": "authority",
|
||
"2393": "spelling",
|
||
"2394": "e",
|
||
"2395": "authority?—no",
|
||
"2396": "typographical",
|
||
"2397": "error",
|
||
"2398": "spell",
|
||
"2399": "mutteringly",
|
||
"2400": "heel",
|
||
"2401": "fiction",
|
||
"2402": "converse",
|
||
"2403": "BLACK",
|
||
"2404": "CAT",
|
||
"2405": "homely",
|
||
"2406": "narrative",
|
||
"2407": "pen",
|
||
"2408": "belief",
|
||
"2409": "case",
|
||
"2410": "reject",
|
||
"2411": "evidence",
|
||
"2412": "morrow",
|
||
"2413": "unburthen",
|
||
"2414": "immediate",
|
||
"2415": "plainly",
|
||
"2416": "succinctly",
|
||
"2417": "comment",
|
||
"2418": "consequence",
|
||
"2419": "torture",
|
||
"2420": "expound",
|
||
"2421": "baroque",
|
||
"2422": "hereafter",
|
||
"2423": "intellect",
|
||
"2424": "phantasm",
|
||
"2425": "commonplace",
|
||
"2426": "calm",
|
||
"2427": "logical",
|
||
"2428": "infancy",
|
||
"2429": "note",
|
||
"2430": "docility",
|
||
"2431": "humanity",
|
||
"2432": "disposition",
|
||
"2433": "tenderness",
|
||
"2434": "conspicuous",
|
||
"2435": "jest",
|
||
"2436": "fond",
|
||
"2437": "animal",
|
||
"2438": "indulge",
|
||
"2439": "parent",
|
||
"2440": "pet",
|
||
"2441": "spend",
|
||
"2442": "happy",
|
||
"2443": "feed",
|
||
"2444": "growth",
|
||
"2445": "manhood",
|
||
"2446": "principal",
|
||
"2447": "cherish",
|
||
"2448": "affection",
|
||
"2449": "faithful",
|
||
"2450": "sagacious",
|
||
"2451": "explain",
|
||
"2452": "gratification",
|
||
"2453": "derivable",
|
||
"2454": "unselfish",
|
||
"2455": "sacrifice",
|
||
"2456": "brute",
|
||
"2457": "paltry",
|
||
"2458": "gossamer",
|
||
"2459": "fidelity",
|
||
"2460": "Man",
|
||
"2461": "marry",
|
||
"2462": "uncongenial",
|
||
"2463": "partiality",
|
||
"2464": "domestic",
|
||
"2465": "opportunity",
|
||
"2466": "procure",
|
||
"2467": "agreeable",
|
||
"2468": "bird",
|
||
"2469": "fish",
|
||
"2470": "rabbit",
|
||
"2471": "monkey",
|
||
"2472": "remarkably",
|
||
"2473": "astonishing",
|
||
"2474": "tinctured",
|
||
"2475": "superstition",
|
||
"2476": "allusion",
|
||
"2477": "ancient",
|
||
"2478": "popular",
|
||
"2479": "notion",
|
||
"2480": "witch",
|
||
"2481": "disguise",
|
||
"2482": "Pluto",
|
||
"2483": "favorite",
|
||
"2484": "playmate",
|
||
"2485": "wherever",
|
||
"2486": "instrumentality",
|
||
"2487": "Fiend",
|
||
"2488": "Intemperance",
|
||
"2489": "radical",
|
||
"2490": "moody",
|
||
"2491": "irritable",
|
||
"2492": "regardless",
|
||
"2493": "suffer",
|
||
"2494": "intemperate",
|
||
"2495": "violence",
|
||
"2496": "change",
|
||
"2497": "ill",
|
||
"2498": "restrain",
|
||
"2499": "maltreat",
|
||
"2500": "scruple",
|
||
"2501": "Alcohol!—and",
|
||
"2502": "somewhat",
|
||
"2503": "peevish",
|
||
"2504": "begin",
|
||
"2505": "temper",
|
||
"2506": "intoxicate",
|
||
"2507": "avoid",
|
||
"2508": "fright",
|
||
"2509": "inflict",
|
||
"2510": "wound",
|
||
"2511": "demon",
|
||
"2512": "fiendish",
|
||
"2513": "malevolence",
|
||
"2514": "gin",
|
||
"2515": "nurture",
|
||
"2516": "fiber",
|
||
"2517": "waistcoat",
|
||
"2518": "pocket",
|
||
"2519": "knife",
|
||
"2520": "poor",
|
||
"2521": "throat",
|
||
"2522": "deliberately",
|
||
"2523": "cut",
|
||
"2524": "damnable",
|
||
"2525": "atrocity",
|
||
"2526": "fume",
|
||
"2527": "debauch",
|
||
"2528": "remorse",
|
||
"2529": "guilty",
|
||
"2530": "untouched",
|
||
"2531": "excess",
|
||
"2532": "drown",
|
||
"2533": "lost",
|
||
"2534": "frightful",
|
||
"2535": "flee",
|
||
"2536": "grieve",
|
||
"2537": "dislike",
|
||
"2538": "irritation",
|
||
"2539": "final",
|
||
"2540": "irrevocable",
|
||
"2541": "overthrow",
|
||
"2542": "Perverseness",
|
||
"2543": "philosophy",
|
||
"2544": "perverseness",
|
||
"2545": "primitive",
|
||
"2546": "indivisible",
|
||
"2547": "primary",
|
||
"2548": "faculty",
|
||
"2549": "commit",
|
||
"2550": "vile",
|
||
"2551": "silly",
|
||
"2552": "perpetual",
|
||
"2553": "inclination",
|
||
"2554": "judgment",
|
||
"2555": "violate",
|
||
"2556": "law",
|
||
"2557": "unfathomable",
|
||
"2558": "longing",
|
||
"2559": "sake",
|
||
"2560": "consummate",
|
||
"2561": "injury",
|
||
"2562": "unoffending",
|
||
"2563": "cool",
|
||
"2564": "noose",
|
||
"2565": "offense",
|
||
"2566": "sin",
|
||
"2567": "deadly",
|
||
"2568": "jeopardize",
|
||
"2569": "immortal",
|
||
"2570": "mercy",
|
||
"2571": "merciful",
|
||
"2572": "cruel",
|
||
"2573": "servant",
|
||
"2574": "conflagration",
|
||
"2575": "destruction",
|
||
"2576": "worldly",
|
||
"2577": "resign",
|
||
"2578": "thenceforward",
|
||
"2579": "weakness",
|
||
"2580": "establish",
|
||
"2581": "sequence",
|
||
"2582": "disaster",
|
||
"2583": "link",
|
||
"2584": "imperfect",
|
||
"2585": "compartment",
|
||
"2586": "plastering",
|
||
"2587": "resist",
|
||
"2588": "attribute",
|
||
"2589": "recently",
|
||
"2590": "spread",
|
||
"2591": "collect",
|
||
"2592": "particular",
|
||
"2593": "portion",
|
||
"2594": "Singular",
|
||
"2595": "bas",
|
||
"2596": "relief",
|
||
"2597": "truly",
|
||
"2598": "marvelous",
|
||
"2599": "rope",
|
||
"2600": "apparition",
|
||
"2601": "aid",
|
||
"2602": "garden",
|
||
"2603": "adjacent",
|
||
"2604": "probably",
|
||
"2605": "falling",
|
||
"2606": "compress",
|
||
"2607": "cruelty",
|
||
"2608": "plaster",
|
||
"2609": "lime",
|
||
"2610": "ammonia",
|
||
"2611": "carcass",
|
||
"2612": "portraiture",
|
||
"2613": "readily",
|
||
"2614": "conscience",
|
||
"2615": "month",
|
||
"2616": "regret",
|
||
"2617": "loss",
|
||
"2618": "habitually",
|
||
"2619": "specie",
|
||
"2620": "den",
|
||
"2621": "infamy",
|
||
"2622": "hogshead",
|
||
"2623": "rum",
|
||
"2624": "constitute",
|
||
"2625": "chief",
|
||
"2626": "furniture",
|
||
"2627": "top",
|
||
"2628": "thereupon",
|
||
"2629": "closely",
|
||
"2630": "indefinite",
|
||
"2631": "splotch",
|
||
"2632": "cover",
|
||
"2633": "region",
|
||
"2634": "breast",
|
||
"2635": "purr",
|
||
"2636": "loudly",
|
||
"2637": "delighted",
|
||
"2638": "purchase",
|
||
"2639": "landlord",
|
||
"2640": "claim",
|
||
"2641": "prepare",
|
||
"2642": "accompany",
|
||
"2643": "permit",
|
||
"2644": "pat",
|
||
"2645": "domesticate",
|
||
"2646": "reverse",
|
||
"2647": "fondness",
|
||
"2648": "disgusted",
|
||
"2649": "annoyed",
|
||
"2650": "slow",
|
||
"2651": "disgust",
|
||
"2652": "hatred",
|
||
"2653": "shame",
|
||
"2654": "remembrance",
|
||
"2655": "abuse",
|
||
"2656": "violently",
|
||
"2657": "unutterable",
|
||
"2658": "loathing",
|
||
"2659": "silently",
|
||
"2660": "odious",
|
||
"2661": "pestilence",
|
||
"2662": "add",
|
||
"2663": "deprive",
|
||
"2664": "trait",
|
||
"2665": "purest",
|
||
"2666": "aversion",
|
||
"2667": "pertinacity",
|
||
"2668": "tho",
|
||
"2669": "reader",
|
||
"2670": "crouch",
|
||
"2671": "knee",
|
||
"2672": "loathsome",
|
||
"2673": "sharp",
|
||
"2674": "claw",
|
||
"2675": "blow",
|
||
"2676": "withhold",
|
||
"2677": "chiefly",
|
||
"2678": "dread",
|
||
"2679": "evil",
|
||
"2680": "ashamed",
|
||
"2681": "felon",
|
||
"2682": "cell",
|
||
"2683": "chimeras",
|
||
"2684": "imperceptible",
|
||
"2685": "fanciful",
|
||
"2686": "rigorous",
|
||
"2687": "outline",
|
||
"2688": "representation",
|
||
"2689": "loathe",
|
||
"2690": "dreaded",
|
||
"2691": "ghastly",
|
||
"2692": "Gallows!—O",
|
||
"2693": "engine",
|
||
"2694": "wretche",
|
||
"2695": "wretchedness",
|
||
"2696": "fellow",
|
||
"2697": "contemptuously",
|
||
"2698": "insufferable",
|
||
"2699": "blessing",
|
||
"2700": "hourly",
|
||
"2701": "incarnate",
|
||
"2702": "nightmare",
|
||
"2703": "eternally",
|
||
"2704": "torment",
|
||
"2705": "remnant",
|
||
"2706": "intimate",
|
||
"2707": "moodiness",
|
||
"2708": "outburst",
|
||
"2709": "blindly",
|
||
"2710": "abandon",
|
||
"2711": "uncomplaining",
|
||
"2712": "errand",
|
||
"2713": "cellar",
|
||
"2714": "poverty",
|
||
"2715": "inhabit",
|
||
"2716": "steep",
|
||
"2717": "stair",
|
||
"2718": "exasperate",
|
||
"2719": "uplift",
|
||
"2720": "ax",
|
||
"2721": "wrath",
|
||
"2722": "childish",
|
||
"2723": "aim",
|
||
"2724": "goad",
|
||
"2725": "interference",
|
||
"2726": "demoniacal",
|
||
"2727": "withdraw",
|
||
"2728": "murder",
|
||
"2729": "forthwith",
|
||
"2730": "deliberation",
|
||
"2731": "task",
|
||
"2732": "risk",
|
||
"2733": "project",
|
||
"2734": "fragment",
|
||
"2735": "dig",
|
||
"2736": "deliberate",
|
||
"2737": "cast",
|
||
"2738": "pack",
|
||
"2739": "box",
|
||
"2740": "merchandise",
|
||
"2741": "porter",
|
||
"2742": "hit",
|
||
"2743": "consider",
|
||
"2744": "expedient",
|
||
"2745": "monk",
|
||
"2746": "adapt",
|
||
"2747": "loosely",
|
||
"2748": "construct",
|
||
"2749": "throughout",
|
||
"2750": "rough",
|
||
"2751": "dampness",
|
||
"2752": "harden",
|
||
"2753": "moreover",
|
||
"2754": "projection",
|
||
"2755": "false",
|
||
"2756": "fireplace",
|
||
"2757": "displace",
|
||
"2758": "brick",
|
||
"2759": "insert",
|
||
"2760": "suspicious",
|
||
"2761": "calculation",
|
||
"2762": "crowbar",
|
||
"2763": "easily",
|
||
"2764": "dislodge",
|
||
"2765": "inner",
|
||
"2766": "prop",
|
||
"2767": "relaid",
|
||
"2768": "mortar",
|
||
"2769": "finish",
|
||
"2770": "rubbish",
|
||
"2771": "pick",
|
||
"2772": "triumphantly",
|
||
"2773": "myself—\"here",
|
||
"2774": "firmly",
|
||
"2775": "fate",
|
||
"2776": "crafty",
|
||
"2777": "anger",
|
||
"2778": "forbore",
|
||
"2779": "mood",
|
||
"2780": "blissful",
|
||
"2781": "detest",
|
||
"2782": "introduction",
|
||
"2783": "soundly",
|
||
"2784": "tranquilly",
|
||
"2785": "aye",
|
||
"2786": "burden",
|
||
"2787": "tormentor",
|
||
"2788": "freeman",
|
||
"2789": "happiness",
|
||
"2790": "supreme",
|
||
"2791": "guilt",
|
||
"2792": "inquiry",
|
||
"2793": "institute",
|
||
"2794": "future",
|
||
"2795": "felicity",
|
||
"2796": "assassination",
|
||
"2797": "investigation",
|
||
"2798": "inscrutability",
|
||
"2799": "embarrassment",
|
||
"2800": "unexplored",
|
||
"2801": "slumber",
|
||
"2802": "innocence",
|
||
"2803": "thoroughly",
|
||
"2804": "glee",
|
||
"2805": "render",
|
||
"2806": "doubly",
|
||
"2807": "assurance",
|
||
"2808": "guiltlessness",
|
||
"2809": "ascend",
|
||
"2810": "delight",
|
||
"2811": "allay",
|
||
"2812": "courtesy",
|
||
"2813": "[",
|
||
"2814": "rabid",
|
||
"2815": "]",
|
||
"2816": "excellently",
|
||
"2817": "gentlemen?—these",
|
||
"2818": "solidly",
|
||
"2819": "frenzy",
|
||
"2820": "bravado",
|
||
"2821": "rap",
|
||
"2822": "cane",
|
||
"2823": "behind",
|
||
"2824": "shield",
|
||
"2825": "deliver",
|
||
"2826": "fang",
|
||
"2827": "fiend",
|
||
"2828": "reverberation",
|
||
"2829": "sink",
|
||
"2830": "tomb!—by",
|
||
"2831": "sobbing",
|
||
"2832": "swell",
|
||
"2833": "anomalous",
|
||
"2834": "inhuman",
|
||
"2835": "howl",
|
||
"2836": "wailing",
|
||
"2837": "conjointly",
|
||
"2838": "exult",
|
||
"2839": "damnation",
|
||
"2840": "swoon",
|
||
"2841": "stagger",
|
||
"2842": "toil",
|
||
"2843": "decay",
|
||
"2844": "clot",
|
||
"2845": "gore",
|
||
"2846": "red",
|
||
"2847": "extended",
|
||
"2848": "craft",
|
||
"2849": "seduce",
|
||
"2850": "inform",
|
||
"2851": "consign",
|
||
"2852": "hangman",
|
||
"2853": "tomb",
|
||
"2854": "DEVIL",
|
||
"2855": "BELFRY",
|
||
"2856": "it?—Old",
|
||
"2857": "everybody",
|
||
"2858": "dutch",
|
||
"2859": "borough",
|
||
"2860": "Vondervotteimittiss",
|
||
"2861": "distance",
|
||
"2862": "main",
|
||
"2863": "road",
|
||
"2864": "situation",
|
||
"2865": "proper",
|
||
"2866": "necessary",
|
||
"2867": "enlist",
|
||
"2868": "public",
|
||
"2869": "sympathy",
|
||
"2870": "behalf",
|
||
"2871": "history",
|
||
"2872": "calamitous",
|
||
"2873": "impose",
|
||
"2874": "execute",
|
||
"2875": "ability",
|
||
"2876": "impartiality",
|
||
"2877": "examination",
|
||
"2878": "diligent",
|
||
"2879": "collation",
|
||
"2880": "aspire",
|
||
"2881": "historian",
|
||
"2882": "united",
|
||
"2883": "medal",
|
||
"2884": "inscription",
|
||
"2885": "enable",
|
||
"2886": "positively",
|
||
"2887": "preserve",
|
||
"2888": "definiteness",
|
||
"2889": "mathematician",
|
||
"2890": "algebraic",
|
||
"2891": "formulæ",
|
||
"2892": "remoteness",
|
||
"2893": "antiquity",
|
||
"2894": "assignable",
|
||
"2895": "whatsoever",
|
||
"2896": "derivation",
|
||
"2897": "equally",
|
||
"2898": "fault",
|
||
"2899": "learn",
|
||
"2900": "sufficiently",
|
||
"2901": "select",
|
||
"2902": "ought",
|
||
"2903": "Grogswigg",
|
||
"2904": "coincident",
|
||
"2905": "Kroutaplenttey",
|
||
"2906": "preferred:—it",
|
||
"2907": "runs:—\"Vondervotteimittiss",
|
||
"2908": "vonder",
|
||
"2909": "lege",
|
||
"2910": "Donder",
|
||
"2911": "Votteimittiss",
|
||
"2912": "quasi",
|
||
"2913": "und",
|
||
"2914": "Bleitziz",
|
||
"2915": "obsol",
|
||
"2916": "pro",
|
||
"2917": "Blitzen",
|
||
"2918": "trace",
|
||
"2919": "electric",
|
||
"2920": "fluid",
|
||
"2921": "steeple",
|
||
"2922": "House",
|
||
"2923": "Town",
|
||
"2924": "Council",
|
||
"2925": "theme",
|
||
"2926": "refer",
|
||
"2927": "desirous",
|
||
"2928": "Oratiunculœ",
|
||
"2929": "de",
|
||
"2930": "Rebus",
|
||
"2931": "Prœteritis",
|
||
"2932": "Dundergutz",
|
||
"2933": "Blunderbuzzard",
|
||
"2934": "De",
|
||
"2935": "Derivationibus",
|
||
"2936": "pp",
|
||
"2937": "27",
|
||
"2938": "5010",
|
||
"2939": "Folio",
|
||
"2940": "Gothic",
|
||
"2941": "edit",
|
||
"2942": "Red",
|
||
"2943": "Catchword",
|
||
"2944": "Cypher;—wherein",
|
||
"2945": "consult",
|
||
"2946": "marginal",
|
||
"2947": "autograph",
|
||
"2948": "Stuffundpuff",
|
||
"2949": "Sub",
|
||
"2950": "Commentaries",
|
||
"2951": "Gruntundguzzel",
|
||
"2952": "notwithstanding",
|
||
"2953": "obscurity",
|
||
"2954": "foundation",
|
||
"2955": "epoch",
|
||
"2956": "possibility",
|
||
"2957": "site",
|
||
"2958": "village",
|
||
"2959": "perfectly",
|
||
"2960": "circular",
|
||
"2961": "quarter",
|
||
"2962": "mile",
|
||
"2963": "circumference",
|
||
"2964": "people",
|
||
"2965": "assign",
|
||
"2966": "skirt",
|
||
"2967": "pave",
|
||
"2968": "flat",
|
||
"2969": "tile",
|
||
"2970": "row",
|
||
"2971": "sixty",
|
||
"2972": "centre",
|
||
"2973": "dwelling",
|
||
"2974": "dial",
|
||
"2975": "cabbage",
|
||
"2976": "alike",
|
||
"2977": "owe",
|
||
"2978": "style",
|
||
"2979": "strikingly",
|
||
"2980": "chess",
|
||
"2981": "scale",
|
||
"2982": "gable",
|
||
"2983": "big",
|
||
"2984": "eave",
|
||
"2985": "deal",
|
||
"2986": "sash",
|
||
"2987": "roof",
|
||
"2988": "curly",
|
||
"2989": "woodwork",
|
||
"2990": "trifling",
|
||
"2991": "pattern",
|
||
"2992": "carver",
|
||
"2993": "piece",
|
||
"2994": "intersperse",
|
||
"2995": "ingenuity",
|
||
"2996": "chisel",
|
||
"2997": "inside",
|
||
"2998": "plan",
|
||
"2999": "wood",
|
||
"3000": "crooked",
|
||
"3001": "leg",
|
||
"3002": "puppy",
|
||
"3003": "mantel",
|
||
"3004": "ticking",
|
||
"3005": "pot",
|
||
"3006": "outrider",
|
||
"3007": "China",
|
||
"3008": "stomach",
|
||
"3009": "plate",
|
||
"3010": "constantly",
|
||
"3011": "rousing",
|
||
"3012": "sauer",
|
||
"3013": "kraut",
|
||
"3014": "pork",
|
||
"3015": "fat",
|
||
"3016": "cap",
|
||
"3017": "sugar",
|
||
"3018": "loaf",
|
||
"3019": "ornament",
|
||
"3020": "purple",
|
||
"3021": "ribbon",
|
||
"3022": "orange",
|
||
"3023": "linsey",
|
||
"3024": "woolsey",
|
||
"3025": "short",
|
||
"3026": "waist",
|
||
"3027": "ankle",
|
||
"3028": "stocking",
|
||
"3029": "shoe",
|
||
"3030": "pink",
|
||
"3031": "leather",
|
||
"3032": "pucker",
|
||
"3033": "ladle",
|
||
"3034": "tabby",
|
||
"3035": "toy",
|
||
"3036": "repeater",
|
||
"3037": "tie",
|
||
"3038": "tail",
|
||
"3039": "boy",
|
||
"3040": "quiz",
|
||
"3041": "pig",
|
||
"3042": "cock",
|
||
"3043": "hat",
|
||
"3044": "thigh",
|
||
"3045": "buckskin",
|
||
"3046": "breech",
|
||
"3047": "woollen",
|
||
"3048": "buckle",
|
||
"3049": "surtout",
|
||
"3050": "coat",
|
||
"3051": "button",
|
||
"3052": "pearl",
|
||
"3053": "pipe",
|
||
"3054": "dumpy",
|
||
"3055": "puff",
|
||
"3056": "corpulent",
|
||
"3057": "lazy",
|
||
"3058": "kick",
|
||
"3059": "gilt",
|
||
"3060": "urchin",
|
||
"3061": "handsome",
|
||
"3062": "puffy",
|
||
"3063": "double",
|
||
"3064": "theirs",
|
||
"3065": "carry",
|
||
"3066": "resolutely",
|
||
"3067": "bent",
|
||
"3068": "situate",
|
||
"3069": "oily",
|
||
"3070": "intelligent",
|
||
"3071": "saucer",
|
||
"3072": "sojourn",
|
||
"3073": "special",
|
||
"3074": "adopt",
|
||
"3075": "resolution",
|
||
"3076": "alter",
|
||
"3077": "stick",
|
||
"3078": "session",
|
||
"3079": "belfry",
|
||
"3080": "pride",
|
||
"3081": "sinecure",
|
||
"3082": "heretical",
|
||
"3083": "remote",
|
||
"3084": "archive",
|
||
"3085": "reference",
|
||
"3086": "regularly",
|
||
"3087": "clapper",
|
||
"3088": "obedient",
|
||
"3089": "follower",
|
||
"3090": "simultaneously",
|
||
"3091": "respond",
|
||
"3092": "burgher",
|
||
"3093": "proud",
|
||
"3094": "respected",
|
||
"3095": "dignitary",
|
||
"3096": "reverence",
|
||
"3097": "triple",
|
||
"3098": "estate",
|
||
"3099": "saying",
|
||
"3100": "prophecy",
|
||
"3101": "want",
|
||
"3102": "five",
|
||
"3103": "noon",
|
||
"3104": "yesterday",
|
||
"3105": "ridge",
|
||
"3106": "eastward",
|
||
"3107": "occurrence",
|
||
"3108": "universal",
|
||
"3109": "stare",
|
||
"3110": "dismay",
|
||
"3111": "phenomenon",
|
||
"3112": "droll",
|
||
"3113": "foreign",
|
||
"3114": "rate",
|
||
"3115": "finnicky",
|
||
"3116": "personage",
|
||
"3117": "snuff",
|
||
"3118": "hook",
|
||
"3119": "nose",
|
||
"3120": "pea",
|
||
"3121": "excellent",
|
||
"3122": "anxious",
|
||
"3123": "mustachio",
|
||
"3124": "whisker",
|
||
"3125": "uncover",
|
||
"3126": "neatly",
|
||
"3127": "papillote",
|
||
"3128": "tight",
|
||
"3129": "fitting",
|
||
"3130": "tailed",
|
||
"3131": "dangle",
|
||
"3132": "handkerchief",
|
||
"3133": "kerseymere",
|
||
"3134": "stumpy",
|
||
"3135": "pump",
|
||
"3136": "bunche",
|
||
"3137": "satin",
|
||
"3138": "under",
|
||
"3139": "chapeau",
|
||
"3140": "bra",
|
||
"3141": "fiddle",
|
||
"3142": "caper",
|
||
"3143": "fantastical",
|
||
"3144": "incessantly",
|
||
"3145": "satisfaction",
|
||
"3146": "bless",
|
||
"3147": "me!—here",
|
||
"3148": "honest",
|
||
"3149": "spite",
|
||
"3150": "grinning",
|
||
"3151": "audacious",
|
||
"3152": "sinister",
|
||
"3153": "curvet",
|
||
"3154": "peep",
|
||
"3155": "cambric",
|
||
"3156": "obtrusively",
|
||
"3157": "mainly",
|
||
"3158": "righteous",
|
||
"3159": "indignation",
|
||
"3160": "scoundrelly",
|
||
"3161": "popinjay",
|
||
"3162": "fandango",
|
||
"3163": "whirligig",
|
||
"3164": "rascal",
|
||
"3165": "bounce",
|
||
"3166": "midst",
|
||
"3167": "chassez",
|
||
"3168": "balancez",
|
||
"3169": "pirouette",
|
||
"3170": "pas",
|
||
"3171": "zéphyr",
|
||
"3172": "pigeon",
|
||
"3173": "dignity",
|
||
"3174": "chap",
|
||
"3175": "clap",
|
||
"3176": "bras",
|
||
"3177": "lift",
|
||
"3178": "regiment",
|
||
"3179": "bass",
|
||
"3180": "drummer",
|
||
"3181": "devil",
|
||
"3182": "desperate",
|
||
"3183": "vengeance",
|
||
"3184": "unprincipled",
|
||
"3185": "preeminent",
|
||
"3186": "necessity",
|
||
"3187": "nobody",
|
||
"3188": "manœuvre",
|
||
"3189": "count",
|
||
"3190": "stroke",
|
||
"3191": "Von",
|
||
"3192": "von",
|
||
"3193": "vrow",
|
||
"3194": "Doo",
|
||
"3195": "six",
|
||
"3196": "Dree",
|
||
"3197": "Vour",
|
||
"3198": "Fibe",
|
||
"3199": "Sax",
|
||
"3200": "Seben",
|
||
"3201": "Aight",
|
||
"3202": "Noin",
|
||
"3203": "Den",
|
||
"3204": "Eleven",
|
||
"3205": "Eleben",
|
||
"3206": "assent",
|
||
"3207": "Dvelf",
|
||
"3208": "dvelf",
|
||
"3209": "iss",
|
||
"3210": "thirteen",
|
||
"3211": "Der",
|
||
"3212": "Teufel",
|
||
"3213": "Dirteen",
|
||
"3214": "Mein",
|
||
"3215": "Gott",
|
||
"3216": "ensue",
|
||
"3217": "lamentable",
|
||
"3218": "uproar",
|
||
"3219": "Vot",
|
||
"3220": "cum'd",
|
||
"3221": "mein",
|
||
"3222": "pelly",
|
||
"3223": "roar",
|
||
"3224": "boys,—\"i've",
|
||
"3225": "ongry",
|
||
"3226": "dis",
|
||
"3227": "rags",
|
||
"3228": "hour!\"—and",
|
||
"3229": "fiercely",
|
||
"3230": "impenetrable",
|
||
"3231": "Nick",
|
||
"3232": "everything",
|
||
"3233": "timepiece",
|
||
"3234": "bewitch",
|
||
"3235": "mantelpiece",
|
||
"3236": "striking",
|
||
"3237": "frisking",
|
||
"3238": "wriggle",
|
||
"3239": "pendulum",
|
||
"3240": "horrible",
|
||
"3241": "behaviour",
|
||
"3242": "resent",
|
||
"3243": "scamper",
|
||
"3244": "scratching",
|
||
"3245": "poking",
|
||
"3246": "squeaking",
|
||
"3247": "screech",
|
||
"3248": "caterwaul",
|
||
"3249": "squall",
|
||
"3250": "petticoat",
|
||
"3251": "abominable",
|
||
"3252": "din",
|
||
"3253": "reasonable",
|
||
"3254": "rascally",
|
||
"3255": "scapegrace",
|
||
"3256": "evidently",
|
||
"3257": "exert",
|
||
"3258": "utmost",
|
||
"3259": "catch",
|
||
"3260": "glimpse",
|
||
"3261": "scoundrel",
|
||
"3262": "jerk",
|
||
"3263": "raise",
|
||
"3264": "clatter",
|
||
"3265": "lap",
|
||
"3266": "scrape",
|
||
"3267": "tune",
|
||
"3268": "both",
|
||
"3269": "nincompoop",
|
||
"3270": "Judy",
|
||
"3271": "O'Flannagan",
|
||
"3272": "Paddy",
|
||
"3273": "O'Rafferty",
|
||
"3274": "affair",
|
||
"3275": "miserably",
|
||
"3276": "lover",
|
||
"3277": "correct",
|
||
"3278": "restore",
|
||
"3279": "ejecting"
|
||
},
|
||
"pos": {
|
||
"0": "DT",
|
||
"1": "NNP",
|
||
"2": ".",
|
||
"3": "VBP",
|
||
"4": "IN",
|
||
"5": "PRP",
|
||
"6": "RB",
|
||
"7": "MD",
|
||
"8": "VB",
|
||
"9": "TO",
|
||
"10": "JJ",
|
||
"11": "PRP$",
|
||
"12": ",",
|
||
"13": "NN",
|
||
"14": "HYPH",
|
||
"15": "CC",
|
||
"16": "VBN",
|
||
"17": "VBD",
|
||
"18": "NNS",
|
||
"19": "RBR",
|
||
"20": ":",
|
||
"21": "UH",
|
||
"22": "VBG",
|
||
"23": "RP",
|
||
"24": "WDT",
|
||
"25": "VBZ",
|
||
"26": "WP$",
|
||
"27": "EX",
|
||
"28": "``",
|
||
"29": "WP",
|
||
"30": "WRB",
|
||
"31": "CD",
|
||
"32": "JJR",
|
||
"33": "JJS",
|
||
"34": "RBS",
|
||
"35": "PDT",
|
||
"36": "-LRB-",
|
||
"37": "-RRB-",
|
||
"38": "POS",
|
||
"39": "''",
|
||
"40": "ADD",
|
||
"41": "NNPS",
|
||
"42": "FW",
|
||
"43": "SYM",
|
||
"44": "XX"
|
||
},
|
||
"simple_pos": {
|
||
"0": "DET",
|
||
"1": "PROPN",
|
||
"2": "PUNCT",
|
||
"3": "VERB",
|
||
"4": "ADP",
|
||
"5": "PRON",
|
||
"6": "ADV",
|
||
"7": "AUX",
|
||
"8": "PART",
|
||
"9": "ADJ",
|
||
"10": "NOUN",
|
||
"11": "CCONJ",
|
||
"12": "INTJ",
|
||
"13": "SCONJ",
|
||
"14": "NUM",
|
||
"15": "X",
|
||
"16": "SYM"
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
resolve(dummyData);
|
||
/*
|
||
const args = {corpus_name: this.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.getCorpusData', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
*/
|
||
})
|
||
}
|
||
|
||
drop() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.drop', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
query(subcorpus_name, queryString) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.name,
|
||
subcorpus_name: subcorpus_name,
|
||
query: queryString
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.query', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
// nopaque specific CQi extension
|
||
paginate(page=1, perPage=20) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.name, page: page, per_page: perPage};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.paginate', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
updateDb() {
|
||
const args = {corpus_name: this.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.update_db', args);
|
||
}
|
||
}
|
||
|
||
|
||
class CQiAlignmentAttributeCollection {
|
||
constructor(socket, corpus) {
|
||
this.corpus = corpus;
|
||
this.socket = socket;
|
||
}
|
||
|
||
get(alignmentAttributeName) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
alignment_attribute_name: alignmentAttributeName
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.alignment_attributes.get', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(new CQiAlignmentAttribute(this.socket, this.corpus, response.payload));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
list() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.corpus.name};
|
||
|
||
this.socket.emit('cqi.corpus.alignment_attributes.list', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload.map(x => {return new CQiAlignmentAttribute(this.socket, this.corpus, x);}));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiAlignmentAttribute {
|
||
constructor(socket, corpus, attrs) {
|
||
this.socket = socket;
|
||
this.corpus = corpus;
|
||
this.name = attrs.name;
|
||
this.size = attrs.size;
|
||
}
|
||
}
|
||
|
||
|
||
class CQiPositionalAttributeCollection {
|
||
constructor(socket, corpus) {
|
||
this.corpus = corpus;
|
||
this.socket = socket;
|
||
}
|
||
|
||
get(positionalAttributeName) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
positional_attribute_name: positionalAttributeName
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.positional_attributes.get', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(new CQiPositionalAttribute(this.socket, this.corpus, response.payload));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
list() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.corpus.name};
|
||
|
||
this.socket.emit('cqi.corpus.positional_attributes.list', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload.map(x => {return new CQiPositionalAttribute(this.socket, this.corpus, x);}));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiPositionalAttribute {
|
||
constructor(socket, corpus, attrs) {
|
||
this.socket = socket;
|
||
this.corpus = corpus;
|
||
this.lexiconSize = attrs.lexicon_size;
|
||
this.name = attrs.name;
|
||
this.size = attrs.size;
|
||
}
|
||
}
|
||
|
||
|
||
class CQiStructuralAttributeCollection {
|
||
constructor(socket, corpus) {
|
||
this.corpus = corpus;
|
||
this.socket = socket;
|
||
}
|
||
|
||
get(structuralAttributeName) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
structural_attribute_name: structuralAttributeName
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.structural_attributes.get', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(new CQiStructuralAttribute(this.socket, this.corpus, response.payload));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
list() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.corpus.name};
|
||
|
||
this.socket.emit('cqi.corpus.structural_attributes.list', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload.map(x => {return new CQiStructuralAttribute(this.socket, this.corpus, x);}));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiStructuralAttribute {
|
||
constructor(socket, corpus, attrs) {
|
||
this.socket = socket;
|
||
this.corpus = corpus;
|
||
this.hasValues = attrs.has_values;
|
||
this.name = attrs.name;
|
||
this.size = attrs.size;
|
||
}
|
||
}
|
||
|
||
|
||
class CQiSubcorpusCollection {
|
||
constructor(socket, corpus) {
|
||
this.corpus = corpus;
|
||
this.socket = socket;
|
||
}
|
||
|
||
get(subcorpusName) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: subcorpusName
|
||
};
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.get', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(new CQiSubcorpus(this.socket, this.corpus, response.payload));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
list() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.corpus.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.list', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload.map(x => {return new CQiSubcorpus(this.socket, this.corpus, x);}));
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
class CQiSubcorpus {
|
||
constructor(socket, corpus, attrs) {
|
||
this.socket = socket;
|
||
this.corpus = corpus;
|
||
this.fields = attrs.fields;
|
||
this.name = attrs.name;
|
||
this.size = attrs.size;
|
||
}
|
||
|
||
drop() {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {corpus_name: this.corpus.name, subcorpus_name: this.name};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.drop', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
dump(field, first, last) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
field: field,
|
||
first: first,
|
||
last: last
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.dump', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
export(context=50) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
context: context
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.export', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
partial_export(matchIdList, context=50) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
match_id_list: matchIdList,
|
||
context: context
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.partial_export', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
fdst_1(cutoff, field, attribute) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
cutoff: cutoff,
|
||
field: field,
|
||
attribute: attribute
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.fdist_1', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
fdst_2(cutoff, field1, attribute1, field2, attribute2) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
cutoff: cutoff,
|
||
field1: field1,
|
||
attribute1: attribute1,
|
||
field2: field2,
|
||
attribute2: attribute2
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.fdist_1', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
// nopaque specific CQi extension
|
||
paginate(page=1, perPage=20, context=50) {
|
||
return new Promise((resolve, reject) => {
|
||
const args = {
|
||
corpus_name: this.corpus.name,
|
||
subcorpus_name: this.name,
|
||
page: page,
|
||
per_page: perPage,
|
||
context: context
|
||
};
|
||
|
||
this.socket.emit('cqi.corpora.corpus.subcorpora.subcorpus.paginate', args, response => {
|
||
if (response.code === 200) {
|
||
resolve(response.payload);
|
||
} else {
|
||
reject(response);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
}
|