From e4a4e5f85f61775ff61ae741d3ba6f28924637cb Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 27 Feb 2021 22:27:00 -0500 Subject: [PATCH] Improve term meta ordering (#1455) * Update implementation of _buildTermMeta * Remove old implementation * Expose dictionaryPriority on frequencies and pitch accents * Update how meta data is generated; add index * Update order * Update names * Expose expressionIndex as part of pitch/frequency data * Implement meta sorting * Update test data --- ext/js/language/translator.js | 177 +-- test/data/test-translator-data.json | 1640 +++++++++++++++++++++++++-- 2 files changed, 1658 insertions(+), 159 deletions(-) diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 61d76b36..117007a4 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -655,70 +655,72 @@ class Translator { // Metadata building async _buildTermMeta(definitions, enabledDictionaryMap) { - const addMetadataTargetInfo = (targetMap1, target, parents) => { - let {expression, reading} = target; - if (!reading) { reading = expression; } + const allDefinitions = this._getAllDefinitions(definitions); + const expressionMap = new Map(); + const expressionValues = []; + const expressionKeys = []; - let targetMap2 = targetMap1.get(expression); - if (typeof targetMap2 === 'undefined') { - targetMap2 = new Map(); - targetMap1.set(expression, targetMap2); - } - - let targets = targetMap2.get(reading); - if (typeof targets === 'undefined') { - targets = new Set([target, ...parents]); - targetMap2.set(reading, targets); - } else { - targets.add(target); - for (const parent of parents) { - targets.add(parent); + for (const {expressions, frequencies: frequencies1, pitches: pitches1} of allDefinitions) { + for (let i = 0, ii = expressions.length; i < ii; ++i) { + const {expression, reading, frequencies: frequencies2, pitches: pitches2} = expressions[i]; + let readingMap = expressionMap.get(expression); + if (typeof readingMap === 'undefined') { + readingMap = new Map(); + expressionMap.set(expression, readingMap); + expressionValues.push(readingMap); + expressionKeys.push(expression); } - } - }; - - const targetMap = new Map(); - const definitionsQueue = definitions.map((definition) => ({definition, parents: []})); - while (definitionsQueue.length > 0) { - const {definition, parents} = definitionsQueue.shift(); - const childDefinitions = definition.definitions; - if (Array.isArray(childDefinitions)) { - for (const definition2 of childDefinitions) { - definitionsQueue.push({definition: definition2, parents: [...parents, definition]}); + let targets = readingMap.get(reading); + if (typeof targets === 'undefined') { + targets = []; + readingMap.set(reading, targets); } - } else { - addMetadataTargetInfo(targetMap, definition, parents); - } - - for (const target of definition.expressions) { - addMetadataTargetInfo(targetMap, target, []); + targets.push( + {frequencies: frequencies1, pitches: pitches1, index: i}, + {frequencies: frequencies2, pitches: pitches2, index: i} + ); } } - const targetMapEntries = [...targetMap.entries()]; - const uniqueExpressions = targetMapEntries.map(([expression]) => expression); - const metas = await this._database.findTermMetaBulk(uniqueExpressions, enabledDictionaryMap); + const metas = await this._database.findTermMetaBulk(expressionKeys, enabledDictionaryMap); for (const {expression, mode, data, dictionary, index} of metas) { - const targetMap2 = targetMapEntries[index][1]; - for (const [reading, targets] of targetMap2) { + const dictionaryPriority = this._getDictionaryPriority(dictionary, enabledDictionaryMap); + const map2 = expressionValues[index]; + for (const [reading, targets] of map2.entries()) { switch (mode) { case 'freq': { - const frequencyData = this._getTermFrequencyData(expression, reading, dictionary, data); - if (frequencyData === null) { continue; } - for (const {frequencies} of targets) { frequencies.push(frequencyData); } + let frequency = data; + const hasReading = (data !== null && typeof data === 'object'); + if (hasReading) { + if (data.reading !== reading) { continue; } + frequency = data.frequency; + } + for (const {frequencies, index: expressionIndex} of targets) { + frequencies.push({index: frequencies.length, expressionIndex, dictionary, dictionaryPriority, expression, reading, hasReading, frequency}); + } } break; case 'pitch': { - const pitchData = await this._getPitchData(expression, reading, dictionary, data); - if (pitchData === null) { continue; } - for (const {pitches} of targets) { pitches.push(pitchData); } + if (data.reading !== reading) { continue; } + const pitches2 = []; + for (let {position, tags} of data.pitches) { + tags = Array.isArray(tags) ? await this._expandTags(tags, dictionary) : []; + pitches2.push({position, tags}); + } + for (const {pitches, index: expressionIndex} of targets) { + pitches.push({index: pitches.length, expressionIndex, dictionary, dictionaryPriority, expression, reading, pitches: pitches2}); + } } break; } } } + + for (const definition of allDefinitions) { + this._sortTermDefinitionMeta(definition); + } } async _buildKanjiMeta(definitions, enabledDictionaryMap) { @@ -729,15 +731,20 @@ class Translator { const metas = await this._database.findKanjiMetaBulk(kanjiList, enabledDictionaryMap); for (const {character, mode, data, dictionary, index} of metas) { + const dictionaryPriority = this._getDictionaryPriority(dictionary, enabledDictionaryMap); switch (mode) { case 'freq': { - const frequencyData = this._getKanjiFrequencyData(character, dictionary, data); - definitions[index].frequencies.push(frequencyData); + const {frequencies} = definitions[index]; + frequencies.push({index: frequencies.length, dictionary, dictionaryPriority, character, frequency: data}); } break; } } + + for (const definition of definitions) { + this._sortKanjiDefinitionMeta(definition); + } } async _expandTags(names, dictionary) { @@ -806,32 +813,6 @@ class Translator { return tagMetaList; } - _getTermFrequencyData(expression, reading, dictionary, data) { - let frequency = data; - const hasReading = (data !== null && typeof data === 'object'); - if (hasReading) { - if (data.reading !== reading) { return null; } - frequency = data.frequency; - } - return {dictionary, expression, reading, hasReading, frequency}; - } - - _getKanjiFrequencyData(character, dictionary, data) { - return {dictionary, character, frequency: data}; - } - - async _getPitchData(expression, reading, dictionary, data) { - if (data.reading !== reading) { return null; } - - const pitches = []; - for (let {position, tags} of data.pitches) { - tags = Array.isArray(tags) ? await this._expandTags(tags, dictionary) : []; - pitches.push({position, tags}); - } - - return {expression, reading, dictionary, pitches}; - } - // Simple helpers _scoreToTermFrequency(score) { @@ -1000,6 +981,17 @@ class Translator { return result; } + _getAllDefinitions(definitions) { + definitions = [...definitions]; + for (let i = 0; i < definitions.length; ++i) { + const childDefinitions = definitions[i].definitions; + if (Array.isArray(childDefinitions)) { + definitions.push(...childDefinitions); + } + } + return definitions; + } + // Reduction functions _getTermTagsScoreSum(termTags) { @@ -1334,6 +1326,45 @@ class Translator { }); } + _sortTermDefinitionMeta(definition) { + const compareFunction = (v1, v2) => { + // Sort by dictionary + let i = v2.dictionaryPriority - v1.dictionaryPriority; + if (i !== 0) { return i; } + + // Sory by expression order + i = v1.expressionIndex - v2.expressionIndex; + if (i !== 0) { return i; } + + // Default order + i = v1.index - v2.index; + return i; + }; + + const {expressions, frequencies: frequencies1, pitches: pitches1} = definition; + frequencies1.sort(compareFunction); + pitches1.sort(compareFunction); + for (const {frequencies: frequencies2, pitches: pitches2} of expressions) { + frequencies2.sort(compareFunction); + pitches2.sort(compareFunction); + } + } + + _sortKanjiDefinitionMeta(definition) { + const compareFunction = (v1, v2) => { + // Sort by dictionary + let i = v2.dictionaryPriority - v1.dictionaryPriority; + if (i !== 0) { return i; } + + // Default order + i = v1.index - v2.index; + return i; + }; + + const {frequencies} = definition; + frequencies.sort(compareFunction); + } + // Regex functions _applyTextReplacements(text, sourceMap, replacements) { diff --git a/test/data/test-translator-data.json b/test/data/test-translator-data.json index 87184698..600ed86d 100644 --- a/test/data/test-translator-data.json +++ b/test/data/test-translator-data.json @@ -141,7 +141,9 @@ }, "frequencies": [ { + "index": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "character": "打", "frequency": 1 } @@ -255,7 +257,9 @@ }, "frequencies": [ { + "index": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "character": "込", "frequency": 2 } @@ -341,14 +345,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -419,14 +429,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -495,14 +511,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -573,14 +595,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -665,14 +693,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -747,14 +781,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -827,14 +867,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -909,14 +955,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -989,14 +1041,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -1071,14 +1129,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -1151,14 +1215,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -1233,14 +1303,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -1309,14 +1385,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -1387,14 +1469,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -1463,14 +1551,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -1541,14 +1635,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -1641,14 +1741,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -1657,9 +1763,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -1747,14 +1856,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -1763,9 +1878,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -1851,14 +1969,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -1867,9 +1991,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -1957,14 +2084,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -1973,9 +2106,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -2061,14 +2197,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -2077,9 +2219,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -2167,14 +2312,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -2183,9 +2334,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -2271,14 +2425,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -2287,9 +2447,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -2377,14 +2540,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -2393,9 +2562,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -2475,14 +2647,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2557,14 +2735,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2639,14 +2823,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -2721,14 +2911,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -2803,14 +2999,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2885,14 +3087,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2967,14 +3175,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -3049,14 +3263,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -3125,14 +3345,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -3203,14 +3429,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -3279,14 +3511,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3357,14 +3595,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3590,14 +3834,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -3668,14 +3918,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -3756,14 +4012,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3834,14 +4096,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3926,14 +4194,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4008,14 +4282,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4088,14 +4368,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4170,14 +4456,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4262,14 +4554,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4344,14 +4642,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4424,14 +4728,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4506,14 +4816,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4606,14 +4922,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -4622,9 +4944,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -4712,14 +5037,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -4728,9 +5059,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -4816,14 +5150,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -4832,9 +5172,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -4922,14 +5265,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -4938,9 +5287,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -5020,14 +5372,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5102,14 +5460,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5184,14 +5548,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5266,14 +5636,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5366,14 +5742,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5382,9 +5764,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -5472,14 +5857,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5488,9 +5879,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -5576,14 +5970,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5592,9 +5992,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -5682,14 +6085,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5698,9 +6107,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -5780,14 +6192,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -5862,14 +6280,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -5944,14 +6368,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -6026,14 +6456,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -7697,14 +8133,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -7713,9 +8155,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -7867,14 +8312,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -7883,9 +8334,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -7973,14 +8427,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -7989,9 +8449,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8077,14 +8540,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8093,9 +8562,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8183,14 +8655,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8199,9 +8677,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8219,14 +8700,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8235,9 +8722,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8321,14 +8811,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8337,9 +8833,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8473,14 +8972,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8489,9 +8994,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8579,14 +9087,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8595,9 +9109,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8683,14 +9200,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8699,9 +9222,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8789,14 +9315,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8805,9 +9337,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8825,14 +9360,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8841,9 +9382,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -8921,14 +9465,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9043,14 +9593,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9125,14 +9681,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9207,14 +9769,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9289,14 +9857,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9309,14 +9883,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9389,14 +9969,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9511,14 +10097,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9593,14 +10185,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9675,14 +10273,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9757,14 +10361,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9777,14 +10387,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -9851,14 +10467,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -9963,14 +10585,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -10041,14 +10669,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -10061,14 +10695,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -10135,14 +10775,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10247,14 +10893,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10325,14 +10977,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10345,14 +11003,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10465,14 +11129,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -10481,9 +11151,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -10551,14 +11224,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -10567,9 +11246,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -10657,14 +11339,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -10673,9 +11361,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -10786,14 +11477,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -10802,9 +11499,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -10892,14 +11592,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -10908,9 +11614,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -10928,14 +11637,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -10944,9 +11659,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11036,14 +11754,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11052,9 +11776,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11165,14 +11892,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11181,9 +11914,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11271,14 +12007,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11287,9 +12029,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11307,14 +12052,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11323,9 +12074,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11415,14 +12169,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11431,9 +12191,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11544,14 +12307,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11560,9 +12329,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11650,14 +12422,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11666,9 +12444,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11686,14 +12467,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11702,9 +12489,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11794,14 +12584,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11810,9 +12606,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -11923,14 +12722,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11939,9 +12744,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -12029,14 +12837,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12045,9 +12859,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -12065,14 +12882,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12081,9 +12904,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -12104,28 +12930,40 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 2, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "expression": "打ち込む", - "reading": "ぶちこむ", - "hasReading": false, - "frequency": 3 - }, - { - "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, "frequency": 8 }, { + "index": 1, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 3, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12134,9 +12972,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -12149,9 +12990,12 @@ ] }, { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -12233,14 +13077,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -12295,14 +13145,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -12377,14 +13233,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -12484,14 +13346,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -12566,14 +13434,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -12586,14 +13460,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -12670,14 +13550,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -12777,14 +13663,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -12859,14 +13751,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -12879,14 +13777,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -12963,14 +13867,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13070,14 +13980,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13152,14 +14068,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13172,14 +14094,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13256,14 +14184,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13363,14 +14297,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13445,14 +14385,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13465,14 +14411,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13488,28 +14440,40 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 2, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "expression": "打つ", - "reading": "ぶつ", - "hasReading": false, - "frequency": 2 - }, - { - "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, "frequency": 6 }, { + "index": 1, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 3, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13579,14 +14543,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13657,14 +14627,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13758,14 +14734,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13836,14 +14818,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13856,14 +14844,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13877,14 +14871,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -13954,14 +14954,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14032,14 +15038,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14133,14 +15145,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14211,14 +15229,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14231,14 +15255,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14252,14 +15282,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14356,14 +15392,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -14372,9 +15414,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14462,14 +15507,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -14478,9 +15529,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14570,14 +15624,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -14586,9 +15646,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14676,14 +15739,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -14692,9 +15761,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14784,14 +15856,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -14800,9 +15878,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14890,14 +15971,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -14906,9 +15993,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -14998,14 +16088,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -15014,9 +16110,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -15104,14 +16203,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -15120,9 +16225,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -15202,14 +16310,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -15284,14 +16398,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -15366,14 +16486,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -15448,14 +16574,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -15530,14 +16662,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -15612,14 +16750,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -15694,14 +16838,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -15776,14 +16926,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -15852,14 +17008,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -15930,14 +17092,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -16006,14 +17174,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -16084,14 +17258,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -16199,14 +17379,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -16215,9 +17401,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16305,14 +17494,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -16321,9 +17516,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16409,14 +17607,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16425,9 +17629,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16515,14 +17722,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16531,9 +17744,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16619,14 +17835,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -16635,9 +17857,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16725,14 +17950,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -16741,9 +17972,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16829,14 +18063,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16845,9 +18085,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -16935,14 +18178,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16951,9 +18200,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -17033,14 +18285,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -17115,14 +18373,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -17197,14 +18461,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -17279,14 +18549,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -17361,14 +18637,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -17443,14 +18725,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -17525,14 +18813,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -17607,14 +18901,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -17683,14 +18983,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -17761,14 +19067,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -17837,14 +19149,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -17915,14 +19233,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -18030,14 +19354,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -18046,9 +19376,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18136,14 +19469,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -18152,9 +19491,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18240,14 +19582,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18256,9 +19604,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18346,14 +19697,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18362,9 +19719,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18450,14 +19810,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -18466,9 +19832,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18556,14 +19925,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -18572,9 +19947,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "うちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18660,14 +20038,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18676,9 +20060,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18766,14 +20153,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, "frequency": 3 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18782,9 +20175,12 @@ ], "pitches": [ { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打ち込む", "reading": "ぶちこむ", - "dictionary": "Test Dictionary 2", "pitches": [ { "position": 0, @@ -18864,14 +20260,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -18946,14 +20348,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -19028,14 +20436,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -19110,14 +20524,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -19192,14 +20612,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -19274,14 +20700,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -19356,14 +20788,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -19438,14 +20876,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": false, "frequency": 2 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -19514,14 +20958,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -19592,14 +21042,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "だ", "hasReading": true, @@ -19668,14 +21124,20 @@ "termFrequency": "normal", "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true, @@ -19746,14 +21208,20 @@ ], "frequencies": [ { + "index": 0, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": false, "frequency": 1 }, { + "index": 1, + "expressionIndex": 0, "dictionary": "Test Dictionary 2", + "dictionaryPriority": 0, "expression": "打", "reading": "ダース", "hasReading": true,